From b912834ce7d460ce9bdc6a0cf3dfd814b3e2eec5 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Wed, 12 Apr 2017 15:00:09 +0200 Subject: [PATCH 001/311] Added the new item to item editor builder and to html view --- .../reporting_builder.item_editor.php | 16 +++++ .../include/functions_reporting.php | 65 ++++++++++++++++++ .../include/functions_reporting_html.php | 66 +++++++++++++++++++ pandora_console/include/functions_reports.php | 3 +- 4 files changed, 149 insertions(+), 1 deletion(-) diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 2e974b85fe..900cf4b475 100755 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -144,6 +144,7 @@ switch ($action) { case 'network_interfaces_report': case 'availability': case 'event_report_log': + case 'increment': case 'availability_graph': case 'agent_module': $get_data_editor = true; @@ -272,6 +273,13 @@ switch ($action) { $idAgent = db_get_value_filter('id_agente', 'tagente_modulo', array('id_agente_modulo' => $idAgentModule)); break; + case 'increment': + $description = $item['description']; + $idAgentModule = $item['id_agent_module']; + $idAgent = db_get_value_filter('id_agente', 'tagente_modulo', array('id_agente_modulo' => $idAgentModule)); + $period = $item['period']; + break; + case 'SLA_services': $description = $item['description']; $period = $item['period']; @@ -578,6 +586,7 @@ switch ($action) { case 'MTTR': case 'simple_baseline_graph': case 'event_report_log': + case 'increment': $label = (isset($style['label'])) ? $style['label'] : ''; break; default: @@ -2646,6 +2655,13 @@ function chooseType() { $("#agents_row").show(); $("#row_source").show(); break; + + case 'increment': + $("#row_description").show(); + $("#row_agent").show(); + $("#row_module").show(); + $("#row_period").show(); + break; case 'simple_graph': $("#row_time_compare_overlapped").show(); diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 3d05c2099f..1a649d63ab 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -171,6 +171,12 @@ function reporting_make_reporting_data($report = null, $id_report, $report, $content); break; + case 'increment': + $report['contents'][] = + reporting_increment( + $report, + $content); + break; case 'general': $report['contents'][] = reporting_general( @@ -5464,6 +5470,65 @@ function reporting_availability_graph($report, $content, $pdf=false) { return reporting_check_structure_content($return); } +/** + * reporting_increment + * + * Generates a structure the report. + * + */ +function reporting_increment ($report, $content) { + global $config; + + $return = array(); + $return['type'] = 'increment'; + if (empty($content['name'])) { + $content['name'] = __('Increment'); + } + + $return['title'] = $content['name']; + $return["description"] = $content["description"]; + $return["id_agent_module"] = $content["id_agent_module"]; + $return["id_agent"] = $content["id_agent"]; + + $id_agent_module = $content['id_agent_module']; + $period = (int)$content['period']; + + $return["from"] = time() - $period; + $return["to"] = time(); + + $return["data"] = array(); + + $old_data = db_get_value_sql('SELECT datos FROM tagente_datos WHERE id_agente_modulo = ' . $id_agent_module . ' + AND utimestamp <= ' . (time() - $period) . ' ORDER BY utimestamp DESC'); + + $last_data = db_get_value_sql('SELECT datos FROM tagente_datos WHERE id_agente_modulo = ' . $id_agent_module . ' ORDER BY utimestamp DESC'); + + if (is_numeric($old_data) && is_numeric($last_data)) { + $return["data"]['old'] = $old_data; + $return["data"]['now'] = $last_data; + $increment = $old_data - $last_data; + + if ($increment < 0) { + $return["data"]['inc'] = 'positive'; + $return["data"]["inc_data"] = $last_data - $old_data; + } + else if ($increment == 0) { + $return["data"]['inc'] = 'neutral'; + $return["data"]["inc_data"] = 0; + } + else { + $return["data"]['inc'] = 'negative'; + $return["data"]["inc_data"] = $old_data - $last_data; + } + } + else { + $return["data"]['message'] = __('The monitor type is not numeric'); + $return["data"]['error'] = true; + } + + return reporting_check_structure_content($return); +} + /** * reporting_general * diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php index f6acad7fbe..1cf64b4342 100644 --- a/pandora_console/include/functions_reporting_html.php +++ b/pandora_console/include/functions_reporting_html.php @@ -208,6 +208,9 @@ function reporting_html_print_report($report, $mini = false, $report_info = 1) { case 'avg_value': reporting_html_avg_value($table, $item, $mini); break; + case 'increment': + reporting_html_increment($table, $item); + break; case 'min_value': reporting_html_min_value($table, $item, $mini); break; @@ -2213,6 +2216,69 @@ function reporting_html_value(&$table, $item, $mini, $only_value = false, $check $table->data['data']['cell'] .= '

'; } +function reporting_html_increment(&$table, $item) { + global $config; + + if (isset($item["data"]['error'])) { + $table->colspan['error']['cell'] = 3; + $table->data['error']['cell'] = $item["data"]['message']; + } + else { + $table1 = new stdClass(); + $table1->width = '99%'; + $table1->data = array (); + + $table1->head = array (); + $table1->head[0] = __('Agent'); + $table1->head[1] = __('Module'); + $table1->head[2] = __('From'); + $table1->head[3] = __('To'); + $table1->head[4] = __('From data'); + $table1->head[5] = __('To data'); + $table1->head[6] = __('Increment'); + + $table1->headstyle = array(); + $table1->headstyle[0] = 'text-align: left'; + $table1->headstyle[1] = 'text-align: left'; + $table1->headstyle[2] = 'text-align: left'; + $table1->headstyle[3] = 'text-align: left'; + $table1->headstyle[4] = 'text-align: right'; + $table1->headstyle[5] = 'text-align: right'; + $table1->headstyle[6] = 'text-align: right'; + + $table1->style[0] = 'text-align: left'; + $table1->style[1] = 'text-align: left'; + $table1->style[2] = 'text-align: left'; + $table1->style[3] = 'text-align: left'; + $table1->style[4] = 'text-align: right'; + $table1->style[5] = 'text-align: right'; + $table1->style[6] = 'text-align: right'; + + $table1_row = array(); + $table1_row[0] = agents_get_alias($item['id_agent']); + $table1_row[1] = modules_get_agentmodule_name($item['id_agent_module']); + $table1_row[2] = date("F j, Y, g:i a", $item['from']); + $table1_row[3] = date("F j, Y, g:i a", $item['to']); + $table1_row[4] = $item["data"]['old']; + $table1_row[5] = $item["data"]['now']; + if ($item["data"]['inc'] == 'negative') { + $table1_row[6] = __('Negative increase: ') . $item["data"]["inc_data"]; + } + else if ($item["data"]['inc'] == 'positive') { + $table1_row[6] = __('Positive increase: ') . $item["data"]["inc_data"]; + } + else { + $table1_row[6] = __('Neutral increase: ') . $item["data"]["inc_data"]; + } + + $table1->data[] = $table1_row; + + $data = array(); + $data[0] = html_print_table($table1, true); + array_push ($table->data, $data); + } +} + function reporting_html_url(&$table, $item, $key) { $table->colspan['data']['cell'] = 3; $table->cellstyle['data']['cell'] = 'text-align: left;'; diff --git a/pandora_console/include/functions_reports.php b/pandora_console/include/functions_reports.php index 9282be345b..dfa3d3d490 100755 --- a/pandora_console/include/functions_reports.php +++ b/pandora_console/include/functions_reports.php @@ -574,7 +574,8 @@ function reports_get_report_types ($template = false, $not_editor = false) { 'name' => __('Summatory')); $types['historical_data'] = array('optgroup' => __('Modules'), 'name' => __('Historical Data')); - + $types['increment'] = array('optgroup' => __('Modules'), + 'name' => __('Increment')); $types['general'] = array('optgroup' => __('Grouped'), From cc1ab47a65cc5815427d327b6727f138782d198b Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Wed, 12 Apr 2017 15:53:36 +0200 Subject: [PATCH 002/311] Added fixes to new report item --- pandora_console/include/functions_reporting.php | 6 +++++- pandora_console/include/functions_reporting_html.php | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 1a649d63ab..2d230792d3 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -5503,7 +5503,11 @@ function reporting_increment ($report, $content) { $last_data = db_get_value_sql('SELECT datos FROM tagente_datos WHERE id_agente_modulo = ' . $id_agent_module . ' ORDER BY utimestamp DESC'); - if (is_numeric($old_data) && is_numeric($last_data)) { + if ($old_data === false || $last_data === false) { + $return["data"]['message'] = __('The monitor have no data in this range of dates or monitor type is not numeric'); + $return["data"]['error'] = true; + } + else if (is_numeric($old_data) && is_numeric($last_data)) { $return["data"]['old'] = $old_data; $return["data"]['now'] = $last_data; $increment = $old_data - $last_data; diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php index 1cf64b4342..6522a0b63a 100644 --- a/pandora_console/include/functions_reporting_html.php +++ b/pandora_console/include/functions_reporting_html.php @@ -2257,8 +2257,8 @@ function reporting_html_increment(&$table, $item) { $table1_row = array(); $table1_row[0] = agents_get_alias($item['id_agent']); $table1_row[1] = modules_get_agentmodule_name($item['id_agent_module']); - $table1_row[2] = date("F j, Y, g:i a", $item['from']); - $table1_row[3] = date("F j, Y, g:i a", $item['to']); + $table1_row[2] = date("F j, Y, G:i", $item['from']); + $table1_row[3] = date("F j, Y, G:i", $item['to']); $table1_row[4] = $item["data"]['old']; $table1_row[5] = $item["data"]['now']; if ($item["data"]['inc'] == 'negative') { From d499cc1b84ba70fb5fc0a1e88db7124590e9d665 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Wed, 12 Apr 2017 17:12:16 +0200 Subject: [PATCH 003/311] Added modification to new report item in meta --- .../include/functions_reporting.php | 36 +++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 2d230792d3..98438030ef 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -5498,10 +5498,42 @@ function reporting_increment ($report, $content) { $return["data"] = array(); - $old_data = db_get_value_sql('SELECT datos FROM tagente_datos WHERE id_agente_modulo = ' . $id_agent_module . ' + if (defined('METACONSOLE')) { + $sql1 = 'SELECT datos FROM tagente_datos WHERE id_agente_modulo = ' . $id_agent_module . ' + AND utimestamp <= ' . (time() - $period) . ' ORDER BY utimestamp DESC'; + $sql2 = 'SELECT datos FROM tagente_datos WHERE id_agente_modulo = ' . $id_agent_module . ' ORDER BY utimestamp DESC'; + + $servers = db_get_all_rows_sql ('SELECT * + FROM tmetaconsole_setup + WHERE disabled = 0'); + + if ($servers === false) + $servers = array(); + + $result = array(); + $count_modules = 0; + foreach ($servers as $server) { + // If connection was good then retrieve all data server + if (metaconsole_connect($server) == NOERR) + $connection = true; + else + $connection = false; + + $old_data = db_get_value_sql ($sql1); + + $last_data = db_get_value_sql ($sql2); + } + } + else { + $old_data = db_get_value_sql('SELECT datos FROM tagente_datos WHERE id_agente_modulo = ' . $id_agent_module . ' AND utimestamp <= ' . (time() - $period) . ' ORDER BY utimestamp DESC'); - $last_data = db_get_value_sql('SELECT datos FROM tagente_datos WHERE id_agente_modulo = ' . $id_agent_module . ' ORDER BY utimestamp DESC'); + $last_data = db_get_value_sql('SELECT datos FROM tagente_datos WHERE id_agente_modulo = ' . $id_agent_module . ' ORDER BY utimestamp DESC'); + } + + if (!defined('METACONSOLE')) { + + } if ($old_data === false || $last_data === false) { $return["data"]['message'] = __('The monitor have no data in this range of dates or monitor type is not numeric'); From 0cb186600976855c0a370074d0d85d15e82f6ed7 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Thu, 15 Jun 2017 15:01:31 +0200 Subject: [PATCH 004/311] Add optional report description section to metaconsole - 708 --- pandora_console/include/functions_config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index c6828ffd1b..478866ae81 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -1656,6 +1656,10 @@ function config_process_config () { config_update_value ('command_snapshot', 1); } + if (!isset($config['custom_report_info'])) { + config_update_value ('custom_report_info', 1); + } + // Juanma (06/05/2014) New feature: Custom front page for reports if (!isset($config['custom_report_front'])) { config_update_value ('custom_report_front', 0); From 0155dae269fd0f70c92182d759f49ec93d2ba7c3 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Mon, 19 Jun 2017 17:28:35 +0200 Subject: [PATCH 005/311] Add multiple checkbox selector for report delete - #895 --- .../godmode/reporting/reporting_builder.php | 57 ++++++++++++++++++- 1 file changed, 54 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/reporting/reporting_builder.php b/pandora_console/godmode/reporting/reporting_builder.php index ca470dc79b..6c49f6d82c 100755 --- a/pandora_console/godmode/reporting/reporting_builder.php +++ b/pandora_console/godmode/reporting/reporting_builder.php @@ -1,3 +1,37 @@ + + head[$next] = '' . - __('Op.') . ''; + __('Op.') . ''.html_print_checkbox('all_delete', 0, false, true, false, + 'check_all_checkboxes();'); //$table->size = array (); $table->size[$next] = '10%'; @@ -703,9 +738,13 @@ switch ($action) { $data[$next] .= '
'; $data[$next] .= html_print_input_hidden ('id_report', $report['id_report'], true); $data[$next] .= html_print_input_hidden ('action','delete_report', true); - $data[$next] .= html_print_input_image ('delete', 'images/cross.png', 1, '', + $data[$next] .= html_print_input_image ('delete', 'images/cross.png', 1, 'margin-right: 10px;', true, array ('title' => __('Delete'))); + + $data[$next] .= html_print_checkbox_extended ('massive_report_check', $report['id_report'], false, false, '', 'class="check_delete"', true); + $data[$next] .= '
'; + } } @@ -733,8 +772,19 @@ switch ($action) { else echo '
'; html_print_submit_button (__('Create report'), 'create', false, 'class="sub next"'); - echo "
"; + echo ""; + echo '
'; + + foreach ($reports as $report) { + echo ''; + } + + echo ''; + html_print_submit_button(__('Delete'), 'delete_btn', false, 'class="sub delete" style="margin-left:5px;"'); + echo '
'; + echo ""; + } enterprise_hook('close_meta_frame'); @@ -2044,3 +2094,4 @@ switch ($activeTab) { enterprise_hook('close_meta_frame'); ?> + From 5c4b5a02424b8571022e5dcd5fb0cf0dada0402c Mon Sep 17 00:00:00 2001 From: enriquecd Date: Wed, 28 Jun 2017 15:47:24 +0200 Subject: [PATCH 006/311] Add link in minor release update dialog to documentation - #951 --- .../godmode/update_manager/update_manager.offline.php | 9 ++++++++- pandora_console/include/functions_update_manager.php | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/update_manager/update_manager.offline.php b/pandora_console/godmode/update_manager/update_manager.offline.php index 2079678fa8..afad03cc2c 100644 --- a/pandora_console/godmode/update_manager/update_manager.offline.php +++ b/pandora_console/godmode/update_manager/update_manager.offline.php @@ -58,7 +58,14 @@ $baseurl = ui_get_full_url(false, false, false, false); var text1_mr_file = "\n"; var text2_mr_file = "\n"; var text3_mr_file = "\n"; - var text4_mr_file = "\n"; + var text4_mr_file = "
'.__('About minor release update').''; + } + else{ + echo __(' to this process').'

'.__('About minor release update').''; + } + ?>"; var text1_package_file = "\n"; var text2_package_file = "\n"; var applying_mr = "\n"; diff --git a/pandora_console/include/functions_update_manager.php b/pandora_console/include/functions_update_manager.php index 607b108e42..ba6508fa19 100755 --- a/pandora_console/include/functions_update_manager.php +++ b/pandora_console/include/functions_update_manager.php @@ -358,7 +358,14 @@ function update_manager_check_online_free_packages ($is_ajax=true) { var text1_mr_file = "\n"; var text2_mr_file = "\n"; var text3_mr_file = "\n"; - var text4_mr_file = "\n"; + var text4_mr_file = "
'.__('About minor release update').''; + } + else{ + echo __(' to this process').'

'.__('About minor release update').''; + } + ?>"; var text1_package_file = "\n"; var text2_package_file = "\n"; var applying_mr = "\n"; From 0d82c88fd705ab5a226295024f4478bd56d85246 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Fri, 25 Aug 2017 10:28:48 +0200 Subject: [PATCH 007/311] Order agents list by alias in module bulk operations - #159 --- pandora_console/operation/agentes/ver_agente.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php index 381b089b68..0b01be44a0 100644 --- a/pandora_console/operation/agentes/ver_agente.php +++ b/pandora_console/operation/agentes/ver_agente.php @@ -97,7 +97,7 @@ if (is_ajax ()) { $filter[] = "(notinit_count = total_count)"; break; } - $filter['order'] = "nombre ASC"; + $filter['order'] = "alias ASC"; // Build fields $fields = array('id_agente', 'alias'); From 29703c708a334d7c96bf3ff9348ccce19b91ca75 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Mon, 28 Aug 2017 11:14:04 +0200 Subject: [PATCH 008/311] Disable autosubmit in agent module view - #1125 --- pandora_console/extensions/agents_alerts.php | 8 +++++--- pandora_console/extensions/agents_modules.php | 4 +++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/pandora_console/extensions/agents_alerts.php b/pandora_console/extensions/agents_alerts.php index 97f1bc7589..f5cad20d74 100755 --- a/pandora_console/extensions/agents_alerts.php +++ b/pandora_console/extensions/agents_alerts.php @@ -546,9 +546,11 @@ ui_require_jquery_file('pandora'); }); $('#group_id').change(function(){ - var regx = /&group_id=\d*/g; - var url = location.href.replace(regx, ""); - location.href = url+"&group_id="+$("#group_id").val(); + if(location.href.indexOf("extensions/agents_modules") == -1){ + var regx = /&group_id=\d*/g; + var url = location.href.replace(regx, ""); + location.href = url+"&group_id="+$("#group_id").val(); + } }); }); diff --git a/pandora_console/extensions/agents_modules.php b/pandora_console/extensions/agents_modules.php index cb6fe8cd42..4a35c66374 100644 --- a/pandora_console/extensions/agents_modules.php +++ b/pandora_console/extensions/agents_modules.php @@ -70,7 +70,9 @@ function mainAgentsModules() { $offset = (int)get_parameter('offset', 0); $hor_offset = (int)get_parameter('hor_offset', 0); $block = $config['block_size']; - $agents_id = (array)get_parameter('id_agents2', -1); + if(get_parameter('modulegroup') != null){ + $agents_id = (array)get_parameter('id_agents2', -1); + } $selection_a_m = (int)get_parameter('selection_agent_module'); $modules_selected = (array)get_parameter('module', 0); $update_item = (string)get_parameter('edit_item',''); From da3905a593d6f493cf1dd9c4172a594dfa9e788a Mon Sep 17 00:00:00 2001 From: enriquecd Date: Thu, 7 Sep 2017 13:25:39 +0200 Subject: [PATCH 009/311] Apply comfort displacement to update button in visual styles section - #1228 --- pandora_console/godmode/setup/setup_visuals.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/pandora_console/godmode/setup/setup_visuals.php b/pandora_console/godmode/setup/setup_visuals.php index 2e18f50669..5eb4aae3b1 100755 --- a/pandora_console/godmode/setup/setup_visuals.php +++ b/pandora_console/godmode/setup/setup_visuals.php @@ -914,6 +914,23 @@ tinyMCE.init({ }); $(document).ready (function () { + + var comfort = 0; + + if(comfort == 0){ + $(':input,:radio,:checkbox,:file').change(function(){ + $('#submit-update_button').css({'position':'fixed','right':'80px','bottom':'55px'}); + var comfort = 1; + }); + + $("*").keydown(function(){ + $('#submit-update_button').css({'position':'fixed','right':'80px','bottom':'55px'}); + var comfort = 1; + }); + + $('#form_setup').after('
'); + } + $("#form_setup #text-graph_color1").attachColorPicker(); $("#form_setup #text-graph_color2").attachColorPicker(); $("#form_setup #text-graph_color3").attachColorPicker(); From d290d69d335c6bfd7395a7bf5d869ba413c74854 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Fri, 8 Sep 2017 11:15:29 +0200 Subject: [PATCH 010/311] Now the label editor color is changed by the mouse scroll - #1103 --- .../visual_console_builder.editor.js | 24 +++++++------------ .../include/functions_visual_map_editor.php | 2 +- 2 files changed, 10 insertions(+), 16 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 3cea48be21..ce58217ccb 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -126,23 +126,17 @@ function visual_map_main() { // Begin - Background label color changer - $( "#text-label_ifr" ).contents().find( "body" ).bind("contextmenu", function(e) { - e.preventDefault(); + $( "#text-label_ifr" ).contents().find( "body" ).bind('mousewheel', function(e){ + e.preventDefault(); + + if($( "#text-label_ifr" ).contents().find( "body" ).css('background-color') == 'rgb(211, 211, 211)'){ + $( "#text-label_ifr" ).contents().find( "body" ).css('background-color','white'); + } + else{ + $( "#text-label_ifr" ).contents().find( "body" ).css('background-color','lightgray'); + } }); - $( "#text-label_ifr" ).contents().find( "body" ).mousedown(function(e){ - if(e.which == 3) - { - if($( "#text-label_ifr" ).contents().find( "body" ).css('background-color') == 'rgb(211, 211, 211)'){ - $( "#text-label_ifr" ).contents().find( "body" ).css('background-color','white'); - } - else{ - $( "#text-label_ifr" ).contents().find( "body" ).css('background-color','lightgray'); - } - - } - }); - // End - Background label color changer $('#radiobtn0001').click(function(){ diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index c0c261ea57..7ef82de44d 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -189,7 +189,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { ' . html_print_input_text('label', '', '', 20, 200, true) . ' - '.__("Click right mouse button to change the background color of the label editor").' + '.__("Scroll the mouse wheel over the label editor to change the background color").' '; From 3919edcbd860a679e392e02e2e251ada42a88271 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Fri, 8 Sep 2017 13:39:20 +0200 Subject: [PATCH 011/311] Add snmp oid field in module bulk operations - #1205 --- .../godmode/massive/massive_edit_modules.php | 27 +++++++++++++------ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/pandora_console/godmode/massive/massive_edit_modules.php b/pandora_console/godmode/massive/massive_edit_modules.php index 7e2db21c3c..11fd325fcf 100755 --- a/pandora_console/godmode/massive/massive_edit_modules.php +++ b/pandora_console/godmode/massive/massive_edit_modules.php @@ -503,6 +503,10 @@ $table->data['edit3'][2] = __('SMNP community'); $table->data['edit3'][3] = html_print_input_text ('snmp_community', '', '', 10, 15, true); +$table->data['edit15'][2] = __('SNMP OID'); +$table->data['edit15'][3] = html_print_input_text ('snmp_oid', '', + '', 80, 80, true); + $target_ip_values = array(); $target_ip_values['auto'] = __('Auto'); $target_ip_values['force_pri'] = __('Force primary key'); @@ -736,7 +740,8 @@ $(document).ready (function () { "tr#delete_table-edit11, " + "tr#delete_table-edit12, " + "tr#delete_table-edit13, " + - "tr#delete_table-edit14").hide (); + "tr#delete_table-edit14, " + + "tr#delete_table-edit15").hide (); var params = { "page" : "operation/agentes/ver_agente", @@ -800,7 +805,8 @@ $(document).ready (function () { "tr#delete_table-edit11, " + "tr#delete_table-edit12, " + "tr#delete_table-edit13, " + - "tr#delete_table-edit14").show (); + "tr#delete_table-edit14, " + + "tr#delete_table-edit15").show (); } function clean_lists() { @@ -829,7 +835,8 @@ $(document).ready (function () { "tr#delete_table-edit11, " + "tr#delete_table-edit12, " + "tr#delete_table-edit13, " + - "tr#delete_table-edit14").hide (); + "tr#delete_table-edit14, " + + "tr#delete_table-edit15").hide (); $('input[type=checkbox]').attr('checked', false); $('input[type=checkbox]').attr('disabled', true); @@ -877,7 +884,8 @@ $(document).ready (function () { "tr#delete_table-edit11, " + "tr#delete_table-edit12, " + "tr#delete_table-edit13, " + - "tr#delete_table-edit14").hide (); + "tr#delete_table-edit14, " + + "tr#delete_table-edit15").hide (); } } } @@ -919,7 +927,8 @@ $(document).ready (function () { "tr#delete_table-edit11, " + "tr#delete_table-edit12, " + "tr#delete_table-edit13, " + - "tr#delete_table-edit14").show (); + "tr#delete_table-edit14, " + + "tr#delete_table-edit15").show (); } else { $(".select_agents_row_2").css('display', ''); @@ -942,7 +951,8 @@ $(document).ready (function () { "tr#delete_table-edit11, " + "tr#delete_table-edit12, " + "tr#delete_table-edit13, " + - "tr#delete_table-edit14").hide (); + "tr#delete_table-edit14, " + + "tr#delete_table-edit15").hide (); } } } @@ -1026,7 +1036,8 @@ $(document).ready (function () { "tr#delete_table-edit11, " + "tr#delete_table-edit12, " + "tr#delete_table-edit13, " + - "tr#delete_table-edit14").hide (); + "tr#delete_table-edit14, " + + "tr#delete_table-edit15").hide (); jQuery.post ("ajax.php", {"page" : "operation/agentes/ver_agente", @@ -1128,7 +1139,7 @@ function process_manage_edit ($module_name, $agents_select = null, $module_statu $fields = array ('dynamic_interval', 'dynamic_max', 'dynamic_min', 'dynamic_two_tailed', 'min_warning', 'max_warning', 'str_warning', 'min_critical', 'max_critical', 'str_critical', 'min_ff_event', 'module_interval', 'disabled', 'post_process', 'unit', - 'snmp_community', 'tcp_send', 'custom_string_1', + 'snmp_community','snmp_oid','tcp_send', 'custom_string_1', 'plugin_parameter', 'custom_string_2', 'custom_string_3', 'min', 'max', 'id_module_group', 'plugin_user', 'plugin_pass', 'id_export', 'history_data', 'critical_inverse', From dc33195358dafdfa88452dff79c084f6ce5e0d66 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Mon, 11 Sep 2017 17:20:07 +0200 Subject: [PATCH 012/311] Add recursion group search for agent/module view and angent/module item in reports - #1113 --- pandora_console/extensions/agents_modules.php | 51 ++++++++++++++++--- .../reporting_builder.item_editor.php | 37 +++++++++++++- .../operation/agentes/ver_agente.php | 4 +- 3 files changed, 82 insertions(+), 10 deletions(-) diff --git a/pandora_console/extensions/agents_modules.php b/pandora_console/extensions/agents_modules.php index cb6fe8cd42..a69343d6dd 100644 --- a/pandora_console/extensions/agents_modules.php +++ b/pandora_console/extensions/agents_modules.php @@ -66,11 +66,14 @@ function mainAgentsModules() { $modulegroup = get_parameter('modulegroup', 0); $refr = get_parameter('refresh', 0); // By default 30 seconds + $recursion = get_parameter('recursion', 0); $group_id = (int)get_parameter('group_id', 0); $offset = (int)get_parameter('offset', 0); $hor_offset = (int)get_parameter('hor_offset', 0); $block = $config['block_size']; + if(get_parameter('modulegroup') != null){ $agents_id = (array)get_parameter('id_agents2', -1); + } $selection_a_m = (int)get_parameter('selection_agent_module'); $modules_selected = (array)get_parameter('module', 0); $update_item = (string)get_parameter('edit_item',''); @@ -139,6 +142,8 @@ function mainAgentsModules() { $filter_groups_label = ''.__('Group').''; $filter_groups = html_print_select_groups(false, "AR", true, 'group_id', $group_id, '', '', '', true, false, true, '', false , 'width: auto;'); + $filter_recursion_label = ''.__('Recursion').''; + $filter_recursion = html_print_checkbox('recursion', 1, 0, true); //groups module $filter_module_groups_label = ''.__('Module group').''; $filter_module_groups = html_print_select_from_sql ("SELECT * FROM tmodule_group ORDER BY name", @@ -245,12 +250,12 @@ function mainAgentsModules() { if($config['pure'] != 1){ echo '
'; + . ui_get_url_refresh (array ('offset' => $offset, 'hor_offset' => $offset, 'group_id' => $group_id, 'modulegroup' => $modulegroup)).'">'; echo ''; echo ""; echo ""; - echo ""; + echo ""; echo ""; echo ""; echo ""; @@ -375,9 +380,14 @@ function mainAgentsModules() { } if ($group_id > 0) { - $filter_groups['id_grupo'] = $group_id; + if($recursion){ + $filter_groups['id_grupo'] = array_merge($group_id, + groups_get_id_recursive($group_id, true)); + } + else{ + $filter_groups['id_grupo'] = $group_id; + } } - $agents = agents_get_agents ($filter_groups); $nagents = count($agents); @@ -675,12 +685,14 @@ $ignored_params['refresh']=''; } $("#group_id").change (function () { + jQuery.post ("ajax.php", {"page" : "operation/agentes/ver_agente", "get_agents_group_json" : 1, "id_group" : this.value, "privilege" : "AW", - "keys_prefix" : "_" + "keys_prefix" : "_", + "recursion" : $('#checkbox-recursion').is(':checked') }, function (data, status) { $("#id_agents2").html(''); @@ -699,7 +711,34 @@ $ignored_params['refresh']=''; "json" ); }); - + + $("#checkbox-recursion").change (function () { + jQuery.post ("ajax.php", + {"page" : "operation/agentes/ver_agente", + "get_agents_group_json" : 1, + "id_group" : $("#group_id").val(), + "privilege" : "AW", + "keys_prefix" : "_", + "recursion" : $('#checkbox-recursion').is(':checked') + }, + function (data, status) { + $("#id_agents2").html(''); + $("#module").html(''); + jQuery.each (data, function (id, value) { + // Remove keys_prefix from the index + id = id.substring(1); + + option = $("") + .attr ("value", value["id_agente"]) + .html (value["alias"]); + $("#id_agents").append (option); + $("#id_agents2").append (option); + }); + }, + "json" + ); + }); + $("#modulegroup").change (function () { jQuery.post ("ajax.php", {"page" : "operation/agentes/ver_agente", diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 00df36a2c7..ecedb76531 100755 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -908,6 +908,9 @@ You can of course remove the warnings, that's why we include the source and do n elseif(check_acl ($config['id_user'], 0, "RM")) html_print_select_groups($config['id_user'], "RM", true, 'combo_group', $group, ''); + + echo "   ".__('Recursion').html_print_checkbox('recursion', 1, 0, true); + ?> @@ -1076,7 +1079,6 @@ You can of course remove the warnings, that's why we include the source and do n } } } - // html_debug($agents); html_print_select($agents2, 'id_agents2[]', $agents_select, $script = '', "", 0, false, true, true, '', false, "min-width: 180px"); ?> @@ -1994,7 +1996,38 @@ $(document).ready (function () { "get_agents_group_json" : 1, "id_group" : this.value, "privilege" : "AW", - "keys_prefix" : "_" + "keys_prefix" : "_", + "recursion" : $('#checkbox-recursion').is(':checked') + }, + function (data, status) { + $("#id_agents").html(''); + $("#id_agents2").html(''); + $("#module").html(''); + jQuery.each (data, function (id, value) { + // Remove keys_prefix from the index + id = id.substring(1); + + option = $("") + .attr ("value", value["id_agente"]) + .html (value["alias"]); + $("#id_agents").append (option); + $("#id_agents2").append (option); + }); + }, + "json" + ); + } + ); + + $("#checkbox-recursion").change ( + function () { + jQuery.post ("ajax.php", + {"page" : "operation/agentes/ver_agente", + "get_agents_group_json" : 1, + "id_group" : $("#combo_group").val(), + "privilege" : "AW", + "keys_prefix" : "_", + "recursion" : $('#checkbox-recursion').is(':checked') }, function (data, status) { $("#id_agents").html(''); diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php index 95928a784d..1c2ac8d304 100644 --- a/pandora_console/operation/agentes/ver_agente.php +++ b/pandora_console/operation/agentes/ver_agente.php @@ -47,7 +47,7 @@ if (is_ajax ()) { $id_group = (int) get_parameter('id_group'); if ($get_agents_group_json) { $id_group = (int) get_parameter('id_group'); - $recursion = (int) get_parameter ('recursion', 0); + $recursion = get_parameter ('recursion'); $id_os = get_parameter('id_os', ''); $agent_name = get_parameter('name', ''); $privilege = (string) get_parameter ('privilege', "AR"); @@ -58,7 +58,7 @@ if (is_ajax ()) { if ($id_group > 0) { $groups = array($id_group); - if ($recursion) { + if ($recursion === 'true') { $groups = array_merge($groups, groups_get_id_recursive($id_group, true)); } From 44623f780ebca545cb615386a5a113bfc5b2ca50 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 14 Sep 2017 17:34:00 +0200 Subject: [PATCH 013/311] Fixed ordering and repetition modules --- pandora_console/godmode/massive/massive_delete_modules.php | 2 +- pandora_console/godmode/massive/massive_edit_modules.php | 2 +- pandora_console/operation/agentes/ver_agente.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/massive/massive_delete_modules.php b/pandora_console/godmode/massive/massive_delete_modules.php index 8d3260df3d..fbef6852f1 100755 --- a/pandora_console/godmode/massive/massive_delete_modules.php +++ b/pandora_console/godmode/massive/massive_delete_modules.php @@ -600,7 +600,7 @@ $(document).ready (function () { var params = { "page" : "operation/agentes/ver_agente", "get_agent_modules_json" : 1, - "get_id_and_name" : 1, + "get_distinct_name" : 1, "indexed" : 0, "privilege" : "AW" }; diff --git a/pandora_console/godmode/massive/massive_edit_modules.php b/pandora_console/godmode/massive/massive_edit_modules.php index dfafbb7559..3c775bae93 100755 --- a/pandora_console/godmode/massive/massive_edit_modules.php +++ b/pandora_console/godmode/massive/massive_edit_modules.php @@ -741,7 +741,7 @@ $(document).ready (function () { var params = { "page" : "operation/agentes/ver_agente", "get_agent_modules_json" : 1, - "get_id_and_name" : 1, + "get_distinct_name" : 1, "indexed" : 0 }; diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php index 95928a784d..c0a128ea23 100644 --- a/pandora_console/operation/agentes/ver_agente.php +++ b/pandora_console/operation/agentes/ver_agente.php @@ -97,7 +97,7 @@ if (is_ajax ()) { $filter[] = "(notinit_count = total_count)"; break; } - $filter['order'] = "nombre ASC"; + $filter['order'] = "alias ASC"; // Build fields $fields = array('id_agente', 'alias'); From a3499d907e4053eb22f25693227f3e78c9f4b57b Mon Sep 17 00:00:00 2001 From: fermin831 Date: Mon, 18 Sep 2017 10:24:27 +0200 Subject: [PATCH 014/311] Modified unix agent to get properly os on Darwin --- pandora_agents/unix/pandora_agent | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 888503e250..b842c5bee1 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1562,6 +1562,9 @@ sub guess_os_version ($) { # AIX } elsif ($os eq 'aix') { $os_version = "$2.$1" if (`uname -rv` =~ /\s*(\d)\s+(\d)\s*/); + # Darwin + } elsif ($os eq 'darwin') { + $os_version = `defaults read loginwindow SystemVersionStampAsString`; # Windows } elsif ($os =~ /win/i) { $os_version = `ver`; From dd0401b8154c13de93df47e40acd710990a43619 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Thu, 21 Sep 2017 13:22:40 +0200 Subject: [PATCH 015/311] Moved xml report generation to a function --- .../include/functions_reporting_xml.php | 60 +++++++++++++++++++ .../operation/reporting/reporting_xml.php | 34 +---------- 2 files changed, 62 insertions(+), 32 deletions(-) create mode 100644 pandora_console/include/functions_reporting_xml.php diff --git a/pandora_console/include/functions_reporting_xml.php b/pandora_console/include/functions_reporting_xml.php new file mode 100644 index 0000000000..f71b465f90 --- /dev/null +++ b/pandora_console/include/functions_reporting_xml.php @@ -0,0 +1,60 @@ + 0){ + for($i = 0;$i < count($report['contents']); $i++){ + $aux = explode("-",$report['contents'][$i]['subtitle']); + $report['contents'][$i]['subtitle'] = db_get_value ("alias","tagente","nombre",$report['contents'][$i]['agent_name']) .' -'. $aux[1]; + } + } + + $xml = null; + $xml = array2XML($report, "report", $xml); + $xml = preg_replace("/(<[^>]+>)(<[^>]+>)(<[^>]+>)/", "$1\n$2\n$3", $xml); + $xml = preg_replace("/(<[^>]+>)(<[^>]+>)/", "$1\n$2", $xml); + + // Return if is marked to return + if ($return) return $xml; + + // Download if marked to download + header ('Content-Type: application/xml; charset=UTF-8'); + header ('Content-Disposition: attachment; filename="'.$filename.'.xml"'); + + // Clean the output buffer + ob_clean(); + + echo $xml; +} \ No newline at end of file diff --git a/pandora_console/operation/reporting/reporting_xml.php b/pandora_console/operation/reporting/reporting_xml.php index 42de928c06..aaffa4f18a 100755 --- a/pandora_console/operation/reporting/reporting_xml.php +++ b/pandora_console/operation/reporting/reporting_xml.php @@ -17,6 +17,7 @@ include_once("include/functions_modules.php"); include_once("include/functions_events.php"); include_once ('include/functions_groups.php'); include_once ('include/functions_netflow.php'); +include_once ('include/functions_reporting_xml.php'); enterprise_include_once ('include/functions_metaconsole.php'); @@ -127,38 +128,7 @@ switch ($date_mode) { $report = reporting_make_reporting_data(null, $id_report, $date, $time, $period, 'static'); -//------- Removed the unused fields ------------------------------------ -unset($report['header']); -unset($report['first_page']); -unset($report['footer']); -unset($report['custom_font']); -unset($report['id_template']); -unset($report['id_group_edit']); -unset($report['metaconsole']); -unset($report['private']); -unset($report['custom_logo']); -//---------------------------------------------------------------------- - -//change agent name -if(count($report['contents']) > 0){ - for($i = 0;$i < count($report['contents']); $i++){ - $aux = explode("-",$report['contents'][$i]['subtitle']); - $report['contents'][$i]['subtitle'] = db_get_value ("alias","tagente","nombre",$report['contents'][$i]['agent_name']) .' -'. $aux[1]; - } -} - -$xml = null; -$xml = array2XML($report, "report", $xml); -$xml = preg_replace("/(<[^>]+>)(<[^>]+>)(<[^>]+>)/", "$1\n$2\n$3", $xml); -$xml = preg_replace("/(<[^>]+>)(<[^>]+>)/", "$1\n$2", $xml); - -header ('Content-Type: application/xml; charset=UTF-8'); -header ('Content-Disposition: attachment; filename="'.$filename.'.xml"'); - -// Clean the output buffer -ob_clean(); - -echo $xml; +reporting_xml_get_report($report, $filename); exit; ?> From 69f670d851022406fde1743332c85cbfe7d03724 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Fri, 22 Sep 2017 15:07:13 +0200 Subject: [PATCH 016/311] Add agent icon group marker option in setup visuals for GIS maps - #1121 --- .../godmode/setup/setup_visuals.php | 2 +- .../images/groups_small/applications.bad.png | Bin 504 -> 1533 bytes .../groups_small/applications.bad_old.png | Bin 0 -> 504 bytes .../groups_small/applications.default.png | Bin 497 -> 1557 bytes .../groups_small/applications.default_old.png | Bin 0 -> 497 bytes .../images/groups_small/applications.ok.png | Bin 497 -> 1596 bytes .../groups_small/applications.ok_old.png | Bin 0 -> 497 bytes .../groups_small/applications.warning.png | Bin 503 -> 1527 bytes .../groups_small/applications.warning_old.png | Bin 0 -> 503 bytes .../images/groups_small/computer.bad.png | Bin 729 -> 1230 bytes .../images/groups_small/computer.bad_old.png | Bin 0 -> 729 bytes .../images/groups_small/computer.default.png | Bin 720 -> 1293 bytes .../groups_small/computer.default_old.png | Bin 0 -> 720 bytes .../images/groups_small/computer.ok.png | Bin 726 -> 1291 bytes .../images/groups_small/computer.ok_old.png | Bin 0 -> 726 bytes .../images/groups_small/computer.warning.png | Bin 746 -> 1205 bytes .../groups_small/computer.warning_old.png | Bin 0 -> 746 bytes .../images/groups_small/database_gear.bad.png | Bin 655 -> 1401 bytes .../groups_small/database_gear.bad_old.png | Bin 0 -> 655 bytes .../groups_small/database_gear.default.png | Bin 655 -> 1400 bytes .../database_gear.default_old.png | Bin 0 -> 655 bytes .../images/groups_small/database_gear.ok.png | Bin 677 -> 1496 bytes .../groups_small/database_gear.ok_old.png | Bin 0 -> 677 bytes .../groups_small/database_gear.warning.png | Bin 672 -> 1431 bytes .../database_gear.warning_old.png | Bin 0 -> 672 bytes .../images/groups_small/firewall.bad.png | Bin 702 -> 1319 bytes .../images/groups_small/firewall.bad_old.png | Bin 0 -> 702 bytes .../images/groups_small/firewall.default.png | Bin 676 -> 1349 bytes .../groups_small/firewall.default_old.png | Bin 0 -> 676 bytes .../images/groups_small/firewall.ok.png | Bin 696 -> 1435 bytes .../images/groups_small/firewall.ok_old.png | Bin 0 -> 696 bytes .../images/groups_small/firewall.warning.png | Bin 705 -> 1365 bytes .../groups_small/firewall.warning_old.png | Bin 0 -> 705 bytes .../groups_small/server_database.bad.png | Bin 600 -> 1480 bytes .../groups_small/server_database.bad_old.png | Bin 0 -> 600 bytes .../groups_small/server_database.default.png | Bin 575 -> 1474 bytes .../server_database.default_old.png | Bin 0 -> 575 bytes .../groups_small/server_database.ok.png | Bin 615 -> 1574 bytes .../groups_small/server_database.ok_old.png | Bin 0 -> 615 bytes .../groups_small/server_database.warning.png | Bin 596 -> 1506 bytes .../server_database.warning_old.png | Bin 0 -> 596 bytes .../images/groups_small/transmit.bad.png | Bin 867 -> 1498 bytes .../images/groups_small/transmit.bad_old.png | Bin 0 -> 867 bytes .../images/groups_small/transmit.default.png | Bin 840 -> 1542 bytes .../groups_small/transmit.default_old.png | Bin 0 -> 840 bytes .../images/groups_small/transmit.ok.png | Bin 893 -> 1612 bytes .../images/groups_small/transmit.ok_old.png | Bin 0 -> 893 bytes .../images/groups_small/transmit.warning.png | Bin 856 -> 1562 bytes .../groups_small/transmit.warning_old.png | Bin 0 -> 856 bytes .../images/groups_small/without_group.bad.png | Bin 245 -> 2142 bytes .../groups_small/without_group.bad_old.png | Bin 0 -> 245 bytes .../groups_small/without_group.default.png | Bin 296 -> 2135 bytes .../without_group.default_old.png | Bin 0 -> 296 bytes .../images/groups_small/without_group.ok.png | Bin 248 -> 2176 bytes .../groups_small/without_group.ok_old.png | Bin 0 -> 248 bytes .../groups_small/without_group.warning.png | Bin 246 -> 2142 bytes .../without_group.warning_old.png | Bin 0 -> 246 bytes .../images/groups_small/world.bad.png | Bin 1085 -> 1457 bytes .../images/groups_small/world.bad_old.png | Bin 0 -> 1085 bytes .../images/groups_small/world.default.png | Bin 882 -> 1470 bytes .../images/groups_small/world.default_old.png | Bin 0 -> 882 bytes .../images/groups_small/world.ok.png | Bin 1017 -> 1568 bytes .../images/groups_small/world.ok_old.png | Bin 0 -> 1017 bytes .../images/groups_small/world.warning.png | Bin 891 -> 1508 bytes .../images/groups_small/world.warning_old.png | Bin 0 -> 891 bytes 65 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 pandora_console/images/groups_small/applications.bad_old.png create mode 100644 pandora_console/images/groups_small/applications.default_old.png create mode 100644 pandora_console/images/groups_small/applications.ok_old.png create mode 100644 pandora_console/images/groups_small/applications.warning_old.png create mode 100644 pandora_console/images/groups_small/computer.bad_old.png create mode 100644 pandora_console/images/groups_small/computer.default_old.png create mode 100644 pandora_console/images/groups_small/computer.ok_old.png create mode 100644 pandora_console/images/groups_small/computer.warning_old.png create mode 100644 pandora_console/images/groups_small/database_gear.bad_old.png create mode 100644 pandora_console/images/groups_small/database_gear.default_old.png create mode 100644 pandora_console/images/groups_small/database_gear.ok_old.png create mode 100644 pandora_console/images/groups_small/database_gear.warning_old.png create mode 100644 pandora_console/images/groups_small/firewall.bad_old.png create mode 100644 pandora_console/images/groups_small/firewall.default_old.png create mode 100644 pandora_console/images/groups_small/firewall.ok_old.png create mode 100644 pandora_console/images/groups_small/firewall.warning_old.png create mode 100644 pandora_console/images/groups_small/server_database.bad_old.png create mode 100644 pandora_console/images/groups_small/server_database.default_old.png create mode 100644 pandora_console/images/groups_small/server_database.ok_old.png create mode 100644 pandora_console/images/groups_small/server_database.warning_old.png create mode 100644 pandora_console/images/groups_small/transmit.bad_old.png create mode 100644 pandora_console/images/groups_small/transmit.default_old.png create mode 100644 pandora_console/images/groups_small/transmit.ok_old.png create mode 100644 pandora_console/images/groups_small/transmit.warning_old.png create mode 100644 pandora_console/images/groups_small/without_group.bad_old.png create mode 100644 pandora_console/images/groups_small/without_group.default_old.png create mode 100644 pandora_console/images/groups_small/without_group.ok_old.png create mode 100644 pandora_console/images/groups_small/without_group.warning_old.png create mode 100644 pandora_console/images/groups_small/world.bad_old.png create mode 100644 pandora_console/images/groups_small/world.default_old.png create mode 100644 pandora_console/images/groups_small/world.ok_old.png create mode 100644 pandora_console/images/groups_small/world.warning_old.png diff --git a/pandora_console/godmode/setup/setup_visuals.php b/pandora_console/godmode/setup/setup_visuals.php index a8ff68d74c..c42497acaf 100755 --- a/pandora_console/godmode/setup/setup_visuals.php +++ b/pandora_console/godmode/setup/setup_visuals.php @@ -313,7 +313,7 @@ foreach ($listIcons as $index => $value) $table_gis->data[$row][0] = __('Default icon in GIS') . ui_print_help_tip(__('Agent icon for GIS Maps. If set to "none", group icon will be used'), true); $table_gis->data[$row][1] = html_print_select($arraySelectIcon, - "gis_default_icon", $config["gis_default_icon"], "", __('None'), + "gis_default_icon", $config["gis_default_icon"], "", __('Agent icon group'), '', true); $table_gis->data[$row][1] .= " " . html_print_button(__("View"), 'gis_icon_preview', false, '', '', true); diff --git a/pandora_console/images/groups_small/applications.bad.png b/pandora_console/images/groups_small/applications.bad.png index 122242169387917cc368f22578a18769eda9986b..f3f600e0763e969d1a25913e9757a75c1d993b81 100644 GIT binary patch literal 1533 zcmV`%{r|nJtY87> z-@g-?Kn#$;^gmA-v_k3_`dC=zV^i4(H>b_f@jpls#0Cf;2AmfCadCmGVA->WkqO4R z*x89+C0rI+0w91Gku3n(zLbT9L4uKyVcOrn3~T@Wn{e>p!9o;QfOLZ}G63%$dOsn%89R34?2+jwF3eOo;{o4-+EyN zb8~ZK;eIA`M;@IffG#wV5nKGhfIrYpTVZa3I`RUFiU0nA6@b`qML=H|f_wu4Ux2vo z?_WW@ArA5pvKT-BG2#nppyC8j$e;-?0NR>}H)fDy2uPjZ2n8Hwom~v)&YfdO*4T`q1{xF!*t~fj=uHEd>#RO~!fJ^T zFvU;d;=-Nkkqj&VrB7ISg$r~63yYoq{(S%%BuFr6fYOmW(1m57FhK%$|Nm!5`|}5D zwr3=it6_$M0@@#vq78utUBIRmAb_Zf@Oe`Jn)(Bfgg*drAkbw8h&Buqt3b*CC|DyJxPALJ&_CD{0SlH)3kMw!H#1al3xV0wS6^aK-1U(`tk#WzfsYTX zVJH#s1x=EF+Y^Qd%q(F1(MyKm?pGze5rb^l1W-+n402~`FbF+Yd}b4t)gD83+KA1UP9RmmVl#29$6FrEXBRAq1i! zIY1F-1VDjc8bl#Z0Igg>iS+?q!=QQ15mp;xtKxv*04&uLav1}(h)F~@Fbz^-fa*#| zlFBpW8XXkFAcKHmiBjg1Q*6VU2zU(w0e}Ftn6XO&Q5?sArlx^`5Try%N1WAS&{zbv zG`SQwwIsN^Hibh_L;V45B_%|IIyYoPdk75$f?HAq4QHll^nUN&>G`@l&%5h4_(0|S z^4`zi_w#)&C&o2H3ZAZN`~f*)0R|$nWXY(7AajSf?_sNQe{~d@(z6ds!ibnSSqdm7 zz)(d!Mu!y&%*kOvc?(^4gSVqmnhenfJuj%m308{p$|4cBHL9D_M#UXEWf95A%8}hW zmj^NKn!xX#$Do<1s7nn-#sQ3Eszs+-g=Qu;n>{wfLY554h!P zNF*SgPMZ=&owri?^FFr6JvmwuZsw3x)zi^slp6JbRZPI5S?zp^Q#YL zB8w0R1Spb!3(Mg8lECv)9iV9)lq##I?U25s;k^q7C5f)F<2+r-(>y|rRb zoDJ#TgxIBv-nGjxfhc50zCAHz+>Y>=kwA%M0@g>GUifdqv;?jZf%SfD_+UF^>0-e# jWMIq|SKX-9>^$!mouG!QHeJrk00000NkvXXu0mjfN?WAj literal 504 zcmVPx#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~DtH3W+?T>t<88FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0cA-L@maEl!fu2gm#rdT~P!&i3 z0U$ZPe9(h(f3%t08UQoR7sh&k%+wD=UQ|}P>cG#sKt4D4fz-_GYOerbX1j5i%>pR5 z+uY3pke#-p^BO-%)2?{^k(erd6`85p^u~jbs=EB#0->t9*#bcg#fdk_lwE&BBvK&w z@XJzuib$&J{^JyYtbPa*3 z&aTcy{k{$~A`Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~DtH3W+?T>t<88FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0cA-L@maEl!fu2gm#rdT~P!&i3 z0U$ZPe9(h(f3%t08UQoR7sh&k%+wD=UQ|}P>cG#sKt4D4fz-_GYOerbX1j5i%>pR5 z+uY3pke#-p^BO-%)2?{^k(erd6`85p^u~jbs=EB#0->t9*#bcg#fdk_lwE&BBvK&w z@XJzuib$&J{^JyYtbPa*3 z&aTcy{k{$~A``%{r`xF2(ZA4 z6)O^%Kn#$;pOups`WdwuoSdBIGlK-beEHI#7m>_h$?%$C^XAQsaB~t868?jX0kHuB zhykZX)2B~|tH{jEWMqPI%*@Q-D&c~sPMyLu2iXXK0AfUz0NL*A>&w8+&CPKB{CS3( zH*Zcjc<^8$hHel>1|YtxtLuLhyI~-@LYLv(xpNHaGY^CLtgNha${s#sToDU2` z2B6i9I0FM)NC5;8QHT-A1OuQ?&x3r7ZY2v$QE+hZd6f5cO#Mm z&^H&56+C_V6s!Oxih#Z_1bG_-e*gZ>aQN_HLA)Uj3NvIefB<5|7t%n*2|#K-n(zXk zt%-PJ204a+)OlbeFd#<)HqZb1_3Hx2J1{X8G=uKz=;$Z_F_=Gp{(P(kNk~XA1O)|w zBMuhJ*wQrIAYy@$krBud^RZ?SbdZ{w%HYxThM|Y=4VXVQ>M4pmG$<4>ya@ysu3Wid zfb2R@l4D>HVb}rXXD^cmdK01HXpkVmqyb7t zii(QpnSkNLhYt)pcI?2K?HLJ$8O%^nK(Af979?Z{H0T00wEzKFtzw*pfgpH_(@|gx zSPy zf?RXENAITwxS(yKzHEksbEtyt5Cnnte4r`XEtW^`;^OS9S$Ji6zwFJWM223?arn3q zxixIo=k z>Nzakg`y~O&+`iMgDLleG)<8!c;%(;o@EM!2wylMh^neW&maA{Ici1($vkxU6`&UD zcWD?1qn}M%K@@6nYZu*A6guhH;#8W&NpMpC0UaE4b8!>u2&7l!ycUdeEQ8}?HeQA-;Wi!6YxW^5YN3mGsZdiC#b;e*e@KGofd?z&wgDU5T zble-F=bT0x3vJpz86$mpi~BG5htAp_rL9LAZZ>(-;1&3-X_~wtwEcw&SfF@V+NSpP zHJMLWRDT_%Rxd-h2fNhPzSy@TwAoyv*Y^w=>^^MxE#-~fKdR#S?SeWVEgI~7bLW6j zo0z8b%&*K`X!CTJnpDo=`j4|9z*cRGC;Op4jQMs+ollbiA}Y4N`IwrRqV()9uuE-@ z?o(4rM=ZDv615YQE@1kPyy(KRtk6q?dGh)EpG>i4-Ps4Sd<7<0xv7W~!V&P2akt`8 zBnggS#gEs525U*(9RS*{Mr;umq`C0NBDs3;UV*000000NkvXX Hu0mjf>bKNC literal 497 zcmVPx#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~Ds90_G}?$C zAi>7g!b-47qgV*31pfsaI}xIVm4({p@30aqgcL!sNMU0wHbF=gn-I8rGZy(0h1?dY z#HnV7-5+n>?5;E#4NM~(rWAh|kl9o1aG(x0staVaAq+%S)#gY8vDbsoy-(VUmqUK@C#`&8R1fFA$L2J}US7 z?JczWB(pG39C?|Wm9a(R+cfqm7v!bz+X_{qOnx-VpOhml*Ns=T< n;=K=Q%{k|si{tqJtL?`Z?c2eahm#dM00000NkvXXu0mjf^BBx2 diff --git a/pandora_console/images/groups_small/applications.default_old.png b/pandora_console/images/groups_small/applications.default_old.png new file mode 100644 index 0000000000000000000000000000000000000000..c15fff887f3185f11891d9259254568ab3124197 GIT binary patch literal 497 zcmVPx#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~Ds90_G}?$C zAi>7g!b-47qgV*31pfsaI}xIVm4({p@30aqgcL!sNMU0wHbF=gn-I8rGZy(0h1?dY z#HnV7-5+n>?5;E#4NM~(rWAh|kl9o1aG(x0staVaAq+%S)#gY8vDbsoy-(VUmqUK@C#`&8R1fFA$L2J}US7 z?JczWB(pG39C?|Wm9a(R+cfqm7v!bz+X_{qOnx-VpOhml*Ns=T< n;=K=Q%{k|si{tqJtL?`Z?c2eahm#dM00000NkvXXu0mjf^BBx2 literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/applications.ok.png b/pandora_console/images/groups_small/applications.ok.png index 440fe791d3eb3bf214ae0708341c4d91daf5ecdd..b4fc8507627a2c1ad0013efd552638758a99ef10 100644 GIT binary patch literal 1596 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 diff --git a/pandora_console/images/groups_small/applications.ok_old.png b/pandora_console/images/groups_small/applications.ok_old.png new file mode 100644 index 0000000000000000000000000000000000000000..440fe791d3eb3bf214ae0708341c4d91daf5ecdd GIT binary patch literal 497 zcmVPx#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~Dt5}|>IHUIzs8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0bWT&K~y-)<&?cjLqQOQ&)mI<7%MRf z5^N-$g_U3<0mVW{rT7Xqb|ORz8!gm6&taprs9=@C#?B}1)8H@ahO70e^ zbgJ29_T$W%-Ic@h4Gbd!3@QFFDEzighuLg07kjMyab1hbgFxA2ZgqJrUce<{Kmg2a zHh($*@^n#%Zw-Jd)0vq8AXWN-%x;UD9d)qYzCd~fejuuM)RGp$>yFl0dvcO6&L|B5ehNu3zf> z6qy;xlb1OFd(-zf#Y+H7+bga*34l{oHTCj{)Gr=sH;MYAp!z9-M%0~&I|xWFZY{O@ zZH`ykBr`uy!i6$6Dt(Lkx2f+_Ea;(mg%W%oZ4BsDA8YSrr9~}eq-?3G!3-kKNn*r> nN$0}At2GgEq5N9?Kfl^ffXc>!cZF$900000NkvXXu0mjflV!$P literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/applications.warning.png b/pandora_console/images/groups_small/applications.warning.png index b7087743943ac2a9e16fd2e4592b7c4cd7dd4f29..58f6f21c75b61988c11633c8e4c145183ad7c3c6 100644 GIT binary patch literal 1527 zcmVijeKz0IH z5X716p!r{I#-abGmka&Jrm_KUL~F4oNC2z~Ab_wUMwpo}0XDP0j7%`jW#&_Gm2g4b zzh;=`AR7S?Kp38QyptR3w23vUAlLL`)eXYP0L1t9u>Ox?Hw*-27%;3@v4TOnaRHdm z&G8r0>bxWac&I=_26sTf+=?y+5J03Mpa}+H0T%eJe0Pu?#a$Q*VbM8z_H1}?q(^JQ z6dIre2T&2izxBcl=H}+e!u=Rwc66Emy3j<77(m9b&_{OHd1M6#=8OHun{q)u1+oS3 zhB(Ma$YKBi#7H23LHS@ln(%^y2M;FVOyB4+1ffi=}!1nV-43d(P z7>1p{eGqO~rr$k~Gvx|e3 zph1GfGZdPNF%l{=00oUY8w%>H8o z85tQki*sa`6+kjA0%T@pVz}z|?b|qA%z~O}QOmE6hnpEHxP`#%>8md>DDL{mAXe*! z(=e0>fJQkS@Nav<@PL^Gj6ZtGFx>sBgg0W44Vy516RP6enHmg&j~T%DZp$VH%~u=n z8U}X?Fh&Z2(NIttehV&nY92pI_@P%X(6qJySFybxn1&pBGA92* zFas5Gpwtb@HiQ7kARti0839lrn9*;D*C0?O0tAIX%OBu144T&*p&GDOaX@eYBh?eC zfRUSo~*(VOA~=$90+Q3 ztUC-ZyDxxJGJ17HO0yBvv;n110XLIZ49LX^xd5%M+yHc3AgQ%EIH7_i4Af#iwO|Uvi@z)kU)dNL)Wm)=+Zj%32)MsG) z@r8lq`CSG>RqW<~+G;?DftdcFdKOfec;)F1!=002ovPDHLkV1miexsw0@ literal 503 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 literal 729 zcmV;~0w(>5P)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~D~D;9U(*#H0l8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0!B$hK~zY`?Um0jD&~96 z5Azo}Q(2)P4+y0HDhOJ)2+7R$VYQJ03rRu=a>kLGnKv`cyf^R1X)&V^ zGC3o-C_0;aIhVude9t-eUiD>hQ8+`>oU#4=0JGh}ek#T1sVUIya}W`(?d*`wX1fP$ zPERxc;2r}57QP=H4>T2l-(YoRjSIOPTBJJwN|8v!dAPJpp9M;RG~EDr6~&Xs3rGI0 z6|^V>D#T3rC=^P8Qi^i5&dLk zfa5rb2ti~}lU{-#!fp5%{Ym=!A#y`Rgi^71IzZWR0EO}u)m{H+s?}kjD_B-9MaLoE z*UNa_?Os8{Yw+UPV%zL|-=|n8uzn@OoxMCGmFn>>wtI^ynh!X8Aof4HZ)o_S3?_UtZ+l!{e}A%q1KVQgVul+t zv&3ROn5Ie0jA0liS{oojBoXy`om#zyp*3&U-!PcZch=+Ts#gUOpK=qqTg#eXxsR{4=65Qn#A=y z#zx0@H#W@G{rt&*o?4x?<>#owN2dc55t3e`GX?V>Hvj)<{}|vGYMJ_W>#m%B00000 LNkvXXu0mjf5=}hA diff --git a/pandora_console/images/groups_small/computer.bad_old.png b/pandora_console/images/groups_small/computer.bad_old.png new file mode 100644 index 0000000000000000000000000000000000000000..1807bd726f7a19543a8eec0afec0e1b5056dccba GIT binary patch literal 729 zcmV;~0w(>5P)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~D~D;9U(*#H0l8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0!B$hK~zY`?Um0jD&~96 z5Azo}Q(2)P4+y0HDhOJ)2+7R$VYQJ03rRu=a>kLGnKv`cyf^R1X)&V^ zGC3o-C_0;aIhVude9t-eUiD>hQ8+`>oU#4=0JGh}ek#T1sVUIya}W`(?d*`wX1fP$ zPERxc;2r}57QP=H4>T2l-(YoRjSIOPTBJJwN|8v!dAPJpp9M;RG~EDr6~&Xs3rGI0 z6|^V>D#T3rC=^P8Qi^i5&dLk zfa5rb2ti~}lU{-#!fp5%{Ym=!A#y`Rgi^71IzZWR0EO}u)m{H+s?}kjD_B-9MaLoE z*UNa_?Os8{Yw+UPV%zL|-=|n8uzn@OoxMCGmFn>>wtI^ynh!X8Aof4HZ)o_S3?_UtZ+l!{e}A%q1KVQgVul+t zv&3ROn5Ie0jA0liS{oojBoXy`om#zyp*3&U-!PcZch=+Ts#gUOpK=qqTg#eXxsR{4=65Qn#A=y z#zx0@H#W@G{rt&*o?4x?<>#owN2dc55t3e`GX?V>Hvj)<{}|vGYMJ_W>#m%B00000 LNkvXXu0mjf5=}hA literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/computer.default.png b/pandora_console/images/groups_small/computer.default.png index e921e34059b34d83644ac35407c936e0ab93285c..c18cd4ada5a7e683346e6c6040129621c1e10c54 100644 GIT binary patch literal 1293 zcmV+o1@iidP)`%{r`xF2(ZA4 z6)O^1Kn#$;{Q2|2g5KWV^RcOHgqxF)knkTQ31R~T5Ccw&rca*^SCN^S$;brbz$^j* zxL{&pBBnXWMgRm5BeDd@c3)p#25xR{hV$poGu*s+bHc%c2Ma-REa9hldADg8(ZlE2h<SsX@ug{-9Gw|~A zGRVov!GtF=Vv9c*ShsE+14`%veRBa>!PBQt!3t242hbOWAa8@f@87=}4j(=&h&RMR zVTLRQ5I~IhyaiO807@um!V7@5CgP15A znxSUEb?wrUPtneM^y{9Fe&)(_g!*@CmGs@y$}TUH5fKCypfu0(w0@;&3gzRJ6X|_v zoF1HW7KWjw9?q*hzMWS7a+jlS91{IdZa(U&60^(+sZUHMI7NGRj*=gdY~-J8|6Wn=lM=eEBHP2 z3R(GWdTwnig$S=IA&C0EzsvCWlQ|l;2wHfU@D!jJv$;VShM_P>4A6UfVH21Du>l*f z0vpj=kBAKzfgw5o`69QnOp}zP6_!G!9^er>?)&s)00000NkvXXu0mjf DgmFLi literal 720 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 TwRjUn00000NkvXXu0mjf%!BYC literal 746 zcmVPx#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~D~8!)c#bpQYW8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0#`{yK~zY`?UhSwQ&AAdf9IT=rZhJt zO)HX^hpix5Dkx~XQPE01fKqTL78mMQ68r*!BE@1iE<`B>3q{-%tyV}{n?jrBVUnBs z7#FbxAH_7#h2m@m&SCh?ocYfjRrq{KI7HJNvi$;Rm+q`&rirm!|l8Nok0l8~=?%%shAc6#f zh}zS>h@g}J!p$j*(NWEZPbWzx7CHw^j5|z>!}5E>>xIiq-@e0OJWjb%W_EUlkar* zoIf}B=L$A928j<1b7t%;p->N&Wf8JM7-ONe0TBWTXfzts8+DA<%+J4KD4y@E$@#Su z+2cdh>rK|btPqX#)0U2E4_T!`Hj}~keb&|sq|;gYV*@lBUpw2T#mxkPx#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~D~8!)c#bpQYW8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0#`{yK~zY`?UhSwQ&AAdf9IT=rZhJt zO)HX^hpix5Dkx~XQPE01fKqTL78mMQ68r*!BE@1iE<`B>3q{-%tyV}{n?jrBVUnBs z7#FbxAH_7#h2m@m&SCh?ocYfjRrq{KI7HJNvi$;Rm+q`&rirm!|l8Nok0l8~=?%%shAc6#f zh}zS>h@g}J!p$j*(NWEZPbWzx7CHw^j5|z>!}5E>>xIiq-@e0OJWjb%W_EUlkar* zoIf}B=L$A928j<1b7t%;p->N&Wf8JM7-ONe0TBWTXfzts8+DA<%+J4KD4y@E$@#Su z+2cdh>rK|btPqX#)0U2E4_T!`Hj}~keb&|sq|;gYV*@lBUpw2T#mxkGP)`%{r|nJtY87> z-@g;Vf`43G{`>v<#qjChKZc3y>z0w91GktIO3FJ)n2kYHqFnD+NC!`grUCLBC?un{0@e4r!1LBWDA%qIN!!EhVsGGqX9Wil*500A^86tKDM!XjWi!vMNL*gzLh z4bYp8xFVncls@-jD@M=^+4=9^2cSWM1d|3R9k~O;uM91W?gGn(G@w_pWqU?K-hdej z3TS^wiZ%oqbOD=MfB>vkyG{Z@6g7qqz)vt1l;|H|EVRT>QrS?51@IvPt(A$Di61}* zEfrYX(5V#^1BDHo!`{I=H_WUWZ+6=Z6%XVv``v1F zP;+i;s2n_hMu@UFDZ@#48G_+r_fqxe4N9PN-jyPF-iO3|iT8JRiKW={!+&aU zVkD(?X)D;K_Ai1wVXI65hGT=grv|gdL)`H{>g0+o^*1m!G8bTU{ z)X5u&LYg$bLP|@8Jb?4<&fP7O{ky%rX%6mgkMCw?=li}rDlx8EQYdkICks@B0saUug+ZDTgY z96TEX7K}eC<$}0$(Pfb+Wh{Kau$?dPC$6lW(`HyIHLB?Ocf@a;(fTd8-1FY19U-47 zvRIqLA)8+);sc5bjSGnWm2X^p(FftqQZjZ;KX)l+ATssbuB{|}B@b9>D*6N~0^KsU z70;n0D1tj*X;XtNskWvZuwCokB+h;JkwZ^{hP)>sebq&C>=FYAAh+i9B#F3-=&=yM zJ$nM~BPSOQ2FwKzGw-Lh4ZobBtb>JOl7Thb%sNrq_4(dE5gk$;H^Pk<00000NkvXX Hu0mjfL84_g literal 655 zcmV;A0&x9_P)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~E15_?27Qvd(}8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0sKisK~zY`?UhYy6Hyd~pK~*lZ<|kA zP*jAVqOLNy&_#=@iYtlu7yJV*yXvoSFSr)nSfL^+3VtBy!Wv2!_A?kwG9k%KCNpzg zw78HMVnP>+XM65F&pqemy+^8*isleQamexa1B~A#*25&rUWpbaKEl3Ga*)-4AZT(7 zSc-0NL3PFlEPEwhg}D*$k^_v;Aj)m;Ec2?#Qgmay5sfZB9QZuU|Ct7rn^(s!KkBS8 z>f-eqiv&S{QVOLM#-N3W;G3E0Mb=u=?+@tPUn#_TwCpym&ns9~nUCM{h>@ULSAb&v z^7+X+5D{jRE(>SU*jMPMfc)RmrCHGwI)1i_yJNb!L4&Q`Ro7y002ovPDHLkV1m3F8eRYZ diff --git a/pandora_console/images/groups_small/database_gear.bad_old.png b/pandora_console/images/groups_small/database_gear.bad_old.png new file mode 100644 index 0000000000000000000000000000000000000000..dba81d510200c2004b2912dfd5cafb693c3ebff0 GIT binary patch literal 655 zcmV;A0&x9_P)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~E15_?27Qvd(}8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0sKisK~zY`?UhYy6Hyd~pK~*lZ<|kA zP*jAVqOLNy&_#=@iYtlu7yJV*yXvoSFSr)nSfL^+3VtBy!Wv2!_A?kwG9k%KCNpzg zw78HMVnP>+XM65F&pqemy+^8*isleQamexa1B~A#*25&rUWpbaKEl3Ga*)-4AZT(7 zSc-0NL3PFlEPEwhg}D*$k^_v;Aj)m;Ec2?#Qgmay5sfZB9QZuU|Ct7rn^(s!KkBS8 z>f-eqiv&S{QVOLM#-N3W;G3E0Mb=u=?+@tPUn#_TwCpym&ns9~nUCM{h>@ULSAb&v z^7+X+5D{jRE(>SU*jMPMfc)RmrCHGwI)1i_yJNb!L4&Q`Ro7y002ovPDHLkV1m3F8eRYZ literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/database_gear.default.png b/pandora_console/images/groups_small/database_gear.default.png index 8c26e6f6b355fc74c2eefd05e792d3ad59c00788..62d3023ed5b2c17669c526388252aafce5f8259e 100644 GIT binary patch literal 1400 zcmV-;1&8{HP)`%{r`xF2(ZA4 z6)O^1Kn#$;{Q2|2g5KWV^RcOHgqxF)knkTQ31R~T5Ccw&rca*^SCN^S$;brbz$^j* zxL{&pBBnXWMgRm5BeDd@c3)p#25xR{hV$poGu*s+bHc%c2Ma-REaGaNpASP*ZBgTf413?P6Q z@p%iVI02MU(1aHNZB4`*GsrOnq|O5)fdM%ZuzCL1uU{8H-ocfy@9XI3C;%~-|LD;p zhO1Yvq8K76Dal}9V1P9RG9xQgP*9kFoK!(^1#%rbJ39j}FE1Di3kx&w^Yf#q0m>^p zeE4u93%)S>`}Z%ymoHx!ol*{s*8zf&`NWC><#(Dl(Xxo1=(-`0#;Y$BrFXvpplBECe&u z$jFFc?b@{$DV*hC10n9J<4IkVqN%Bm=(j?lL=j|N2==)1K6Skh7%qOp#rFO-4lTa1x{z zhM`igvMix|Tyi4)+G?k7&N++Y*qBb+wj=41@NPkL-Xa2A*JVkP;A=16Uv|J=CW4l_ zu2X&hsW^_qY}+1(6Ld+@os`Jv<`EK*QP=gTe0iby1t#x5>LPnV!DXars%*9_iv>Yo zO#eaCv@^0SyV-z#l`Y6f2CtS0Q6I9F`5Lu~qR1GT{5DTjRoyf*UVvCl(~Nc8B*RgG zTtInJJF+{V zgloV;4(Nb@^!BZW6&kTDuy`blx4WjjF0nx{WRcy$I+q!-9hlDp}jn7HkA<@Vsn}6ZVAi z%7+nm-RkDHP{|N(rI#u;$e^GbS^L!4`&cMuD+(u@W8~>v5(<`H`wv^4mo=`C$*Kg~ zqO(+%&Ij%@BhKcaJc^>QG%T#ToH1a7k37%44@FpA*Vd{Ccz%2dioNf9`@L;j%ly88 z)w-^;+#vBSU3bp3*dR_%X&X4E7qwt|Upk0{D;7 z57!7|iu?mte8taFHBA$hF_=Mm8y0n2+b)3q`@7l&nKHw=+XvddRySBZRK$c3fi0Qo zD89#%AcCKzzP2WSQOZMtvFj0S;?i`RJ@%w*$a@kJOBe3gB_xo32JDKUpm86Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~E1Hb+O%f&c&j8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0sKisK~zY`?UlQ36G0S)zZviPy78Sv z3M3K|!cpkF0x1-vLPRt~AYOq6N?s(dfS^JIL4ylZV1y76AVCo)P(?ifyF;aoU+V-<nz2WWp<*eW$yc~YcdIe4C;pHKpb8Gi2G z$dH+d_RS;uiM+B}?-0@m8Y;u6Ljicc-xOsc&*vSX&)dn40zI6@H z^N>;^r9^XT2qAFw*!UtVrRa1VI`uNdGw~rek(GX4}=f|gF5ZDP2K8}OoZ4uC{u5CNyH6G zRSVbk#xt7c)Y<#^j8r_t-a&;I?~lm6+oe)#aQ1Y9NcklJpF280DTQffY1=lDP=Htn z0@6jGXf&FbW_EOu0X%=4Z=G4@h0fGeoa+ldlf_um zmn!27K?7#5-sey$Vlsf|^@s|1{xm-j(0ADVupHj5mwA}q!mmplw}(={KV#4}Ni?jp pba9%6`BO}U_2U8l|7iaf;3s#$!1%CA6662?002ovPDHLkV1htdAPxWk diff --git a/pandora_console/images/groups_small/database_gear.default_old.png b/pandora_console/images/groups_small/database_gear.default_old.png new file mode 100644 index 0000000000000000000000000000000000000000..8c26e6f6b355fc74c2eefd05e792d3ad59c00788 GIT binary patch literal 655 zcmV;A0&x9_P)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~E1Hb+O%f&c&j8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0sKisK~zY`?UlQ36G0S)zZviPy78Sv z3M3K|!cpkF0x1-vLPRt~AYOq6N?s(dfS^JIL4ylZV1y76AVCo)P(?ifyF;aoU+V-<nz2WWp<*eW$yc~YcdIe4C;pHKpb8Gi2G z$dH+d_RS;uiM+B}?-0@m8Y;u6Ljicc-xOsc&*vSX&)dn40zI6@H z^N>;^r9^XT2qAFw*!UtVrRa1VI`uNdGw~rek(GX4}=f|gF5ZDP2K8}OoZ4uC{u5CNyH6G zRSVbk#xt7c)Y<#^j8r_t-a&;I?~lm6+oe)#aQ1Y9NcklJpF280DTQffY1=lDP=Htn z0@6jGXf&FbW_EOu0X%=4Z=G4@h0fGeoa+ldlf_um zmn!27K?7#5-sey$Vlsf|^@s|1{xm-j(0ADVupHj5mwA}q!mmplw}(={KV#4}Ni?jp pba9%6`BO}U_2U8l|7iaf;3s#$!1%CA6662?002ovPDHLkV1htdAPxWk literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/database_gear.ok.png b/pandora_console/images/groups_small/database_gear.ok.png index 50641bb9b8b06f558571ed91436c329875a29b33..fe084de69702dd996b6e535595a2851e31af0307 100644 GIT binary patch literal 1496 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 literal 672 zcmV;R0$=@!P)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~E23MXkh!T27*`uhp|e`+kPM46hgD18gydJ3%p z}&$01RM;z&7^3+U*=L>sx@J`K{Oo8c}^SzB|XW&1SJ)PUPGY_s@ zyVx^)x3m6k7cXDEfaiHArBF)YZ0u-lDPV}chL>L}wFnPqJQZqj{&FB9ghB?5hE1j3 zB$)`ax>2OE-6Rn=DU|BCt~XfF{H+S>a}Pn&?@%Zgmvaii08G53Oss{>%K%fExYozLGH~ccV;ID z1zegfA8q~nD3oXdhDY3Na{cT_&K=JaH(R|C{QuGZErRb#C&UqZw(8md0000Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~E23MXkh!T27*`uhp|e`+kPM46hgD18gydJ3%p z}&$01RM;z&7^3+U*=L>sx@J`K{Oo8c}^SzB|XW&1SJ)PUPGY_s@ zyVx^)x3m6k7cXDEfaiHArBF)YZ0u-lDPV}chL>L}wFnPqJQZqj{&FB9ghB?5hE1j3 zB$)`ax>2OE-6Rn=DU|BCt~XfF{H+S>a}Pn&?@%Zgmvaii08G53Oss{>%K%fExYozLGH~ccV;ID z1zegfA8q~nD3oXdhDY3Na{cT_&K=JaH(R|C{QuGZErRb#C&UqZw(8md0000(RCwBAV88+xL4>`%{r|nJtY87> z-@g;Vf`43G{#$+e1Qwjm%gew5m1Q`_#|Kl{2sfwA(eXdX7!VsEfEaLE1TqsQz_Mo# zBNL1Rvj_y>f-s9v0J0GP0mO(b0kVB53k!n;BO}AKzkeCl{`)uK;K751C<yhA$5ui$I%sANduIQ+<~qsV@7d2!(Cw5r9oW7NHA&OGBgWls6Qk{8v+fwfK4qx09LCV ziGUyqRwT-dI66{G zSTaPrJR+j?UUSyZ?F97lhy>h}=H&V^H9-~CrmylN`pLT;Bk@IQKL&k+uW^P9Sj<#| zc2$HNr;ce}AIhGgO~6PP6>VUBzlW^BPj*#=5?Qxk4s8KqI=zmJnBQ)Ro-s8XapjSp;>6vzPR+vP{Wk&OV zk!^WJ2oe!b0h+OP)P{i|8bc1C&bW)t;YO|kZbE7|_6d9g<7=dhA+>aakRpAKpw1~% z=m4H4%~;E@yIQSQkSQb(LVnDQ-)9#o=$b7>rXJUNKuILP1L91#qX`7Gwp8z7RT~8q zGj+*F6fgo)(5(a*{7b=l&m(*i0A9MVAdjHB8!bm;mJHSgnwQypLQE;GtO(reST%1K z6&-rxh?KG})V=qPh|#rNckj`&%q^%7i$?~7gVDA6371~`k=@_f(sx$I_+gosoyE&| zD)}HVct%_>I-7A90n{-^G)y~Qk#J4^SdVWSErpvWcmk6hT^o#Le^?JJxPTHh1|R_? z&wQGQGQ8T$AYK25asm61{OBv)6^u*9sk`Ya<2SxSfE^@zG&6Puo`Jay5_Jxx3z+_L zF1kRcPQ7o-wR{B=tPT}ZiXB0_GG-Kykt8^Ry^GgEiy~>e9$biB)npN8(*2B)CnZD9 zlaQ(I;(qKh1Q0-W-RVh?a3}F&K7b8p0^TF57S0CD1`tZ|+sB4K?oiahLNX3u&sG>G dYW0-w-2mqyOa@LI8_)m%002ovPDHLkV1k|KLfrrW literal 702 zcmV;v0zv(WP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~GfI>MqFSpWb48FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0xL;GK~zY`?Ug-GB2g5EpUbfK!kUQd z$3iS*(PT-sGBlWI%oZjVb`*4W`n&iC78Vx9MiVTJiH#o{qprHJEM&NgGBdyn6LRfv-zQ}lv>zUj$s{5Y;rG!Ia%7}ONTt&~oLXHSkU_Odd~JZwe8NmQ&Zax_`Jjo6u3J%0pNCT54YJwCX+bV*ItbsC*Tw4iQ^zrslfst zmzHqqb!05&InB)QNWwcXpV_WDrWBG8x{Dj(TI7NTB^8==+)qt+B4I2(?-Wtr1!iwrzyg zgjy|HK1QX2^!=Z?;r5`}#I-EimWA7F2DtX~j&$K2PN~5H)yqo&%-dTm|K6#)lmVY^ kPRz~qf9(GMGXJ{3AIca5c>2;h8UO$Q07*qoM6N<$f*%w`y8r+H diff --git a/pandora_console/images/groups_small/firewall.bad_old.png b/pandora_console/images/groups_small/firewall.bad_old.png new file mode 100644 index 0000000000000000000000000000000000000000..d138d129321f410f90b0fe5ee97dd77ebb902da5 GIT binary patch literal 702 zcmV;v0zv(WP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~GfI>MqFSpWb48FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0xL;GK~zY`?Ug-GB2g5EpUbfK!kUQd z$3iS*(PT-sGBlWI%oZjVb`*4W`n&iC78Vx9MiVTJiH#o{qprHJEM&NgGBdyn6LRfv-zQ}lv>zUj$s{5Y;rG!Ia%7}ONTt&~oLXHSkU_Odd~JZwe8NmQ&Zax_`Jjo6u3J%0pNCT54YJwCX+bV*ItbsC*Tw4iQ^zrslfst zmzHqqb!05&InB)QNWwcXpV_WDrWBG8x{Dj(TI7NTB^8==+)qt+B4I2(?-Wtr1!iwrzyg zgjy|HK1QX2^!=Z?;r5`}#I-EimWA7F2DtX~j&$K2PN~5H)yqo&%-dTm|K6#)lmVY^ kPRz~qf9(GMGXJ{3AIca5c>2;h8UO$Q07*qoM6N<$f*%w`y8r+H literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/firewall.default.png b/pandora_console/images/groups_small/firewall.default.png index 2c35c40139e93d1d83e473c50d594749c86d613c..f5401edbe608c39f0e207048c15a0a86c29590f7 100644 GIT binary patch literal 1349 zcmV-L1-kl)P)`%{r`xF2(ZA4 z6)O^1Kn#$;{Q2|2g5KWV^RcOHgqxF)knkTQ31R~T5Ccw&rca*^SCN^S$;brbz$^j* zxL{&pBBnXWMgRm5BeDd@c3)p#25xR{hV$poGu*s+bHc%c2MbXY!gPb|laP>Lkd%~U zFfcG+ShsE+!|vU?5e~uySXo&ytqu(h{qN-D1m^=oh5=|bBTiGWg%m&l5rr6$OfUfY z^gPJN=vK186a@zdpNBaZ7NtP&AEb~4<_?eoF@OXn zGGdEA7{Ca9pl>c9D|q_!DOdqY@&Nk65aewT`2G7g!{Nh+1@VSBD9n(>00M{+Uq}NL zCx8+Pn(zXkt%-PJ204a60RfBz2INS<=J{X0eq8{02Uo(rucM=*0K`P66RgPr3Q!EX zZ~+m}JUl!MU%q?+XABS*@(LF?dGaK~{rmSn01Xl( zm^47?NKsLd!Q9*&Mf}5u4-7kY?7*7s83~0I%urB3uU)$qoXLO&UBIRmAONdXjN>2- z1W}R)z!OeF)Yo2@R8S^ANnR43aDSknBY6S3f(L{OiH0=P$&BSa*_MNI(v5;lz@F?n zJ3Ic@&r+JPuKvB5C9VS^yS_~ZA~u3grj})ywO>usu=4pe0qH#?r$>?`QJ&{7(;3H6 zk-CH{hv*U_B3Oq-QSf#$pSud!hKK}l94m9ubs1UO#KSX7z||%Ds4FA!MfQFO{fyhv z75Y(&R)GZ4xhW^QUI-hX>k*8EQIQNS*IGm?4U(}}3n3#Tk&N%a`~%9iZLP?Nx~`*P z7*v#U1=G|=g`)^NP1D~9*>ZHDTF|xj?M)N7V#1aO1L>qPx|ru#6|ZS7R-NI+juR-G z5UQ%;@Uc|1N+Rr6Ark>k`0?8!nbz7)+}LMv+z!ku-FIu>g1+x>@PoeVy1nUE?DyC! zdgYgI-TGB3Ap9{2NiIo?fQ%iOv8#it)8I8+=q%72OW6cV19E7`YbHL_&DAw>csC7ZC#X?fb`A=&Vpr z-ZbfKhC;mKwglM0_a1Q2R)J@5+=fJ*meK{L|GX7lkSXCDTP!1zMV^!l1#d!f-NobDWey+*2eaz{%?kG_ek=wM zKxD|((WDk`25bsoUDvj^5P)7&FBW!d9e?N9_TonEp7VRZzs762u<`zQ00000NkvXX Hu0mjfb-G@h literal 676 zcmV;V0$crwP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~GgBaP(YS^xk58FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0uf0>K~zY`?UlbzB0(62pJlmOITG>Y zaH-_3@mfQJiJrOA#KeN$!o=G6=U7qNX<=bOtVnF7Fh--ss6k!iFfbDL2VuEl!MGr> zjk#QMU$Z;k^Jd=6J2SgVp-^b^ffeF|>)$sB4+75RCBHW}QA`t6*8@*DwY?q8pt`Za z&$TtGxg6h@mioARd&@;W&yV$WU%xmiBCA-Wva-UjY?f*+$G2>@Z}QgpIT!gnGpnn8 z{gDwpZ*4In1m&F_L@LF@$qCO#M~G^Q`FRu}`dBTavjrQws|?^*SOJ^F-6rJlx-t z$YfA7jffD4SPWIyG4}RIWHR0gG>yj~1|caKQxuTW8#fv_^*W)>xXaYZNnbzkP43Ot z9gw>_WIu))l+VumE9&Im+aDXCA8GJ)ZVqV}e3_l4WfQLro@m+}|gjPNQfV zS~|_A@p12%CX>h@UsFX&tm|t+%_fSJC{hx(Z4@a9HJda$Jt`GMN8e?^_P{i8EsM5g z;hLt8wYztur~j6XG^k!(0Z=QIusZLrxeMXbyvKZL{QoEab%Q@fZTq)ilg>o|0000< KMNUMnLSTYT_9-y{ diff --git a/pandora_console/images/groups_small/firewall.default_old.png b/pandora_console/images/groups_small/firewall.default_old.png new file mode 100644 index 0000000000000000000000000000000000000000..2c35c40139e93d1d83e473c50d594749c86d613c GIT binary patch literal 676 zcmV;V0$crwP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~GgBaP(YS^xk58FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0uf0>K~zY`?UlbzB0(62pJlmOITG>Y zaH-_3@mfQJiJrOA#KeN$!o=G6=U7qNX<=bOtVnF7Fh--ss6k!iFfbDL2VuEl!MGr> zjk#QMU$Z;k^Jd=6J2SgVp-^b^ffeF|>)$sB4+75RCBHW}QA`t6*8@*DwY?q8pt`Za z&$TtGxg6h@mioARd&@;W&yV$WU%xmiBCA-Wva-UjY?f*+$G2>@Z}QgpIT!gnGpnn8 z{gDwpZ*4In1m&F_L@LF@$qCO#M~G^Q`FRu}`dBTavjrQws|?^*SOJ^F-6rJlx-t z$YfA7jffD4SPWIyG4}RIWHR0gG>yj~1|caKQxuTW8#fv_^*W)>xXaYZNnbzkP43Ot z9gw>_WIu))l+VumE9&Im+aDXCA8GJ)ZVqV}e3_l4WfQLro@m+}|gjPNQfV zS~|_A@p12%CX>h@UsFX&tm|t+%_fSJC{hx(Z4@a9HJda$Jt`GMN8e?^_P{i8EsM5g z;hLt8wYztur~j6XG^k!(0Z=QIusZLrxeMXbyvKZL{QoEab%Q@fZTq)ilg>o|0000< KMNUMnLSTYT_9-y{ literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/firewall.ok.png b/pandora_console/images/groups_small/firewall.ok.png index 5c46d05d243dca2cc07f7fe6ae8e9bbd288833a4..d92731e99c25424ae2e7aabe00ae9f8289f7fc68 100644 GIT binary patch literal 1435 zcmV;M1!Ve(P)`%{eS1G_h5m& zZGwql!KR&h|F_g~fCa5n|1hvXWf^>$;VK*9=0xOL{s$QYVgm#a15S%TX2JyO+%GXQ z!8kCBKmac2)BFR|9AqN^0*Db=0%W^&_D2Q|{(lU&c5^X2KFvPi;K751C<>_M$w<)d{8I>t!Bh&3bv2}2q2;mBa#UQ zK%brm`54_wxT3m^`u|xtP;G)KWP!PZh2uR+@LMMRVt^zDdjqV&q2}}lncI(5(XD+f z$lQsH*y0ZcFhU>b$P35{Uf*H`D?mveKwlVwd;O#}JS@Z(sC*0X-7XJr8vL1(0`eCG7i3wm%dUZNC$pPLPuW zGqQw&g2Du&7(`ONwV#FI?E@w-{{DfH;l&Mzaz>z5R%oJN1-hR1ud2eshYvS05$l3) zK*NL;{(%j~l7SSkxh#N@fl)$G9+AAb1pb3Dzr=rre?VaoV0L8zx{4W^xK7RG19?*s zR|FJ*(kHBB!v(Hw;bwS#iR}Z>AVGpj1C)*=^?osE`FuqY|NN2}<{CzVNduRmYA)Zv z$pHuqfd*Z`rWPOot5vL%KoA8t1V}Ks0F@OcG}c;ZVg*;&!#DT?_$6FpYb7mTU?Pbz zc1TSF*c%QCqYz*3`aLek|tvz*rpK#Yb|V&6R0;Z zt&La6DRKqNl8)CHa||{lEXsRtme; zkwS^vQ@KD%5a1CppyApT0$XdU%>Mx8!%7h<%F0LtQ?cLi*;$v8x=EjLbSqir7U`@XcikLA#~*I)jgY; zMV(&FS28jj9F8tSWJ`M}0;UT%JOk5qJr99eHJfCN zl-BMqk1Uj~1uf6V%XV${nAv;gnf=2hf0udS^R-_4e$N#B=bSw1!ROZ;Ht?}`u<$O2 z;hh1h5#!$TF_H0iY+d&(1d@MIMZzYgfAp1{6>~I@H=9NE_OxSpS4LRh^d7<_lNJ)O z_BJ4DP}VLG`bV3x3#-Hs;_$qC%vZ<(2IuY=eaa-{iBq0%87WrD)qL!4mhc2{T zPx#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~Gg55GK(xc~qF8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0wqaAK~zY`?UhYy8bKJxf2(FzE5tO` zDzs?d=*um5F_4fRN})8j1afLFCH)Ykw|;@1drA5Ql0ynPNRIWIiwMDhO@c|ZVye?6 z?z*`4uxh&+T`!>&@?3VF=l3vw=07t#%EzzEZLTmpTygyW0={8De6Ml$!#5^$3o{ZJ zd&0u!m*WY<-)DIK_8ryr4eq~Q8Q|9OF$d{1PuA8P^-ug9ZIM4);n|xsFP2xRu5WN} zX=z~cRzA-`I?dzN)q%RJMbR%go~i-Lo12J4g0ozXUweCqV9;q{FgS$08ZF?>SBWkz zQp#kAEG%G^%LD@f#MG3{qft(_wusHmp$IX+pzgj0K24)ptKqx2pml!E4WAD*&7LG2 zwpl0dXJefrOV{nMVf4n`Pz=M-a~X3LILT%KDDLiJH5!OSg67c?0BW=8==nQr_P|}> z_WV4}dL0o8*-h~{XQ!t`QYjQwB_ISM6v7*gQrg}ol1kYtP}T8P;E@u)qJWfku4y#u zbv&KC%e>Rmj=CLp#@~ZpKE!ux#D0tvDDUq(SJd&pzwW=Z|Dn6Ut=U;*sl?5h8Cs>1 zeM=1kud3pW#rUzaLpYg4QB~Arl8MPl`Ris2eJj7#~C{m(GiO(=lq{L&I zn4KDx3Zm2BW#iq0MgvRNY3n*xqv2rf?j7l?|6zW2foh=uK&@Cr?~HrC3*qP)WRIL~ eT))ZxT;Mlo_V^A^V$2>Ox diff --git a/pandora_console/images/groups_small/firewall.ok_old.png b/pandora_console/images/groups_small/firewall.ok_old.png new file mode 100644 index 0000000000000000000000000000000000000000..5c46d05d243dca2cc07f7fe6ae8e9bbd288833a4 GIT binary patch literal 696 zcmV;p0!RIcP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~Gg55GK(xc~qF8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0wqaAK~zY`?UhYy8bKJxf2(FzE5tO` zDzs?d=*um5F_4fRN})8j1afLFCH)Ykw|;@1drA5Ql0ynPNRIWIiwMDhO@c|ZVye?6 z?z*`4uxh&+T`!>&@?3VF=l3vw=07t#%EzzEZLTmpTygyW0={8De6Ml$!#5^$3o{ZJ zd&0u!m*WY<-)DIK_8ryr4eq~Q8Q|9OF$d{1PuA8P^-ug9ZIM4);n|xsFP2xRu5WN} zX=z~cRzA-`I?dzN)q%RJMbR%go~i-Lo12J4g0ozXUweCqV9;q{FgS$08ZF?>SBWkz zQp#kAEG%G^%LD@f#MG3{qft(_wusHmp$IX+pzgj0K24)ptKqx2pml!E4WAD*&7LG2 zwpl0dXJefrOV{nMVf4n`Pz=M-a~X3LILT%KDDLiJH5!OSg67c?0BW=8==nQr_P|}> z_WV4}dL0o8*-h~{XQ!t`QYjQwB_ISM6v7*gQrg}ol1kYtP}T8P;E@u)qJWfku4y#u zbv&KC%e>Rmj=CLp#@~ZpKE!ux#D0tvDDUq(SJd&pzwW=Z|Dn6Ut=U;*sl?5h8Cs>1 zeM=1kud3pW#rUzaLpYg4QB~Arl8MPl`Ris2eJj7#~C{m(GiO(=lq{L&I zn4KDx3Zm2BW#iq0MgvRNY3n*xqv2rf?j7l?|6zW2foh=uK&@Cr?~HrC3*qP)WRIL~ eT))ZxT;Mlo_V^A^V$2>Ox literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/firewall.warning.png b/pandora_console/images/groups_small/firewall.warning.png index 644ea4d5941f6b15f1abee683eed87a1215ae648..0f706a776d63b77230e53b8b5aedd30344d303a4 100644 GIT binary patch literal 1365 zcmV-b1*-aqP)ijeKz0IH z5X3PvGXvw(%Z2`9Q`rDFqP18PBmh(4<{t8gIxdmr=h~bhYvS05$l5I zZ`m0PRX>9bMg~wr6|lK10BEa(zVb)7n56J8FjkfM&hYCG6N8c3XRrZmtdQi8(QgRy zrXsEgC;+9;-Q7pDm#}gaJsTaFau!T4sX7hH=%89|0*YZkPyh;W7yuanDY-#e>L-x@ zg`jI$P%|x}`~tZIpO$; z0ogoYSHdtsZvxXxAut*WO2cn~`Cb-p;4TCeIbXgrV`zq^wFS6}?ft+sjzbv5ugxUv`Y@wLQq5xJr+EP8SJRVm1i*8$gox^dhG|Qz+eqbpVKgPP2swAsBpfwD8hv8%#(HKT_LC_TX%P3WPC3n1BXkQj$0Li!%6 z=!GOz0jSLYE!#js*LD5UBaXu`OP=+zg|1uS}}f)W5~3_)90C|z-K zsw7a0AOTmoMl9HMMjV_xU~MR%qc%`ni9-wB{p3_nXw?wTkq}B-7w};hLJkBuB(~iI z<{*LPx#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~GgF@9Z;5&!@I8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0xn5JK~zY`?Ul_>Q$ZBPf3Gbw#WpSS zVVjsx-N?2!YDtQ?amT{Q23?T2Ao0I~|9}Mx77YtG#KZ-`q6BF|3Mo(|U^_ngK5APR zuWfuS^mT)YiFfnno^#)v%$b=xTCwoF$t{MDTaJHUAaE0*@9N~u+o{Qxb9=?3j!#9qO$Y--mEiJk53g7x$^y6chPswdwyk6j9d4&h_^F5Q- z_xH(XvpiZ{?7_Q3>prI2uW}?#CC#fVL?VF}4Dxep3lR$S{4A%YdbrWAss0v~KUa7* zH%Do6lZn|`8fRyOhKCU&BLMhgF^*SPiDxosLiBJ3dG9?4=sI?}OrTn&etF5AKmc^z znPhCt;aYh&H_$0+n5Of!tj@UOsb#rpuH!rfj(2tdC~j=fFbqT@fqi)B_-@;-8rPoK zHetfv0{3QSuqzcrH0l&hPI7v3!bCcaCMCl{Afi$Hu^6SbH73$&X9ZI7i?X+XPbq?$ z21+@(u47j!_*!|J^N)_Ya3_Wa--AwmgYVbl0|=b$?YURf^1mAoUQ<8LQ*VLs>1kA{ z#NA|)da2~xQp>_GCH{Dv@9XP~rBY~8B2y`bA`$19#^cmE_U@*dQkaDTzFG}UDKw=B zSQeU6_-Zw3EsXPXM615d4R#L diff --git a/pandora_console/images/groups_small/firewall.warning_old.png b/pandora_console/images/groups_small/firewall.warning_old.png new file mode 100644 index 0000000000000000000000000000000000000000..644ea4d5941f6b15f1abee683eed87a1215ae648 GIT binary patch literal 705 zcmV;y0zUnTP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~GgF@9Z;5&!@I8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0xn5JK~zY`?Ul_>Q$ZBPf3Gbw#WpSS zVVjsx-N?2!YDtQ?amT{Q23?T2Ao0I~|9}Mx77YtG#KZ-`q6BF|3Mo(|U^_ngK5APR zuWfuS^mT)YiFfnno^#)v%$b=xTCwoF$t{MDTaJHUAaE0*@9N~u+o{Qxb9=?3j!#9qO$Y--mEiJk53g7x$^y6chPswdwyk6j9d4&h_^F5Q- z_xH(XvpiZ{?7_Q3>prI2uW}?#CC#fVL?VF}4Dxep3lR$S{4A%YdbrWAss0v~KUa7* zH%Do6lZn|`8fRyOhKCU&BLMhgF^*SPiDxosLiBJ3dG9?4=sI?}OrTn&etF5AKmc^z znPhCt;aYh&H_$0+n5Of!tj@UOsb#rpuH!rfj(2tdC~j=fFbqT@fqi)B_-@;-8rPoK zHetfv0{3QSuqzcrH0l&hPI7v3!bCcaCMCl{Afi$Hu^6SbH73$&X9ZI7i?X+XPbq?$ z21+@(u47j!_*!|J^N)_Ya3_Wa--AwmgYVbl0|=b$?YURf^1mAoUQ<8LQ*VLs>1kA{ z#NA|)da2~xQp>_GCH{Dv@9XP~rBY~8B2y`bA`$19#^cmE_U@*dQkaDTzFG}UDKw=B zSQeU6_-Zw3EsXPXM615d4R#L literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/server_database.bad.png b/pandora_console/images/groups_small/server_database.bad.png index ade364eb925f12b90707e621f8f1925efce36b95..947084d67d5592ba140e9f67eac59f5f120a20c0 100644 GIT binary patch literal 1480 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 literal 575 zcmV-F0>J%=P)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~G>8eV>Uu>b%78FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0jx z3WN|SrI1ph>pDV+YyeHu7>!0OmrKg!GL~hrUayJc7^M`Szy7=pe)}O?1z{LsSr*gj zlv=HZuIrel$;a#Oynk1_6Z`4Q4gIUq3k765qPZvJdl z05lp69LGr~r&KEa7I^ibg2#Yomt7P^BuSF?J`6*mD0=yAy4h?1Sgls%a=Dk;rrYh7 zVzCH7yJ%=P)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~G>8eV>Uu>b%78FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0jx z3WN|SrI1ph>pDV+YyeHu7>!0OmrKg!GL~hrUayJc7^M`Szy7=pe)}O?1z{LsSr*gj zlv=HZuIrel$;a#Oynk1_6Z`4Q4gIUq3k765qPZvJdl z05lp69LGr~r&KEa7I^ibg2#Yomt7P^BuSF?J`6*mD0=yAy4h?1Sgls%a=Dk;rrYh7 zVzCH7y2HE+EP)`%{eM}@&kSmg ze;D?*2_}LCn|A8`|NeoIfm7f=!}~`p3``(Fpe$J6)_xX-b4z#|;pRl-TK)$a17ZUN z5N-rA(=*)UKZpkLnP3tin_&PhD6IGoyAd!pKmai!OMq;*&i=^2!T*op)^09_$EVpR z96Wfi5Je$O_wjjb3~%oz-zfSsoDT{mpw)~x!vR}J0R#|Hh!M#I1E5dOgM5r`C0tS6M*aUR9RI<-)%N_u zz$f_+u8;-h4i=90;OGPe2S@=3I9I&~$r>=B+i#il3tgz637bPfCSKmi0pm_?-q zt}`>R0^N6IJs&vqnUDhT0*o!8`Iq6}Z)UIpl;i>Qg(1i{An@l0Bg3UNJc4*b9292A zVgLceh%cmpiW7j;d^F(&KwA^>#td={0jcx$MIRVIk$?+;k{;0c7eL;@m9XzC+5S*a zwEYg|gCYtPyfE+^=y$uUpD2bRCkOO24L1mE*aIePk%|J;T)%;wF(2f07D6fX%rZ7$ zrhyo^r52t5;5iMNffTU0?85!SoCYx0aS4DF{)2nfHvJz16EKNN;jJ~JG(RQ?Y}-{X)eg>?`Xp@`ysEaKQR~s z-SN*RYN)>bVeHrKMMX3&Ta`iM-`Z(hS9}ue*0(Z|B0QK)>G@$yZ_H&& zt(1~?Puy8_4KR`i$-P8@XdBxg+PFW#p{6(I^B8WH6|E?6@Ku>faXsbWgHkZrYkNwK zT@uIE=XpK*o%2|tC>rqoMXU!MmcE~Htavo^pq0C>@BE@v81P;P1Q72fIKTO4a&%k~ z4DoQ;mjJa`yGjE=6y1m$jD^`ouo2wG#>Pqsg2dKF@(0>#;VJ)V4b6fKAz-p)SKu!vQLbL#ws9_XS|MJ%P`eL(*NvWKc(_f&F?5kV5Yt5dg+|d= zbQT}5OR;eHRPiPsN#5~MjT5oZHds{KIbx#iXhCc4uj+7H?MtvT1i6S44G#R)fr`Vh z94VR&5!0hqC%3?=O+}Fsi6Ej3k70Q%35np;rfX@6>6Rzju5Muy7ovNU$DR}$GVX*F zO&4<8#RV|tr~u?N?o#rY4IqGEganVYUifdobO7NLSiua?QQnP(QW7l7Y)!VKHYoDE YA6vJmLjrl(NdN!<07*qoM6N<$f`9YUVE_OC literal 615 zcmV-t0+{`YP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipi3 z4;2TqeMWZx0013nR9JLFZ*6U5Zgc_CX>@2HM@dakWG-a~0005L zNklP?5$dCWwme!nrOzTJp=xwrv`X2K>0YdyAA(wA<~CEvi{Fu?cy{Q;>| z3g7n;kyrx}i8atPE!Jf(faiG(hr-pp-&H@O>X$*HKFC2hcQ) zR;$H$JSLmXVp$f`>69=G5fNUTp8pO$IO3Sj?iIMMi)C5#dOh;_Ji4x9nkJ85ed6JR z{95eE6F6}?+XF;|TrNkq+oe{kkxV98E|-i(BLF^p{Pt(70-#hXQ7jhY$;o6gzXYCK zsNgc-#$^`-0Z|miy?0%gAP8=Lo6cr4049?OiA3UNw&{F6C!J0MP$(2I41-Fgf?*h2 z1JqR~^ZlC{=buy8e*SuJv_3^nXM4c^llj*GKLJAj%XLW4dJzBs002ovPDHLkV1n^4 B0viAT diff --git a/pandora_console/images/groups_small/server_database.ok_old.png b/pandora_console/images/groups_small/server_database.ok_old.png new file mode 100644 index 0000000000000000000000000000000000000000..a20fa2b821cd8a18df7cfd031dbee66a14a52bb1 GIT binary patch literal 615 zcmV-t0+{`YP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipi3 z4;2TqeMWZx0013nR9JLFZ*6U5Zgc_CX>@2HM@dakWG-a~0005L zNklP?5$dCWwme!nrOzTJp=xwrv`X2K>0YdyAA(wA<~CEvi{Fu?cy{Q;>| z3g7n;kyrx}i8atPE!Jf(faiG(hr-pp-&H@O>X$*HKFC2hcQ) zR;$H$JSLmXVp$f`>69=G5fNUTp8pO$IO3Sj?iIMMi)C5#dOh;_Ji4x9nkJ85ed6JR z{95eE6F6}?+XF;|TrNkq+oe{kkxV98E|-i(BLF^p{Pt(70-#hXQ7jhY$;o6gzXYCK zsNgc-#$^`-0Z|miy?0%gAP8=Lo6cr4049?OiA3UNw&{F6C!J0MP$(2I41-Fgf?*h2 z1JqR~^ZlC{=buy8e*SuJv_3^nXM4c^llj*GKLJAj%XLW4dJzBs002ovPDHLkV1n^4 B0viAT literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/server_database.warning.png b/pandora_console/images/groups_small/server_database.warning.png index 77c0822a5e4421434097c9037b7050720719942a..adc51e3e7ae64a612f4fd52b9cccbcf31c1c6bcd 100644 GIT binary patch literal 1506 zcmV<81s(c{P)lE{U zAUlB(BnaZXc*n*dA@qyk;$41(N{|FdHIUr^H=?yz6D05-#0Cf;+z6yKJz5iN1c=WB zlSuM<4p#&hG*tbJ-3S;PAb>DD@pvaU*zAclsvy_&W7Q3FgqfMye;D7}!y0TV3%Z8( zw7Xz>$sT!z7?+0(+#G)~ty2M^~ThI!kh7|!43Wl)v*2G+Q{`v}+uCUg@g=ifpX>Sw~{K9GqW%amc z^U;JC96We15u18OY%v6+&aZDe!2k+lTp+N{g5k?|mJ2|G4Y3*qH0XYu+arZo*GFJJ zD5Bz|I9dSiK z0VsWf5;H!~y;6-~*BP-7K!XH{$#?%jWgT+r1mWu&`2Lfft6_#hQ!z$DMFs!?L{-Fy z$3+6r)E|H(`~j3+f#Gz3Xv07`8Aus`(om4?Gr0KOXWR@WGju^IAH)>|8v21ycKWX@ z^_5{p;dz|i0aa5VL(vUH&rbV+200)blsi!ko;YD8KFpOF{f6+Ygi<|00g6GP^|~ne z5;-@3TrV#86P7Mf4FlCyZYHl#Os}ga^Kn+E)f+^{)(OT0a;V86l|wn${NJOlSJaA02u! zE@Rkw`w17g@&kb|$CnIWf3Pydw3(o!Gn7Dr6ms_eK?xF+j*tPU(uP&skP5{TL@DBo z04NXyrEGivREYpVA<*&%cnyQ*HAkohtW_Kk9001DKuV#Q0IS|%I4RQPKeR+4tCWQs z2sP+ES%o8(CIZ3A10X;x*6-3V5Ju0%Um!{=R2-z8T{}6oi=$EyI~8C!q-c3mnQ88O&fYiUcP(xz4zVNFv_*i z1=Z!W)Cn4j1ZY6O_U9=Ol(mIOuWuZvsw{PY-1d@>K)^Vd6#u#e7!;|UwKuk!?D&2e z0OY2FUED0%CIn1Ywd+M$Gbw zVxc5FMUM6~I25w4TH}taoY!K!m`^chpY&s#R`B%pF~aViqH%ZvS{=QBf$VH$xof;R zKn;VEDNXoizdT9h>P-K5f6e<8SwI57P))q*g4y@$Shvt;L`{1rFj(v;i(b zi)qYE|Jf2t1A46ndB&9=j-iWef|#Y^x0YwHeFvqueZH4#vFnFfz97aOW9dGMbi|^z zL8A7J8RLVHu?%WW?kLGRUz08mX*28$RqFHBRLT#|-9X8gpqUcZ$x3|S0;@I^VFG3d zg%*^dt#}Ygf+N_{)ipms>J}4iS2?tZi=tZ#B2S78dG3USbr<%wiwU6Qr~qUX?xFZG z9Y6p+yFu;u!0Gov{>PzH;M+&mLfZ9tuXid2RWs}tJlDeB>(^b07*qo IM6N<$f)~!Ac>n+a literal 596 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 diff --git a/pandora_console/images/groups_small/transmit.bad_old.png b/pandora_console/images/groups_small/transmit.bad_old.png new file mode 100644 index 0000000000000000000000000000000000000000..90e71b4e73a853e34f8386b1c1006e257636b4ee GIT binary patch literal 867 zcmV-p1DyPcP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~G^2Z+{gB>(^b8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0? zhd4U}A~(D_z*=ciT5qA`OOVc78J00=b4Fo(A^> z&fbBDA(%iCLdrm?EKpf9FmneS{v3k5CZPP;UCet;kRba9bYHw?(!W5)S2qX+(nXc} zx`D{oFdGHR=Uq+?wD|ztHnAR7K`O|zceKCTCJv?)KPix{Xb^>X1E2G~3GE-JEPeVL z;`UvvvdicwPdHI$S5bbsf-rL64d}kufh3{%O%40eBAKE=rfgt8xJC1E0*R#i3(((3 z*bVabXubopmIXzJ(SXT`$L-ZTTB*eN*BzX805ZXZ zJJ7TkkPvyuSYlQrI6a*91h;gDv0~$N1vrP8*%49#!6gV4RrRj%(Wd@Yl?0av1(d*J zIy^?Ebetzo=xuBubdBhwkCIFfLV}!vh!H6{KSj~`2wi(aa^WJSct{mD=Veh2!IYtgW1#VHpNf tDM@AwmYIOY*49k>OEX^n|4hEN{s2M8E6OZb=luWx002ovPDHLkV1m+GhbI64 literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/transmit.default.png b/pandora_console/images/groups_small/transmit.default.png index 04e0be58ea2692887e93d2768e7efecae63bfedb..e38d390ea076e377153e9eefdefc7e3929beea19 100644 GIT binary patch literal 1542 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 S;6uv*0000`%{eS1G_h5m& zZGwql!KR&h|F_g~fCa5n|1hvXWf^1*zc6Td{b4xNC(sBtCnDGKKgbvm8z6ufa9RX1 z6DCmSeu~xH^?#%2&u~5{lz>(<;tULIAq5aXL?K2b6AXYpJrD9Rx|MK6bsP2nvv8o=1XIWY za|a8@dj?QEgMtI(Q!au343NZNZ-5dUik5#Fet%~K2a8G6FPLyYN+fA}{l@0*iC~kE z!vquy7uT_Z*`Uw|%57jma^wYA4Cn{_W_W#z6&yV%$pfgv5ab&W_yaWU(i$E?yde$> zGh{J<0Aj=!(m=%tKx#gk@B*N%iFjiMIfj7LdHbRd4Cs-73_zX-I{yO5JGc_|eI?r; z3W~Ph8Ibb}EPDtm{$o&c{DU=?Q34DK;07I<#?J8MJTS%u|AV6gWGE(B@Kw==E z=K2lf2yjra;PQrD)=w1n@p)|E#PIzCBRumUWgrD?F1v95Feiq=AeVq#21+cP0;u75 zZ3{QZn~u05pa7IUVI>l7 zkVIG?>M<67;-uY;13ldoB>Q>w-hPMkPZ>^%mo^w4Hb?UJ`)32_b11uXl_hlTU-aXH^SgFhQW6WtbpKs@_mvM*4Dl<*$aDk}-G)S(WJ_?yd z0y7hmsL@gbCiMz1?j|>b?yIZ+?uky67iPFP6+o_$M`@)pu>!C#sWVA%`qd0TbrZ-5 zrnI)F)7TYpTn>zD#^2>!A4E|U20;)Z4{C_M$#Zs$wPIFQUEk%BrUJl66Ocf#AbNh~ z&*tbjB3R+!s&4^mF=Lj7fiMgwT4@VnvlQy!&_$?&bWstP`U^yGaI}st{)PSoCx3&R zopdZB;;0S^F13pwbcrCPh(^EndKb?#cS$bsgEUY=?#x(Hyc>{NkQ2~be?=A|-BRTfi0AQDsV6~}9(;Xy=gp}u{=^wL>BQ6Bkh_~S zsLpZ(ql;_{gIuB9BwtUNg@qg5W{-?B22uEtMG05Njlu47^8o`8II^h_=GOPe3{c9% z|1-+$FRYG*ur2s(oG@+SX>q_upRT9bz=)a{P|y)X3$KNEAO)5)P3eT;b#CHG)L9b+ z+)$C@{(N#f;E3)TwT6!&JX{#vl2=<~52ZNzkV4hlN}SR${i6^hIru<$mA9B+9b`Jwh4)0000< KMNUMnLSTXv8QF9I literal 893 zcmV-@1A_dCP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipi3 z4-_Yn2v`090013nR9JLFZ*6U5Zgc_CX>@2HM@dakWG-a~0008i zNklJ%QmaU)hjQS^k^Vzf zx#SQD38@0LJ(M2OmX=C{Nc1a|6cWb`aqSr5wegPEyF0@Hi3z~oYBCr!2#RYgmTEMPrk)KTFqpiaW85i#6^F()+%1BLz;A=||NII@Zi1<@%f=s7%y$N! z?xI8bH4G~SUX_LL1`&$sA2riffqZC_*A~+%$9oq`L?U9LUqIz=jO>02H>=%kI;MNU zu)wY29LX@W*d$~3u~NUme9tEHv42@<-XaqpAot}>oS9MB*@AeAvFg3SdN}pLTi-^R0s{r3BRPFmcxPjV(t>eor8QxXORXB+SG z-RVK()e^5@(69~CrK`BM)g7>8HVFe4^TaR_isVclQ`;m}p0ED#ky2v%4kC(?m>MBM zap}w~t#4OJ2I^+N`MT@@RAW}-cxb!`K z$0zVC)J_(>2K0J+OVfDy4LsSRrdG*(c$L-*0pMoVT~QzVnNTmNpfBW8j0z zqx084Z4>oX=*WomEAsgPy`6n*nM(}KG#|U0JZX~{ZBnncK#M2#5dZ(lFCFjzgXlBw Tk$GPt00000NkvXXu0mjf(FKgs diff --git a/pandora_console/images/groups_small/transmit.ok_old.png b/pandora_console/images/groups_small/transmit.ok_old.png new file mode 100644 index 0000000000000000000000000000000000000000..f4bbd712910b65b5f0bf9593f84b456ae0824ace GIT binary patch literal 893 zcmV-@1A_dCP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2ipi3 z4-_Yn2v`090013nR9JLFZ*6U5Zgc_CX>@2HM@dakWG-a~0008i zNklJ%QmaU)hjQS^k^Vzf zx#SQD38@0LJ(M2OmX=C{Nc1a|6cWb`aqSr5wegPEyF0@Hi3z~oYBCr!2#RYgmTEMPrk)KTFqpiaW85i#6^F()+%1BLz;A=||NII@Zi1<@%f=s7%y$N! z?xI8bH4G~SUX_LL1`&$sA2riffqZC_*A~+%$9oq`L?U9LUqIz=jO>02H>=%kI;MNU zu)wY29LX@W*d$~3u~NUme9tEHv42@<-XaqpAot}>oS9MB*@AeAvFg3SdN}pLTi-^R0s{r3BRPFmcxPjV(t>eor8QxXORXB+SG z-RVK()e^5@(69~CrK`BM)g7>8HVFe4^TaR_isVclQ`;m}p0ED#ky2v%4kC(?m>MBM zap}w~t#4OJ2I^+N`MT@@RAW}-cxb!`K z$0zVC)J_(>2K0J+OVfDy4LsSRrdG*(c$L-*0pMoVT~QzVnNTmNpfBW8j0z zqx084Z4>oX=*WomEAsgPy`6n*nM(}KG#|U0JZX~{ZBnncK#M2#5dZ(lFCFjzgXlBw Tk$GPt00000NkvXXu0mjf(FKgs literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/transmit.warning.png b/pandora_console/images/groups_small/transmit.warning.png index 14e209e7589bf0c4b9edb3687ea35df59252e4df..3d65fc1060b15f97a6472062952bf4a8a792b636 100644 GIT binary patch literal 1562 zcmV+#2IcvQP)ijeKz0IH z5X3PvGXvw(%Z2{KRW{@)|9^Lo4WzOGZbWObCP)CR3Lt>6B1V{*Fab8Rzl=;U&iUKC zaFuYudD|p0%|SK-Ab>DD@pvaU*b@_LR6(xk$Eq9Tc95rLG{}N!keIiJ^?ww*L4b$z zFT;^3XBiG(;s?_pz|HX&)9Sn=19#A2IYhKXu=B)9z2+cGkv4S5GZA@ zZ#n@CvOhR23aqmL1}n=2puvV%4Fei{P^O#=bkpu`SMhV3VX86<^&f+H4WD2N6Dn;c^}JJatT$PwV6V8P{$`4!hu*trwc zz=`3-J2rUcfn_R?BR~W*inA0H0vH(?B=nU(q8JQv$%}XFVC-rB7DX`yN}?_O5H2f70tL0mzgp&tlkr~k@Q zUm0c;p2z8(i+B0KhN2tDgl5owLI!~VC>=u8yhj#CPqYhG)ty4oIBBgc!;;++;H;%8 z^PNGM?>AUni1#-zoryDuh%0}5`0(Kg6qkW&D>su@a6>9*DT7n~`P)3;3=T2~lwXna z<&vt?-~t$%Hw!=k4g#=@4a$QcLqMel$j~)Sm%;fHluxk%7Sx*X4?Oek=)M4U1*{qX zSrAgE3pD&2N+E#LFi?~u7ln1XOp zq{)A1i9%K>3pWsI(0j59M=VVQf|UnAfL_cWq+uWm<57!4L8uh07Oi&ZPzutalOWW^ zQE}42LLHsN!NEGHiw-X8& zVM!Pf6DPZ4h(S-89C}m+W3Q%f1_IOP0p%#?=Rf69$)X+AgN;BNRHz62d}j3C_Oc6J znIYmv>UDEksL0U9be=3%*-?x@26xT^oDhOy_FOu}Ohu(7q7Q_Cg-EDnT>Ik|n$NV)9Puixf1q(nLM#;mOUoyQIt|RH@}~M(49F z3=)Q^J$`;WtX$lBd7E9;%@{=CLo15AGEQ82chQR=V{l}>z%U21#m#{K8J1TAtj2^5 z!)J|zNdtF_4L-V`ZKD^)w1NxrOhPpG+O>l&nrSR&Js}f@$2p2S5wpevxFI6P`e7&C zBSW%d#9-N?eyHn~EGB+tkC50TrNK!A+tO~2ss8{fSZ{+xEl5F@2LaO;0=3tb&&IKn z%XVcT`X-%Tw@&@^fxw6d$nEx(l@|9GWmimV{k=tLrc#>`{xwXlS+vw(#i7DZ0EW`{wz%evnri2K-_Zg6`*YT+#{d8T M07*qoM6N<$g4TPljsO4v literal 856 zcmV-e1E>6nP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~G@HES$vW&i*H8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0>w#0K~zY`?Uh|`6Gs$=pIL9b>)6>% zLgFNbI1uFU(SjmDmC_HTz3)|}BEb*n4{Uo?TD202K)s=;K~S|A6FwY!?Krz$?|62- zJH4<}Q~`AXp{i2P<(YHlnRDiyGvaaMW6fJMgSTw|eSkSJAaR)P*RY~Rrcwuz5sBGB z6>AQj|;0t>gw z2&aNAmvHU`1n1ObfEl|K`|D6J(7gt&lRuEYwp8e!)9+7isKb8Y|4+(!}!_^qzt}gMB}o3^4lu z8j=Wv#_mkPVUw`ZBPiAgoq59JLpXeb-H_uQ)BuD@E>i#Cp^fBNC29bfK!lPsehOxu zeeVkOhhHK@o>9_7C|d>r zZz^)qncSkm@sMa$qNkquyw0aYQNm~MukywAI=&Bge?9e=ym-Yzu1~-EEE=jMnyq(` zQu5W#HI!0BQIXv{N2#vXaUJ<))AZ4kZHB{;x!K!X*!-Fgw!UR$xz11x*}1XyX5-oq z*75x!%jKJ#*|`3v|D#K{IeYp6{l4ZwqxAaI)a$OXR{fsEBYV%SZN2x1`8kKt2(k=} immF36|0n6nP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~G@HES$vW&i*H8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0>w#0K~zY`?Uh|`6Gs$=pIL9b>)6>% zLgFNbI1uFU(SjmDmC_HTz3)|}BEb*n4{Uo?TD202K)s=;K~S|A6FwY!?Krz$?|62- zJH4<}Q~`AXp{i2P<(YHlnRDiyGvaaMW6fJMgSTw|eSkSJAaR)P*RY~Rrcwuz5sBGB z6>AQj|;0t>gw z2&aNAmvHU`1n1ObfEl|K`|D6J(7gt&lRuEYwp8e!)9+7isKb8Y|4+(!}!_^qzt}gMB}o3^4lu z8j=Wv#_mkPVUw`ZBPiAgoq59JLpXeb-H_uQ)BuD@E>i#Cp^fBNC29bfK!lPsehOxu zeeVkOhhHK@o>9_7C|d>r zZz^)qncSkm@sMa$qNkquyw0aYQNm~MukywAI=&Bge?9e=ym-Yzu1~-EEE=jMnyq(` zQu5W#HI!0BQIXv{N2#vXaUJ<))AZ4kZHB{;x!K!X*!-Fgw!UR$xz11x*}1XyX5-oq z*75x!%jKJ#*|`3v|D#K{IeYp6{l4ZwqxAaI)a$OXR{fsEBYV%SZN2x1`8kKt2(k=} immF36|0n0ijA?fP!gS zWH*|DBB}#LH_;>jAQY+<+2(B77J*W)Wg#96%c3=4Yye0~u^15LUepX0pu5$&Waf`O z*O;JMmCW28FN0(TF<>$&RtcogIfqh1R>tFS=*iU|I9=FhpR z|EFqfEEu+DJpOB3mQ>gbdX6uL9}`}#530j<#)vHk3VeJH0Emt>iBMsgDEM`8F@-<| zywl@G+>37?$2o)rj{Fld4#QM<%?|X%ztbG@tZFb6w9-3s ziJ#E+RQL2Oly)#7LNw)5s2Q?BAt6V>)W`l=Rbj$10M~ET1g1Xfu#YZYx)PoLQ$sQ( z3Yru3!hZ(pL!-#Ou5cu#e`4XYsN}a0(tAj^q3o$ZVwstmI!?DB~VTOF3Z^P49qTjH)a1|~c>+B}J? z`O(!`J5xB<;77%)NKZxXl#)a|F(9d*!C-K{CXNpKx574R&F2I-sp$R}&0z*9r3M)$ zKDaw~`=I^9%WWMc|8l30?Ww528Uuv>q3SEh-@k7D*V4tP^M|@BZS)5}uYN;(@nR5R z8181oq&|{_5%D8it}#x(orJF#I0B9ZhS%N051d*pY{EI}G)RB2GXoH<-i>K z@csa_#!G(wEo#2~u*DTEiSLVQUzX{tMO?hw!1?mjkvp+K`tKvL z>q*e&n@vpA|MO}4(}JLJSpMxv$|LGUo0H~Ov-aLH!m9jWVJc&F)4)H+lCBPQq$>i? zw1QWX#Bl)%sBC6{;H319Z6n~UK+B#^naowT>`3AvpU0e!WSPK)6~rpu>ZZgf(YZSR zqq&#pMb%#-u-C21PljE_--Wz47>F@Ww+tC`)(E=}DerZ)jUa9!@_lHGU z-dERqse$;1Wk>FQkW)*D^r>G3_Bj7SEAu0?opp}=qTaa@9B+UXMZWlg(v;g@BdPl- z0h5rt@;Ji&6aLn!{f(Q+1L-0^!q_dR=CDop?yg$=V}j5fnw?qg>~p$T80PUa_LWHE z=_@TTf$aR^_29Jyv+0vD`8GajR8M?NpnsI}d)t-fwx{33QY~J!_oBUd?Sxj>q~M(& zRw?Dmwd_o*D17vCMVT+`MapPt=UEfByQX$59BZM?Ir`hqFi8i=^046Ck#f=ZxUA@+ zpUI(Bvd?VJZO9qo)ft=(&Qn(xR0dAMF@C)hm2K619sB?va8M|DQv=}uT1)$d@UEx1 Po*O?+nl5P<<(K^%hL0YS literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9Q!2~3yr0n1ZQjEnx?oJHr&dIz4aySb-B8wRq zxP?KOkzv*x37{Z*iKnkC`)y7}9zDTKoym`YLXst}5hc#~xw)x%B@E6*sfi`2DGKG8 zB^e6tp1uL$jeO!jMM<76jv*T7llMr99C5HpNK)YD5y~}x^mx6C`{ZSBlU-X^tk7U* zKh9ZSzlJMfL)WMB5(5K+J$?P+!otdDC(3JU&6qiJYT9`<-`nTs+b> k`1*pAMtw&@oP={3j0!}33O^WU18rmQboFyt=akR{0P{XdmH+?% diff --git a/pandora_console/images/groups_small/without_group.bad_old.png b/pandora_console/images/groups_small/without_group.bad_old.png new file mode 100644 index 0000000000000000000000000000000000000000..0fa3721da3666437131a915d4e478beaa2392316 GIT binary patch literal 245 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9Q!2~3yr0n1ZQjEnx?oJHr&dIz4aySb-B8wRq zxP?KOkzv*x37{Z*iKnkC`)y7}9zDTKoym`YLXst}5hc#~xw)x%B@E6*sfi`2DGKG8 zB^e6tp1uL$jeO!jMM<76jv*T7llMr99C5HpNK)YD5y~}x^mx6C`{ZSBlU-X^tk7U* zKh9ZSzlJMfL)WMB5(5K+J$?P+!otdDC(3JU&6qiJYT9`<-`nTs+b> k`1*pAMtw&@oP={3j0!}33O^WU18rmQboFyt=akR{0P{XdmH+?% literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/without_group.default.png b/pandora_console/images/groups_small/without_group.default.png index 50a5e5364c3eca6089800e2ad5d366ba65d33a16..b8d2946e2a6757d6c510c2b6708764665c8e6e44 100644 GIT binary patch literal 2135 zcmbVNdr%X19^WL8fPexb5JX&J#m7mqn*>OrJo2K(13|zN&!a;g3ke|)k_7^S@{mll zAZnE&NJT_ND^9UW>!=vT6GTuvYg?2Q5vn~7C{S9wikI7{*!#oj&D_rH?C<;C@8|P< z&u>@!#`oRk`OO0Wz)iGXkbr%I?5`6M0B{4GJ{BgBQK1-3)TW`i5i~eDP$r2{acm4nrd3lVb{ncut;5g&urAW5lgLyE3QCc5r6!#6)1|8v zP$>_mB!|R8u{u7YP_EC{BZ>JNlVtfS8Cy^c!E86i!i~sE$LU<>uy6a~V{vKAi@$*=!m_r_t%bm_@K5PlHN~ z!5YJ|IR*h@km;2=RH@Z~c1DR*n~jE3ut;C0pw`94z9rTe-V_Qe8OQ>*QH zy|Ol-3CQnZywlo{l&3>z35Y?Pt(Rf_NLw}s#%lM+j_ih5G@LlS5^IViQ=pY)s}T(< z5`WdFAI)U*;5n>FV?ZSu88YWriTQnlrT-z8!`CAcRI5+YYBT31AYP$G zwFZS&2l5j`s4y5SktsEHjlDsy^A#X^Wey^b)@#+^s|s_J?}*@kXZ{*1|9`4R!-ApN z$K$`oWln|7p#AuE_%Y$_`XCx?XY|-|xGr8*4gd~iA^|ta_)t1)vqcg(sW=a%QfbT1 z&c24v%gZZ|0f{kyL%-E(D|NKZ{)^z#f6=gF8KJvd^l{Kj(&-IA3l4Ags1=q&o5B2l ze$(u_HfJ*Iq~vE zu4!?Y2C~H9KErtg1O(V5IrW74Tg6c%b*dC}9UUAbUU(AGo8(wM`t0rz^86*7_nZ#A zumE2yB?H!r0cOJ9zeQyLcqdhpq=LG)vN-6n4}cF24mQa;_7v}2So{GMAYaG3%$E=F z`hG6<9j2P&>gwvU`pyRgjQIQei#Ln6Yzb^2`h2Au#AnP(2m@_}+loAow6(R_Qc_a( z9V7XF_ZZ~OKRGcmVe4(2S;~f5%6{81?M`w6jpp|K?lq?EpyP&Kd{hBoUV*Rs9G9}B z-&NjTRKuh9jWSyklk`y62Y5{P#R z-fj+caxmuQkq;a^$ZhLeuuvwg2PP&bi&qjdO)0FrsrN*ty2u>?!?9c=uGAan7?l=z zc6L6YzT^p3;FV>LCP}B#srm=sGtJGLTycv;QG}=%K3Is;{@t?w&c6*=S+GK-VjPYr z^!s#Q)^SD=aHi_2TS>h8%~gMmB7!Z)zIM}j4mp^d<%BG})xj@gOk~+z6VDqe9R6_1 zXe;{hlfCZXQc~{BrL8-69e>Dbz}HhzLBXoyP13DNeieQ482p`fXu4ov#w3~OIye0= zr&0E&^xll)5H9TcWxw!L|csJx)ARDcIX|)O)N4*SqTmw7gxwSZKJv zXy5AXlMlT5oFlhY#L&FcJkI_4+0HGGvaJK%?qF&I!Zq87ui_Z%+$AB>~@}3 z)DXF&H2EHHYte#*ok0N)wDg#|w9C&9!(GE;@hflB@BK(h4n^8m z@O4r%@%{aBsp8Kkc7vxT?@1S|F=wa5t#7GL-yLW%Yj5uZ?=#NzB^RZ2KPGZPbHfeY zAaO|)sfw~hL2BhWwx*K%R{{LTK;Sjc;Yz}mZp+!PYFR$Al5tsXwJq|4j@F(jpBG>1 zzbxpOU?x|U^-kFC`IB#V7{(|tw5ByK;{M{b%+=z9tUVWGUg`m+oAPSH7tW8|PT;xW zUprhlxw~QF^l49Ah2?qY2LErX7FoA`{B#Ol!IC@gWv`t*u(7;bQ0R_2=UCbapJ?L-F7tLTR7PYyA7uP&!f-_au@j`4@g=XcCl_t>v` Mk#M8nEHAa>KiUR34*&oF literal 296 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9Q!2~3yr0n1ZQjEnx?oJHr&dIz4aySb-B8wRq zxP?KOkzv*x37{Z*iKnkC`)y7}9zKP&W!tNOLXst}5hc#~xw)x%B@E6*sfi`2DGKG8 zB^e6tp1uL$jeO!jMN>Up978nDpPgjLcUXbPb>qe?bYez?gyu8bKZH9zrbBvAiZ?iE>U#FO~ z_Nv6@b+7lmcPZf%o+#kdGjZnHt-@;6@0W_KE%owrQJa*r*7Er>?ucov9e$rJ%qve+ m|6jI!`i;O__wBCpZUp978nDpPgjLcUXbPb>qe?bYez?gyu8bKZH9zrbBvAiZ?iE>U#FO~ z_Nv6@b+7lmcPZf%o+#kdGjZnHt-@;6@0W_KE%owrQJa*r*7Er>?ucov9e$rJ%qve+ m|6jI!`i;O__wBCpZWRpNhqCf%(k3ul=xTb1_C0QUqvM~e*=t%;K zfT*0}Y4OyE=;fqU!0C-`Ed_HNaEhgJKF|(|Jx|BSRpj)1pxj2q-XBhH=5}Uhf8XzZ zKHv9u=GUaoOrd!NdI11HOG{N`VPB5>^&|lR?wWK$j0pi2rN)wt7Fw!cGXltUXaNGI z8Q>x$3xRdjYe$e}06-|#=V&Y%RfbfH8o00u=ehUKhvyC`JXTOi4(wKDEY-WY=WoXlqKf5*<4s9$aRXVg?L|1qQ8#GGn>a8pnQR zSBjn8Y91SW1+kRIv0n$JQK`Ws)Qo^JTqsHliTI!>n#+%dB+-&cPyq2E9$&zNVx#zw zG$vLG@xeC_8}nw?6-u)d$!~mNQXIS3Vlhd1ysD}yZk3RWnu~aRiA2JK1U!Kt3PVJd zR~s#`HOg4NWZr@TDc73yCW{_5f^Lg&0a{^+V`GuNPQhSOsookkmcJ#{O`1dYx1W#U?2wkVq&LKq4`pFA*d{%0z`cNthHHBUVE5Hr~ZmC`3ug z{8&+#xumn)-{e32w6Ia-p)pXa6-%Pp``i_H7gV}9RoV}6kwu{VFmP>D?g_aK6q~^@dC(rFCt;mmm;K@-x&0`x^Tp$a zrm2UkMRLa@R{xYOlqsX#wTpp|shuRy*4+?z@pj$H=lfSZ{ML4AhSgA-u92T^l0_`C zQDHlg+>4H$nX7X?m3>N=1>VT6Kbv>5Y$csuQQ23k$t@n7O;*sjCNzRlG7A$DCWY~` z_i~N{|DNMiC$t_S2OnVK0^6=XX0_II1Om%; zBwmp}aGvVNFfcq#O|#n8-Y2f>=dSm$hAYCD6CN}_;@88#Us6Q(PH)Y<7Zy-iB#ao| zTlWA@io$!@&Td%!G=vn&(!thB{1@H*5LH6M%>>tH2A8zdHFpYq`_ry6ipPkj(g^9& z=ie=UazH+LlkOV5(Ad%vu@C3LSTX3)V|Ayn=4cv(bhrmpijkJ$^I7q#AQ&;p?y^SGd;WZf@okHgps%!+m zTMh!v@QV6c=3!Dz$NiyfTL+*)yrR2tF36FO@2m3WvgwcDH00lQPCw?DzJCFHbY2XUe#yW)f~Wr}^&R$Z*3bwa zieJ7s*Z<&N7)9=K45}CRDJb|lhrf@LbeibMeMEHJ^nDOWD!FC*Yot2&@uGB9)ms0h zk%xkAY*Fb5@=bZ{;fP^Uoj@GEqcxq{lFX^`-qnV@;PE|JWxxYtaG^?4xWgR9X*^^FmW9{hS>ge>&897cG{4v)uWC{n9Ov=HTpad&+9RDOUFa z6S!W=l{4UN$ke_g`f1Y44Pa!OM@MrhBmc)g{6?}#w;A9sAXHptuE~RseCdk+0ao(34 zJFj`(Aw%jDk%Wq+36q;s7M~)dn0I*uUczPJx(|A<(LYT5>3&S1>6*Wn2ng{@-TKve z;L2*;ZnS+WAz;r$)AIC7zr(Gnx;C{?8r~MFKJ1f%I_#G>278t)T$A_S@fsP(xH?A7 x4Nh($^oTu6S^GH)T>p?o+QP}+_qzu?0Q`8}Hy2{pPrB~}Y06B+vBdnk{{WiuB}@PS literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9Q!2~3yr0n1ZQjEnx?oJHr&dIz4aySb-B8wRq zxP?KOkzv*x37{Z*iKnkC`)y7}9(@JHmy2csg(OQ{BTAg}b8}PkN*J7rQWHy3QxwWG zOEMJPJ$(bh8~Mb6ic&pY978nDC+FOfIpbiJkfgxPBb58=|D!GSt`nD?b>0&b5;CQ^ z+43HbexpTi> oiRwj)#Rv(!=RF_dB%I6eJz9Jz%O0+CKnoc>UHx3vIVCg!08rFWnE(I) diff --git a/pandora_console/images/groups_small/without_group.ok_old.png b/pandora_console/images/groups_small/without_group.ok_old.png new file mode 100644 index 0000000000000000000000000000000000000000..2e82afde5df64533a454d164c48e5b89c43f8509 GIT binary patch literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9Q!2~3yr0n1ZQjEnx?oJHr&dIz4aySb-B8wRq zxP?KOkzv*x37{Z*iKnkC`)y7}9(@JHmy2csg(OQ{BTAg}b8}PkN*J7rQWHy3QxwWG zOEMJPJ$(bh8~Mb6ic&pY978nDC+FOfIpbiJkfgxPBb58=|D!GSt`nD?b>0&b5;CQ^ z+43HbexpTi> oiRwj)#Rv(!=RF_dB%I6eJz9Jz%O0+CKnoc>UHx3vIVCg!08rFWnE(I) literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/without_group.warning.png b/pandora_console/images/groups_small/without_group.warning.png index fa7efab97dd0412aa28087af06635ddae180a489..7ad6053c10aa8931bc521420e12eed813b40f2ac 100644 GIT binary patch literal 2142 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 Y7sEZqRn`%%3jhEB07*qoM6N<$g3Y#|J^%m! literal 882 zcmV-&1C9KNP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~G^GpS;lkN^Mx8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0^dnQK~zY`?bS_h6IT?*@&BF7c!FOr zu3v*qk_IE%ra(ZXgk7VmU9?hyy5$@2S^8BfRh3!^HW5auDo{d06B5bTZ4w739>?SH z%XsFFJ<~X$e9FrOr>>zKU(FAfaWw-4Cbud{q5Nir6CJK)%K z_<5tro#h3tUCLng22{&CsL>3ZNf4WayI(Kxc>9naf8Al_R`#{XD}mDUHY=ZB<;vU# zw3&#}B%L{of*Y7`WK zrmBQAm9VaoO~#nYq)DHPusC1fOeD%~tv4P}?~J%PKTX?ga_ol5oS!8Kzz+bSAbd%^ z)#rzYTReEQPFxT8qAK zV8B#5&YC61>%fsibUlO;&Cu>S7+s0&j_BGF*)tI0loLXbO(%J_TS3=UT+bh`gNX?R ztM3qTUJ_Mx8vPVaEyQr-cpk1RiA5vWw#{rlO=BR@HDx^D?4-&cwIt;l|}GKW$o=GK3tCaODtP6YRGG{%m-x zKdZ93lzqFXC>G*K>9M(0rm}BvqnIO?I*YDr*p5ftXjA&FMz3SBx|Drm7Ku0gXr4D@ zZQ~`i_6X@KoNk0qECkmsCirwV{@>zS(^S5?HU0mW`JMxR0l@4=5jRRbE&u=k07*qo IM6N<$f_xE~U;qFB diff --git a/pandora_console/images/groups_small/world.default_old.png b/pandora_console/images/groups_small/world.default_old.png new file mode 100644 index 0000000000000000000000000000000000000000..8917d22cc656457fed1b662a5df12fed4cec74d9 GIT binary patch literal 882 zcmV-&1C9KNP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~G^GpS;lkN^Mx8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0^dnQK~zY`?bS_h6IT?*@&BF7c!FOr zu3v*qk_IE%ra(ZXgk7VmU9?hyy5$@2S^8BfRh3!^HW5auDo{d06B5bTZ4w739>?SH z%XsFFJ<~X$e9FrOr>>zKU(FAfaWw-4Cbud{q5Nir6CJK)%K z_<5tro#h3tUCLng22{&CsL>3ZNf4WayI(Kxc>9naf8Al_R`#{XD}mDUHY=ZB<;vU# zw3&#}B%L{of*Y7`WK zrmBQAm9VaoO~#nYq)DHPusC1fOeD%~tv4P}?~J%PKTX?ga_ol5oS!8Kzz+bSAbd%^ z)#rzYTReEQPFxT8qAK zV8B#5&YC61>%fsibUlO;&Cu>S7+s0&j_BGF*)tI0loLXbO(%J_TS3=UT+bh`gNX?R ztM3qTUJ_Mx8vPVaEyQr-cpk1RiA5vWw#{rlO=BR@HDx^D?4-&cwIt;l|}GKW$o=GK3tCaODtP6YRGG{%m-x zKdZ93lzqFXC>G*K>9M(0rm}BvqnIO?I*YDr*p5ftXjA&FMz3SBx|Drm7Ku0gXr4D@ zZQ~`i_6X@KoNk0qECkmsCirwV{@>zS(^S5?HU0mW`JMxR0l@4=5jRRbE&u=k07*qo IM6N<$f_xE~U;qFB literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/world.ok.png b/pandora_console/images/groups_small/world.ok.png index 012eef9cddc664f3f814b3f6fb2d771c18e97067..fc4fac1baa95786f88bd8101d034a4cb3d71427d 100644 GIT binary patch literal 1568 zcmV+*2H*LKP)`%{eS1G_h5m& zZGwql!KR&h|F_g~fCa5n|1hvXWf^>$;VK*9=0xOL{s$QYVgm#a15S%TX2JyO+%GXQ zVN=P(fDa%W0T4ip$Pysit+PKeaPa?QxV4*$;qhtq2?q}zEJRTV(+%<%m%x7pr{bSr z@q>K=410GT!tNlGsNW2*kYHi|k7;#4ob`XB=+AIID3pL!Gvf3FwvYk{AfgZ>k_iSt zpPmQ#7~M*^qPmUx|5-RtZGtIeg1G~v;K_MrxDP=9lo&uZpajQ-b*#X+|G{u;KMNQ` zK|hKjgCIy)eSgo$pyv1oCOnZ5Tl~QQM(6__c>!6$>szc~1t`e_=nF%TZ$RMB4@QPd zYj_0lhB(Ma$YKBi#E37Xfr=A=)OkxfRTYw zLQo!(Y9uuOfnD+82@^QEeR#~o;9mWcfkzY(mZ#?OfxM}RD*_5Y=@VA6;R4sTa5Fr= z#P$JbkRZXN0ZK=bdcPR7e7>THe}2gfa}6WGq=Cy&HJ5MT< zOaU7#oyAzFa`F|q*8aZlWarE!1N$V~`|E6sf~SJ;4M8{`9{pm08!T@HHWAKPFlLn{ zE#_Lh>fQB*D)^VDcn4t54i=*=?;?^^I1HtSo|GhGs{j>nCMh@Hii()A5jfBqM=*iu z2_e~@K+8IIV-UjoYa_e4+;P;y2?8d%g%ql6QXmn~O7&Dt>QxNdTraTsDoUnnt!v!a zXK}z3>jw2X?|r0{EBJw2&Nh3nK1c5nD|+RL@4sMhK=@!2k_fRZjd}b@96c?9V;(+y z2~dmmyEF_$;nP-Vr$$8R;t-I6Am|`U5lVG&R97dvc5!fY=|AAwf5EZ+3ltT>$x(5U z4uW;)P|*@?Q+?m{63=ULNt5`X21MJh@4fqe+*A^DEi8qh{JNzMC=m(JfT+>qNCpC0 z%NoNmMU;;^fYPhtCm)f35tuSP8UO>50_&+Xsw)6|y3QgjxHcD?tjf_Owh`6_nrC?V zgeawGWs|_|Ppam8QPH6dQY(xr$)Zz5UCcNR!Bo4K)+{pzwOQ@@dgS&)irtg8IF7VW zbb#mvAzM4pj~Y%lle1y*3^5fmkS~ZQ&hS{?`{0_b7F6^6G{Zv^Kn=;S;#JrlFtcd0 z#nK>D*YMu&uW8onqzwAZE^*YYwqr0G_%UDb)-wdOzV+9RuL$h}SacHL@i)(RDVCl6 z<}TYTjssp;w|MHJ+J(-B3+Fy11;No+ioacjp5~Wq4q}E@2$=z*-M1$D48M-yIIrTH zcy(>g9I{gNi(S=6!tXqJ20s2|JxZ~i)--ovC;(KyjGIv(-T%D|bDdFfvWG&FZecuF za9Dui%QJ46s%mcKZUN8*`>+UwF@)eq3 z)ldNy8cpl~PR$8-Pz1RWB4il7 S6|`0W0000#m++j literal 1017 zcmV85zRK3w;pwBc&Rl(+Sg0*vvk_{Bq_4l!-s0!Z(bMAZ{@(5T)aCZP$kf2b&fDJL z=IijFw9R6Ml4r9XPnKkXn!51x_~Yc|%GKZE@&DuT|Jv&M#?RQ-+1vE=_51t#)!*rP zl(uS}X*`;^gMs-QT>;-(7y47gMC$ActS z$>I6c=={><`N+@J`T6;-wYGt;axWC46o5^dI#$u1bS%|#R(b2rb%#^IiW3v`Jn;~6&rkb$J%-7;= zkhffly;g?0Pk^>og}1Z8(37jjTYQ~Xs3|j+97uAccapZBw9dE4+`iA@w8z|=vdndn zv{QVOU8pr!uLUiJZ8TQ5m7O52^0xQDQOv5 zIe7&|C1n*=Bylx$4NWa=9bG+r14AQY6NH4RnYo3fm9>qnoxOvjld}t4!qv^)!_&*l z+sD_>KOitD7%mYK8WtWA85tEF6CE2DpMY>#Vp4KSYFc_mOiWB>R(1{}Tp~9wzo4+F zxTLf!ro5uEsv0g)Q(G5P-_Y39+|t_C-qDG$ysNt>CZ@Nqf5OB`lc!9bHXSZ8W9F>c zbLP&QzhL2_#Y>ErBKdIH@)avrtzNTs-TDn1H=%^d<}F*dZQrqT*X})g(Smp1{sRXO n9X@i@g<&8;^)Z*@puhqE8Dvt=g7?Xi00000NkvXXu0mjft%NR; diff --git a/pandora_console/images/groups_small/world.ok_old.png b/pandora_console/images/groups_small/world.ok_old.png new file mode 100644 index 0000000000000000000000000000000000000000..012eef9cddc664f3f814b3f6fb2d771c18e97067 GIT binary patch literal 1017 zcmV85zRK3w;pwBc&Rl(+Sg0*vvk_{Bq_4l!-s0!Z(bMAZ{@(5T)aCZP$kf2b&fDJL z=IijFw9R6Ml4r9XPnKkXn!51x_~Yc|%GKZE@&DuT|Jv&M#?RQ-+1vE=_51t#)!*rP zl(uS}X*`;^gMs-QT>;-(7y47gMC$ActS z$>I6c=={><`N+@J`T6;-wYGt;axWC46o5^dI#$u1bS%|#R(b2rb%#^IiW3v`Jn;~6&rkb$J%-7;= zkhffly;g?0Pk^>og}1Z8(37jjTYQ~Xs3|j+97uAccapZBw9dE4+`iA@w8z|=vdndn zv{QVOU8pr!uLUiJZ8TQ5m7O52^0xQDQOv5 zIe7&|C1n*=Bylx$4NWa=9bG+r14AQY6NH4RnYo3fm9>qnoxOvjld}t4!qv^)!_&*l z+sD_>KOitD7%mYK8WtWA85tEF6CE2DpMY>#Vp4KSYFc_mOiWB>R(1{}Tp~9wzo4+F zxTLf!ro5uEsv0g)Q(G5P-_Y39+|t_C-qDG$ysNt>CZ@Nqf5OB`lc!9bHXSZ8W9F>c zbLP&QzhL2_#Y>ErBKdIH@)avrtzNTs-TDn1H=%^d<}F*dZQrqT*X})g(Smp1{sRXO n9X@i@g<&8;^)Z*@puhqE8Dvt=g7?Xi00000NkvXXu0mjft%NR; literal 0 HcmV?d00001 diff --git a/pandora_console/images/groups_small/world.warning.png b/pandora_console/images/groups_small/world.warning.png index 66cf9efd03547e3ae16005b16ec705060b111dc3..a8d44c42b47ce8a5f0390813134a93559ce399c8 100644 GIT binary patch literal 1508 zcmVijeKz0IH z5X3PvGXvw(%Z2`9Q`rDFqP18PBmh?( zMNxI^18`Wqc*n+&4)PJQ7(f6q z5(r>WKA4Xtyx`!$gNZoPH+l>Ksq^cbPB8Fr{=sQcV4VfSm+veWfCd|4H4JFb{W!Nr z3bC$_;9{WQow!DpK~ne^LtgM>3`1Q@Z5V(CGGa^9Cava47ZBCx|e3ph1GfGZdPNF%l{=000NEv~GT#_N>vh3-6NGUA7Gw^#@(Yx~ zVE|NefGj~4!x?7KD2LRXP;Y^}S~*J@Tmd)i$FPxH5MF=$#_fUDTv4@^T2JsFn?=EIloIT&KvOyET} zMwkI596_lYlx+wBkU>D8NT^LE2r51C0Z=6Z1cgA$AK*0%n%5km8n9MzKyU!4ZUQNV zVghn=6NHl@P5whm6tYTLxPefE-jh{0Vre1}tULe$^kV)l34~!BzcLz{4h=E{LC`^( z0;eWj92$y-YB9*Rrf3NIG1OMjKhRd>5H0CcU_(R@1`aL}wWKuI4;(@;jfURu>%G@| zZ}&^@>H$3u_3nGm``q*WJlEq!yH zywXPY(UmYFCQde4h(VKDoOqOyu@~DH1A&?IpmcJj@+@xoglI>dU?b256)K~jugpF; zUUtDNb41)!r*2LQ6&c!FE|KMGx{49V;9)+<2q7e9ug|2Isi@3a(U6hR$>A;ahDRk+ zU~f3kpbgn9K)R^S-Q$R?tcs>Bdi4H8K=cTkjnqB$Y%$=PaD%fO9~JZY)k|Ls<5g)U z@hYW~&$hCLV`FKb-UeiH&i6{CQZUUJU;}SsBQ@PGF`)6>4jf-kwL1gEB9qlxKdmF| z`@Jnn*$^!TSnc}OhmVu+S$o5|K_D}HOvist2tQ>aPy!GL(-vBXWf%#g4z66uuNaNg zrTx`Abw9lmr6|HCSO@{mF@VDG!cDcB;LdSrM_9T&dqfPcblBITv?j)BVUUUg8nR{P zNkt@LrMJPNw(PbGK!4UwyFk5RW<;hSI2`!U6)k3J^B~H0L!y1zZm{A|;UoY<3SDVN z@op>$L@;mF*Q_F69HQmH7>bC>IW}>n>0WeWPl62@J_&J37wTgdD}fL)w;f}GEREY0 z9y1dNA;^$YN4j44XTtOZ!YMFYaDtGb(!YSB1+&GuCu(IU$NL5p(&kHTLEhK^0000< KMNUMnLSTZT+K-X| literal 891 zcmV->1BCpEP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~G_6cuwGx&QzG8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0_aIZK~zY`?UhY$8&w!a&z+1tU^^7Y z@z{=&rX8hnOCU{3LPZ6H3aLUAqDlx>>=FDH{sAj?bWw=~P>BzrB%&ZkQIs?;Y4g!G ziQ~lMj6JnIU$$ph6n2T~B6R`c+1@K1z4v)_uGoF>X23Iy#52ynA0R*J!f%BfzZcF@ zsrS?B^bnFfhSV~z<~Eti-Tmi)Vx^C-ZoWq*t?};kFsHK#B8oz_VY9KLvsl>SR$-No zr{~BdjAH@fs4d#wPw?f>}#GAb#TjsqG+jY~GpDcw_PcH|F2!zT}@4Ch3c( zxI8sNNb+gRF^~iyStcBki6}CuL@yaNN%F-gQ=@|j`5X&(bKL>%?M*N_dXieT!hst> z9XLf0fFA%tLiipfqsce3tNbv($O$FjrI7(vwzTd_E>}Ygr{m<;%V=j*`~bvXXN{V{ zYvZE`AqawiV(9?Kw#g(>3% z);3W>GM1}!H-X$EFq;lhXOEbyP;T~93598Qd>o_Ac&ml$di2JkSeC`9Y?89=5mDUk z0P(29{oM)^BWbju3=emT%x^rxBaH1u`QpYhisAwJf6N{p%5rrgNvUjbXf`oj!NaPLuIrel$#d~6Yg_w_X1!`qlI2=a#*uCd}L#qCI_ZVwHeS8tR1V3BULeT@q50Wm+^hLkW2C1vPsno z1BCpEP)Px#32;bRa{vGf6951U69E94oEQKA00(qQO+^RV0u~G_6cuwGx&QzG8FWQhbVF}# zZDnqB07G(RVRU6=Aa`kWXdp*PO;A^X4i^9b0_aIZK~zY`?UhY$8&w!a&z+1tU^^7Y z@z{=&rX8hnOCU{3LPZ6H3aLUAqDlx>>=FDH{sAj?bWw=~P>BzrB%&ZkQIs?;Y4g!G ziQ~lMj6JnIU$$ph6n2T~B6R`c+1@K1z4v)_uGoF>X23Iy#52ynA0R*J!f%BfzZcF@ zsrS?B^bnFfhSV~z<~Eti-Tmi)Vx^C-ZoWq*t?};kFsHK#B8oz_VY9KLvsl>SR$-No zr{~BdjAH@fs4d#wPw?f>}#GAb#TjsqG+jY~GpDcw_PcH|F2!zT}@4Ch3c( zxI8sNNb+gRF^~iyStcBki6}CuL@yaNN%F-gQ=@|j`5X&(bKL>%?M*N_dXieT!hst> z9XLf0fFA%tLiipfqsce3tNbv($O$FjrI7(vwzTd_E>}Ygr{m<;%V=j*`~bvXXN{V{ zYvZE`AqawiV(9?Kw#g(>3% z);3W>GM1}!H-X$EFq;lhXOEbyP;T~93598Qd>o_Ac&ml$di2JkSeC`9Y?89=5mDUk z0P(29{oM)^BWbju3=emT%x^rxBaH1u`QpYhisAwJf6N{p%5rrgNvUjbXf`oj!NaPLuIrel$#d~6Yg_w_X1!`qlI2=a#*uCd}L#qCI_ZVwHeS8tR1V3BULeT@q50Wm+^hLkW2C1vPsno z Date: Tue, 26 Sep 2017 15:39:46 +0200 Subject: [PATCH 017/311] Change pchart vertical and horizontal grphs style - #417 --- pandora_console/include/graphs/fgraph.php | 32 +++++ .../include/graphs/functions_pchart.php | 128 ++++++++++++++++-- 2 files changed, 151 insertions(+), 9 deletions(-) diff --git a/pandora_console/include/graphs/fgraph.php b/pandora_console/include/graphs/fgraph.php index c36529b7f7..ed12555593 100644 --- a/pandora_console/include/graphs/fgraph.php +++ b/pandora_console/include/graphs/fgraph.php @@ -191,6 +191,22 @@ function vbar_graph($flash_chart, $chart_data, $width, $height, $homedir,$font,$font_size, $from_ux, $from_wux); } else { + foreach ($chart_data as $key => $value) { + if(strlen($key) > 25){ + + if(strpos($key, ' - ') != -1){ + $key_temp = explode(" - ",$key); + $key_temp[0] = $key_temp[0]." \n"; + $key_temp[1]= '...'.substr($key_temp[1],-15); + $key2 = $key_temp[0].$key_temp[1]; + io_safe_output($key2); + } + $chart_data[$key2]['g'] = $chart_data[$key]['g']; + unset($chart_data[$key]); + } + + } + $graph = array(); $graph['data'] = $chart_data; $graph['width'] = $width; @@ -639,6 +655,22 @@ function hbar_graph($flash_chart, $chart_data, $width, $height, $chart_data, $width, $height, $water_mark_url, $font, $font_size); } else { + + foreach ($chart_data as $key => $value) { + if(strlen($key) > 40){ + if(strpos($key, ' - ') != -1){ + $key_temp = explode(" - ",$key); + $key_temp[0] = $key_temp[0]." \n"; + $key_temp[1]= '...'.substr($key_temp[1],-20); + $key2 = $key_temp[0].$key_temp[1]; + io_safe_output($key2); + } + $chart_data[$key2]['g'] = $chart_data[$key]['g']; + unset($chart_data[$key]); + } + } + + $graph = array(); $graph['data'] = $chart_data; $graph['width'] = $width; diff --git a/pandora_console/include/graphs/functions_pchart.php b/pandora_console/include/graphs/functions_pchart.php index d33ad21878..a48f35ff90 100644 --- a/pandora_console/include/graphs/functions_pchart.php +++ b/pandora_console/include/graphs/functions_pchart.php @@ -695,9 +695,12 @@ function pch_bar_graph ($graph_type, $index, $data, $width, $height, $font, $MyData->setSerieDescription("Xaxis", $xaxisname); $MyData->setAbscissa("Xaxis"); + /* Create the pChart object */ $myPicture = new pImage($width,$height,$MyData); + + /* Turn of Antialiasing */ $myPicture->Antialias = $antialiasing; @@ -705,7 +708,15 @@ function pch_bar_graph ($graph_type, $index, $data, $width, $height, $font, //$myPicture->drawRectangle(0,0,$width,$height,array("R"=>0,"G"=>0,"B"=>0)); /* Turn on shadow computing */ - $myPicture->setShadow(TRUE,array("X"=>1,"Y"=>1,"R"=>0,"G"=>0,"B"=>0,"Alpha"=>10)); + $myPicture->setShadow(TRUE,array("X"=>1,"Y"=>1,"R"=>120,"G"=>120,"B"=>120,"Alpha"=>10)); + + $pdf = get_parameter('pdf',false); + + if($pdf == true){ + $font_size = $font_size+1; + } + + /* Set the default font */ $myPicture->setFontProperties(array("FontName"=>$font,"FontSize"=>$font_size)); @@ -721,15 +732,15 @@ function pch_bar_graph ($graph_type, $index, $data, $width, $height, $font, switch($graph_type) { case "vbar": $scaleSettings = array("AvoidTickWhenEmpty" => FALSE, "AvoidGridWhenEmpty" => FALSE, - "GridR"=>200,"GridG"=>200,"GridB"=>200,"DrawSubTicks"=>TRUE,"CycleBackground"=>TRUE, - "Mode"=>SCALE_MODE_START0, "LabelRotation" => 60); - $margin_left = 40; - $margin_right = 0; + "GridR"=>1000,"GridG"=>1000,"GridB"=>1000,"DrawSubTicks"=>TRUE,"CycleBackground"=>TRUE, + "Mode"=>SCALE_MODE_START0, "LabelRotation" => 45); + $margin_left = 40+50; + $margin_right = 90; $margin_top = 10; - $margin_bottom = 3 * $max_chars; + $margin_bottom = (3 * $max_chars)+40; break; case "hbar": - $scaleSettings = array("GridR"=>200,"GridG"=>200,"GridB"=>200,"DrawSubTicks"=>TRUE, + $scaleSettings = array("GridR"=>1000,"GridG"=>1000,"GridB"=>1000,"DrawSubTicks"=>TRUE, "CycleBackground"=>TRUE, "Mode"=>SCALE_MODE_START0, "Pos"=>SCALE_POS_TOPBOTTOM, "LabelValuesRotation" => 30); $margin_left = $font_size * $max_chars; @@ -753,9 +764,108 @@ function pch_bar_graph ($graph_type, $index, $data, $width, $height, $font, /* Turn on shadow computing */ $myPicture->setShadow(TRUE,array("X"=>0,"Y"=>1,"R"=>0,"G"=>0,"B"=>0,"Alpha"=>10)); - /* Draw the chart */ - $settings = array("ForceTransparency"=>"-1", "Gradient"=>TRUE,"GradientMode"=>GRADIENT_EFFECT_CAN,"DisplayValues"=>$show_values,"DisplayZeroValues"=>FALSE,"DisplayR"=>100,"DisplayG"=>100,"DisplayB"=>100,"DisplayShadow"=>TRUE,"Surrounding"=>5,"AroundZero"=>FALSE, "OverrideColors"=>$overridePalette); + /* Draw the chart */ + $settings = array("ForceTransparency"=>"-1", "Gradient"=>FALSE,"GradientMode"=>GRADIENT_EFFECT_CAN,"DisplayValues"=>$show_values,"DisplayZeroValues"=>FALSE,"DisplayR"=>100,"DisplayG"=>100,"DisplayB"=>100,"DisplayShadow"=>TRUE,"Surrounding"=>5,"AroundZero"=>FALSE, "OverrideColors"=>$overridePalette); + + /* goes through a series of colors and assigns them to the bars, when it ends it starts from the beginning */ + + for ($i=0,$j=1; $i < count($settings['OverrideColors']); $i++) { + + switch ($j) { + case 1: + $settings['OverrideColors'][$i]['R'] = 43; + $settings['OverrideColors'][$i]['G'] = 98; + $settings['OverrideColors'][$i]['B'] = 201; + $j++; + break; + + case 2: + $settings['OverrideColors'][$i]['R'] = 243; + $settings['OverrideColors'][$i]['G'] = 86; + $settings['OverrideColors'][$i]['B'] = 157; + $j++; + break; + + case 3: + $settings['OverrideColors'][$i]['R'] = 191; + $settings['OverrideColors'][$i]['G'] = 191; + $settings['OverrideColors'][$i]['B'] = 191; + $j++; + break; + + case 4: + $settings['OverrideColors'][$i]['R'] = 251; + $settings['OverrideColors'][$i]['G'] = 183; + $settings['OverrideColors'][$i]['B'] = 50; + $j++; + break; + + case 5: + $settings['OverrideColors'][$i]['R'] = 157; + $settings['OverrideColors'][$i]['G'] = 117; + $settings['OverrideColors'][$i]['B'] = 177; + $j++; + break; + + case 6: + $settings['OverrideColors'][$i]['R'] = 39; + $settings['OverrideColors'][$i]['G'] = 172; + $settings['OverrideColors'][$i]['B'] = 151; + $j++; + break; + + case 7: + $settings['OverrideColors'][$i]['R'] = 171; + $settings['OverrideColors'][$i]['G'] = 42; + $settings['OverrideColors'][$i]['B'] = 46; + $j++; + break; + + case 8: + $settings['OverrideColors'][$i]['R'] = 185; + $settings['OverrideColors'][$i]['G'] = 218; + $settings['OverrideColors'][$i]['B'] = 87; + $j++; + break; + + case 9: + $settings['OverrideColors'][$i]['R'] = 60; + $settings['OverrideColors'][$i]['G'] = 182; + $settings['OverrideColors'][$i]['B'] = 203; + $j++; + break; + + case 10: + $settings['OverrideColors'][$i]['R'] = 105; + $settings['OverrideColors'][$i]['G'] = 65; + $settings['OverrideColors'][$i]['B'] = 179; + $j++; + break; + + case 11: + $settings['OverrideColors'][$i]['R'] = 228; + $settings['OverrideColors'][$i]['G'] = 35; + $settings['OverrideColors'][$i]['B'] = 102; + $j++; + break; + + case 12: + $settings['OverrideColors'][$i]['R'] = 252; + $settings['OverrideColors'][$i]['G'] = 130; + $settings['OverrideColors'][$i]['B'] = 53; + $j = 1; + break; + + + default: + + break; + + } + + } + $myPicture->drawBarChart($settings); // Paint the water mark at the last moment to show it in front From 788265713eb0e84c50564542669ffdd582f7f083 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Mon, 2 Oct 2017 18:23:26 +0200 Subject: [PATCH 018/311] Graph and table mode for max, min and avg reports an template reports - #654 --- .../pandoradb_migrate_6.0_to_7.0.mysql.sql | 6 + .../reporting_builder.item_editor.php | 116 ++++- .../godmode/reporting/reporting_builder.php | 18 + pandora_console/include/functions_graph.php | 79 +++- .../include/functions_reporting.php | 435 +++++++++++++++++- pandora_console/pandoradb.sql | 6 + 6 files changed, 629 insertions(+), 31 deletions(-) diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 4e31057a89..a2a6db38d2 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -725,6 +725,9 @@ CREATE TABLE IF NOT EXISTS `treport_content_template` ( `module_free_text` TEXT, `each_agent` tinyint(1) default 1, `historical_db` tinyint(1) UNSIGNED NOT NULL default 0, + `lapse_calc` tinyint(1) UNSIGNED NOT NULL default '0', + `lapse` int(11) UNSIGNED NOT NULL default '300', + `visual_format` UNSIGNED NOT NULL tinyint(1) default '0', PRIMARY KEY(`id_rc`) ) ENGINE = InnoDB DEFAULT CHARSET=utf8; @@ -1269,6 +1272,9 @@ UPDATE treport_custom_sql SET `sql` = 'select t1.alias as agent_n -- --------------------------------------------------------------------- ALTER TABLE treport_content ADD COLUMN `historical_db` tinyint(1) NOT NULL DEFAULT '0'; +ALTER TABLE treport_content ADD COLUMN `lapse_calc` tinyint(1) default '0'; +ALTER TABLE treport_content ADD COLUMN `lapse` int(11) default '300'; +ALTER TABLE treport_content ADD COLUMN `visual_format` tinyint(1) default '0'; -- --------------------------------------------------------------------- -- Table `tmodule_relationship` diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 534bf07a0b..7fe43f42e4 100755 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -112,6 +112,10 @@ $netflow_filter = 0; $max_values = 0; $resolution = 0; +$lapse_calc = 0; +$lapse = 300; +$visual_format = 0; + //Others $filter_search = ""; @@ -195,12 +199,6 @@ switch ($action) { $name = $item['name']; switch ($type) { - case 'avg_value': - $period = $item['period']; - $description = $item['description']; - $idAgentModule = $item['id_agent_module']; - $idAgent = db_get_value_filter('id_agente', 'tagente_modulo', array('id_agente_modulo' => $idAgentModule)); - break; case 'event_report_log': $period = $item['period']; $description = $item['description']; @@ -312,6 +310,9 @@ switch ($action) { $idAgent = db_get_value_filter('id_agente', 'tagente_modulo', array('id_agente_modulo' => $idAgentModule)); $idAgentModule = $item['id_agent_module']; $period = $item['period']; + $lapse = $item['lapse']; + $lapse_calc = $item['lapse_calc']; + $visual_format = $item['visual_format']; break; case 'max_value': $description = $item['description']; @@ -319,6 +320,9 @@ switch ($action) { $idAgent = db_get_value_filter('id_agente', 'tagente_modulo', array('id_agente_modulo' => $idAgentModule)); $idAgentModule = $item['id_agent_module']; $period = $item['period']; + $lapse = $item['lapse']; + $lapse_calc = $item['lapse_calc']; + $visual_format = $item['visual_format']; break; case 'min_value': $description = $item['description']; @@ -326,6 +330,9 @@ switch ($action) { $idAgent = db_get_value_filter('id_agente', 'tagente_modulo', array('id_agente_modulo' => $idAgentModule)); $idAgentModule = $item['id_agent_module']; $period = $item['period']; + $lapse = $item['lapse']; + $lapse_calc = $item['lapse_calc']; + $visual_format = $item['visual_format']; break; case 'sumatory': $description = $item['description']; @@ -1578,6 +1585,78 @@ You can of course remove the warnings, that's why we include the source and do n ?> + + + + + + + + + + + + + + + + + + + + +
" . $filter_groups_label . "" . $filter_groups . "" . $filter_groups ."   ". $filter_recursion_label . $filter_recursion. "" . $filter_module_groups_label . "
+ + + +
+ + + +
+ '; + html_print_radio_button ('visual_format', 1, '', $visual_format_table,'',!$lapse_calc); + echo (''); + echo __('Graph only').''; + html_print_radio_button ('visual_format', 2, '', $visual_format_graph,'',!$lapse_calc); + echo (''); + echo __('Graph and table').''; + html_print_radio_button ('visual_format', 3, '', $visual_format_both,'',!$lapse_calc); + + ?> +
@@ -2178,6 +2257,19 @@ $(document).ready (function () { } }); + $("#checkbox-lapse_calc").change(function () { + + if($(this).is(":checked")){ + $( "#lapse_select" ).prop( "disabled", false ); + $("[name=visual_format]").prop( "disabled", false ); + } + else{ + $( "#lapse_select" ).prop( "disabled", true ); + $("[name=visual_format]").prop( "disabled", true ); + } + + }); + }); function create_custom_graph() { @@ -2659,6 +2751,9 @@ function chooseType() { $("#row_show_in_two_columns").hide(); $("#row_show_in_same_row").hide(); $("#row_historical_db_check").hide(); + $("#row_lapse_calc").hide(); + $("#row_lapse").hide(); + $("#row_visual_format").hide(); $("#row_show_in_landscape").hide(); $('#row_hide_notinit_agents').hide(); $("#row_module_group").hide(); @@ -2851,6 +2946,9 @@ function chooseType() { $("#row_module").show(); $("#row_period").show(); $("#row_show_in_two_columns").show(); + $("#row_lapse_calc").show(); + $("#row_lapse").show(); + $("#row_visual_format").show(); $("#row_historical_db_check").hide(); break; @@ -2860,6 +2958,9 @@ function chooseType() { $("#row_module").show(); $("#row_period").show(); $("#row_show_in_two_columns").show(); + $("#row_lapse_calc").show(); + $("#row_lapse").show(); + $("#row_visual_format").show(); $("#row_historical_db_check").hide(); break; @@ -2869,6 +2970,9 @@ function chooseType() { $("#row_module").show(); $("#row_period").show(); $("#row_show_in_two_columns").show(); + $("#row_lapse_calc").show(); + $("#row_lapse").show(); + $("#row_visual_format").show(); $("#row_historical_db_check").hide(); break; diff --git a/pandora_console/godmode/reporting/reporting_builder.php b/pandora_console/godmode/reporting/reporting_builder.php index 4dd13e9af0..9103405f9e 100755 --- a/pandora_console/godmode/reporting/reporting_builder.php +++ b/pandora_console/godmode/reporting/reporting_builder.php @@ -1019,6 +1019,15 @@ switch ($action) { $values['period'] = get_parameter('period'); $good_format = true; break; + case 'min_value': + case 'max_value': + case 'avg_value': + $values['period'] = get_parameter('period'); + $values['lapse_calc'] = get_parameter('lapse_calc'); + $values['lapse'] = get_parameter('lapse'); + $values['visual_format'] = get_parameter('visual_format'); + $good_format = true; + break; default: $values['period'] = get_parameter('period'); $values['top_n'] = get_parameter('radiobutton_max_min_avg',0); @@ -1354,6 +1363,15 @@ switch ($action) { $values['period'] = get_parameter('period'); $good_format = true; break; + case 'min_value': + case 'max_value': + case 'avg_value': + $values['period'] = get_parameter('period'); + $values['lapse_calc'] = get_parameter('lapse_calc'); + $values['lapse'] = get_parameter('lapse'); + $values['visual_format'] = get_parameter('visual_format'); + $good_format = true; + break; default: $values['period'] = get_parameter('period'); $values['top_n'] = get_parameter('radiobutton_max_min_avg',0); diff --git a/pandora_console/include/functions_graph.php b/pandora_console/include/functions_graph.php index 7e3fe9fbdb..d904d2e8df 100644 --- a/pandora_console/include/functions_graph.php +++ b/pandora_console/include/functions_graph.php @@ -232,8 +232,8 @@ function grafico_modulo_sparse_data_chart (&$chart, &$chart_data_extra, &$long_i $projection, $avg_only = false, $uncompressed_module = false, $show_events = false, $show_alerts = false, $show_unknown = false, $baseline = false, $baseline_data = array(), $events = array(), $series_suffix = '', $start_unknown = false, - $percentil = null, $fullscale = false) { - + $percentil = null, $fullscale = false, $force_interval = false,$time_interval = 300, + $max_only = 0, $min_only = 0) { global $config; global $chart_extra_data; global $series_type; @@ -413,10 +413,17 @@ function grafico_modulo_sparse_data_chart (&$chart, &$chart_data_extra, &$long_i } if ($count > 0) { + if ($avg_only) { $chart[$timestamp]['sum'.$series_suffix] = $total; } - else { + else if($max_only){ + $chart[$timestamp]['max'.$series_suffix] = $interval_max; + } + else if($min_only){ + $chart[$timestamp]['min'.$series_suffix] = $interval_min; + } + else{ $chart[$timestamp]['max'.$series_suffix] = $interval_max; $chart[$timestamp]['sum'.$series_suffix] = $total; $chart[$timestamp]['min'.$series_suffix] = $interval_min; @@ -428,7 +435,13 @@ function grafico_modulo_sparse_data_chart (&$chart, &$chart_data_extra, &$long_i if ($avg_only) { $chart[$timestamp]['sum'.$series_suffix] = 0; } - else { + else if($max_only){ + $chart[$timestamp]['max'.$series_suffix] = 0; + } + else if($min_only){ + $chart[$timestamp]['min'.$series_suffix] = 0; + } + else{ $chart[$timestamp]['max'.$series_suffix] = 0; $chart[$timestamp]['sum'.$series_suffix] = 0; $chart[$timestamp]['min'.$series_suffix] = 0; @@ -438,6 +451,12 @@ function grafico_modulo_sparse_data_chart (&$chart, &$chart_data_extra, &$long_i if ($avg_only) { $chart[$timestamp]['sum'.$series_suffix] = $last_known; } + else if ($max_only) { + $chart[$timestamp]['max'.$series_suffix] = $last_known; + } + else if ($min_only) { + $chart[$timestamp]['min'.$series_suffix] = $last_known; + } else { $chart[$timestamp]['max'.$series_suffix] = $last_known; $chart[$timestamp]['sum'.$series_suffix] = $last_known; @@ -502,8 +521,9 @@ function grafico_modulo_sparse_data ($agent_module_id, $period, $show_events, $baseline = 0, $return_data = 0, $show_title = true, $projection = false, $adapt_key = '', $compare = false, $series_suffix = '', $series_suffix_str = '', $show_unknown = false, $percentil = null, $dashboard = false, $vconsole = false, - $type_graph='area', $fullscale = false, $flash_chart = false) { - + $type_graph='area', $fullscale = false, $flash_chart = false, $force_interval = false,$time_interval = 300, + $max_only = 0, $min_only = 0) { + global $config; global $chart; global $color; @@ -529,8 +549,23 @@ function grafico_modulo_sparse_data ($agent_module_id, $period, $show_events, if ($date == 0) $date = get_system_time(); $datelimit = $date - $period; $search_in_history_db = db_search_in_history_db($datelimit); - $resolution = $config['graph_res'] * 50; //Number of points of the graph - $interval = (int) ($period / $resolution); + + + + if($force_interval){ + $resolution = $period/$time_interval; + } + else{ + $resolution = $config['graph_res'] * 50; //Number of points of the graph + } + + if($force_interval){ + $interval = $time_interval; + } + else{ + $interval = (int) ($period / $resolution); + } + $agent_name = modules_get_agentmodule_agent_name ($agent_module_id); $agent_id = agents_get_agent_id ($agent_name); $module_name = modules_get_agentmodule_name ($agent_module_id); @@ -715,7 +750,8 @@ function grafico_modulo_sparse_data ($agent_module_id, $period, $show_events, $projection, $avg_only, $uncompressed_module, $show_events, $show_alerts, $show_unknown, $baseline, $baseline_data, $events, $series_suffix, $start_unknown, - $percentil, $fullscale); + $percentil, $fullscale, $force_interval, $time_interval, + $max_only, $min_only); } // Return chart data and don't draw @@ -838,6 +874,19 @@ function grafico_modulo_sparse_data ($agent_module_id, $period, $show_events, $legend['percentil'.$series_suffix] = __('Percentile %dº', $percentil) .$series_suffix_str . " (" . $percentil_value . " " . $unit . ") "; $chart_extra_data['legend_percentil'] = $legend['percentil'.$series_suffix_str]; } + + if($force_interval){ + $legend = array(); + if($avg_only){ + $legend['sum'.$series_suffix] = __('Avg'); + } + elseif ($max_only) { + $legend['min'.$series_suffix] = __('Max'); + } + elseif ($min_only) { + $legend['max'.$series_suffix] = __('Min'); + } + } } function grafico_modulo_sparse ($agent_module_id, $period, $show_events, @@ -848,8 +897,10 @@ function grafico_modulo_sparse ($agent_module_id, $period, $show_events, $adapt_key = '', $compare = false, $show_unknown = false, $menu = true, $backgroundColor = 'white', $percentil = null, $dashboard = false, $vconsole = false, $type_graph = 'area', $fullscale = false, - $id_widget_dashboard = false) { - + $id_widget_dashboard = false,$force_interval = 0,$time_interval = 300, + $max_only = 0, $min_only = 0) { + + global $config; global $graphic_type; @@ -879,7 +930,7 @@ function grafico_modulo_sparse ($agent_module_id, $period, $show_events, $return_data, $show_title, $projection, $adapt_key, $compare, $series_suffix, $series_suffix_str, $show_unknown, $percentil, $dashboard, $vconsole,$type_graph, - $fullscale, $flash_chart); + $fullscale, $flash_chart,$force_interval,$time_interval,$max_only,$min_only); switch ($compare) { case 'separated': @@ -912,7 +963,9 @@ function grafico_modulo_sparse ($agent_module_id, $period, $show_events, $show_alerts, $avg_only, $date, $unit, $baseline, $return_data, $show_title, $projection, $adapt_key, $compare, '', '', $show_unknown, - $percentil, $dashboard, $vconsole, $type_graph, $fullscale, $flash_chart); + $percentil, $dashboard, $vconsole, $type_graph, $fullscale,$flash_chart, + $force_interval,$time_interval,$max_only,$min_only); + if ($return_data) { return $data_returned; } diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 8a47d2c7d2..7d71bbecab 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -188,6 +188,9 @@ function reporting_make_reporting_data($report = null, $id_report, $items_label['id_agent_module'] = $content['id_agent_module']; $items_label['modules'] = $modules_to_macro; $items_label['agents'] = $agents_to_macro; + $items_label['visual_format'] = $visual_format; + $metaconsole_on = is_metaconsole(); + $server_name = $content['server_name']; //Metaconsole connection if ($metaconsole_on && $server_name != '') { @@ -288,19 +291,19 @@ function reporting_make_reporting_data($report = null, $id_report, $report['contents'][] = reporting_value( $report, $content, - 'max'); + 'max',$pdf); break; case 'avg_value': $report['contents'][] = reporting_value( $report, $content, - 'avg'); + 'avg',$pdf); break; case 'min_value': $report['contents'][] = reporting_value( $report, $content, - 'min'); + 'min',$pdf); break; case 'sumatory': $report['contents'][] = reporting_value( @@ -3750,7 +3753,7 @@ function reporting_agent_configuration($report, $content) { return reporting_check_structure_content($return); } -function reporting_value($report, $content, $type) { +function reporting_value($report, $content, $type,$pdf) { global $config; $return = array(); @@ -3835,8 +3838,17 @@ function reporting_value($report, $content, $type) { $return['agent_name'] = $agent_name; $return['module_name'] = $module_name; + html_debug($pdf,true); + html_debug($only_image,true); + + if($pdf){ + $only_image = 1; + } + switch ($type) { case 'max': + if($content['lapse_calc'] == 0){ + $value = reporting_get_agentmodule_data_max( $content['id_agent_module'], $content['period'], $report["datetime"]); if (!$config['simple_module_value']) { @@ -3845,18 +3857,286 @@ function reporting_value($report, $content, $type) { else { $formated_value = format_for_graph($value, $config['graph_precision']) . " " . $unit; } - break; + + } + else{ + + $value = ' + + + + + + + + + +
'; + + if($content['visual_format'] == 1 || $content['visual_format'] == 2 || $content['visual_format'] == 3){ + + $value .= ' + + + + + + + + + + +
+ '.__("Agent").' + + '.__("Module").' + + '.__("Maximum").' +
+ '.$agent_name.' + + '.$module_name.' + + '.format_for_graph(reporting_get_agentmodule_data_max( + $content['id_agent_module'], $content['period'], $report["datetime"]), $config['graph_precision']) . ' ' . $unit.' +
'; + + } + + $value .= ' +
+ '; + + if($content['visual_format'] == 2 || $content['visual_format'] == 3){ + $value .= + grafico_modulo_sparse( + $content['id_agent_module'], + $content['period'], + false, + 600, + 300, + '', + '', + false, + 0, + true, + $report["datetime"], + '', + 0, + 0, + true, + $only_image, + ui_get_full_url(false, false, false, false), + 2, + false, + '', + $time_compare_overlapped, + true, + true, + 'white', + ($content['style']['percentil'] == 1) ? $config['percentil'] : null, + false, + false, + $config['type_module_charts'], + false, + false, + $content['lapse_calc'], + $content['lapse'], + 1); + } + + $value .= ' + +
'; + + if($content['visual_format'] == 1 || $content['visual_format'] == 3){ + + $value .= ' + + + + + + '; + $time_begin = db_get_row_sql('select utimestamp from tagente_datos where id_agente_modulo ='.$content['id_agent_module']); + $date_reference = getdate(); + + for ($i=$date_reference[0]; $i > ($date_reference[0]-$content["period"]); $i -= $content["lapse"]) { + + $value .= ''; + } + else{ + $value .= 'N/A'; + } + + } + + $value .='
+ '.__("Lapse").' + + '.__("Maximum").' +
'. date("Y-m-d H:i:s", ($i-$content["lapse"]+1)).' to '.date("Y-m-d H:i:s",$i).''; + + if($i>$time_begin['utimestamp']){ + $value .= format_for_graph(reporting_get_agentmodule_data_min( + $content['id_agent_module'], $content["lapse"], $i), $config['graph_precision']) . ' ' . $unit.'
'; + } + + $value .= ' + +
'; + + $formated_value = $value; + } + + break; case 'min': - $value = reporting_get_agentmodule_data_min( - $content['id_agent_module'], $content['period'], $report["datetime"]); - if (!$config['simple_module_value']) { + if($content['lapse_calc'] == 0){ + $value = reporting_get_agentmodule_data_min( + $content['id_agent_module'], $content['period'], $report["datetime"]); + + if (!$config['simple_module_value']) { + $formated_value = $value; + } + else { + $formated_value = format_for_graph($value, $config['graph_precision']) . " " . $unit; + } + + } + else{ + + $value = ' + + + + + + + + + +
'; + + if($content['visual_format'] == 1 || $content['visual_format'] == 2 || $content['visual_format'] == 3){ + + $value .= ' + + + + + + + + + + +
+ '.__("Agent").' + + '.__("Module").' + + '.__("Minimum").' +
+ '.$agent_name.' + + '.$module_name.' + + '.format_for_graph(reporting_get_agentmodule_data_min( + $content['id_agent_module'], $content['period'], $report["datetime"]), $config['graph_precision']) . ' ' . $unit.' +
'; + + } + + $value .= ' +
+ '; + + if($content['visual_format'] == 2 || $content['visual_format'] == 3){ + $value .= + grafico_modulo_sparse( + $content['id_agent_module'], + $content['period'], + false, + 600, + 300, + '', + '', + false, + 0, + true, + $report["datetime"], + '', + 0, + 0, + true, + $only_image, + ui_get_full_url(false, false, false, false), + 2, + false, + '', + $time_compare_overlapped, + true, + true, + 'white', + ($content['style']['percentil'] == 1) ? $config['percentil'] : null, + false, + false, + $config['type_module_charts'], + false, + false, + $content['lapse_calc'], + $content['lapse'], + 0, + 1); + } + + $value .= ' + +
'; + + if($content['visual_format'] == 1 || $content['visual_format'] == 3){ + + $value .= ' + + + + + + '; + $time_begin = db_get_row_sql('select utimestamp from tagente_datos where id_agente_modulo ='.$content['id_agent_module']); + $date_reference = getdate(); + + for ($i=$date_reference[0]; $i > ($date_reference[0]-$content["period"]); $i -= $content["lapse"]) { + + $value .= ''; + } + else{ + $value .= 'N/A'; + } + + } + + $value .='
+ '.__("Lapse").' + + '.__("Minimum").' +
'. date("Y-m-d H:i:s", ($i-$content["lapse"]+1)).' to '.date("Y-m-d H:i:s",$i).''; + + if($i>$time_begin['utimestamp']){ + $value .= format_for_graph(reporting_get_agentmodule_data_min( + $content['id_agent_module'], $content["lapse"], $i), $config['graph_precision']) . ' ' . $unit.'
'; + } + + $value .= ' + +
'; + $formated_value = $value; } - else { - $formated_value = format_for_graph($value, $config['graph_precision']) . " " . $unit; - } + break; case 'avg': + if($content['lapse_calc'] == 0){ $value = reporting_get_agentmodule_data_average( $content['id_agent_module'], $content['period'], $report["datetime"]); if (!$config['simple_module_value']) { @@ -3865,7 +4145,138 @@ function reporting_value($report, $content, $type) { else { $formated_value = format_for_graph($value, $config['graph_precision']) . " " . $unit; } - break; + } + else{ + $value = ' + + + + + + + + + +
'; + + if($content['visual_format'] == 1 || $content['visual_format'] == 2 || $content['visual_format'] == 3){ + + $value .= ' + + + + + + + + + + +
+ '.__("Agent").' + + '.__("Module").' + + '.__("Average").' +
+ '.$agent_name.' + + '.$module_name.' + + '.format_for_graph(reporting_get_agentmodule_data_average( + $content['id_agent_module'], $content['period'], $report["datetime"]), $config['graph_precision']) . ' ' . $unit.' +
'; + + } + + $value .= ' +
+ '; + + if($content['visual_format'] == 2 || $content['visual_format'] == 3){ + $value .= + grafico_modulo_sparse( + $content['id_agent_module'], + $content['period'], + false, + 600, + 300, + '', + '', + false, + 1, + true, + $report["datetime"], + '', + 0, + 0, + true, + $only_image, + ui_get_full_url(false, false, false, false), + 2, + false, + '', + $time_compare_overlapped, + true, + true, + 'white', + ($content['style']['percentil'] == 1) ? $config['percentil'] : null, + false, + false, + $config['type_module_charts'], + false, + false, + $content['lapse_calc'], + $content['lapse'] + ); + } + + $value .= ' + +
'; + + if($content['visual_format'] == 1 || $content['visual_format'] == 3){ + + $value .= ' + + + + + + '; + $time_begin = db_get_row_sql('select utimestamp from tagente_datos where id_agente_modulo ='.$content['id_agent_module']); + $date_reference = getdate(); + + for ($i=$date_reference[0]; $i > ($date_reference[0]-$content["period"]); $i -= $content["lapse"]) { + + $value .= ''; + } + else{ + $value .= 'N/A'; + } + + } + + $value .='
+ '.__("Lapse").' + + '.__("Average").' +
'. date("Y-m-d H:i:s", ($i-$content["lapse"]+1)).' to '.date("Y-m-d H:i:s",$i).''; + + if($i>$time_begin['utimestamp']){ + $value .= format_for_graph(reporting_get_agentmodule_data_average( + $content['id_agent_module'], $content["lapse"], $i), $config['graph_precision']) . ' ' . $unit.'
'; + } + + $value .= ' + +
'; + + $formated_value = $value; + + } + break; + case 'sum': $value = reporting_get_agentmodule_data_sum( $content['id_agent_module'], $content['period'], $report["datetime"]); diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 0d749db694..e880126558 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1269,6 +1269,9 @@ CREATE TABLE IF NOT EXISTS `treport_content` ( `id_module_group` INT (10) unsigned NOT NULL DEFAULT 0, `server_name` text, `historical_db` tinyint(1) UNSIGNED NOT NULL default 0, + `lapse_calc` tinyint(1) UNSIGNED NOT NULL default '0', + `lapse` int(11) UNSIGNED NOT NULL default '300', + `visual_format` UNSIGNED NOT NULL tinyint(1) default '0', PRIMARY KEY(`id_rc`), FOREIGN KEY (`id_report`) REFERENCES treport(`id_report`) ON UPDATE CASCADE ON DELETE CASCADE @@ -2726,6 +2729,9 @@ CREATE TABLE IF NOT EXISTS `treport_content_template` ( `module_free_text` TEXT, `each_agent` tinyint(1) default 1, `historical_db` tinyint(1) UNSIGNED NOT NULL default 0, + `lapse_calc` tinyint(1) UNSIGNED NOT NULL default '0', + `lapse` int(11) UNSIGNED NOT NULL default '300', + `visual_format` UNSIGNED NOT NULL tinyint(1) default '0', PRIMARY KEY(`id_rc`) ) ENGINE = InnoDB DEFAULT CHARSET=utf8; From 8ca931f4c996bd5fd36c9e8b670828795e5a7dda Mon Sep 17 00:00:00 2001 From: enriquecd Date: Mon, 2 Oct 2017 18:57:13 +0200 Subject: [PATCH 019/311] Change default number of widgets when creating a dashboard - #1398 --- pandora_console/include/constants.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php index f039a90504..12fe752dbc 100644 --- a/pandora_console/include/constants.php +++ b/pandora_console/include/constants.php @@ -458,7 +458,7 @@ define("STATWIN_DEFAULT_CHART_WIDTH", 555); define("STATWIN_DEFAULT_CHART_HEIGHT", 245); /* Dashboard */ -define("DASHBOARD_DEFAULT_COUNT_CELLS", 4); +define("DASHBOARD_DEFAULT_COUNT_CELLS", 1); define("OPTION_TEXT", 1); define("OPTION_SINGLE_SELECT", 2); From 76ae95ead4ac1d79b5094cf92a4655bf9ab1dc0d Mon Sep 17 00:00:00 2001 From: enriquecd Date: Tue, 3 Oct 2017 11:52:26 +0200 Subject: [PATCH 020/311] Add new font sizes for visual console - #1388 --- .../visual_console_builder.editor.php | 7 +++ .../visual_console_builder.elements.php | 7 +++ .../visual_console_builder.wizard.php | 2 +- pandora_console/include/styles/pandora.css | 32 ++++++++++++++ .../include/styles/pandora_black.css | 32 +++++++++++++- .../include/styles/pandora_green_old.css | 44 +++++++++++++++++++ 6 files changed, 122 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.php b/pandora_console/godmode/reporting/visual_console_builder.editor.php index 28307766fd..88ea386ee6 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.php +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.php @@ -196,11 +196,18 @@ ui_require_javascript_file ('encode_decode_base64'); "10pt=.visual_font_size_10pt, " + "12pt=.visual_font_size_12pt, " + "14pt=.visual_font_size_14pt, " + + "18pt=.visual_font_size_18pt, " + "24pt=.visual_font_size_24pt, " + + "28pt=.visual_font_size_28pt, " + "36pt=.visual_font_size_36pt, " + + "48pt=.visual_font_size_48pt, " + + "60pt=.visual_font_size_60pt, " + "72pt=.visual_font_size_72pt, " + + "84pt=.visual_font_size_84pt, " + "96pt=.visual_font_size_96pt, " + + "116pt=.visual_font_size_116pt, " + "128pt=.visual_font_size_128pt, " + + "140pt=.visual_font_size_140pt, " + "154pt=.visual_font_size_154pt, " + "196pt=.visual_font_size_196pt", theme_advanced_toolbar_location : "top", diff --git a/pandora_console/godmode/reporting/visual_console_builder.elements.php b/pandora_console/godmode/reporting/visual_console_builder.elements.php index 15134a9c1d..c7e63358fa 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.elements.php +++ b/pandora_console/godmode/reporting/visual_console_builder.elements.php @@ -602,11 +602,18 @@ ui_require_javascript_file('tiny_mce', 'include/javascript/tiny_mce/'); "10pt=.visual_font_size_10pt, " + "12pt=.visual_font_size_12pt, " + "14pt=.visual_font_size_14pt, " + + "18pt=.visual_font_size_18pt, " + "24pt=.visual_font_size_24pt, " + + "28pt=.visual_font_size_28pt, " + "36pt=.visual_font_size_36pt, " + + "48pt=.visual_font_size_48pt, " + + "60pt=.visual_font_size_60pt, " + "72pt=.visual_font_size_72pt, " + + "84pt=.visual_font_size_84pt, " + "96pt=.visual_font_size_96pt, " + + "116pt=.visual_font_size_116pt, " + "128pt=.visual_font_size_128pt, " + + "140pt=.visual_font_size_140pt, " + "154pt=.visual_font_size_154pt, " + "196pt=.visual_font_size_196pt", theme_advanced_toolbar_location : "top", diff --git a/pandora_console/godmode/reporting/visual_console_builder.wizard.php b/pandora_console/godmode/reporting/visual_console_builder.wizard.php index 67273ed795..42d6d608cd 100644 --- a/pandora_console/godmode/reporting/visual_console_builder.wizard.php +++ b/pandora_console/godmode/reporting/visual_console_builder.wizard.php @@ -144,7 +144,7 @@ $table->data["staticgraph_modulegraph"][1] .= '   ' . 'leaguegothic' => 'League Gothic' ); - $fonts = array('4pt' => '4pt','6pt' => '6pt','8pt' => '8pt','10pt' => '10pt','12pt' => '12pt','14pt' => '14pt','24pt' => '24pt','36pt' => '36pt','72pt' => '72pt','96pt' => '96pt','128pt' => '128pt','154pt' => '154pt','196pt' => '196pt'); + $fonts = array('4pt' => '4pt','6pt' => '6pt','8pt' => '8pt','10pt' => '10pt','12pt' => '12pt','14pt' => '14pt','18pt' => '18pt','24pt' => '24pt','28pt' => '28pt','36pt' => '36pt','48pt' => '48pt','60pt' => '60pt','72pt' => '72pt','84pt' => '84pt','96pt' => '96pt','116pt' => '116pt','128pt' => '128pt','140pt' => '140pt','154pt' => '154pt','196pt' => '196pt'); /* $fontf = array('andale mono,times' => 'Andale Mono', diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 905f57d35a..a6a90d8063 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -2399,29 +2399,61 @@ span#plugin_description { font-size: 14pt !important; line-height: 14pt; } +.visual_font_size_18pt, .visual_font_size_18pt > em , .visual_font_size_18pt > strong, .visual_font_size_18pt > strong > span, .visual_font_size_18pt > span, .visual_font_size_18pt > strong > em, .visual_font_size_18pt > em > strong, .visual_font_size_18pt em span, .visual_font_size_18pt span em { + font-size: 18pt !important; + line-height: 18pt; +} + .visual_font_size_24pt, .visual_font_size_24pt > em, .visual_font_size_24pt > strong, .visual_font_size_24pt > strong > span , .visual_font_size_24pt > span, .visual_font_size_24pt > strong > em, .visual_font_size_24pt > em > strong, .visual_font_size_24pt em span, .visual_font_size_24pt span em { font-size: 24pt !important; line-height: 24pt; } +.visual_font_size_28pt, .visual_font_size_28pt > em, .visual_font_size_28pt > strong, .visual_font_size_28pt > strong > span , .visual_font_size_28pt > span, .visual_font_size_28pt > strong > em, .visual_font_size_28pt > em > strong, .visual_font_size_28pt em span, .visual_font_size_28pt span em { + font-size: 28pt !important; + line-height: 28pt; +} .visual_font_size_36pt, .visual_font_size_36pt > em, .visual_font_size_36pt > strong, .visual_font_size_36pt > strong > span, .visual_font_size_36pt > span, .visual_font_size_36pt > strong > em, .visual_font_size_36pt > em > strong, .visual_font_size_36pt em span, .visual_font_size_36pt span em { font-size: 36pt !important; line-height: 36pt; } +.visual_font_size_48pt, .visual_font_size_48pt > em, .visual_font_size_48pt > strong, .visual_font_size_48pt > strong > span, .visual_font_size_48pt > span, .visual_font_size_48pt > strong > em, .visual_font_size_48pt > em > strong, .visual_font_size_48pt em span, .visual_font_size_48pt span em { + font-size: 48pt !important; + line-height: 48pt; +} +.visual_font_size_60pt, .visual_font_size_60pt > em, .visual_font_size_60pt > strong, .visual_font_size_60pt > strong > span, .visual_font_size_60pt > span, .visual_font_size_60pt > strong > em, .visual_font_size_60pt > em > strong, .visual_font_size_60pt em span, .visual_font_size_60pt span em { + font-size: 60pt !important; + line-height: 60pt; +} .visual_font_size_72pt, .visual_font_size_72pt > em, .visual_font_size_72pt > strong, .visual_font_size_72pt > strong > span, .visual_font_size_72pt > span, .visual_font_size_72pt > strong > em, .visual_font_size_72pt > em > strong, .visual_font_size_72pt em span, .visual_font_size_72pt span em { font-size: 72pt !important; line-height: 72pt; } +.visual_font_size_84pt, .visual_font_size_84pt > em, .visual_font_size_84pt > strong, .visual_font_size_84pt > strong > span, .visual_font_size_84pt > span, .visual_font_size_84pt > strong > em, .visual_font_size_84pt > em > strong, .visual_font_size_84pt em span, .visual_font_size_84pt span em { + font-size: 84pt !important; + line-height: 84pt; +} + .visual_font_size_96pt, .visual_font_size_96pt > em, .visual_font_size_96pt > strong, .visual_font_size_96pt > strong > span, .visual_font_size_96pt > span, .visual_font_size_96pt > strong > em, .visual_font_size_96pt > em > strong, .visual_font_size_96pt em span, .visual_font_size_96pt span em { font-size: 96pt !important; line-height: 96pt; } +.visual_font_size_116pt, .visual_font_size_116pt > em, .visual_font_size_116pt > strong, .visual_font_size_116pt > strong > span, .visual_font_size_116pt > span, .visual_font_size_116pt > strong > em, .visual_font_size_116pt > em > strong, .visual_font_size_116pt em span, .visual_font_size_116pt span em { + font-size: 116pt !important; + line-height: 116pt; +} + .visual_font_size_128pt, .visual_font_size_128pt > em, .visual_font_size_128pt > strong, .visual_font_size_128pt > strong > span, .visual_font_size_128pt > span, .visual_font_size_128pt > strong > em, .visual_font_size_128pt > em > strong, .visual_font_size_128pt em span, .visual_font_size_128pt span em { font-size: 128pt !important; line-height: 128pt; } +.visual_font_size_140pt, .visual_font_size_140pt > em, .visual_font_size_140pt > strong, .visual_font_size_140pt > strong > span, .visual_font_size_140pt > span, .visual_font_size_140pt > strong > em, .visual_font_size_140pt > em > strong, .visual_font_size_140pt em span, .visual_font_size_140pt span em { + font-size: 140pt !important; + line-height: 140pt; +} + .visual_font_size_154pt, .visual_font_size_154pt > em, .visual_font_size_154pt > strong, .visual_font_size_154pt > strong > span, .visual_font_size_154pt > span, .visual_font_size_154pt > strong > em, .visual_font_size_154pt > em > strong, .visual_font_size_154pt em span, .visual_font_size_154pt span em { font-size: 154pt !important; line-height: 154pt; diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index 3dca8bdbf9..7633889626 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -2455,29 +2455,59 @@ span#plugin_description { font-size: 14pt !important; line-height: 14pt; } +.visual_font_size_18pt, .visual_font_size_18pt > em , .visual_font_size_18pt > strong, .visual_font_size_18pt > strong > span, .visual_font_size_18pt > span, .visual_font_size_18pt > strong > em, .visual_font_size_18pt > em > strong, .visual_font_size_18pt em span, .visual_font_size_18pt span em { + font-size: 18pt !important; + line-height: 18pt; +} .visual_font_size_24pt, .visual_font_size_24pt > em, .visual_font_size_24pt > strong, .visual_font_size_24pt > strong > span , .visual_font_size_24pt > span, .visual_font_size_24pt > strong > em, .visual_font_size_24pt > em > strong, .visual_font_size_24pt em span, .visual_font_size_24pt span em { font-size: 24pt !important; line-height: 24pt; } +.visual_font_size_28pt, .visual_font_size_28pt > em, .visual_font_size_28pt > strong, .visual_font_size_28pt > strong > span , .visual_font_size_28pt > span, .visual_font_size_28pt > strong > em, .visual_font_size_28pt > em > strong, .visual_font_size_28pt em span, .visual_font_size_28pt span em { + font-size: 28pt !important; + line-height: 28pt; +} .visual_font_size_36pt, .visual_font_size_36pt > em, .visual_font_size_36pt > strong, .visual_font_size_36pt > strong > span, .visual_font_size_36pt > span, .visual_font_size_36pt > strong > em, .visual_font_size_36pt > em > strong, .visual_font_size_36pt em span, .visual_font_size_36pt span em { font-size: 36pt !important; line-height: 36pt; } +.visual_font_size_48pt, .visual_font_size_48pt > em, .visual_font_size_48pt > strong, .visual_font_size_48pt > strong > span, .visual_font_size_48pt > span, .visual_font_size_48pt > strong > em, .visual_font_size_48pt > em > strong, .visual_font_size_48pt em span, .visual_font_size_48pt span em { + font-size: 48pt !important; + line-height: 48pt; +} +.visual_font_size_60pt, .visual_font_size_60pt > em, .visual_font_size_60pt > strong, .visual_font_size_60pt > strong > span, .visual_font_size_60pt > span, .visual_font_size_60pt > strong > em, .visual_font_size_60pt > em > strong, .visual_font_size_60pt em span, .visual_font_size_60pt span em { + font-size: 60pt !important; + line-height: 60pt; +} .visual_font_size_72pt, .visual_font_size_72pt > em, .visual_font_size_72pt > strong, .visual_font_size_72pt > strong > span, .visual_font_size_72pt > span, .visual_font_size_72pt > strong > em, .visual_font_size_72pt > em > strong, .visual_font_size_72pt em span, .visual_font_size_72pt span em { font-size: 72pt !important; line-height: 72pt; } +.visual_font_size_84pt, .visual_font_size_84pt > em, .visual_font_size_84pt > strong, .visual_font_size_84pt > strong > span, .visual_font_size_84pt > span, .visual_font_size_84pt > strong > em, .visual_font_size_84pt > em > strong, .visual_font_size_84pt em span, .visual_font_size_84pt span em { + font-size: 84pt !important; + line-height: 84pt; +} .visual_font_size_96pt, .visual_font_size_96pt > em, .visual_font_size_96pt > strong, .visual_font_size_96pt > strong > span, .visual_font_size_96pt > span, .visual_font_size_96pt > strong > em, .visual_font_size_96pt > em > strong, .visual_font_size_96pt em span, .visual_font_size_96pt span em { font-size: 96pt !important; line-height: 96pt; } +.visual_font_size_116pt, .visual_font_size_116pt > em, .visual_font_size_116pt > strong, .visual_font_size_116pt > strong > span, .visual_font_size_116pt > span, .visual_font_size_116pt > strong > em, .visual_font_size_116pt > em > strong, .visual_font_size_116pt em span, .visual_font_size_116pt span em { + font-size: 116pt !important; + line-height: 116pt; +} + .visual_font_size_128pt, .visual_font_size_128pt > em, .visual_font_size_128pt > strong, .visual_font_size_128pt > strong > span, .visual_font_size_128pt > span, .visual_font_size_128pt > strong > em, .visual_font_size_128pt > em > strong, .visual_font_size_128pt em span, .visual_font_size_128pt span em { font-size: 128pt !important; line-height: 128pt; } +.visual_font_size_140pt, .visual_font_size_140pt > em, .visual_font_size_140pt > strong, .visual_font_size_140pt > strong > span, .visual_font_size_140pt > span, .visual_font_size_140pt > strong > em, .visual_font_size_140pt > em > strong, .visual_font_size_140pt em span, .visual_font_size_140pt span em { + font-size: 140pt !important; + line-height: 140pt; +} + .visual_font_size_154pt, .visual_font_size_154pt > em, .visual_font_size_154pt > strong, .visual_font_size_154pt > strong > span, .visual_font_size_154pt > span, .visual_font_size_154pt > strong > em, .visual_font_size_154pt > em > strong, .visual_font_size_154pt em span, .visual_font_size_154pt span em { font-size: 154pt !important; line-height: 154pt; @@ -2485,7 +2515,7 @@ span#plugin_description { .visual_font_size_196pt, .visual_font_size_196pt > em, .visual_font_size_196pt > strong, .visual_font_size_196pt > strong > span, .visual_font_size_196pt > span, .visual_font_size_196pt > strong > em, .visual_font_size_196pt > em > strong, .visual_font_size_196pt em span, .visual_font_size_196pt span em { font-size: 196pt !important; - line-height: 196pt; + line-height: 196pt; } diff --git a/pandora_console/include/styles/pandora_green_old.css b/pandora_console/include/styles/pandora_green_old.css index e983e6047d..a99a9a275d 100644 --- a/pandora_console/include/styles/pandora_green_old.css +++ b/pandora_console/include/styles/pandora_green_old.css @@ -2435,53 +2435,97 @@ span#plugin_description { #tinymce { text-align: left; } + .visual_font_size_4pt, .visual_font_size_4pt > em, .visual_font_size_4pt > strong, .visual_font_size_4pt > strong > span, .visual_font_size_4pt > span, .visual_font_size_4pt > strong > em, .visual_font_size_4pt > em > strong, .visual_font_size_4pt em span, .visual_font_size_4pt span em { font-size: 4pt !important; line-height: 4pt; } + .visual_font_size_6pt, .visual_font_size_6pt > em, .visual_font_size_6pt > strong, .visual_font_size_6pt > strong > span, .visual_font_size_6pt > span, .visual_font_size_6pt > strong > em, .visual_font_size_6pt > em > strong, .visual_font_size_6pt em span, .visual_font_size_6pt span em { font-size: 6pt !important; line-height: 6pt; } + .visual_font_size_8pt, .visual_font_size_8pt > em, .visual_font_size_8pt > strong, .visual_font_size_8pt > strong > span , .visual_font_size_8pt > span, .visual_font_size_8pt > strong > em, .visual_font_size_8pt > em > strong, .visual_font_size_8pt em span, .visual_font_size_8pt span em { font-size: 8pt !important; line-height: 8pt; } + .visual_font_size_10pt, .visual_font_size_10pt > em , .visual_font_size_10pt > strong, .visual_font_size_10pt > strong > em, .visual_font_size_10pt > em > strong, .visual_font_size_10pt em span, .visual_font_size_10pt span em { font-size: 10pt !important; line-height: 10pt; } + .visual_font_size_12pt, .visual_font_size_12pt > em , .visual_font_size_12pt > strong, .visual_font_size_12pt > strong > em, .visual_font_size_12pt > em > strong, .visual_font_size_12pt em span, .visual_font_size_12pt span em { font-size: 12pt !important; line-height: 12pt; } + .visual_font_size_14pt, .visual_font_size_14pt > em , .visual_font_size_14pt > strong, .visual_font_size_14pt > strong > span, .visual_font_size_14pt > span, .visual_font_size_14pt > strong > em, .visual_font_size_14pt > em > strong, .visual_font_size_14pt em span, .visual_font_size_14pt span em { font-size: 14pt !important; line-height: 14pt; } + +.visual_font_size_18pt, .visual_font_size_18pt > em , .visual_font_size_18pt > strong, .visual_font_size_18pt > strong > span, .visual_font_size_18pt > span, .visual_font_size_18pt > strong > em, .visual_font_size_18pt > em > strong, .visual_font_size_18pt em span, .visual_font_size_18pt span em { + font-size: 18pt !important; + line-height: 18pt; +} + .visual_font_size_24pt, .visual_font_size_24pt > em, .visual_font_size_24pt > strong, .visual_font_size_24pt > strong > span , .visual_font_size_24pt > span, .visual_font_size_24pt > strong > em, .visual_font_size_24pt > em > strong, .visual_font_size_24pt em span, .visual_font_size_24pt span em { font-size: 24pt !important; line-height: 24pt; } + +.visual_font_size_28pt, .visual_font_size_28pt > em, .visual_font_size_28pt > strong, .visual_font_size_28pt > strong > span , .visual_font_size_28pt > span, .visual_font_size_28pt > strong > em, .visual_font_size_28pt > em > strong, .visual_font_size_28pt em span, .visual_font_size_28pt span em { + font-size: 28pt !important; + line-height: 28pt; +} + .visual_font_size_36pt, .visual_font_size_36pt > em, .visual_font_size_36pt > strong, .visual_font_size_36pt > strong > span, .visual_font_size_36pt > span, .visual_font_size_36pt > strong > em, .visual_font_size_36pt > em > strong, .visual_font_size_36pt em span, .visual_font_size_36pt span em { font-size: 36pt !important; line-height: 36pt; } + +.visual_font_size_48pt, .visual_font_size_48pt > em, .visual_font_size_48pt > strong, .visual_font_size_48pt > strong > span, .visual_font_size_48pt > span, .visual_font_size_48pt > strong > em, .visual_font_size_48pt > em > strong, .visual_font_size_48pt em span, .visual_font_size_48pt span em { + font-size: 48pt !important; + line-height: 48pt; +} + +.visual_font_size_60pt, .visual_font_size_60pt > em, .visual_font_size_60pt > strong, .visual_font_size_60pt > strong > span, .visual_font_size_60pt > span, .visual_font_size_60pt > strong > em, .visual_font_size_60pt > em > strong, .visual_font_size_60pt em span, .visual_font_size_60pt span em { + font-size: 60pt !important; + line-height: 60pt; +} + .visual_font_size_72pt, .visual_font_size_72pt > em, .visual_font_size_72pt > strong, .visual_font_size_72pt > strong > span, .visual_font_size_72pt > span, .visual_font_size_72pt > strong > em, .visual_font_size_72pt > em > strong, .visual_font_size_72pt em span, .visual_font_size_72pt span em { font-size: 72pt !important; line-height: 72pt; } +.visual_font_size_84pt, .visual_font_size_84pt > em, .visual_font_size_84pt > strong, .visual_font_size_84pt > strong > span, .visual_font_size_84pt > span, .visual_font_size_84pt > strong > em, .visual_font_size_84pt > em > strong, .visual_font_size_84pt em span, .visual_font_size_84pt span em { + font-size: 84pt !important; + line-height: 84pt; +} + .visual_font_size_96pt, .visual_font_size_96pt > em, .visual_font_size_96pt > strong, .visual_font_size_96pt > strong > span, .visual_font_size_96pt > span, .visual_font_size_96pt > strong > em, .visual_font_size_96pt > em > strong, .visual_font_size_96pt em span, .visual_font_size_96pt span em { font-size: 96pt !important; line-height: 96pt; } +.visual_font_size_116pt, .visual_font_size_116pt > em, .visual_font_size_116pt > strong, .visual_font_size_116pt > strong > span, .visual_font_size_116pt > span, .visual_font_size_116pt > strong > em, .visual_font_size_116pt > em > strong, .visual_font_size_116pt em span, .visual_font_size_116pt span em { + font-size: 116pt !important; + line-height: 116pt; +} + .visual_font_size_128pt, .visual_font_size_128pt > em, .visual_font_size_128pt > strong, .visual_font_size_128pt > strong > span, .visual_font_size_128pt > span, .visual_font_size_128pt > strong > em, .visual_font_size_128pt > em > strong, .visual_font_size_128pt em span, .visual_font_size_128pt span em { font-size: 128pt !important; line-height: 128pt; } +.visual_font_size_140pt, .visual_font_size_140pt > em, .visual_font_size_140pt > strong, .visual_font_size_140pt > strong > span, .visual_font_size_140pt > span, .visual_font_size_140pt > strong > em, .visual_font_size_140pt > em > strong, .visual_font_size_140pt em span, .visual_font_size_140pt span em { + font-size: 140pt !important; + line-height: 140pt; +} + .visual_font_size_154pt, .visual_font_size_154pt > em, .visual_font_size_154pt > strong, .visual_font_size_154pt > strong > span, .visual_font_size_154pt > span, .visual_font_size_154pt > strong > em, .visual_font_size_154pt > em > strong, .visual_font_size_154pt em span, .visual_font_size_154pt span em { font-size: 154pt !important; line-height: 154pt; From fbc264f6b7174cfaa0126688d8537d51436448e6 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Tue, 3 Oct 2017 16:16:52 +0200 Subject: [PATCH 021/311] Added space on restart server event --- pandora_server/lib/PandoraFMS/Server.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/Server.pm b/pandora_server/lib/PandoraFMS/Server.pm index 9ec0ae01bd..f5c91869fb 100644 --- a/pandora_server/lib/PandoraFMS/Server.pm +++ b/pandora_server/lib/PandoraFMS/Server.pm @@ -254,7 +254,7 @@ sub restartEvent ($$) { return unless defined ($self->{'_dbh'}); eval { - pandora_event ($self->{'_pa_config'}, $self->{'_pa_config'}->{'servername'} . + pandora_event ($self->{'_pa_config'}, $self->{'_pa_config'}->{'servername'} . ' ' . $ServerTypes[$self->{'_server_type'}] . " RESTARTING" . ($msg ne '' ? " ($msg)" : ''), 0, 0, 4, 0, 0, 'system', 0, $self->{'_dbh'}); }; From efc984952f56f2402233b5e9cd77cbaa3f98394e Mon Sep 17 00:00:00 2001 From: fermin831 Date: Tue, 3 Oct 2017 16:55:23 +0200 Subject: [PATCH 022/311] Removed IO::Socket::SSL dependency on Red Hat rpm --- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 6e93d2961b..84bd2736ca 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -24,7 +24,7 @@ Requires(preun): chkconfig /bin/rm /usr/sbin/userdel Requires: fileutils textutils unzip Requires: util-linux procps grep Requires: /sbin/ip /bin/awk -Requires: perl perl(Sys::Syslog) perl(IO::Socket::SSL) +Requires: perl perl(Sys::Syslog) # Required by plugins #Requires: sh-utils sed passwd net-tools rpm AutoReq: 0 From 485d132baa16e86896c72321826147326be48919 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Tue, 3 Oct 2017 17:56:13 +0200 Subject: [PATCH 023/311] Enable SystemD services and other fixes an Suse rpm --- pandora_agents/unix/pandora_agent.spec | 4 ++++ pandora_server/pandora_server.spec | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 805edcf481..fde5bde7b0 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -67,6 +67,7 @@ then fi %post +mkdir -p /var/log/pandora chown pandora:root /var/log/pandora if [ ! -d /etc/pandora ] ; then mkdir -p /etc/pandora @@ -91,6 +92,9 @@ if [ ! -e /etc/pandora/collections ]; then fi cp -aRf /usr/share/pandora_agent/pandora_agent_logrotate /etc/logrotate.d/pandora_agent +# Enable the service on SystemD +systemctl enable pandora_agent_daemon.service + mkdir -p /var/spool/pandora/data_out chkconfig pandora_agent_daemon on diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index a95f9e4d8b..f5d0f0097f 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -99,6 +99,11 @@ exit 0 chkconfig pandora_server on chkconfig tentacle_serverd on +# Enable the services on SystemD +systemctl enable tentacle_serverd.service +systemctl enable pandora_server.service + + echo "/usr/share/pandora_server/util/pandora_db.pl /etc/pandora/pandora_server.conf" > /etc/cron.hourly/pandora_db chmod 750 /etc/cron.hourly/pandora_db cp -aRf /usr/share/pandora_server/util/pandora_server_logrotate /etc/logrotate.d/pandora_server From aca4f2e481a36797ad36114f1e030ac218c114aa Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Wed, 4 Oct 2017 17:49:46 +0200 Subject: [PATCH 024/311] Added 3 and 4 points --- pandora_console/include/functions_graph.php | 10 +++--- .../operation/agentes/networkmap.dinamic.php | 35 +++++++++++++++++++ 2 files changed, 40 insertions(+), 5 deletions(-) diff --git a/pandora_console/include/functions_graph.php b/pandora_console/include/functions_graph.php index 493047cafc..a00fdeb3fa 100644 --- a/pandora_console/include/functions_graph.php +++ b/pandora_console/include/functions_graph.php @@ -3279,11 +3279,11 @@ function grafico_eventos_grupo ($width = 300, $height = 200, $url = "", $meta = } else { if ($meta) { - $name = mb_substr (io_safe_output($row['agent_name']), 0, 14)." (".$row["count"].")"; + $name = mb_substr (io_safe_output($row['agent_name']), 0, 25)." (".$row["count"].")"; } else { $alias = agents_get_alias($row["id_agente"]); - $name = mb_substr($alias, 0, 14)." #".$row["id_agente"]." (".$row["count"].")"; + $name = mb_substr($alias, 0, 25)." #".$row["id_agente"]." (".$row["count"].")"; } $data[$name] = $row["count"]; } @@ -5742,7 +5742,7 @@ function graph_monitor_wheel ($width = 550, $height = 600, $filter = false) { if (!empty($data_groups)) { $filter = array('id_grupo' => array_keys($data_groups)); - $fields = array('id_agente', 'id_parent', 'id_grupo', 'nombre'); + $fields = array('id_agente', 'id_parent', 'id_grupo', 'alias'); $agents = agents_get_agents($filter, $fields); if (!empty($agents)) { @@ -5775,7 +5775,7 @@ function graph_monitor_wheel ($width = 550, $height = 600, $filter = false) { if (!isset($data_agents[$agent_id])) { $data_agents[$agent_id] = array(); $data_agents[$agent_id]['id'] = $agent_id; - $data_agents[$agent_id]['name'] = io_safe_output($agents[$agent_id]['nombre']); + $data_agents[$agent_id]['name'] = io_safe_output($agents[$agent_id]['alias']); $data_agents[$agent_id]['group'] = (int) $agents[$agent_id]['id_grupo']; $data_agents[$agent_id]['type'] = 'agent'; $data_agents[$agent_id]['size'] = 30; @@ -5948,7 +5948,7 @@ function graph_monitor_wheel ($width = 550, $height = 600, $filter = false) { if (!isset($data_agents[$id])) { $data_agents[$id] = array(); $data_agents[$id]['id'] = (int) $id; - $data_agents[$id]['name'] = io_safe_output($agent['nombre']); + $data_agents[$id]['name'] = io_safe_output($agent['alias']); $data_agents[$id]['type'] = 'agent'; $data_agents[$id]['color'] = COL_NOTINIT; } diff --git a/pandora_console/operation/agentes/networkmap.dinamic.php b/pandora_console/operation/agentes/networkmap.dinamic.php index 89db930aed..c2fdf605a2 100644 --- a/pandora_console/operation/agentes/networkmap.dinamic.php +++ b/pandora_console/operation/agentes/networkmap.dinamic.php @@ -69,6 +69,41 @@ require_once ('include/functions_networkmap.php'); $strict_user = db_get_value('strict_acl', 'tusuario', 'id_user', $config['id_user']); +$networkmap = db_get_row('tmap', 'id', $id); +$pure = (int) get_parameter ('pure', 0); + +/* Main code */ +if ($pure == 1) { + $buttons['screen'] = array('active' => false, + 'text' => '' . + html_print_image("images/normal_screen.png", true, + array ('title' => __('Normal screen'))) . + ''); +} +else { + if (!$dash_mode) { + $buttons['screen'] = array('active' => false, + 'text' => '' . + html_print_image("images/full_screen.png", true, + array ('title' => __('Full screen'))) . + ''); + $buttons['list'] = array('active' => false, + 'text' => '' . + html_print_image("images/list.png", true, + array ('title' => __('List of networkmap'))) . + ''); + } +} + +ui_print_page_header(io_safe_output($networkmap['name']), + "images/bricks.png", false, "network_map_enterprise", + false, $buttons, false, '', $config['item_title_size_text']); + global $width; global $height; From 14095053cc05fb70c0a1e309ba2a2904f7729aee Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Wed, 4 Oct 2017 18:01:01 +0200 Subject: [PATCH 025/311] Added good size to form elements --- pandora_console/godmode/agentes/module_manager.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index 1fbf08bf80..b22bc0f626 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -45,10 +45,10 @@ echo ""; echo __('Search') . ' ' . html_print_input_text ('search_string', $search_string, '', 15, 255, true); echo ""; -echo ""; +echo ""; html_print_submit_button (__('Filter'), 'filter', false, 'class="sub search"'); echo ""; -echo ""; +echo ""; echo ''; // Check if there is at least one server of each type available to assign that // kind of modules. If not, do not show server type in combo @@ -119,7 +119,7 @@ if (($policy_page) || (isset($agent))) { // Create module/type combo echo '
'; if (!$policy_page) { - echo ''; + echo ''; echo __('Show in hierachy mode'); if ($checked == "true") { $checked = true; @@ -130,12 +130,12 @@ if (($policy_page) || (isset($agent))) { html_print_checkbox ('status_hierachy_mode', "", $checked, false, false, "onChange=change_mod_filter();"); echo ''; } - echo ''; + echo ''; echo __("Type"); html_print_select ($modules, 'moduletype', '', '', '', '', false, false, false, '', false, 'max-width:300px;' ); html_print_input_hidden ('edit_module', 1); echo ''; - echo ''; + echo ''; echo ''; echo ''; echo ''; From 4ab4533fca419664b4fae6d83910a662b73f4c0a Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Thu, 5 Oct 2017 10:48:14 +0200 Subject: [PATCH 026/311] Added new item to choose between line and area. Changed radio button to select. --- pandora_console/include/ajax/graph.ajax.php | 5 +- pandora_console/operation/agentes/graphs.php | 88 ++++++++++++++++---- 2 files changed, 75 insertions(+), 18 deletions(-) diff --git a/pandora_console/include/ajax/graph.ajax.php b/pandora_console/include/ajax/graph.ajax.php index 1b537f8a48..ac7decf965 100644 --- a/pandora_console/include/ajax/graph.ajax.php +++ b/pandora_console/include/ajax/graph.ajax.php @@ -64,7 +64,7 @@ if ($print_custom_graph) { $ttl = (int) get_parameter('ttl', 1); $dashboard = (bool) get_parameter('dashboard'); $vconsole = (bool) get_parameter('vconsole'); - + echo custom_graphs_print($id_graph, $height, $width, $period, $stacked, true, $date, $only_image, $background_color, $modules_param, $homeurl, $name_list, $unit_list, $show_last, $show_max, @@ -102,13 +102,14 @@ if ($print_sparse_graph) { $percentil = get_parameter('percentil', null); $dashboard = (bool) get_parameter('dashboard'); $vconsole = (bool) get_parameter('vconsole'); + $type_g = get_parameter('type_g', $config['type_module_charts']); echo grafico_modulo_sparse($agent_module_id, $period, $show_events, $width, $height , $title, $unit_name, $show_alerts, $avg_only, $pure, $date, $unit, $baseline, $return_data, $show_title, $only_image, $homeurl, $ttl, $projection, $adapt_key, $compare, $show_unknown, $menu, $backgroundColor, $percentil, - $dashboard, $vconsole, $config['type_module_charts']); + $dashboard, $vconsole, $type_g); return; } diff --git a/pandora_console/operation/agentes/graphs.php b/pandora_console/operation/agentes/graphs.php index ff1d7bf9e3..e33d499fe8 100644 --- a/pandora_console/operation/agentes/graphs.php +++ b/pandora_console/operation/agentes/graphs.php @@ -38,8 +38,8 @@ $start_date = get_parameter ("start_date", date("Y-m-d")); $draw_events = get_parameter ("draw_events", 0); $modules = get_parameter('modules', array()); $filter = get_parameter('filter', 0); -$combined = (bool)get_parameter('combined', 1); - +$combined = get_parameter('combined', 1); +$option_type = get_parameter('option_type', 0); //---------------------------------------------------------------------- // Get modules of agent sorted as: @@ -159,7 +159,6 @@ $table->data[0][1] = html_print_select($list_modules, 'modules[]', $table->rowspan[2][0] = 7; $table->data[2][0] = ""; - $table->data[2][1] = __('Begin date'); $table->data[2][2] = html_print_input_text ("start_date", substr ($start_date, 0, 10),'', 10, 40, true); $table->data[2][2] .= html_print_image ("images/calendar_view_day.png", true, array ("onclick" => "scwShow(scwID('text-start_date'),this);")); @@ -174,12 +173,17 @@ $table->data[5][2] = __('Show alerts') . ui_print_help_tip(__('the combined graph does not show the alerts into this graph'), true); $table->data[5][3] = html_print_checkbox ("draw_alerts", 1, (bool) $draw_alerts, true); $table->data[6][2] = __('Show as one combined graph'); -$table->data[6][3] = - html_print_radio_button('combined', 1, __('one combined graph'), - $combined, true); -$table->data[6][3] .= - html_print_radio_button('combined', 0, __('several graphs for each module'), - $combined, true); +$graph_option_one_or_several = array(0 => __('several graphs for each module'), 1 => __('One combined graph')); +$table->data[6][3] = html_print_select($graph_option_one_or_several, 'combined', $combined, '', '', 1, true); + +$table->data[7][2] = __('Chart type'); +if ($combined == 1) { + $graph_option_type = array(0 => __('Area'), 1 => __('Area stack'), 2 => __('Line'), 3 => __('Line stack')); +} +else { + $graph_option_type = array(0 => __('Area'), 2 => __('Line')); +} +$table->data[7][3] = html_print_select($graph_option_type, 'option_type', $option_type, '', '', 1, true); $htmlForm = ''; $htmlForm .= html_print_table($table, true); @@ -321,6 +325,39 @@ echo ""; // Load graphs $(document).ready(function() { + $('#combined').change(function () { + if ($('#combined').val() == 1) { + $('#option_type').empty(); + $('#option_type').append($('
' + '
' + values['label'] + '
' + diff --git a/pandora_console/images/console/signes/circular-progress-bar-interior.png b/pandora_console/images/console/signes/circular-progress-bar-interior.png new file mode 100644 index 0000000000000000000000000000000000000000..221c626f2572d53ee743169c99de3a44d2fd238e GIT binary patch literal 18804 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 T*zwJV00000NkvXXu0mjfQwg1G literal 0 HcmV?d00001 diff --git a/pandora_console/images/console/signes/circular-progress-bar.png b/pandora_console/images/console/signes/circular-progress-bar.png new file mode 100644 index 0000000000000000000000000000000000000000..640a8050b47d2fd2da3888ed1e7c0421e8b25462 GIT binary patch literal 17001 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 literal 0 HcmV?d00001 diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index e854a31c49..4493e21935 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -118,6 +118,7 @@ $id_custom_graph = get_parameter('id_custom_graph', null); $border_width = (int)get_parameter('border_width', 0); $border_color = get_parameter('border_color', ''); $fill_color = get_parameter('fill_color', ''); +$percentile_color = get_parameter('percentile_color', ''); $width_box = (int)get_parameter('width_box', 0); $height_box = (int)get_parameter('height_box', 0); $line_start_x = (int)get_parameter('line_start_x', 0); @@ -602,6 +603,12 @@ switch ($action) { if ($type_percentile == 'percentile') { $values['type'] = PERCENTILE_BAR; } + elseif ($type_percentile == 'circular_progress_bar') { + $values['type'] = CIRCULAR_PROGRESS_BAR; + } + elseif ($type_percentile == 'interior_circular_progress_bar') { + $values['type'] = CIRCULAR_INTERIOR_PROGRESS_BAR; + } elseif ($type_percentile == 'bubble') { $values['type'] = PERCENTILE_BUBBLE; } @@ -611,6 +618,8 @@ switch ($action) { if (($value_show == 'percent') || ($value_show == 'value')) $values['image'] = $value_show; + + $values['border_color'] = $percentile_color; } break; case 'icon': @@ -781,6 +790,13 @@ switch ($action) { elseif ($elementFields['type'] == PERCENTILE_BUBBLE) { $elementFields['type_percentile'] = 'bubble'; } + elseif ($elementFields['type'] == CIRCULAR_PROGRESS_BAR) { + $elementFields['type_percentile'] = 'circular_progress_bar'; + } + elseif ($elementFields['type'] == CIRCULAR_INTERIOR_PROGRESS_BAR) { + $elementFields['type_percentile'] = 'interior_circular_progress_bar'; + } + $elementFields['percentile_color'] = $elementFields['percentile_color']; break; case 'module_graph': @@ -934,9 +950,16 @@ switch ($action) { if ($type_percentile == 'percentile') { $values['type'] = PERCENTILE_BAR; } + elseif ($type_percentile == 'circular_progress_bar') { + $values['type'] = CIRCULAR_PROGRESS_BAR; + } + elseif ($type_percentile == 'interior_circular_progress_bar') { + $values['type'] = CIRCULAR_INTERIOR_PROGRESS_BAR; + } else { $values['type'] = PERCENTILE_BUBBLE; } + $values['border_color'] = $percentile_color; $values['image'] = $value_show; //Hack to save it show percent o value. $values['width'] = $width_percentile; $values['height'] = $max_percentile; @@ -977,7 +1000,7 @@ switch ($action) { } break; } - + $idData = db_process_sql_insert('tlayout_data', $values); $return = array(); diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php index f039a90504..08c3fc55da 100644 --- a/pandora_console/include/constants.php +++ b/pandora_console/include/constants.php @@ -197,6 +197,8 @@ define('SERVICE', 10); //Enterprise Item. define('GROUP_ITEM', 11); define('BOX_ITEM', 12); define('LINE_ITEM', 13); +define('CIRCULAR_PROGRESS_BAR', 15); +define('CIRCULAR_INTERIOR_PROGRESS_BAR', 16); //Some styles define('MIN_WIDTH', 300); define('MIN_HEIGHT', 120); diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index 54db2d8008..49945a30f4 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -408,23 +408,22 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { __('Max value') . ' ' . html_print_input_text('max_percentile', 0, '', 3, 5, true) . ''; + $percentile_type = array('percentile' => __('Percentile'), 'bubble' => __('Bubble'), 'circular_progress_bar' => __('Circular porgress bar'), 'interior_circular_progress_bar' => __('Circular progress bar (interior)')); + $percentile_value = array('percent' => __('Percent'), 'value' => __('Value')); if (is_metaconsole()){ $form_items['percentile_item_row_3'] = array(); $form_items['percentile_item_row_3']['items'] = array('percentile_bar', 'percentile_item', 'datos'); $form_items['percentile_item_row_3']['html'] = '' . __('Type') . ' ' . - html_print_radio_button_extended('type_percentile', 'percentile', ('Percentile'), 'percentile', false, '', 'style="float: left;"', true) . - html_print_radio_button_extended('type_percentile', 'bubble', ('Bubble'), 'percentile', false, '', 'style="float: left;"', true) . + html_print_select($percentile_type, 'type_percentile', 'percentile', '', '', '', true, false, false, '', false, 'style="float: left;"') . ''; - $form_items['percentile_item_row_4'] = array(); $form_items['percentile_item_row_4']['items'] = array('percentile_bar', 'percentile_item', 'datos'); $form_items['percentile_item_row_4']['html'] = '' . __('Value to show') . ' ' . - html_print_radio_button_extended('value_show', 'percent', ('Percent'), 'value', false, '', 'style="float: left;"', true) . - html_print_radio_button_extended('value_show', 'value', ('Value'), 'value', false, '', 'style="float: left;"', true) . + html_print_select($percentile_value, 'value_show', 'percent', '', '', '', true, false, false, '', false, 'style="float: left;"') . ''; } else{ @@ -433,20 +432,26 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['percentile_item_row_3']['html'] = '' . __('Type') . ' ' . - html_print_radio_button_extended('type_percentile', 'percentile', ('Percentile'), 'percentile', false, '', '', true) . - html_print_radio_button_extended('type_percentile', 'bubble', ('Bubble'), 'percentile', false, '', '', true) . + html_print_select($percentile_type, 'type_percentile', 'percentile', '', '', '', true) . ''; - $form_items['percentile_item_row_4'] = array(); $form_items['percentile_item_row_4']['items'] = array('percentile_bar', 'percentile_item', 'datos'); $form_items['percentile_item_row_4']['html'] = '' . __('Value to show') . ' ' . - html_print_radio_button_extended('value_show', 'percent', ('Percent'), 'value', false, '', '', true) . - html_print_radio_button_extended('value_show', 'value', ('Value'), 'value', false, '', '', true) . + html_print_select($percentile_value, 'value_show', 'percent', '', '', '', true) . ''; } + $form_items['percentile_item_row_5'] = array(); + $form_items['percentile_item_row_5']['items'] = array('percentile_bar', 'percentile_item', 'datos'); + $form_items['percentile_item_row_5']['html'] = '' . __('Color') . ui_print_help_tip ( + __("Only for circular percentile items."), true) . ' + ' . + html_print_input_text_extended ('percentile_color', '#ffffff', + 'text-percentile_color', '', 7, 7, false, '', + 'class="percentile_color"', true) . + ''; $form_items['period_row'] = array(); $form_items['period_row']['items'] = array('module_graph', 'simple_value', 'datos'); @@ -614,6 +619,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $(".border_color").attachColorPicker(); $(".fill_color").attachColorPicker(); $(".line_color").attachColorPicker(); + $(".percentile_color").attachColorPicker(); $("input[name=radio_choice]").change(function(){ $('#count_items').html(1); From 01df63b17918c9b70fe040772fc841fa511219f0 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Thu, 5 Oct 2017 13:33:34 +0200 Subject: [PATCH 028/311] Fixed minor errors and init d3 function --- .../ajax/visual_console_builder.ajax.php | 12 +- .../include/functions_visual_map.php | 234 ++++++++++++++++-- .../include/graphs/functions_d3.php | 8 + 3 files changed, 226 insertions(+), 28 deletions(-) diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index 4493e21935..677e635e1e 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -796,7 +796,7 @@ switch ($action) { elseif ($elementFields['type'] == CIRCULAR_INTERIOR_PROGRESS_BAR) { $elementFields['type_percentile'] = 'interior_circular_progress_bar'; } - $elementFields['percentile_color'] = $elementFields['percentile_color']; + $elementFields['percentile_color'] = $elementFields['border_color']; break; case 'module_graph': @@ -1054,9 +1054,17 @@ switch ($action) { $return['values']['height_box'] = $values['height']; break; - case PERCENTILE_BUBBLE: + case CIRCULAR_PROGRESS_BAR: $return['values']['type_percentile'] = 'bubble'; break; + + case CIRCULAR_INTERIOR_PROGRESS_BAR: + $return['values']['type_percentile'] = 'circular_progress_bar'; + break; + + case PERCENTILE_BUBBLE: + $return['values']['type_percentile'] = 'interior_circular_progress_bar'; + break; case PERCENTILE_BAR: $return['values']['type_percentile'] = 'percentile'; diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index b06a0c6d5c..c84d2045e7 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -31,6 +31,7 @@ require_once ($config['homedir'].'/include/functions_agents.php'); require_once ($config['homedir'].'/include/functions_modules.php'); require_once ($config['homedir'].'/include/functions_users.php'); require_once ($config['homedir'].'/include/functions.php'); +require_once ($config['homedir'].'/include/graphs/functions_d3.php'); function visual_map_print_item_toolbox($idDiv, $text, $float) { if ($float == 'left') { @@ -303,6 +304,8 @@ function visual_map_print_item($mode = "read", $layoutData, break; case PERCENTILE_BAR: case PERCENTILE_BUBBLE: + case CIRCULAR_PROGRESS_BAR: + case CIRCULAR_INTERIOR_PROGRESS_BAR: if (!empty($layoutData['id_agent']) && empty($layoutData['id_layout_linked'])) { @@ -592,6 +595,8 @@ function visual_map_print_item($mode = "read", $layoutData, break; case PERCENTILE_BAR: case PERCENTILE_BUBBLE: + case CIRCULAR_PROGRESS_BAR: + case CIRCULAR_INTERIOR_PROGRESS_BAR: if (!empty($layoutData['id_agent'])) { //Extract id service if it is a prediction module. @@ -811,6 +816,8 @@ function visual_map_print_item($mode = "read", $layoutData, break; case PERCENTILE_BAR: case PERCENTILE_BUBBLE: + case CIRCULAR_PROGRESS_BAR: + case CIRCULAR_INTERIOR_PROGRESS_BAR: //Metaconsole db connection if ($layoutData['id_metaconsole'] != 0) { $connection = db_get_row_filter ('tmetaconsole_setup', @@ -1138,6 +1145,8 @@ function visual_map_print_item($mode = "read", $layoutData, break; case PERCENTILE_BAR: case PERCENTILE_BUBBLE: + case CIRCULAR_PROGRESS_BAR: + case CIRCULAR_INTERIOR_PROGRESS_BAR: $class .= "percentile_item"; break; case MODULE_GRAPH: @@ -1409,7 +1418,7 @@ function visual_map_print_item($mode = "read", $layoutData, case PERCENTILE_BAR: $imgpos = ''; - + if($layoutData['label_position']=='left'){ $imgpos = 'float:right;'; } @@ -1464,17 +1473,15 @@ function visual_map_print_item($mode = "read", $layoutData, if($layoutData['label_position']=='down'){ echo io_safe_output($text); - } + } else if($layoutData['label_position']=='left' || $layoutData['label_position']=='right'){ echo io_safe_output($text); - } + } break; - case PERCENTILE_BUBBLE: - $imgpos = ''; - + if($layoutData['label_position']=='left'){ $imgpos = 'float:right;'; } @@ -1501,8 +1508,8 @@ function visual_map_print_item($mode = "read", $layoutData, } if($layoutData['label_position']=='up'){ - echo io_safe_output($text); - } + echo io_safe_output($text); + } ob_start(); if ($type == PERCENTILE_BUBBLE) { @@ -1517,36 +1524,171 @@ function visual_map_print_item($mode = "read", $layoutData, else { echo progress_bar($percentile, $width, $progress_bar_heigh, '', 1, $value_text, $colorStatus); } + $img = ob_get_clean(); - if(get_parameter('action') == 'edit'){ - - if($width == 0){ - $img = ''; + if($width == 0){ + $img = ''; + } + else{ + $img = ''; + } } else{ - $img = ''; - } - - } - else{ - - $img = str_replace('>', 'class="image" style="width:'.$wimg.'px;height:'.$himg.'px;'.$imgpos.'" id="image_' . $id . '" />', $img); - + $img = str_replace('>', 'class="image" style="width:'.$wimg.'px;height:'.$himg.'px;'.$imgpos.'" id="image_' . $id . '" />', $img); } - echo $img; + echo $img; if($layoutData['label_position']=='down'){ - echo io_safe_output($text); - } - else if($layoutData['label_position']=='left' || $layoutData['label_position']=='right'){ - echo io_safe_output($text); - } + echo io_safe_output($text); + } + else if($layoutData['label_position']=='left' || $layoutData['label_position']=='right'){ + echo io_safe_output($text); + } break; + case CIRCULAR_PROGRESS_BAR: + $imgpos = ''; + + if($layoutData['label_position']=='left'){ + $imgpos = 'float:right;'; + } + else if($layoutData['label_position']=='right'){ + $imgpos = 'float:left;'; + } + $progress_bar_heigh = 15; + if (!empty($proportion)) { + if ($width != 0) { + $width = (integer)($proportion['proportion_width'] * $width); + } + else { + $width = (integer)($proportion['proportion_width'] * $infoImage[0]); + } + + if ($height != 0) { + $height = (integer)($proportion['proportion_height'] * $height); + $progress_bar_heigh = $progress_bar_heigh * $proportion['proportion_height']; + } + else { + $height = (integer)($proportion['proportion_height'] * $infoImage[1]); + } + } + + if($layoutData['label_position']=='up'){ + echo io_safe_output($text); + } + + ob_start(); + if ($type == CIRCULAR_PROGRESS_BAR) { + if($width == 0){ + echo progress_circular_bar($percentile, 100,100, $border_color); + + } + else{ + echo progress_circular_bar($percentile, $width, $width, $border_color); + } + } + else { + echo progress_bar($percentile, $width, $progress_bar_heigh, '', 1, $value_text, $colorStatus); + } + + $img = ob_get_clean(); + + if(get_parameter('action') == 'edit'){ + if($width == 0){ + $img = ''; + } + else{ + $img = ''; + } + } + else{ + $img = str_replace('>', 'class="image" style="width:'.$wimg.'px;height:'.$himg.'px;'.$imgpos.'" id="image_' . $id . '" />', $img); + } + + echo $img; + + if($layoutData['label_position']=='down'){ + echo io_safe_output($text); + } + else if($layoutData['label_position']=='left' || $layoutData['label_position']=='right'){ + echo io_safe_output($text); + } + + break; + case CIRCULAR_INTERIOR_PROGRESS_BAR: + $imgpos = ''; + + if($layoutData['label_position']=='left'){ + $imgpos = 'float:right;'; + } + else if($layoutData['label_position']=='right'){ + $imgpos = 'float:left;'; + } + + $progress_bar_heigh = 15; + if (!empty($proportion)) { + if ($width != 0) { + $width = (integer)($proportion['proportion_width'] * $width); + } + else { + $width = (integer)($proportion['proportion_width'] * $infoImage[0]); + } + + if ($height != 0) { + $height = (integer)($proportion['proportion_height'] * $height); + $progress_bar_heigh = $progress_bar_heigh * $proportion['proportion_height']; + } + else { + $height = (integer)($proportion['proportion_height'] * $infoImage[1]); + } + } + + if($layoutData['label_position']=='up'){ + echo io_safe_output($text); + } + + ob_start(); + if ($type == CIRCULAR_INTERIOR_PROGRESS_BAR) { + if($width == 0){ + echo progress_circular_bar_interior($percentile, 100,100, $border_color); + + } + else{ + echo progress_circular_bar_interior($percentile, $width, $width, $border_color); + } + } + else { + echo progress_bar($percentile, $width, $progress_bar_heigh, '', 1, $value_text, $colorStatus); + } + + $img = ob_get_clean(); + + if(get_parameter('action') == 'edit'){ + if($width == 0){ + $img = ''; + } + else{ + $img = ''; + } + } + else{ + $img = str_replace('>', 'class="image" style="width:'.$wimg.'px;height:'.$himg.'px;'.$imgpos.'" id="image_' . $id . '" />', $img); + } + + echo $img; + + if($layoutData['label_position']=='down'){ + echo io_safe_output($text); + } + else if($layoutData['label_position']=='left' || $layoutData['label_position']=='right'){ + echo io_safe_output($text); + } + + break; case MODULE_GRAPH: if ($layoutData['label_position']=='up') { echo io_safe_output($text); @@ -1889,11 +2031,19 @@ function visual_map_process_wizard_add ($id_agents, $image, $id_layout, $range, switch ($type) { case PERCENTILE_BAR: case PERCENTILE_BUBBLE: + case CIRCULAR_PROGRESS_BAR: + case CIRCULAR_INTERIOR_PROGRESS_BAR: $value_height = $max_value; $value_image = $value_show; if ($type_percentile == 'percentile') { $value_type = PERCENTILE_BAR; } + elseif ($type_percentile == 'interior_circular_progress_bar') { + $value_type = CIRCULAR_INTERIOR_PROGRESS_BAR; + } + elseif ($type_percentile == 'circular_progress_bar') { + $value_type = CIRCULAR_PROGRESS_BAR; + } else { $value_type = PERCENTILE_BUBBLE; } @@ -2015,12 +2165,20 @@ function visual_map_process_wizard_add_modules ($id_modules, $image, switch ($type) { case PERCENTILE_BAR: case PERCENTILE_BUBBLE: + case CIRCULAR_PROGRESS_BAR: + case CIRCULAR_INTERIOR_PROGRESS_BAR: $value_height = $max_value; $value_width = $percentileitem_width; $value_image = $value_show; if ($type_percentile == 'percentile') { $value_type = PERCENTILE_BAR; } + elseif ($type_percentile == 'interior_circular_progress_bar') { + $value_type = CIRCULAR_INTERIOR_PROGRESS_BAR; + } + elseif ($type_percentile == 'circular_progress_bar') { + $value_type = CIRCULAR_PROGRESS_BAR; + } else { $value_type = PERCENTILE_BUBBLE; } @@ -2143,12 +2301,20 @@ function visual_map_process_wizard_add_agents ($id_agents, $image, switch ($type) { case PERCENTILE_BAR: case PERCENTILE_BUBBLE: + case CIRCULAR_PROGRESS_BAR: + case CIRCULAR_INTERIOR_PROGRESS_BAR: $value_height = $max_value; $value_width = $percentileitem_width; $value_image = $value_show; if ($type_percentile == 'percentile') { $value_type = PERCENTILE_BAR; } + elseif ($type_percentile == 'interior_circular_progress_bar') { + $value_type = CIRCULAR_INTERIOR_PROGRESS_BAR; + } + elseif ($type_percentile == 'circular_progress_bar') { + $value_type = CIRCULAR_PROGRESS_BAR; + } else { $value_type = PERCENTILE_BUBBLE; } @@ -2455,6 +2621,8 @@ function visual_map_get_status_element($layoutData) { case PERCENTILE_BAR: case PERCENTILE_BUBBLE: + case CIRCULAR_PROGRESS_BAR: + case CIRCULAR_INTERIOR_PROGRESS_BAR: if (empty($module_value) || $module_value == '') { return VISUAL_MAP_STATUS_UNKNOWN; @@ -2955,6 +3123,14 @@ function visual_map_create_internal_name_item($label = null, $type, $image, $age case PERCENTILE_BAR: $text = __('Percentile bar'); break; + case 'circular_progress_bar': + case CIRCULAR_PROGRESS_BAR: + $text = __('Circular progress bar'); + break; + case 'interior_circular_progress_bar': + case CIRCULAR_INTERIOR_PROGRESS_BAR: + $text = __('Circular progress bar (interior)'); + break; case 'static_graph': case STATIC_GRAPH: $text = __('Static graph') . " - " . @@ -3059,6 +3235,12 @@ function visual_map_type_in_js($type) { case PERCENTILE_BAR: return 'percentile_item'; break; + case CIRCULAR_PROGRESS_BAR: + return 'percentile_item'; + break; + case CIRCULAR_INTERIOR_PROGRESS_BAR: + return 'percentile_item'; + break; case MODULE_GRAPH: return 'module_graph'; break; diff --git a/pandora_console/include/graphs/functions_d3.php b/pandora_console/include/graphs/functions_d3.php index f181492b7a..a32277ab50 100644 --- a/pandora_console/include/graphs/functions_d3.php +++ b/pandora_console/include/graphs/functions_d3.php @@ -309,4 +309,12 @@ function ux_console_phases_donut ($phases, $id, $return = false) { return $output; } + +function progress_circular_bar ($percentile, $width, $height, $color) { + +} + +function progress_circular_bar_interior ($percentile, $width, $height, $color) { + +} ?> From 7d455d3ac294f8c406def4b36586047c68f0e523 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Thu, 5 Oct 2017 16:38:21 +0200 Subject: [PATCH 029/311] Added d3 items --- .../include/functions_visual_map.php | 53 ++--- .../include/graphs/functions_d3.php | 30 ++- pandora_console/include/graphs/pandora.d3.js | 184 ++++++++++++++++++ 3 files changed, 229 insertions(+), 38 deletions(-) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index c84d2045e7..152e3541a3 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1581,22 +1581,6 @@ function visual_map_print_item($mode = "read", $layoutData, echo io_safe_output($text); } - ob_start(); - if ($type == CIRCULAR_PROGRESS_BAR) { - if($width == 0){ - echo progress_circular_bar($percentile, 100,100, $border_color); - - } - else{ - echo progress_circular_bar($percentile, $width, $width, $border_color); - } - } - else { - echo progress_bar($percentile, $width, $progress_bar_heigh, '', 1, $value_text, $colorStatus); - } - - $img = ob_get_clean(); - if(get_parameter('action') == 'edit'){ if($width == 0){ $img = ''; @@ -1605,10 +1589,15 @@ function visual_map_print_item($mode = "read", $layoutData, $img = ''; } } - else{ - $img = str_replace('>', 'class="image" style="width:'.$wimg.'px;height:'.$himg.'px;'.$imgpos.'" id="image_' . $id . '" />', $img); + else { + if($width == 0){ + $img = progress_circular_bar($id, $percentile, 100,100, $border_color); + } + else{ + $img = progress_circular_bar($id, $percentile, $width, $width, $border_color); + } } - + echo $img; if($layoutData['label_position']=='down'){ @@ -1651,22 +1640,6 @@ function visual_map_print_item($mode = "read", $layoutData, echo io_safe_output($text); } - ob_start(); - if ($type == CIRCULAR_INTERIOR_PROGRESS_BAR) { - if($width == 0){ - echo progress_circular_bar_interior($percentile, 100,100, $border_color); - - } - else{ - echo progress_circular_bar_interior($percentile, $width, $width, $border_color); - } - } - else { - echo progress_bar($percentile, $width, $progress_bar_heigh, '', 1, $value_text, $colorStatus); - } - - $img = ob_get_clean(); - if(get_parameter('action') == 'edit'){ if($width == 0){ $img = ''; @@ -1676,7 +1649,15 @@ function visual_map_print_item($mode = "read", $layoutData, } } else{ - $img = str_replace('>', 'class="image" style="width:'.$wimg.'px;height:'.$himg.'px;'.$imgpos.'" id="image_' . $id . '" />', $img); + if ($type == CIRCULAR_INTERIOR_PROGRESS_BAR) { + if($width == 0){ + $img = progress_circular_bar_interior($id, $percentile, 100,100, $border_color); + + } + else{ + $img = progress_circular_bar_interior($id, $percentile, $width, $width, $border_color); + } + } } echo $img; diff --git a/pandora_console/include/graphs/functions_d3.php b/pandora_console/include/graphs/functions_d3.php index a32277ab50..4d25701115 100644 --- a/pandora_console/include/graphs/functions_d3.php +++ b/pandora_console/include/graphs/functions_d3.php @@ -310,11 +310,37 @@ function ux_console_phases_donut ($phases, $id, $return = false) { return $output; } -function progress_circular_bar ($percentile, $width, $height, $color) { +function progress_circular_bar ($id, $percentile, $width, $height, $color) { + global $config; + $recipient_name = "circular_progress_bar_" . $id; + $recipient_name_to_js = "#circular_progress_bar_" . $id; + + $output = ""; + + $output .= "
"; + $output .= include_javascript_d3(true); + $output .= ""; + + return $output; } -function progress_circular_bar_interior ($percentile, $width, $height, $color) { +function progress_circular_bar_interior ($id, $percentile, $width, $height, $color) { + global $config; + + $recipient_name = "circular_progress_bar_interior_" . $id; + $recipient_name_to_js = "#circular_progress_bar_interior_" . $id; + $output = ""; + + $output .= "
"; + $output .= include_javascript_d3(true); + $output .= ""; + + return $output; } ?> diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index 95a914104f..0992d81fcf 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1492,4 +1492,188 @@ function print_phases_donut (recipient, phases) { polyline.exit() .remove(); } +} + +function print_circular_progress_bar (recipient, percentile, width, height, color) { + var twoPi = Math.PI * 2; + var radius = (width / 2) - 10; + var border = 20; + var startPercent = 0; + var endPercent = parseInt(percentile) / 100; + var count = Math.abs((endPercent - startPercent) / 0.01); + var step = endPercent < startPercent ? -0.01 : 0.01; + var formatPercent = d3.format('.2f'); + + var arc = d3.svg.arc() + .startAngle(0) + .innerRadius(radius) + .outerRadius(radius - border); + + var circle = d3.select(recipient) + .append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")"); + + var meter = circle.append("g") + .attr('class', 'progress-meter'); + + meter.append("path") + .attr('fill', '#000000') + .attr('fill-opacity', 0.5) + .attr('d', arc.endAngle(twoPi)); + + var foreground = circle.append("path") + .attr('fill', color) + .attr('fill-opacity', 1) + .attr('stroke', color) + .attr('stroke-opacity', 1); + + var front = circle.append("path") + .attr('fill', color) + .attr('fill-opacity', 1); + + var numberText = circle.append("text") + .attr('fill', '#000000') + .style("font-family", "arial") + .style("font-weight", "bold") + .style("font-size", 20) + .text("YES") + .attr('text-anchor', 'middle') + .attr('dy', '-25'); + + var numberText = circle.append("text") + .attr('fill', '#000000') + .style("font-family", "arial") + .style("font-weight", "bold") + .style("font-size", 32) + .attr('text-anchor', 'middle') + .attr('dy', '10'); + + var percentText = circle.append("text") + .attr('fill', '#000000') + .style("font-family", "arial") + .style("font-weight", "bold") + .style("font-size", 16) + .text("%") + .attr('text-anchor', 'middle') + .attr('dy', '40'); + + function updateProgress(progress) { + foreground.attr('d', arc.endAngle(twoPi * progress)); + front.attr('d', arc.endAngle(twoPi * progress)); + numberText.text(formatPercent(progress * 100)); + } + + var progress = startPercent; + + (function loops() { + updateProgress(progress); + + if (count > 0) { + count--; + progress += step; + setTimeout(loops, 30); + } + })(); +} + +function print_interior_circular_progress_bar (recipient, percentile, width, height, color) { + var twoPi = Math.PI * 2; + var radius = (width / 2) - 30; + var radius2 = (width / 2) - 10; + var border = 20; + var startPercent = 0; + var endPercent = parseInt(percentile) / 100; + var count = Math.abs((endPercent - startPercent) / 0.01); + var step = endPercent < startPercent ? -0.01 : 0.01; + var formatPercent = d3.format('.2f'); + + var arc = d3.svg.arc() + .startAngle(0) + .innerRadius(radius) + .outerRadius(radius - border); + + var arc2 = d3.svg.arc() + .startAngle(0) + .innerRadius(radius2) + .outerRadius(radius2 - border); + + var circle = d3.select(recipient) + .append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")"); + + var meter = circle.append("g") + .attr('class', 'progress-meter'); + + meter.append("path") + .attr('fill', '#000000') + .attr('fill-opacity', 0.5) + .attr('d', arc.endAngle(twoPi)); + + var meter = circle.append("g") + .attr('class', 'progress-meter'); + + meter.append("path") + .attr('fill', color) + .attr('fill-opacity', 1) + .attr('d', arc2.endAngle(twoPi)); + + var foreground = circle.append("path") + .attr('fill', color) + .attr('fill-opacity', 1) + .attr('stroke', color) + .attr('stroke-opacity', 1); + + var front = circle.append("path") + .attr('fill', color) + .attr('fill-opacity', 1); + + var numberText = circle.append("text") + .attr('fill', '#000000') + .style("font-family", "arial") + .style("font-weight", "bold") + .style("font-size", 20) + .text("YES") + .attr('text-anchor', 'middle') + .attr('dy', '-25'); + + var numberText = circle.append("text") + .attr('fill', '#000000') + .style("font-family", "arial") + .style("font-weight", "bold") + .style("font-size", 32) + .attr('text-anchor', 'middle') + .attr('dy', '10'); + + var percentText = circle.append("text") + .attr('fill', '#000000') + .style("font-family", "arial") + .style("font-weight", "bold") + .style("font-size", 16) + .text("%") + .attr('text-anchor', 'middle') + .attr('dy', '40'); + + function updateProgress(progress) { + foreground.attr('d', arc.endAngle(twoPi * progress)); + front.attr('d', arc.endAngle(twoPi * progress)); + numberText.text(formatPercent(progress * 100)); + } + + var progress = startPercent; + + (function loops() { + updateProgress(progress); + + if (count > 0) { + count--; + progress += step; + setTimeout(loops, 30); + } + })(); } \ No newline at end of file From 3b03bfe6b52bc37e894cd08ad31f09fc005f5286 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Thu, 5 Oct 2017 17:33:37 +0200 Subject: [PATCH 030/311] Added modifications to value option --- .../visual_console_builder.editor.js | 24 ++-------- .../include/functions_visual_map.php | 46 ++++++++++++++----- .../include/graphs/functions_d3.php | 8 ++-- pandora_console/include/graphs/pandora.d3.js | 8 ++-- 4 files changed, 45 insertions(+), 41 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 1ebefe58c3..ba692f20f3 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -388,7 +388,6 @@ function update_button_palette_callback() { else { setPercentileBar(idItem, values); } - break; case 'module_graph': if($('#dir_items').html() == 'horizontal'){ @@ -634,7 +633,8 @@ function readFields() { values['event_max_time_row'] = $("select[name=event_max_time_row]").val(); values['type_percentile'] = $("select[name=type_percentile]").val(); values['percentile_color'] = $("input[name='percentile_color']").val(); - values['value_show'] = $("input[name=value_show]:checked").val(); + values['value_show'] = $("select[name=value_show]").val(); + values['enable_link'] = $("input[name=enable_link]").is(':checked') ? 1 : 0; values['id_group'] = $("select[name=group]").val(); values['id_custom_graph'] = parseInt( @@ -1291,14 +1291,7 @@ function loadFieldsFromDB(item) { } if (key == 'value_show') { - if (val == 'percent') { - $("input[name=value_show][value=percent]") - .attr("checked", "checked"); - } - else { - $("input[name=value_show][value=value]") - .attr("checked", "checked"); - } + $("select[name=value_show]").val(val); } if (key == 'id_group') { @@ -3114,9 +3107,6 @@ function updateDB(type, idElement , values, event) { } function copyDB(idItem) { - - console.log(idItem); - metaconsole = $("input[name='metaconsole']").val(); parameter = Array(); @@ -3572,8 +3562,6 @@ function eventsItems(drag) { } } else{ - console.log('Dragstart'); - multiDragStart(event); } @@ -3590,8 +3578,6 @@ function eventsItems(drag) { updateDB(selectedItem, idItem, values, 'dragstop'); } else{ - - console.log('Dragstop'); multidragStop(event); } }); @@ -3679,10 +3665,6 @@ function eventsItems(drag) { break; } } - else{ - console.log('Drag'); - - } }); } diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 152e3541a3..9479805b59 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1590,11 +1590,23 @@ function visual_map_print_item($mode = "read", $layoutData, } } else { - if($width == 0){ - $img = progress_circular_bar($id, $percentile, 100,100, $border_color); + if (($layoutData['image'] == 'value') && ($value_text !== false)) { + $unit_text = db_get_sql ('SELECT unit + FROM tagente_modulo + WHERE id_agente_modulo = ' . $id_module); + $unit_text = trim(io_safe_output($unit_text)); + + $percentile = $value_text; + } + else { + $unit_text = "%"; + } + + if($width < 200){ + $img = progress_circular_bar($id, $percentile, 200,200, $border_color, $unit_text); } else{ - $img = progress_circular_bar($id, $percentile, $width, $width, $border_color); + $img = progress_circular_bar($id, $percentile, $width, $width, $border_color, $unit_text); } } @@ -1648,15 +1660,25 @@ function visual_map_print_item($mode = "read", $layoutData, $img = ''; } } - else{ - if ($type == CIRCULAR_INTERIOR_PROGRESS_BAR) { - if($width == 0){ - $img = progress_circular_bar_interior($id, $percentile, 100,100, $border_color); - - } - else{ - $img = progress_circular_bar_interior($id, $percentile, $width, $width, $border_color); - } + else { + if (($layoutData['image'] == 'value') && ($value_text !== false)) { + $unit_text = db_get_sql ('SELECT unit + FROM tagente_modulo + WHERE id_agente_modulo = ' . $id_module); + $unit_text = trim(io_safe_output($unit_text)); + + $percentile = $value_text; + } + else { + $unit_text = "%"; + } + + if($width < 200){ + $img = progress_circular_bar_interior($id, $percentile, 200,200, $border_color); + + } + else{ + $img = progress_circular_bar_interior($id, $percentile, $width, $width, $border_color); } } diff --git a/pandora_console/include/graphs/functions_d3.php b/pandora_console/include/graphs/functions_d3.php index 4d25701115..9b839b7e02 100644 --- a/pandora_console/include/graphs/functions_d3.php +++ b/pandora_console/include/graphs/functions_d3.php @@ -310,7 +310,7 @@ function ux_console_phases_donut ($phases, $id, $return = false) { return $output; } -function progress_circular_bar ($id, $percentile, $width, $height, $color) { +function progress_circular_bar ($id, $percentile, $width, $height, $color, $unit = "%") { global $config; $recipient_name = "circular_progress_bar_" . $id; @@ -321,13 +321,13 @@ function progress_circular_bar ($id, $percentile, $width, $height, $color) { $output .= "
"; $output .= include_javascript_d3(true); $output .= ""; return $output; } -function progress_circular_bar_interior ($id, $percentile, $width, $height, $color) { +function progress_circular_bar_interior ($id, $percentile, $width, $height, $color, $unit = "%") { global $config; $recipient_name = "circular_progress_bar_interior_" . $id; @@ -338,7 +338,7 @@ function progress_circular_bar_interior ($id, $percentile, $width, $height, $col $output .= "
"; $output .= include_javascript_d3(true); $output .= ""; return $output; diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index 0992d81fcf..9ce7c9c42d 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1494,7 +1494,7 @@ function print_phases_donut (recipient, phases) { } } -function print_circular_progress_bar (recipient, percentile, width, height, color) { +function print_circular_progress_bar (recipient, percentile, width, height, color, unit) { var twoPi = Math.PI * 2; var radius = (width / 2) - 10; var border = 20; @@ -1556,7 +1556,7 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo .style("font-family", "arial") .style("font-weight", "bold") .style("font-size", 16) - .text("%") + .text(unit) .attr('text-anchor', 'middle') .attr('dy', '40'); @@ -1579,7 +1579,7 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo })(); } -function print_interior_circular_progress_bar (recipient, percentile, width, height, color) { +function print_interior_circular_progress_bar (recipient, percentile, width, height, color, unit) { var twoPi = Math.PI * 2; var radius = (width / 2) - 30; var radius2 = (width / 2) - 10; @@ -1655,7 +1655,7 @@ function print_interior_circular_progress_bar (recipient, percentile, width, hei .style("font-family", "arial") .style("font-weight", "bold") .style("font-size", 16) - .text("%") + .text(unit) .attr('text-anchor', 'middle') .attr('dy', '40'); From 5b933977af5b501c02082d84a7ac9d8bed05658f Mon Sep 17 00:00:00 2001 From: fermin831 Date: Fri, 6 Oct 2017 10:55:18 +0200 Subject: [PATCH 031/311] Fixed inc modules on pandora manage --get_module_data --- pandora_server/util/pandora_manage.pl | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index bdeb19162f..c085dcc473 100644 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -4535,13 +4535,6 @@ sub cli_module_get_data () { AND utimestamp > (UNIX_TIMESTAMP(NOW()) - $interval) ORDER BY utimestamp DESC"); } - elsif ($module_type =~ m/_inc$/) { - @data = get_db_rows ($dbh, "SELECT utimestamp, datos - FROM tagente_datos_inc - WHERE id_agente_modulo = $id_agent_module - AND utimestamp > (UNIX_TIMESTAMP(NOW()) - $interval) - ORDER BY utimestamp DESC"); - } else { @data = get_db_rows ($dbh, "SELECT utimestamp, datos FROM tagente_datos From dfbc8fec69a603ee7f2a0b935c095e94818b4a10 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Fri, 6 Oct 2017 13:48:45 +0200 Subject: [PATCH 032/311] Unable show float numbers in gauge charts - #1364 --- pandora_console/include/graphs/pandora.d3.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index 95a914104f..67e421881d 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1037,18 +1037,18 @@ function createGauges(data, width, height, font_size, no_data_image, font) { label = label.replace(/(/g,'\('); label = label.replace(/)/g,'\)'); - minimun_warning = Math.round(parseFloat( data[key].min_warning ),2); - maximun_warning = Math.round(parseFloat( data[key].max_warning ),2); - minimun_critical = Math.round(parseFloat( data[key].min_critical ),2); - maximun_critical = Math.round(parseFloat( data[key].max_critical ),2); + minimun_warning = parseFloat( data[key].min_warning ); + maximun_warning = parseFloat( data[key].max_warning ); + minimun_critical = parseFloat( data[key].min_critical ); + maximun_critical = parseFloat( data[key].max_critical ); - mininum = Math.round(parseFloat(data[key].min),2); - maxinum = Math.round(parseFloat(data[key].max),2); + mininum = parseFloat(data[key].min); + maxinum = parseFloat(data[key].max); critical_inverse = parseInt(data[key].critical_inverse); warning_inverse = parseInt(data[key].warning_inverse); - valor = Math.round(parseFloat(data[key].value),2); + valor = parseFloat(data[key].value); if (isNaN(valor)) valor = null; From d7ebacf2dc4804120ce43e757d0476b742b2a88a Mon Sep 17 00:00:00 2001 From: enriquecd Date: Fri, 6 Oct 2017 14:03:44 +0200 Subject: [PATCH 033/311] Change auto sla graphs size in visual console editor mode - #1386 --- .../godmode/reporting/visual_console_builder.editor.js | 6 ++++-- pandora_console/include/functions_visual_map.php | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 2c98fb5493..706bafe151 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -1974,6 +1974,8 @@ function setEventsBar(id_data, values) { if (data['no_data'] == true) { if (values['width'] == "0" || values['height'] == "0") { $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); + $("#" + id_data + " img").css('width', '500px'); + $("#" + id_data + " img").css('height', '40px'); } else { $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); @@ -1985,8 +1987,8 @@ function setEventsBar(id_data, values) { $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); if($('#text-width').val() == 0 || $('#text-height').val() == 0){ - $("#" + id_data + " img").css('width', '300px'); - $("#" + id_data + " img").css('height', '180px'); + $("#" + id_data + " img").css('width', '500px'); + $("#" + id_data + " img").css('height', '40px'); } else{ $("#" + id_data + " img").css('width', $('#text-width').val()+'px'); diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index b06a0c6d5c..7348b07c10 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1076,10 +1076,10 @@ function visual_map_print_item($mode = "read", $layoutData, if ((get_parameter('action') == 'edit') || (get_parameter('operation') == 'edit_visualmap')) { if($width == 0 || $height == 0){ if ($layoutData['id_metaconsole'] != 0) { - $img = ''; + $img = ''; } else{ - $img = ''; + $img = ''; } } else{ From 7410d6619231e67ddf8b3e2230bbf8470e37f227 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Fri, 6 Oct 2017 14:04:20 +0200 Subject: [PATCH 034/311] Bubble item and percentile bar item are new. Fixed some visual errors --- .../visual_console_builder.editor.js | 14 +- .../ajax/visual_console_builder.ajax.php | 8 + .../include/functions_visual_map.php | 204 ++--------- .../include/functions_visual_map_editor.php | 21 +- .../include/graphs/functions_d3.php | 43 ++- pandora_console/include/graphs/pandora.d3.js | 324 ++++++++++++++++-- 6 files changed, 406 insertions(+), 208 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index ba692f20f3..180b239a78 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -632,7 +632,9 @@ function readFields() { values['height_module_graph'] = $("input[name=height_module_graph]").val(); values['event_max_time_row'] = $("select[name=event_max_time_row]").val(); values['type_percentile'] = $("select[name=type_percentile]").val(); - values['percentile_color'] = $("input[name='percentile_color']").val(); + values['percentile_color'] = $("input[name=percentile_color]").val(); + values['percentile_label_color'] = $("input[name=percentile_label_color]").val(); + values['percentile_label'] = $("input[name=percentile_label]").val(); values['value_show'] = $("select[name=value_show]").val(); values['enable_link'] = $("input[name=enable_link]").is(':checked') ? 1 : 0; @@ -1283,12 +1285,18 @@ function loadFieldsFromDB(item) { $("input[name=height_module_graph]").val(val); if (key == 'type_percentile') $("select[name=type_percentile]").val(val); - + if (key == 'percentile_label') + $("input[name=percentile_label]").val(val); if (key == 'percentile_color') { - $("input[name='percentile_color']").val(val); + $("input[name=percentile_color]").val(val); $("#percentile_item_row_5 .ColorPickerDivSample") .css('background-color', val); } + if (key == 'percentile_label_color') { + $("input[name=percentile_label_color]").val(val); + $("#percentile_item_row_6 .ColorPickerDivSample") + .css('background-color', val); + } if (key == 'value_show') { $("select[name=value_show]").val(val); diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index 677e635e1e..a9034f3690 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -119,6 +119,8 @@ $border_width = (int)get_parameter('border_width', 0); $border_color = get_parameter('border_color', ''); $fill_color = get_parameter('fill_color', ''); $percentile_color = get_parameter('percentile_color', ''); +$percentile_label = get_parameter('percentile_label', ''); +$percentile_label_color = get_parameter('percentile_label_color', ''); $width_box = (int)get_parameter('width_box', 0); $height_box = (int)get_parameter('height_box', 0); $line_start_x = (int)get_parameter('line_start_x', 0); @@ -620,6 +622,8 @@ switch ($action) { $values['image'] = $value_show; $values['border_color'] = $percentile_color; + $values['fill_color'] = $percentile_label_color; + $values['label'] = $percentile_label; } break; case 'icon': @@ -797,6 +801,8 @@ switch ($action) { $elementFields['type_percentile'] = 'interior_circular_progress_bar'; } $elementFields['percentile_color'] = $elementFields['border_color']; + $elementFields['percentile_label_color'] = $elementFields['fill_color']; + $elementFields['percentile_label'] = $elementFields['label']; break; case 'module_graph': @@ -963,6 +969,8 @@ switch ($action) { $values['image'] = $value_show; //Hack to save it show percent o value. $values['width'] = $width_percentile; $values['height'] = $max_percentile; + $values['fill_color'] = $percentile_label_color; + $values['label'] = $percentile_label; break; case 'static_graph': $values['type'] = STATIC_GRAPH; diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 9479805b59..1de86c2543 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1417,45 +1417,17 @@ function visual_map_print_item($mode = "read", $layoutData, break; case PERCENTILE_BAR: - $imgpos = ''; + if (($layoutData['image'] == 'value') && ($value_text !== false)) { + $unit_text = db_get_sql ('SELECT unit + FROM tagente_modulo + WHERE id_agente_modulo = ' . $id_module); + $unit_text = trim(io_safe_output($unit_text)); - if($layoutData['label_position']=='left'){ - $imgpos = 'float:right;'; - } - else if($layoutData['label_position']=='right'){ - $imgpos = 'float:left;'; - } - - $progress_bar_heigh = 15; - if (!empty($proportion)) { - if ($width != 0) { - $width = (integer)($proportion['proportion_width'] * $width); - } - else { - $width = (integer)($proportion['proportion_width'] * $infoImage[0]); - } - - if ($height != 0) { - $height = (integer)($proportion['proportion_height'] * $height); - $progress_bar_heigh = $progress_bar_heigh * $proportion['proportion_height']; - } - else { - $height = (integer)($proportion['proportion_height'] * $infoImage[1]); - } - } - - if($layoutData['label_position']=='up'){ - echo io_safe_output($text); - } - - ob_start(); - if ($type == PERCENTILE_BUBBLE) { - echo progress_bubble($percentile, $width, $width, '', 1, $value_text, $colorStatus,$imgpos); + $percentile = $value_text; } else { - echo progress_bar($percentile, $width, $progress_bar_heigh, '', 1, $value_text, $colorStatus,$imgpos); + $unit_text = "%"; } - $img = ob_get_clean(); if (get_parameter('action') == 'edit') { if ($width == 0) { @@ -1466,67 +1438,25 @@ function visual_map_print_item($mode = "read", $layoutData, } } else{ - $img = str_replace('>', 'class="image" style="height:'.$himg.'px;width:'.$wimg.'px;'.$imgpos.'" id="image_' . $id . '" />', $img); + $img = d3_progress_bar($id, $percentile, $width, 50, $border_color, $unit_text, $label, $fill_color); } - echo $img; + echo $img; - if($layoutData['label_position']=='down'){ - echo io_safe_output($text); - } - else if($layoutData['label_position']=='left' || $layoutData['label_position']=='right'){ - echo io_safe_output($text); - } - break; case PERCENTILE_BUBBLE: - $imgpos = ''; + if (($layoutData['image'] == 'value') && ($value_text !== false)) { + $unit_text = db_get_sql ('SELECT unit + FROM tagente_modulo + WHERE id_agente_modulo = ' . $id_module); + $unit_text = trim(io_safe_output($unit_text)); - if($layoutData['label_position']=='left'){ - $imgpos = 'float:right;'; - } - else if($layoutData['label_position']=='right'){ - $imgpos = 'float:left;'; - } - - $progress_bar_heigh = 15; - if (!empty($proportion)) { - if ($width != 0) { - $width = (integer)($proportion['proportion_width'] * $width); - } - else { - $width = (integer)($proportion['proportion_width'] * $infoImage[0]); - } - - if ($height != 0) { - $height = (integer)($proportion['proportion_height'] * $height); - $progress_bar_heigh = $progress_bar_heigh * $proportion['proportion_height']; - } - else { - $height = (integer)($proportion['proportion_height'] * $infoImage[1]); - } - } - - if($layoutData['label_position']=='up'){ - echo io_safe_output($text); - } - - ob_start(); - if ($type == PERCENTILE_BUBBLE) { - if($width == 0){ - echo progress_bubble($percentile, 100,100, '', 1, $value_text, $colorStatus,$s); - - } - else{ - echo progress_bubble($percentile, $width,$width, '', 1, $value_text, $colorStatus); - } + $percentile = $value_text; } else { - echo progress_bar($percentile, $width, $progress_bar_heigh, '', 1, $value_text, $colorStatus); + $unit_text = "%"; } - $img = ob_get_clean(); - if(get_parameter('action') == 'edit'){ if($width == 0){ $img = ''; @@ -1536,51 +1466,18 @@ function visual_map_print_item($mode = "read", $layoutData, } } else{ - $img = str_replace('>', 'class="image" style="width:'.$wimg.'px;height:'.$himg.'px;'.$imgpos.'" id="image_' . $id . '" />', $img); + if($width == 0){ + $img = d3_progress_bubble($id, $percentile, 200,200, $border_color, $unit_text, $label, $fill_color); + } + else{ + $img = d3_progress_bubble($id, $percentile, $width, $width, $border_color, $unit_text, $label, $fill_color); + } } echo $img; - if($layoutData['label_position']=='down'){ - echo io_safe_output($text); - } - else if($layoutData['label_position']=='left' || $layoutData['label_position']=='right'){ - echo io_safe_output($text); - } - break; case CIRCULAR_PROGRESS_BAR: - $imgpos = ''; - - if($layoutData['label_position']=='left'){ - $imgpos = 'float:right;'; - } - else if($layoutData['label_position']=='right'){ - $imgpos = 'float:left;'; - } - - $progress_bar_heigh = 15; - if (!empty($proportion)) { - if ($width != 0) { - $width = (integer)($proportion['proportion_width'] * $width); - } - else { - $width = (integer)($proportion['proportion_width'] * $infoImage[0]); - } - - if ($height != 0) { - $height = (integer)($proportion['proportion_height'] * $height); - $progress_bar_heigh = $progress_bar_heigh * $proportion['proportion_height']; - } - else { - $height = (integer)($proportion['proportion_height'] * $infoImage[1]); - } - } - - if($layoutData['label_position']=='up'){ - echo io_safe_output($text); - } - if(get_parameter('action') == 'edit'){ if($width == 0){ $img = ''; @@ -1602,56 +1499,18 @@ function visual_map_print_item($mode = "read", $layoutData, $unit_text = "%"; } - if($width < 200){ - $img = progress_circular_bar($id, $percentile, 200,200, $border_color, $unit_text); + if($width == 0){ + $img = progress_circular_bar($id, $percentile, 200,200, $border_color, $unit_text, $label, $fill_color); } else{ - $img = progress_circular_bar($id, $percentile, $width, $width, $border_color, $unit_text); + $img = progress_circular_bar($id, $percentile, $width, $width, $border_color, $unit_text, $label, $fill_color); } } echo $img; - if($layoutData['label_position']=='down'){ - echo io_safe_output($text); - } - else if($layoutData['label_position']=='left' || $layoutData['label_position']=='right'){ - echo io_safe_output($text); - } - break; case CIRCULAR_INTERIOR_PROGRESS_BAR: - $imgpos = ''; - - if($layoutData['label_position']=='left'){ - $imgpos = 'float:right;'; - } - else if($layoutData['label_position']=='right'){ - $imgpos = 'float:left;'; - } - - $progress_bar_heigh = 15; - if (!empty($proportion)) { - if ($width != 0) { - $width = (integer)($proportion['proportion_width'] * $width); - } - else { - $width = (integer)($proportion['proportion_width'] * $infoImage[0]); - } - - if ($height != 0) { - $height = (integer)($proportion['proportion_height'] * $height); - $progress_bar_heigh = $progress_bar_heigh * $proportion['proportion_height']; - } - else { - $height = (integer)($proportion['proportion_height'] * $infoImage[1]); - } - } - - if($layoutData['label_position']=='up'){ - echo io_safe_output($text); - } - if(get_parameter('action') == 'edit'){ if($width == 0){ $img = ''; @@ -1673,24 +1532,17 @@ function visual_map_print_item($mode = "read", $layoutData, $unit_text = "%"; } - if($width < 200){ - $img = progress_circular_bar_interior($id, $percentile, 200,200, $border_color); + if($width == 0){ + $img = progress_circular_bar_interior($id, $percentile, 200,200, $border_color, $unit_text, $label, $fill_color); } else{ - $img = progress_circular_bar_interior($id, $percentile, $width, $width, $border_color); + $img = progress_circular_bar_interior($id, $percentile, $width, $width, $border_color, $unit_text, $label, $fill_color); } } echo $img; - if($layoutData['label_position']=='down'){ - echo io_safe_output($text); - } - else if($layoutData['label_position']=='left' || $layoutData['label_position']=='right'){ - echo io_safe_output($text); - } - break; case MODULE_GRAPH: if ($layoutData['label_position']=='up') { diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index 49945a30f4..e2736dbf9b 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -157,8 +157,6 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['label_row'] = array(); $form_items['label_row']['items'] = array('label', 'static_graph', - 'percentile_bar', - 'percentile_item', 'module_graph', 'simple_value', 'datos', @@ -445,14 +443,28 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['percentile_item_row_5'] = array(); $form_items['percentile_item_row_5']['items'] = array('percentile_bar', 'percentile_item', 'datos'); - $form_items['percentile_item_row_5']['html'] = '' . __('Color') . ui_print_help_tip ( - __("Only for circular percentile items."), true) . ' + $form_items['percentile_item_row_5']['html'] = '' . __('Element color') . ' ' . html_print_input_text_extended ('percentile_color', '#ffffff', 'text-percentile_color', '', 7, 7, false, '', 'class="percentile_color"', true) . ''; + $form_items['percentile_item_row_6'] = array(); + $form_items['percentile_item_row_6']['items'] = array('percentile_bar', 'percentile_item', 'datos'); + $form_items['percentile_item_row_6']['html'] = '' . __('Label color') . ' + ' . + html_print_input_text_extended ('percentile_label_color', '#ffffff', + 'text-percentile_label_color', '', 7, 7, false, '', + 'class="percentile_label_color"', true) . + ''; + + $form_items['percentile_bar_row_7'] = array(); + $form_items['percentile_bar_row_7']['items'] = array('percentile_bar', 'percentile_item', 'datos'); + $form_items['percentile_bar_row_7']['html'] = '' . + __('Label') . ' + ' . html_print_input_text('percentile_label', '', '', 30, 100, true) . ''; + $form_items['period_row'] = array(); $form_items['period_row']['items'] = array('module_graph', 'simple_value', 'datos'); $form_items['period_row']['html'] = '' . __('Period') . ' @@ -620,6 +632,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $(".fill_color").attachColorPicker(); $(".line_color").attachColorPicker(); $(".percentile_color").attachColorPicker(); + $(".percentile_label_color").attachColorPicker(); $("input[name=radio_choice]").change(function(){ $('#count_items').html(1); diff --git a/pandora_console/include/graphs/functions_d3.php b/pandora_console/include/graphs/functions_d3.php index 9b839b7e02..4a682cc364 100644 --- a/pandora_console/include/graphs/functions_d3.php +++ b/pandora_console/include/graphs/functions_d3.php @@ -310,7 +310,41 @@ function ux_console_phases_donut ($phases, $id, $return = false) { return $output; } -function progress_circular_bar ($id, $percentile, $width, $height, $color, $unit = "%") { +function d3_progress_bar ($id, $percentile, $width, $height, $color, $unit = "%", $text = "", $fill_color = "#FFFFFF") { + global $config; + + $recipient_name = "progress_bar_" . $id; + $recipient_name_to_js = "#progress_bar_" . $id; + + $output = ""; + + $output .= "
"; + $output .= include_javascript_d3(true); + $output .= ""; + + return $output; +} + +function d3_progress_bubble ($id, $percentile, $width, $height, $color, $unit = "%", $text = "", $fill_color = "#FFFFFF") { + global $config; + + $recipient_name = "progress_bubble_" . $id; + $recipient_name_to_js = "#progress_bubble_" . $id; + + $output = ""; + + $output .= "
"; + $output .= include_javascript_d3(true); + $output .= ""; + + return $output; +} + +function progress_circular_bar ($id, $percentile, $width, $height, $color, $unit = "%", $text = "", $fill_color = "#FFFFFF") { global $config; $recipient_name = "circular_progress_bar_" . $id; @@ -321,13 +355,13 @@ function progress_circular_bar ($id, $percentile, $width, $height, $color, $unit $output .= "
"; $output .= include_javascript_d3(true); $output .= ""; return $output; } -function progress_circular_bar_interior ($id, $percentile, $width, $height, $color, $unit = "%") { +function progress_circular_bar_interior ($id, $percentile, $width, $height, $color, $unit = "%", $text = "", $fill_color = "#FFFFFF") { global $config; $recipient_name = "circular_progress_bar_interior_" . $id; @@ -338,9 +372,10 @@ function progress_circular_bar_interior ($id, $percentile, $width, $height, $col $output .= "
"; $output .= include_javascript_d3(true); $output .= ""; return $output; } + ?> diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index 9ce7c9c42d..4a177319d8 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1494,9 +1494,195 @@ function print_phases_donut (recipient, phases) { } } -function print_circular_progress_bar (recipient, percentile, width, height, color, unit) { +function progress_bar_d3 (recipient, percentile, width, height, color, unit, label, label_color) { + var startPercent = 0; + var endPercent = parseInt(percentile) / 100; + var count = Math.abs((endPercent - startPercent) / 0.01); + var step = endPercent < startPercent ? -0.01 : 0.01; + var formatPercent = d3.format('.2f'); + + var circle = d3.select(recipient) + .append("svg") + .attr("width", width) + .attr("height", height); + + var progress_back = circle.append('rect') + .attr('fill', '#000000') + .attr('fill-opacity', 0.5) + .attr('height', 20) + .attr('width', width) + .attr('rx', 10) + .attr('ry', 10) + .attr('x', 0); + + var progress_front = circle.append('rect') + .attr('fill', color) + .attr('fill-opacity', 1) + .attr('height', 20) + .attr('width', 0) + .attr('rx', 10) + .attr('ry', 10) + .attr('x', 0); + + var labelText = circle.append("text") + .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")") + .attr('fill', label_color) + .style("font-family", "arial") + .style("font-weight", "bold") + .style("font-size", 20) + .html(label) + .attr('dy', '15') + .attr('text-anchor', 'middle'); + + var numberText = circle.append("text") + .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")") + .attr('fill', '#FFFFFF') + .style("font-family", "arial") + .style("font-weight", "bold") + .style("font-size", 14) + .attr('text-anchor', 'middle') + .attr('dy', '-10'); + + function updateProgress(bar_progress) { + numberText.text(formatPercent(bar_progress * 100) + " " + unit); + progress_front.attr('width', (width * bar_progress)); + } + + var bar_progress = startPercent; + + (function loops() { + updateProgress(bar_progress); + + if (count > 0) { + count--; + bar_progress += step; + setTimeout(loops, 30); + } + })(); +} + +function progress_bubble_d3 (recipient, percentile, width, height, color, unit, label, label_color) { + var startPercent = 0; + var endPercent = parseInt(percentile) / 100; + var count = Math.abs((endPercent - startPercent) / 0.01); + var step = endPercent < startPercent ? -0.01 : 0.01; + var formatPercent = d3.format('.2f'); + + var numberSize = 0; + var textSize = 0; + var unitSize = 0; + var yPosText = 0; + var yPosUnit = 0; + if (width >= 500) { + numberSize = 100; + textSize = 50; + unitSize = 50; + yPosText = '-100'; + yPosUnit = '100'; + } + else if (width >= 400) { + numberSize = 80; + textSize = 40; + unitSize = 40; + yPosText = '-80'; + yPosUnit = '80'; + } + else if (width >= 300) { + numberSize = 60; + textSize = 30; + unitSize = 30; + yPosText = '-60'; + yPosUnit = '60'; + } + else if (width >= 200) { + numberSize = 40; + textSize = 20; + unitSize = 20; + yPosText = '-40'; + yPosUnit = '40'; + } + else if (width >= 100) { + numberSize = 20; + textSize = 10; + unitSize = 10; + yPosText = '-20'; + yPosUnit = '25'; + } + else { + numberSize = 10; + textSize = 8; + unitSize = 8; + yPosText = '-10'; + yPosUnit = '10'; + } + + var circle = d3.select(recipient) + .append("svg") + .attr("width", width) + .attr("height", height); + + var progress_back = circle.append('circle') + .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")") + .attr('fill', '#000000') + .attr('fill-opacity', 0.5) + .attr('r', width/2); + + var progress_front = circle.append('circle') + .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")") + .attr('fill', color) + .attr('fill-opacity', 1) + .attr('r', 0); + + var labelText = circle.append("text") + .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")") + .attr('fill', label_color) + .style("font-family", "arial") + .style("font-weight", "bold") + .style("font-size", textSize) + .html(label) + .attr('dy', yPosText) + .attr('text-anchor', 'middle'); + + var numberText = circle.append("text") + .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")") + .attr('fill', '#FFFFFF') + .style("font-family", "arial") + .style("font-weight", "bold") + .style("font-size", numberSize) + .attr('text-anchor', 'middle') + .attr('dy', '5'); + + var unitText = circle.append("text") + .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")") + .attr('fill', '#FFFFFF') + .style("font-family", "arial") + .style("font-weight", "bold") + .text(unit) + .style("font-size", unitSize) + .attr('text-anchor', 'middle') + .attr('dy', yPosUnit); + + function updateProgress(bar_progress) { + numberText.text(formatPercent(bar_progress * 100)); + progress_front.attr('r', ((width/2) * bar_progress)); + } + + var bar_progress = startPercent; + + (function loops() { + updateProgress(bar_progress); + + if (count > 0) { + count--; + bar_progress += step; + setTimeout(loops, 30); + } + })(); +} + +function print_circular_progress_bar (recipient, percentile, width, height, color, unit, label, label_color) { var twoPi = Math.PI * 2; - var radius = (width / 2) - 10; + var radius = (width / 2); var border = 20; var startPercent = 0; var endPercent = parseInt(percentile) / 100; @@ -1504,6 +1690,54 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo var step = endPercent < startPercent ? -0.01 : 0.01; var formatPercent = d3.format('.2f'); + var numberSize = 0; + var textSize = 0; + var unitSize = 0; + var yPosText = 0; + var yPosUnit = 0; + if (width >= 500) { + numberSize = 100; + textSize = 50; + unitSize = 50; + yPosText = '-100'; + yPosUnit = '100'; + } + else if (width >= 400) { + numberSize = 80; + textSize = 40; + unitSize = 40; + yPosText = '-80'; + yPosUnit = '80'; + } + else if (width >= 300) { + numberSize = 60; + textSize = 30; + unitSize = 30; + yPosText = '-60'; + yPosUnit = '60'; + } + else if (width >= 200) { + numberSize = 40; + textSize = 20; + unitSize = 20; + yPosText = '-30'; + yPosUnit = '40'; + } + else if (width >= 100) { + numberSize = 20; + textSize = 10; + unitSize = 10; + yPosText = '-10'; + yPosUnit = '25'; + } + else { + numberSize = 2; + textSize = 1; + unitSize = 1; + yPosText = '-1'; + yPosUnit = '2'; + } + var arc = d3.svg.arc() .startAngle(0) .innerRadius(radius) @@ -1534,20 +1768,20 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo .attr('fill', color) .attr('fill-opacity', 1); - var numberText = circle.append("text") - .attr('fill', '#000000') + var labelText = circle.append("text") + .attr('fill', label_color) .style("font-family", "arial") .style("font-weight", "bold") - .style("font-size", 20) - .text("YES") + .style("font-size", textSize) + .html(label) .attr('text-anchor', 'middle') - .attr('dy', '-25'); + .attr('dy', yPosText); var numberText = circle.append("text") .attr('fill', '#000000') .style("font-family", "arial") .style("font-weight", "bold") - .style("font-size", 32) + .style("font-size", numberSize) .attr('text-anchor', 'middle') .attr('dy', '10'); @@ -1555,10 +1789,10 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo .attr('fill', '#000000') .style("font-family", "arial") .style("font-weight", "bold") - .style("font-size", 16) + .style("font-size", unitSize) .text(unit) .attr('text-anchor', 'middle') - .attr('dy', '40'); + .attr('dy', yPosUnit); function updateProgress(progress) { foreground.attr('d', arc.endAngle(twoPi * progress)); @@ -1579,10 +1813,10 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo })(); } -function print_interior_circular_progress_bar (recipient, percentile, width, height, color, unit) { +function print_interior_circular_progress_bar (recipient, percentile, width, height, color, unit, label, label_color) { var twoPi = Math.PI * 2; - var radius = (width / 2) - 30; - var radius2 = (width / 2) - 10; + var radius = (width / 2) - 20; + var radius2 = (width / 2); var border = 20; var startPercent = 0; var endPercent = parseInt(percentile) / 100; @@ -1590,6 +1824,54 @@ function print_interior_circular_progress_bar (recipient, percentile, width, hei var step = endPercent < startPercent ? -0.01 : 0.01; var formatPercent = d3.format('.2f'); + var numberSize = 0; + var textSize = 0; + var unitSize = 0; + var yPosText = 0; + var yPosUnit = 0; + if (width >= 500) { + numberSize = 100; + textSize = 50; + unitSize = 50; + yPosText = '-100'; + yPosUnit = '100'; + } + else if (width >= 400) { + numberSize = 80; + textSize = 40; + unitSize = 40; + yPosText = '-80'; + yPosUnit = '80'; + } + else if (width >= 300) { + numberSize = 60; + textSize = 30; + unitSize = 30; + yPosText = '-60'; + yPosUnit = '60'; + } + else if (width >= 200) { + numberSize = 40; + textSize = 20; + unitSize = 20; + yPosText = '-30'; + yPosUnit = '40'; + } + else if (width >= 100) { + numberSize = 20; + textSize = 10; + unitSize = 10; + yPosText = '-10'; + yPosUnit = '25'; + } + else { + numberSize = 2; + textSize = 1; + unitSize = 1; + yPosText = '-1'; + yPosUnit = '2'; + } + var arc = d3.svg.arc() .startAngle(0) .innerRadius(radius) @@ -1633,20 +1915,20 @@ function print_interior_circular_progress_bar (recipient, percentile, width, hei .attr('fill', color) .attr('fill-opacity', 1); - var numberText = circle.append("text") - .attr('fill', '#000000') + var labelText = circle.append("text") + .attr('fill', label_color) .style("font-family", "arial") .style("font-weight", "bold") - .style("font-size", 20) - .text("YES") + .style("font-size", textSize) + .html(label) .attr('text-anchor', 'middle') - .attr('dy', '-25'); + .attr('dy', yPosText); var numberText = circle.append("text") .attr('fill', '#000000') .style("font-family", "arial") .style("font-weight", "bold") - .style("font-size", 32) + .style("font-size", numberSize) .attr('text-anchor', 'middle') .attr('dy', '10'); @@ -1654,10 +1936,10 @@ function print_interior_circular_progress_bar (recipient, percentile, width, hei .attr('fill', '#000000') .style("font-family", "arial") .style("font-weight", "bold") - .style("font-size", 16) + .style("font-size", unitSize) .text(unit) .attr('text-anchor', 'middle') - .attr('dy', '40'); + .attr('dy', yPosUnit); function updateProgress(progress) { foreground.attr('d', arc.endAngle(twoPi * progress)); From bbd296052b9d96495848d289047d6f8bcff74cd1 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Fri, 6 Oct 2017 14:30:36 +0200 Subject: [PATCH 035/311] Added good styles --- pandora_console/include/graphs/pandora.d3.js | 67 +++++++++++++------- 1 file changed, 44 insertions(+), 23 deletions(-) diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index 4a177319d8..f187408151 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1573,10 +1573,12 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, var unitSize = 0; var yPosText = 0; var yPosUnit = 0; + var yPosNumber = 0; if (width >= 500) { numberSize = 100; textSize = 50; unitSize = 50; + yPosNumber = '15'; yPosText = '-100'; yPosUnit = '100'; } @@ -1584,6 +1586,7 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, numberSize = 80; textSize = 40; unitSize = 40; + yPosNumber = '15'; yPosText = '-80'; yPosUnit = '80'; } @@ -1591,20 +1594,23 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, numberSize = 60; textSize = 30; unitSize = 30; - yPosText = '-60'; + yPosNumber = '15'; + yPosText = '-45'; yPosUnit = '60'; } else if (width >= 200) { numberSize = 40; textSize = 20; unitSize = 20; - yPosText = '-40'; - yPosUnit = '40'; + yPosNumber = '10'; + yPosText = '-30'; + yPosUnit = '45'; } else if (width >= 100) { numberSize = 20; textSize = 10; unitSize = 10; + yPosNumber = '5'; yPosText = '-20'; yPosUnit = '25'; } @@ -1612,8 +1618,9 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, numberSize = 10; textSize = 8; unitSize = 8; + yPosNumber = '5'; yPosText = '-10'; - yPosUnit = '10'; + yPosUnit = '15'; } var circle = d3.select(recipient) @@ -1650,7 +1657,7 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, .style("font-weight", "bold") .style("font-size", numberSize) .attr('text-anchor', 'middle') - .attr('dy', '5'); + .attr('dy', yPosNumber); var unitText = circle.append("text") .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")") @@ -1695,10 +1702,12 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo var unitSize = 0; var yPosText = 0; var yPosUnit = 0; + var yPosNumber = 0; if (width >= 500) { numberSize = 100; textSize = 50; unitSize = 50; + yPosNumber = '15'; yPosText = '-100'; yPosUnit = '100'; } @@ -1706,6 +1715,7 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo numberSize = 80; textSize = 40; unitSize = 40; + yPosNumber = '15'; yPosText = '-80'; yPosUnit = '80'; } @@ -1713,13 +1723,15 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo numberSize = 60; textSize = 30; unitSize = 30; - yPosText = '-60'; + yPosNumber = '15'; + yPosText = '-45'; yPosUnit = '60'; } else if (width >= 200) { numberSize = 40; textSize = 20; unitSize = 20; + yPosNumber = '10'; yPosText = '-30'; yPosUnit = '40'; } @@ -1727,15 +1739,17 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo numberSize = 20; textSize = 10; unitSize = 10; - yPosText = '-10'; - yPosUnit = '25'; + yPosNumber = '5'; + yPosText = '-15'; + yPosUnit = '20'; } else { - numberSize = 2; - textSize = 1; - unitSize = 1; - yPosText = '-1'; - yPosUnit = '2'; + numberSize = 8; + textSize = 4; + unitSize = 4; + yPosNumber = '2'; + yPosText = '-5'; + yPosUnit = '5'; } var arc = d3.svg.arc() @@ -1783,7 +1797,7 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo .style("font-weight", "bold") .style("font-size", numberSize) .attr('text-anchor', 'middle') - .attr('dy', '10'); + .attr('dy', yPosNumber); var percentText = circle.append("text") .attr('fill', '#000000') @@ -1829,10 +1843,12 @@ function print_interior_circular_progress_bar (recipient, percentile, width, hei var unitSize = 0; var yPosText = 0; var yPosUnit = 0; + var yPosNumber = 0; if (width >= 500) { numberSize = 100; textSize = 50; unitSize = 50; + yPosNumber = '15'; yPosText = '-100'; yPosUnit = '100'; } @@ -1840,6 +1856,7 @@ function print_interior_circular_progress_bar (recipient, percentile, width, hei numberSize = 80; textSize = 40; unitSize = 40; + yPosNumber = '15'; yPosText = '-80'; yPosUnit = '80'; } @@ -1847,13 +1864,15 @@ function print_interior_circular_progress_bar (recipient, percentile, width, hei numberSize = 60; textSize = 30; unitSize = 30; - yPosText = '-60'; + yPosNumber = '15'; + yPosText = '-45'; yPosUnit = '60'; } else if (width >= 200) { numberSize = 40; textSize = 20; unitSize = 20; + yPosNumber = '10'; yPosText = '-30'; yPosUnit = '40'; } @@ -1861,15 +1880,17 @@ function print_interior_circular_progress_bar (recipient, percentile, width, hei numberSize = 20; textSize = 10; unitSize = 10; - yPosText = '-10'; - yPosUnit = '25'; + yPosNumber = '5'; + yPosText = '-15'; + yPosUnit = '20'; } else { - numberSize = 2; - textSize = 1; - unitSize = 1; - yPosText = '-1'; - yPosUnit = '2'; + numberSize = 8; + textSize = 4; + unitSize = 4; + yPosNumber = '2'; + yPosText = '-5'; + yPosUnit = '5'; } var arc = d3.svg.arc() @@ -1930,7 +1951,7 @@ function print_interior_circular_progress_bar (recipient, percentile, width, hei .style("font-weight", "bold") .style("font-size", numberSize) .attr('text-anchor', 'middle') - .attr('dy', '10'); + .attr('dy', yPosNumber); var percentText = circle.append("text") .attr('fill', '#000000') From 4530f2213c6c1782592f458b8dc380dc76c0d929 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Fri, 6 Oct 2017 15:45:40 +0200 Subject: [PATCH 036/311] Fixed last value on general template reports and individual reports --- pandora_console/include/functions_reporting.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 8a47d2c7d2..459be56db7 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -131,7 +131,9 @@ function reporting_make_reporting_data($report = null, $id_report, foreach ($contents as $content) { $server_name = $content['server_name']; - if (!empty($period)) { + // General reports with 0 period means last value + // Avoid to overwrite it by template value + if (!empty($period) && ($content['type'] !== 'general' && $content['period'] != 0)) { $content['period'] = $period; } @@ -5623,6 +5625,7 @@ function reporting_general($report, $content) { $i = 0; $index = 0; + $is_string = array(); foreach ($generals as $row) { //Metaconsole connection $server_name = $row ['server_name']; @@ -5648,6 +5651,7 @@ function reporting_general($report, $content) { $mod_name = modules_get_agentmodule_name ($row['id_agent_module']); $ag_name = modules_get_agentmodule_agent_alias ($row['id_agent_module']); $type_mod = modules_get_last_value($row['id_agent_module']); + $is_string[$index] = modules_is_string($row['id_agent_module']); $unit = db_get_value('unit', 'tagente_modulo', 'id_agente_modulo', $row['id_agent_module']); @@ -5657,7 +5661,7 @@ function reporting_general($report, $content) { modules_get_last_value($row['id_agent_module']); } else { - if(is_numeric($type_mod)){ + if(is_numeric($type_mod) && !$is_string[$index]) { switch ($row['operation']) { case 'sum': $data_res[$index] = @@ -5711,7 +5715,7 @@ function reporting_general($report, $content) { } // Calculate the avg, min and max - if (is_numeric($data_res[$index])) { + if (is_numeric($data_res[$index]) && !$is_string[$index]) { $change_min = false; if (is_null($return["min"]["value"])) { $change_min = true; @@ -5837,7 +5841,7 @@ function reporting_general($report, $content) { break; } - if (!is_numeric($d)) { + if (!is_numeric($d) || $is_string[$i]) { $data['value'] = $d; // to see the chains on the table $data['formated_value'] = $d; From 4cb4a699a5018e0c962d2088a70abd3e19d89e80 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Mon, 9 Oct 2017 11:57:31 +0200 Subject: [PATCH 037/311] Added minor changes to percent items --- .../visual_console_builder.editor.js | 8 ++-- pandora_console/include/graphs/pandora.d3.js | 43 ++++++------------- 2 files changed, 17 insertions(+), 34 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 180b239a78..d79050bc5f 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -1930,7 +1930,7 @@ function setPercentileBar(id_data, values) { $("#"+ id_data).attr('src', img); - $("#" + id_data + " img").attr('src', 'images/console/signes/percentil.png'); + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/percentil.png'); if($('#text-width_percentile').val() == 0){ $("#" + id_data + " img").css('width', '130px'); } @@ -2001,7 +2001,7 @@ function setPercentileCircular (id_data, values) { value_text = module_value + " " + unit_text; } - $("#" + id_data + " img").attr('src', 'images/console/signes/circular-progress-bar.png'); + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/circular-progress-bar.png'); if($('#text-width_percentile').val() == 0){ $("#" + id_data + " img").css('width', '130px'); $("#" + id_data + " img").css('height', '130px'); @@ -2069,7 +2069,7 @@ function setPercentileInteriorCircular (id_data, values) { value_text = module_value + " " + unit_text; } - $("#" + id_data + " img").attr('src', 'images/console/signes/circular-progress-bar-interior.png'); + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/circular-progress-bar-interior.png'); if($('#text-width_percentile').val() == 0){ $("#" + id_data + " img").css('width', '130px'); $("#" + id_data + " img").css('height', '130px'); @@ -2189,7 +2189,7 @@ function setPercentileBubble(id_data, values) { $("#image_" + id_data).attr('src', img); - $("#" + id_data + " img").attr('src', 'images/console/signes/percentil_bubble.png'); + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/percentil_bubble.png'); if($('#text-width_percentile').val() == 0){ diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index f187408151..8ca4ada1ed 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1499,7 +1499,6 @@ function progress_bar_d3 (recipient, percentile, width, height, color, unit, lab var endPercent = parseInt(percentile) / 100; var count = Math.abs((endPercent - startPercent) / 0.01); var step = endPercent < startPercent ? -0.01 : 0.01; - var formatPercent = d3.format('.2f'); var circle = d3.select(recipient) .append("svg") @@ -1544,7 +1543,8 @@ function progress_bar_d3 (recipient, percentile, width, height, color, unit, lab .attr('dy', '-10'); function updateProgress(bar_progress) { - numberText.text(formatPercent(bar_progress * 100) + " " + unit); + var percent_value = Number(bar_progress * 100); + numberText.text(percent_value.toFixed()); progress_front.attr('width', (width * bar_progress)); } @@ -1566,13 +1566,11 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, var endPercent = parseInt(percentile) / 100; var count = Math.abs((endPercent - startPercent) / 0.01); var step = endPercent < startPercent ? -0.01 : 0.01; - var formatPercent = d3.format('.2f'); var numberSize = 0; var textSize = 0; var unitSize = 0; var yPosText = 0; - var yPosUnit = 0; var yPosNumber = 0; if (width >= 500) { numberSize = 100; @@ -1580,7 +1578,6 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, unitSize = 50; yPosNumber = '15'; yPosText = '-100'; - yPosUnit = '100'; } else if (width >= 400) { numberSize = 80; @@ -1588,7 +1585,6 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, unitSize = 40; yPosNumber = '15'; yPosText = '-80'; - yPosUnit = '80'; } else if (width >= 300) { numberSize = 60; @@ -1596,15 +1592,13 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, unitSize = 30; yPosNumber = '15'; yPosText = '-45'; - yPosUnit = '60'; } else if (width >= 200) { numberSize = 40; textSize = 20; unitSize = 20; - yPosNumber = '10'; + yPosNumber = '50'; yPosText = '-30'; - yPosUnit = '45'; } else if (width >= 100) { numberSize = 20; @@ -1612,7 +1606,6 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, unitSize = 10; yPosNumber = '5'; yPosText = '-20'; - yPosUnit = '25'; } else { numberSize = 10; @@ -1620,7 +1613,6 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, unitSize = 8; yPosNumber = '5'; yPosText = '-10'; - yPosUnit = '15'; } var circle = d3.select(recipient) @@ -1631,7 +1623,7 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, var progress_back = circle.append('circle') .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")") .attr('fill', '#000000') - .attr('fill-opacity', 0.5) + .attr('fill-opacity', 0) .attr('r', width/2); var progress_front = circle.append('circle') @@ -1647,30 +1639,21 @@ function progress_bubble_d3 (recipient, percentile, width, height, color, unit, .style("font-weight", "bold") .style("font-size", textSize) .html(label) - .attr('dy', yPosText) + .attr('dy', -(width/3)) .attr('text-anchor', 'middle'); var numberText = circle.append("text") .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")") - .attr('fill', '#FFFFFF') + .attr('fill', label_color) .style("font-family", "arial") .style("font-weight", "bold") .style("font-size", numberSize) .attr('text-anchor', 'middle') - .attr('dy', yPosNumber); - - var unitText = circle.append("text") - .attr("transform", "translate(" + (width/2) + ", " + (height/2) + ")") - .attr('fill', '#FFFFFF') - .style("font-family", "arial") - .style("font-weight", "bold") - .text(unit) - .style("font-size", unitSize) - .attr('text-anchor', 'middle') - .attr('dy', yPosUnit); + .attr('dy', width/2); function updateProgress(bar_progress) { - numberText.text(formatPercent(bar_progress * 100)); + var percent_value = Number(bar_progress * 100); + numberText.text(percent_value.toFixed() + " %"); progress_front.attr('r', ((width/2) * bar_progress)); } @@ -1695,7 +1678,6 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo var endPercent = parseInt(percentile) / 100; var count = Math.abs((endPercent - startPercent) / 0.01); var step = endPercent < startPercent ? -0.01 : 0.01; - var formatPercent = d3.format('.2f'); var numberSize = 0; var textSize = 0; @@ -1811,7 +1793,8 @@ function print_circular_progress_bar (recipient, percentile, width, height, colo function updateProgress(progress) { foreground.attr('d', arc.endAngle(twoPi * progress)); front.attr('d', arc.endAngle(twoPi * progress)); - numberText.text(formatPercent(progress * 100)); + var percent_value = Number(progress * 100); + numberText.text(percent_value.toFixed()); } var progress = startPercent; @@ -1836,7 +1819,6 @@ function print_interior_circular_progress_bar (recipient, percentile, width, hei var endPercent = parseInt(percentile) / 100; var count = Math.abs((endPercent - startPercent) / 0.01); var step = endPercent < startPercent ? -0.01 : 0.01; - var formatPercent = d3.format('.2f'); var numberSize = 0; var textSize = 0; @@ -1965,7 +1947,8 @@ function print_interior_circular_progress_bar (recipient, percentile, width, hei function updateProgress(progress) { foreground.attr('d', arc.endAngle(twoPi * progress)); front.attr('d', arc.endAngle(twoPi * progress)); - numberText.text(formatPercent(progress * 100)); + var percent_value = Number(progress * 100); + numberText.text(percent_value.toFixed()); } var progress = startPercent; From c04d4ed08e4e4e8f132610bb6f420bc0ef4b3f7c Mon Sep 17 00:00:00 2001 From: enriquecd Date: Mon, 9 Oct 2017 12:03:19 +0200 Subject: [PATCH 038/311] Enable background color options for gauge charts - #1397 --- pandora_console/include/functions_graph.php | 2 +- pandora_console/include/graphs/fgraph.php | 4 ++-- .../include/graphs/flot/pandora.flot.js | 21 +++++++++++++++++-- .../include/graphs/functions_flot.php | 2 +- 4 files changed, 23 insertions(+), 6 deletions(-) diff --git a/pandora_console/include/functions_graph.php b/pandora_console/include/functions_graph.php index abf130c3a9..b250cf9767 100644 --- a/pandora_console/include/functions_graph.php +++ b/pandora_console/include/functions_graph.php @@ -2119,7 +2119,7 @@ function graphic_combined_module ($module_list, $weight_list, $period, case CUSTOM_GRAPH_PIE: return ring_graph($flash_charts, $graph_values, $width, $height, $others_str, $homeurl, $water_mark, $config['fontpath'], - ($config['font_size']+1), $ttl, false, $color, false); + ($config['font_size']+1), $ttl, false, $color, false,$background_color); break; } } diff --git a/pandora_console/include/graphs/fgraph.php b/pandora_console/include/graphs/fgraph.php index c36529b7f7..5002b13b7c 100644 --- a/pandora_console/include/graphs/fgraph.php +++ b/pandora_console/include/graphs/fgraph.php @@ -752,7 +752,7 @@ function pie_graph($graph_type, $flash_chart, $chart_data, $width, function ring_graph($flash_chart, $chart_data, $width, $height, $others_str = "other", $homedir="", $water_mark = "", $font = '', $font_size = '', $ttl = 1, $legend_position = false, - $colors = '', $hide_labels = false) { + $colors = '', $hide_labels = false,$background_color = 'white') { if (empty($chart_data)) { return graph_nodata_image($width, $height, 'pie'); @@ -768,7 +768,7 @@ function ring_graph($flash_chart, $chart_data, $width, return flot_custom_pie_chart ($flash_chart, $chart_data, $width, $height, $colors, $module_name_list, $long_index, $no_data, false, '', $water_mark, $font, $font_size, - $unit, $ttl, $homeurl, $background_color, $legend_position); + $unit, $ttl, $homeurl, $background_color, $legend_position,$background_color); } else { $total_modules = $chart_data['total_modules']; diff --git a/pandora_console/include/graphs/flot/pandora.flot.js b/pandora_console/include/graphs/flot/pandora.flot.js index e036a9855e..bd15f5a94b 100644 --- a/pandora_console/include/graphs/flot/pandora.flot.js +++ b/pandora_console/include/graphs/flot/pandora.flot.js @@ -119,7 +119,8 @@ function pandoraFlotPie(graph_id, values, labels, nseries, width, font_size, wat function pandoraFlotPieCustom(graph_id, values, labels, width, font_size, font, water_mark, separator, legend_position, height, - colors,legend) { + colors,legend,background_color) { + font = font.split("/").pop().split(".").shift(); var labels = labels.split(separator); var legend = legend.split(separator); @@ -211,8 +212,24 @@ function pandoraFlotPieCustom(graph_id, values, labels, width, $('.legend>table').css('right',($('.legend>div').height()*-1)); } //$('.legend>table').css('border',"1px solid #E2E2E2"); - $('.legend>table').css('background-color',"transparent"); + if(background_color == 'transparent'){ + $('.legend>table').css('background-color',""); + $('.legend>div').css('background-color',""); + $('.legend>table').css('color',"#aaa"); + } + else if (background_color == 'white') { + $('.legend>table').css('background-color',"white"); + $('.legend>table').css('color',"black"); + } + else if (background_color == 'black') { + $('.legend>table').css('background-color',"black"); + $('.legend>table').css('color',"#aaa"); + } + + $('.legend').over(function(){ + return false; + }); var pielegends = $('#'+graph_id+' .pieLabelBackground'); pielegends.each(function () { diff --git a/pandora_console/include/graphs/functions_flot.php b/pandora_console/include/graphs/functions_flot.php index 319e69cab0..b76f4fd13c 100644 --- a/pandora_console/include/graphs/functions_flot.php +++ b/pandora_console/include/graphs/functions_flot.php @@ -666,7 +666,7 @@ function flot_custom_pie_chart ($flash_charts, $graph_values, $return .= "pandoraFlotPieCustom('$graph_id', '$values', '$labels', '$width', $font_size, '$fontpath', $water_mark, - '$separator', '$legend_position', '$height', '$colors','$legend')"; + '$separator', '$legend_position', '$height', '$colors','$legend','$background_color')"; $return .= ""; From 739c507d770696ee395bbb79e0ac4351b03e2cef Mon Sep 17 00:00:00 2001 From: fermin831 Date: Mon, 9 Oct 2017 12:28:17 +0200 Subject: [PATCH 039/311] Added _server_ip_ and _server_name_ macros to alerts --- pandora_server/lib/PandoraFMS/Core.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 24bdfeea51..b88e9ab774 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -1014,6 +1014,8 @@ sub pandora_execute_action ($$$$$$$$$;$) { _id_group_ => (defined ($group)) ? $group->{'id_grupo'} : '', _id_alert_ => (defined ($alert->{'id_template_module'})) ? $alert->{'id_template_module'} : '', _interval_ => (defined ($module) && $module->{'module_interval'} != 0) ? $module->{'module_interval'} : (defined ($agent)) ? $agent->{'intervalo'} : '', + _server_ip_ => (defined ($agent)) ? get_db_value($dbh, "SELECT ip_address FROM tserver WHERE name = ?", $agent->{'server_name'}) : '', + _server_name_ => (defined ($agent)) ? $agent->{'server_name'} : '', _target_ip_ => (defined ($module)) ? $module->{'ip_target'} : '', _target_port_ => (defined ($module)) ? $module->{'tcp_port'} : '', _policy_ => undef, From 274fc2e15f71cf3694602079c27a5f296042bad6 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Mon, 9 Oct 2017 12:35:46 +0200 Subject: [PATCH 040/311] Modified help to include _server_ip_ and _server_name_ macros --- pandora_console/include/help/en/help_alert_config.php | 2 ++ pandora_console/include/help/en/help_alert_macros.php | 2 ++ pandora_console/include/help/es/help_alert_config.php | 2 ++ pandora_console/include/help/es/help_alert_macros.php | 2 ++ pandora_console/include/help/ja/help_alert_config.php | 2 ++ pandora_console/include/help/ja/help_alert_macros.php | 2 ++ 6 files changed, 12 insertions(+) diff --git a/pandora_console/include/help/en/help_alert_config.php b/pandora_console/include/help/en/help_alert_config.php index fec6b2a7bf..569242a5dc 100644 --- a/pandora_console/include/help/en/help_alert_config.php +++ b/pandora_console/include/help/en/help_alert_config.php @@ -58,6 +58,8 @@ Apart from the defined module macros, the following macros are also available:
  • _id_alert_ : Numerical ID of the alert (unique), used to correlate on third party software
  • _policy_ : Name of the policy the module belongs to (if applies).
  • _interval_ : Execution interval of the module.
  • +
  • _server_ip_ : Ip of server assigned to agent.
  • +
  • _server_name_ : Name of server assigned to agent.
  • _target_ip_ : IP address of the target of the module.
  • _target_port_ : Port number of the target of the module.
  • _plugin_parameters_ : Plug-in Parameters of the module.
  • diff --git a/pandora_console/include/help/en/help_alert_macros.php b/pandora_console/include/help/en/help_alert_macros.php index 5382c502ab..bd303e9657 100644 --- a/pandora_console/include/help/en/help_alert_macros.php +++ b/pandora_console/include/help/en/help_alert_macros.php @@ -54,6 +54,8 @@ Besides the defined module macros, the following macros are available:
  • _target_ip_: IP address for the module’s target.
  • _target_port_: Port number for the module’s target.
  • _plugin_parameters_: Module’s Plugin parameters.
  • +
  • _server_ip_ : Ip of server assigned to agent.
  • +
  • _server_name_ : Name of server assigned to agent.
  • _groupcontact_: Group’s contact information. Configured when the group is created.
  • _groupcustomid_: Group’s custom ID.
  • _groupother_: Other information about the group. Configured when the group is created.
  • diff --git a/pandora_console/include/help/es/help_alert_config.php b/pandora_console/include/help/es/help_alert_config.php index 5ab70b784e..056de9bcc3 100644 --- a/pandora_console/include/help/es/help_alert_config.php +++ b/pandora_console/include/help/es/help_alert_config.php @@ -63,6 +63,8 @@ Además de las macros de módulo definidas, las siguientes macros están disponi
  • _target_ip_ : Dirección IP del objetivo del módulo.
  • _target_port_ : Puerto del objetivo del módulo.
  • _plugin_parameters_ : Parámetros del Plug-in del módulo.
  • +
  • _server_ip_ : Ip del servidor al que el agente está asignado.
  • +
  • _server_name_ : Nombre del servidor al que el agente está asignado.
  • _groupcontact_ : Información de contacto del grupo. Se configura al crear el grupo.
  • _groupother_ : Otra información sobre el grupo. Se configura al crear el grupo.
  • _email_tag_ : Emails asociados a los tags de módulos.
  • diff --git a/pandora_console/include/help/es/help_alert_macros.php b/pandora_console/include/help/es/help_alert_macros.php index 74efb4582b..19bc0b6f71 100644 --- a/pandora_console/include/help/es/help_alert_macros.php +++ b/pandora_console/include/help/es/help_alert_macros.php @@ -54,6 +54,8 @@ Además de las macros de módulo definidas, las siguientes macros están disponi
  • _target_ip_: Dirección IP del objetivo del módulo.
  • _target_port_: Puerto del objetivo del módulo.
  • _plugin_parameters_: Parámetros del plugin del módulo.
  • +
  • _server_ip_ : Ip del servidor al que el agente está asignado.
  • +
  • _server_name_ : Nombre del servidor al que el agente está asignado.
  • _groupcontact_: Información de contacto del grupo. Se configura al crear el grupo.
  • _groupcustomid_: ID personalizado del grupo.
  • _groupother_: Otra información sobre el grupo. Se configura al crear el grupo.
  • diff --git a/pandora_console/include/help/ja/help_alert_config.php b/pandora_console/include/help/ja/help_alert_config.php index 592ed64ee3..fa6a68ffa2 100644 --- a/pandora_console/include/help/ja/help_alert_config.php +++ b/pandora_console/include/help/ja/help_alert_config.php @@ -62,6 +62,8 @@ email アクションを設定するには、_field1_ (送信先アドレス)、
  • _target_ip_ : モジュールの対象IPアドレス
  • _target_port_ : モジュールの対象ポート
  • _plugin_parameters_ : モジュールのプラグインパラメータ
  • +
  • _server_ip_ : Ip of server assigned to agent.
  • +
  • _server_name_ : Name of server assigned to agent.
  • _groupcontact_ : グループコンタクト情報。グループの作成時に設定されます。
  • _groupother_ : グループに関するその他情報。グループの作成時に設定されます。
  • _email_tag_ : モジュールタグに関連付けられた Email。
  • diff --git a/pandora_console/include/help/ja/help_alert_macros.php b/pandora_console/include/help/ja/help_alert_macros.php index c9729e6bfd..86e3a04c96 100644 --- a/pandora_console/include/help/ja/help_alert_macros.php +++ b/pandora_console/include/help/ja/help_alert_macros.php @@ -54,6 +54,8 @@
  • _target_ip_ : モジュールの対象IPアドレス
  • _target_port_ : モジュールの対象ポート
  • _plugin_parameters_ : モジュールのプラグインパラメータ
  • +
  • _server_ip_ : Ip of server assigned to agent.
  • +
  • _server_name_ : Name of server assigned to agent.
  • _groupcontact_ : グループコンタクト情報。グループの作成時に設定されます。
  • _groupcustomid_: グループカスタムID
  • _groupother_ : グループに関するその他情報。グループの作成時に設定されます。
  • From 8980edf2add859a7b5575a121088a1a6311309e9 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Mon, 9 Oct 2017 12:55:57 +0200 Subject: [PATCH 041/311] Adapt new items to meta --- .../reporting/visual_console_builder.data.php | 24 +++++-- .../include/functions_visual_map.php | 68 +++++++++++++++---- .../include/graphs/functions_d3.php | 12 +++- 3 files changed, 83 insertions(+), 21 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.data.php b/pandora_console/godmode/reporting/visual_console_builder.data.php index 056d44e61d..8d9edddd88 100644 --- a/pandora_console/godmode/reporting/visual_console_builder.data.php +++ b/pandora_console/godmode/reporting/visual_console_builder.data.php @@ -201,7 +201,23 @@ echo ""; '; - $output .= ''; - + if (is_metaconsole()) { + $output .= ''; + $output .= ''; + } + else { + $output .= ''; + $output .= ''; + } } + if (!$return) echo $output; From 99d5527c67ec1967fd9dd7b57f2abe0202ed46c9 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Mon, 9 Oct 2017 12:56:37 +0200 Subject: [PATCH 042/311] Fix labels for static graphs with image inserted, and avoid create without icon image - #1406 --- .../visual_console_builder.editor.js | 8 +++ .../visual_console/public_console.php | 63 ++++++++++--------- 2 files changed, 40 insertions(+), 31 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 2c98fb5493..0f3553d9c3 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -304,6 +304,10 @@ function update_button_palette_callback() { alert('Undefined height'); return false; } + if(values['image'] == ''){ + alert('Undefined image'); + return false; + } $("#text_" + idItem).html(values['label']); @@ -691,6 +695,10 @@ function create_button_palette_callback() { alert('Undefined height'); validate = false; } + if(values['image'] == ''){ + alert('Undefined image'); + return false; + } if ((values['label'] == '') && (values['image'] == '') && (values['show_statistics']) == false) { alert($("#message_alert_no_label_no_image").html()); validate = false; diff --git a/pandora_console/operation/visual_console/public_console.php b/pandora_console/operation/visual_console/public_console.php index 6b77dd4798..5b955def1f 100755 --- a/pandora_console/operation/visual_console/public_console.php +++ b/pandora_console/operation/visual_console/public_console.php @@ -208,51 +208,52 @@ $ignored_params['refr'] = ''; $(".overlay").removeClass("overlay").addClass("overlaydisabled"); - $('.item:not(.icon) img').each(function(){ - - - if($(this).css('float')=='left' || $(this).css('float')=='right'){ - - - $(this).css('margin-top',(parseInt($(this).parent().parent().css('height'))/2-parseInt($(this).css('height'))/2)+'px'); - $(this).css('margin-left',''); - + $('.item:not(.icon) img:not(.b64img)').each( function() { + if ($(this).css('float')=='left' || $(this).css('float')=='right') { + if( $(this).parent()[0].tagName == 'DIV'){ + $(this).css('margin-top',(parseInt($(this).parent().css('height'))/2-parseInt($(this).css('height'))/2)+'px'); + } + else if ( $(this).parent()[0].tagName == 'A') { + $(this).css('margin-top',(parseInt($(this).parent().parent().css('height'))/2-parseInt($(this).css('height'))/2)+'px'); + } + $(this).css('margin-left',''); } - else{ - $(this).css('margin-left',(parseInt($(this).parent().parent().css('width'))/2-parseInt($(this).css('width'))/2)+'px'); - $(this).css('margin-top',''); + else { + if(parseInt($(this).parent().parent().css('width'))/2-parseInt($(this).css('width'))/2 < 0){ + $(this).css('margin-left',''); + $(this).css('margin-top',''); + } else { + if( $(this).parent()[0].tagName == 'DIV'){ + $(this).css('margin-left',(parseInt($(this).parent().css('width'))/2-parseInt($(this).css('width'))/2)+'px'); + } + else if ( $(this).parent()[0].tagName == 'A') { + $(this).css('margin-left',(parseInt($(this).parent().parent().css('width'))/2-parseInt($(this).css('width'))/2)+'px'); + } + $(this).css('margin-top',''); + } } - }); - $('.item > div').each(function(){ - if($(this).css('float')=='left' || $(this).css('float')=='right'){ - - - $(this).css('margin-top',(parseInt($(this).parent().css('height'))/2-parseInt($(this).css('height'))/2-15)+'px'); - $(this).css('margin-left',''); - + $('.item > div').each( function() { + if ($(this).css('float')=='left' || $(this).css('float')=='right') { + $(this).css('margin-top',(parseInt($(this).parent().css('height'))/2-parseInt($(this).css('height'))/2-15)+'px'); + $(this).css('margin-left',''); } - else{ + else { $(this).css('margin-left',(parseInt($(this).parent().css('width'))/2-parseInt($(this).css('width'))/2)+'px'); $(this).css('margin-top',''); } - }); - $('.item > a > div').each(function(){ - if($(this).css('float')=='left' || $(this).css('float')=='right'){ - - - $(this).css('margin-top',(parseInt($(this).parent().parent().css('height'))/2-parseInt($(this).css('height'))/2-5)+'px'); - $(this).css('margin-left',''); - + $('.item > a > div').each( function() { + if ($(this).css('float')=='left' || $(this).css('float')=='right') { + $(this).css('margin-top',(parseInt($(this).parent().parent().css('height'))/2-parseInt($(this).css('height'))/2-5)+'px'); + $(this).css('margin-left',''); } - else{ + else { $(this).css('margin-left',(parseInt($(this).parent().parent().css('width'))/2-parseInt($(this).css('width'))/2)+'px'); $(this).css('margin-top',''); } - }); $(".graph:not([class~='noresizevc'])").each(function(){ From efcc8b4ea72d78e9a16b0e9035840bc002e74087 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Mon, 9 Oct 2017 17:57:20 +0200 Subject: [PATCH 043/311] Show no data advice when select none in visual console static graph or icon element - #1407 --- .../visual_console_builder.editor.js | 40 ++++++++++++++++--- 1 file changed, 35 insertions(+), 5 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 0e46581178..57b7d5186b 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -48,6 +48,7 @@ function toggle_advance_options_palette(close) { } // Main function, execute in event documentReady + function visual_map_main() { img_handler_start = "images/dot_red.png"; img_handler_end = "images/dot_green.png"; @@ -304,7 +305,11 @@ function update_button_palette_callback() { alert('Undefined height'); return false; } - + if(((values['image'] == '') && (values['show_statistics']) == false)){ + alert('Undefined image'); + return false; + } + $("#text_" + idItem).html(values['label']); if(values['show_statistics'] == 1){ @@ -476,6 +481,10 @@ function update_button_palette_callback() { alert('Undefined height'); return false; } + if(values['image'] == ''){ + alert('Undefined image'); + return false; + } $("#image_" + idItem).attr('src', "images/spinner.gif"); if ((values['width'] == 0) || (values['height'] == 0)) { if($('#preview > img')[0].naturalWidth > 150 || $('#preview > img')[0].naturalHeight > 150){ @@ -688,10 +697,11 @@ function create_button_palette_callback() { alert('Undefined height'); validate = false; } - if ((values['label'] == '') && (values['image'] == '') && (values['show_statistics']) == false) { - alert($("#message_alert_no_label_no_image").html()); + if((values['image'] == '') && (values['show_statistics']) == false){ + alert('Undefined image'); validate = false; } + break; case 'auto_sla_graph': if ((values['agent'] == '')) { @@ -3791,7 +3801,17 @@ function showPreviewStaticGraph(staticGraph) { .css('text-align', 'right') .append($spinner); - if (staticGraph != '') { + if(staticGraph == ''){ + + if (is_metaconsole()) { + $spinner.prop("src", "../../images/image_problem_area.png"); + } + else{ + $spinner.prop("src", "images/image_problem_area.png"); + } + $('#preview > img').css({'max-width':'100px','max-height':'100px'}); + } + else{ imgBase = "images/console/icons/" + staticGraph; var parameter = Array(); @@ -3836,7 +3856,17 @@ function showPreviewIcon(icon) { .css('text-align', 'left') .append($spinner); - if (icon != '') { + + if (icon == '') { + if (is_metaconsole()) { + $spinner.prop("src", "../../images/image_problem_area.png"); + } + else{ + $spinner.prop("src", "images/image_problem_area.png"); + } + $('#preview > img').css({'max-width':'100px','max-height':'100px'}); + } + else{ imgBase = "images/console/icons/" + icon; var params = []; From bd47d5362a254d602b00344beea9a965c50c0477 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Mon, 9 Oct 2017 18:31:42 +0200 Subject: [PATCH 044/311] Change image_problem no data sign to image_problem_area_small - #1433 --- .../images/image_problem_area_small.png | Bin 0 -> 5338 bytes pandora_console/include/functions_graph.php | 52 +++++++++--------- .../include/functions_reporting.php | 2 +- .../include/functions_reporting_html.php | 4 +- 4 files changed, 29 insertions(+), 29 deletions(-) create mode 100644 pandora_console/images/image_problem_area_small.png diff --git a/pandora_console/images/image_problem_area_small.png b/pandora_console/images/image_problem_area_small.png new file mode 100644 index 0000000000000000000000000000000000000000..8b8778875231b3a35fe7385bb14272bc8d5c64f2 GIT binary patch literal 5338 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 literal 0 HcmV?d00001 diff --git a/pandora_console/include/functions_graph.php b/pandora_console/include/functions_graph.php index abf130c3a9..42ac25b7a6 100644 --- a/pandora_console/include/functions_graph.php +++ b/pandora_console/include/functions_graph.php @@ -949,7 +949,7 @@ function grafico_modulo_sparse ($agent_module_id, $period, $show_events, return area_graph($flash_chart, $chart, $width, $height/2, $color, $legend, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), $title, $unit, $homeurl, $water_mark, $config['fontpath'], $config['font_size'], $unit, $ttl, $series_type, $chart_extra_data, $warning_min, $critical_min, @@ -958,7 +958,7 @@ function grafico_modulo_sparse ($agent_module_id, $period, $show_events, '
    '. area_graph($flash_chart, $chart_prev, $width, $height/2, $color_prev, $legend_prev, $long_index_prev, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), $title, $unit, $homeurl, $water_mark, $config['fontpath'], $config['font_size'], $unit, $ttl, $series_type_prev, $chart_extra_data, $warning_min, $critical_min, @@ -977,7 +977,7 @@ function grafico_modulo_sparse ($agent_module_id, $period, $show_events, return area_graph($flash_chart, $chart, $width, $height, $color, $legend, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), $title, $unit, $homeurl, $water_mark, $config['fontpath'], $config['font_size'], $unit, $ttl, $series_type, $chart_extra_data, $warning_min, $critical_min, @@ -990,13 +990,13 @@ function grafico_modulo_sparse ($agent_module_id, $period, $show_events, return line_graph($flash_chart, $chart, $width, $height/2, $color, $legend, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), $title, $unit, $water_mark, $config['fontpath'], $config['font_size'], $unit, $ttl, $homeurl, $backgroundColor). '
    '. line_graph($flash_chart, $chart_prev, $width, $height/2, $color, $legend, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), $title, $unit, $water_mark, $config['fontpath'], $config['font_size'], $unit, $ttl, $homeurl, $backgroundColor); } @@ -1005,7 +1005,7 @@ function grafico_modulo_sparse ($agent_module_id, $period, $show_events, return line_graph($flash_chart, $chart, $width, $height, $color, $legend, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), $title, $unit, $water_mark, $config['fontpath'], $config['font_size'], $unit, $ttl, $homeurl, $backgroundColor); } @@ -2059,7 +2059,7 @@ function graphic_combined_module ($module_list, $weight_list, $period, case CUSTOM_GRAPH_AREA: return area_graph($flash_charts, $graph_values, $width, $height, $color, $module_name_list, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), $title, "", $homeurl, $water_mark, $config['fontpath'], $fixed_font_size, $unit, $ttl, array(), array(), $yellow_threshold, $red_threshold, '', false, '', true, $background_color,$dashboard, $vconsole, 0, $percentil_result, $threshold_data); @@ -2068,14 +2068,14 @@ function graphic_combined_module ($module_list, $weight_list, $period, case CUSTOM_GRAPH_STACKED_AREA: return stacked_area_graph($flash_charts, $graph_values, $width, $height, $color, $module_name_list, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), $title, "", $water_mark, $config['fontpath'], $fixed_font_size, "", $ttl, $homeurl, $background_color,$dashboard, $vconsole); break; case CUSTOM_GRAPH_LINE: return line_graph($flash_charts, $graph_values, $width, $height, $color, $module_name_list, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), $title, "", $water_mark, $config['fontpath'], $fixed_font_size, $unit, $ttl, $homeurl, $background_color, $dashboard, $vconsole, $series_type, $percentil_result, $yellow_threshold, $red_threshold, $threshold_data); @@ -2083,7 +2083,7 @@ function graphic_combined_module ($module_list, $weight_list, $period, case CUSTOM_GRAPH_STACKED_LINE: return stacked_line_graph($flash_charts, $graph_values, $width, $height, $color, $module_name_list, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), "", "", $water_mark, $config['fontpath'], $fixed_font_size, "", $ttl, $homeurl, $background_color, $dashboard, $vconsole); break; @@ -2091,28 +2091,28 @@ function graphic_combined_module ($module_list, $weight_list, $period, case CUSTOM_GRAPH_BULLET_CHART: return stacked_bullet_chart($flash_charts, $graph_values, $width, $height, $color, $module_name_list, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), "", "", $water_mark, $config['fontpath'], ($config['font_size']+1), "", $ttl, $homeurl, $background_color); break; case CUSTOM_GRAPH_GAUGE: return stacked_gauge($flash_charts, $graph_values, $width, $height, $color, $module_name_list, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), "", "", $water_mark, $config['fontpath'], $fixed_font_size, "", $ttl, $homeurl, $background_color); break; case CUSTOM_GRAPH_HBARS: return hbar_graph($flash_charts, $graph_values, $width, $height, $color, $module_name_list, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), "", "", $water_mark, $config['fontpath'], $fixed_font_size, "", $ttl, $homeurl, $background_color); break; case CUSTOM_GRAPH_VBARS: return vbar_graph($flash_charts, $graph_values, $width, $height, $color, $module_name_list, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), "", "", $water_mark, $config['fontpath'], $fixed_font_size, "", $ttl, $homeurl, $background_color, true); break; @@ -2235,7 +2235,7 @@ function graphic_agentaccess ($id_agent, $width, $height, $period = 0, $return = } else { $out = area_graph($config['flash_charts'], $data, $width, $height, null, null, null, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), "", "", ui_get_full_url(false, false, false, false), $water_mark, $config['fontpath'], $config['font_size'], "", 1, array(), array(), 0, 0, '', false, '', false); } @@ -2704,7 +2704,7 @@ function grafico_db_agentes_purge ($id_agent, $width = 380, $height = 300) { || (empty($num_1day) && empty($num_1week) && empty($num_1month) && empty($num_3months) && empty($num_all) && ($config['history_db_enabled'] == 1 && empty($num_all_w_history)))) { - return html_print_image('images/image_problem.png', true); + return html_print_image('images/image_problem_area_small.png', true); } // Data indexes @@ -4514,20 +4514,20 @@ function grafico_modulo_boolean ($agent_module_id, $period, $show_events, if ($type_graph === 'area') { if ($compare === 'separated') { return area_graph($flash_chart, $chart, $width, $height/2, $color, $legend, - $long_index, ui_get_full_url("images/image_problem.opaque.png", false, false, false), + $long_index, ui_get_full_url("images/image_problem_area_small.png", false, false, false), "", $unit, $homeurl, $water_mark, $config['fontpath'], $config['font_size'], $unit, 1, $series_type, $chart_extra_data, 0, 0, $adapt_key, false, $series_suffix_str, $menu). '
    '. area_graph($flash_chart, $chart_prev, $width, $height/2, $color_prev, $legend_prev, - $long_index_prev, ui_get_full_url("images/image_problem.opaque.png", false, false, false), + $long_index_prev, ui_get_full_url("images/image_problem_area_small.png", false, false, false), "", $unit, $homeurl, $water_mark, $config['fontpath'], $config['font_size'], $unit, 1, $series_type_prev, $chart_extra_data_prev, 0, 0, $adapt_key, false, $series_suffix_str, $menu); } else { return area_graph($flash_chart, $chart, $width, $height, $color, $legend, - $long_index, ui_get_full_url("images/image_problem.opaque.png", false, false, false), + $long_index, ui_get_full_url("images/image_problem_area_small.png", false, false, false), $title, $unit, $homeurl, $water_mark, $config['fontpath'], $config['font_size'], $unit, 1, $series_type, $chart_extra_data, 0, 0, $adapt_key, false, $series_suffix_str, $menu); @@ -4538,13 +4538,13 @@ function grafico_modulo_boolean ($agent_module_id, $period, $show_events, return line_graph($flash_chart, $chart, $width, $height/2, $color, $legend, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), "", $unit, $water_mark, $config['fontpath'], $config['font_size'], $unit, $ttl, $homeurl, $backgroundColor). '
    '. line_graph($flash_chart, $chart_prev, $width, $height/2, $color, $legend, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), "", $unit, $water_mark, $config['fontpath'], $config['font_size'], $unit, $ttl, $homeurl, $backgroundColor); } @@ -4553,7 +4553,7 @@ function grafico_modulo_boolean ($agent_module_id, $period, $show_events, return line_graph($flash_chart, $chart, $width, $height, $color, $legend, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), $title, $unit, $water_mark, $config['fontpath'], $config['font_size'], $unit, $ttl, $homeurl, $backgroundColor); } @@ -4684,7 +4684,7 @@ function graph_netflow_aggregate_area ($data, $period, $width, $height, $unit = return area_graph($flash_chart, $chart, $width, $height, $color, - $sources, array (), ui_get_full_url("images/image_problem.opaque.png", false, false, false), + $sources, array (), ui_get_full_url("images/image_problem_area_small.png", false, false, false), "", $unit, $homeurl, $config['homedir'] . "/images/logo_vertical_water.png", $config['fontpath'], $config['font_size'], $unit, $ttl); @@ -4769,7 +4769,7 @@ function graph_netflow_total_area ($data, $period, $width, $height, $unit = '', $legend = array (__('Max.') . ' ' . format_numeric($max) . ' ' . __('Min.') . ' ' . format_numeric($min) . ' ' . __('Avg.') . ' ' . format_numeric ($avg)); return area_graph($flash_chart, $chart, $width, $height, array (), $legend, - array (), ui_get_full_url("images/image_problem.opaque.png", false, false, false), + array (), ui_get_full_url("images/image_problem_area_small.png", false, false, false), "", "", $homeurl, $water_mark, $config['fontpath'], $config['font_size'], $unit, $ttl); } @@ -5145,7 +5145,7 @@ function grafico_modulo_string ($agent_module_id, $period, $show_events, return line_graph($flash_chart, $chart, $width, $height, $color, $legend, $long_index, - ui_get_full_url("images/image_problem.opaque.png", false, false, false), + ui_get_full_url("images/image_problem_area_small.png", false, false, false), $title, $unit, $water_mark, $config['fontpath'], $config['font_size'], $unit, $ttl, $homeurl, $backgroundColor); } @@ -5656,7 +5656,7 @@ function grafico_modulo_log4x_format_y_axis ( $number , $decimals=2, $dec_point= } function graph_nodata_image($width = 300, $height = 110, $type = 'area', $text = '') { - $image = ui_get_full_url('images/image_problem_' . $type . '.png', + $image = ui_get_full_url('images/image_problem_area_small.png', false, false, false); // if ($text == '') { diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 8a47d2c7d2..367f4bf56a 100644 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -2164,7 +2164,7 @@ function reporting_exception($report, $content, $type = 'dinamic', 'color' => array(), 'legend' => array(), 'long_index' => array(), - 'no_data_image' => ui_get_full_url("images/image_problem.opaque.png", false, false, false), + 'no_data_image' => ui_get_full_url("images/image_problem_area_small.png", false, false, false), 'xaxisname' => "", 'yaxisname' => "", 'water_mark' => ui_get_full_url(false, false, false, false) . "/images/logo_vertical_water.png", diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php index 8d56a42918..cb29812686 100644 --- a/pandora_console/include/functions_reporting_html.php +++ b/pandora_console/include/functions_reporting_html.php @@ -2811,13 +2811,13 @@ function reporting_get_stats_summary($data, $graph_width, $graph_height) { $tdata[0] = '
    ' . graph_agent_status (false, $graph_width, $graph_height, true, true) . '
    '; } else { - $tdata[2] = html_print_image('images/image_problem.png', true, array('width' => $graph_width)); + $tdata[2] = html_print_image('images/image_problem_area_small.png', true, array('width' => $graph_width)); } if ($data["monitor_alerts"] > 0) { $tdata[2] = '
    ' . graph_alert_status ($data["monitor_alerts"], $data["monitor_alerts_fired"], $graph_width, $graph_height, true, true) . '
    '; } else { - $tdata[2] = html_print_image('images/image_problem.png', true, array('width' => $graph_width)); + $tdata[2] = html_print_image('images/image_problem_area_small.png', true, array('width' => $graph_width)); } $table_sum->rowclass[] = ''; $table_sum->data[] = $tdata; From bb4ddc38ddfdced30f5a6713332375769081ef9c Mon Sep 17 00:00:00 2001 From: enriquecd Date: Tue, 10 Oct 2017 12:16:19 +0200 Subject: [PATCH 045/311] Change styles for pandora black theme - #1394 --- .../include/styles/pandora_black.css | 388 +++++++++++++++++- 1 file changed, 377 insertions(+), 11 deletions(-) diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index 3dca8bdbf9..9aeb56aca9 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -541,7 +541,7 @@ a:focus, input:focus, button:focus { outline: 0; } -DIV.login_links { +/*DIV.login_links { margin: 10px 0px 0px; color: #FFF; text-align: center; @@ -651,7 +651,7 @@ input.login { } input.login_user { - /* Browser without multibackground support */ + color: #373737 !important; padding-left: 8px; width: 179px; @@ -660,12 +660,14 @@ input.login_user { } input.login_password { - /* Browser without multibackground support */ + padding-left: 8px; width: 179px; color: #222; height: 20px; } +*/ + .databox_error { width: 657px !important; height: 400px; @@ -2318,7 +2320,7 @@ ul.operation li a:hover { -o-transition-property: background-color; -o-transition-duration: 0.5s; -o-transition-timing-function: ease-out; - background-color: #585858 !important; + background-color: #b1b1b1 !important; } .submenu_not_selected:hover{ transition-property: background-color; @@ -2333,11 +2335,11 @@ ul.operation li a:hover { -o-transition-property: background-color; -o-transition-duration: 0.5s; -o-transition-timing-function: ease-out; - background-color: #585858 !important; + background-color: #b1b1b1 !important; } .submenu_selected:hover{ - background-color: #585858 !important; + background-color: #b1b1b1 !important; } .sub_subMenu{ @@ -2365,7 +2367,7 @@ ul.operation li a:hover { -moz-transition-timing-function: ease-out; -o-transition-property: background-color; -o-transition-duration: 0.5s; - background-color: #585858 !important; + background-color: #b1b1b1 !important; } .submenu_text { @@ -2373,7 +2375,7 @@ ul.operation li a:hover { } .menu li.selected { - box-shadow: inset 4px 0 #82b92e; + box-shadow: inset 4px 0 #b1b1b1; } li.links a:hover { @@ -2393,7 +2395,7 @@ li.links a:hover { } .operation .selected { - background-color: #585858 !important; + background-color: #b1b1b1 !important; } .menu li, .menu .li.not_selected { @@ -3439,11 +3441,375 @@ color:#82b92e;font-family:Nunito;font-size:10pt;position:relative;top:6px; } .rowPair:hover, .rowOdd:hover{ - background-color: #eee; + background-color: #3f3f3f; } .databox.data > tbody > tr:hover{ - background-color: #eee; + background-color: #3f3f3f; } .checkselected{ background-color: #eee; +} + +#login_help_dialog *{ + color: #222222; +} + +.introjs-tooltip *{ + color: #222222; +} + +.dd_widget_content *{ + color: #222222; +} + +#dialog_add_new_widget *{ + color: #222222; +} + +.widget_configuration_form table tbody tr td:first-child{ + color: #222222; +} + +.widget_configuration_form .container *{ + color: #222222; +} +.widget_configuration_form b{ + color: #222222; +} + +form[action='index.php?sec=estado&sec2=godmode/agentes/planned_downtime.list'] *{ + color: #222222; +} + +form[action='index.php?sec=estado&sec2=godmode/agentes/planned_downtime.list'] input{ + color: white; +} + +form[action='index.php?sec=estado&sec2=godmode/agentes/planned_downtime.list'] select{ + color: white; +} +.notify { + color: black; +} +.notify *{ + color: black; +} +#login_logout *{ + color: #222222; +} + +/*modal windows login*/ +div.content_alert{ + width: 98%; + margin-top: 20px; +} + +div.icon_message_alert{ + float: left; + width: 25%; + text-align: center; + +} + +div.icon_message_alert img{ + width: 85px; +} + +div.content_message_alert{ + + width: 75%; + float: right; +} + +div.text_message_alert{ + width: 100%; + margin-top: 10px; +} + +div.text_message_alert h1{ + margin: 0px; +} + +div.text_message_alert p{ + margin: 0px; + font-size: 10.3pt; + line-height: 14pt; +} + +div.button_message_alert{ + width: 100%; +} + +div.button_message_alert input{ + float: right; + width: 87px; + height: 33px; + color: #82b92e; + border: 1px solid #82b92e; + font-weight: bold; + margin-right: 20px; + margin-top: 20px; + font-size: 10pt; +} + +div.form_message_alert{ + width: 90%; + clear: both; + padding-top: 20px; + padding-left: 40px; +} + +div.form_message_alert ul li{ + display: inline-block; + padding: 10px; +} + +div.form_message_alert ul li input{ + border: none; + background-color: #dadada !important; + border-radius: 0px; + height: 17px; + width: 145px; + padding-left: 5px; +} + +div.form_message_alert ul li label{ + font-size: 10pt; + padding-right: 20px; +} + +div.form_message_alert h4{ + margin: 0px; + margin-bottom: 10px; +} + +div.button_message_alert_form input{ + float: right; + width: 87px; + height: 33px; + color: #82b92e; + border: 1px solid #82b92e; + font-weight: bold; + font-size: 10pt; + margin-right: 25px; +} + +.ui-dialog .ui-dialog-titlebar { + background-color: #82b92e !important; +} + +/* + styles header login +*/ +div#header_login{ + width: 100%; + height: 65px; + background-color: rgba(255, 255, 255, 0.06); +} + +div#icon_custom_pandora{ + float: left; + margin-top: 5px; + margin-left: 4%; +} + +div#list_icon_docs_support{ + float: right; + margin-top: 8px; + margin-right: 4%; +} + +div#list_icon_docs_support ul{ + margin-top: 5px; +} + +div#list_icon_docs_support ul li{ + display: inline-block; + color:white; + vertical-align: middle; + margin-right: 5px; + font-size: 10pt; +} + +li#li_margin_left{ + margin-left: 30px; +} + +/* + styles login form +*/ + +div.container_login{ + margin-top: 10%; + margin-left: 5%; + margin-right: 5%; + +} + +div.login_page { + width: 35%; + min-height: 600px; + float:left; +} + +div.login_page form { + border-right:1px solid #868686; + padding-top: 30px; + padding-bottom: 50px; + min-width: 400px; + max-height: 600px; +} + +div.login_logo_icon { + margin-bottom: 40px; + text-align: center; +} + +div.login_logo_icon img{ + margin: 0 auto; + width: 150px; +} +div.login_double_auth_code, +div.login_nick, +div.login_pass { + margin: 0 auto; + width: 70%; + height: 40px; + background-color: rgba(255, 255, 255, 0.20) !important; + margin-bottom: 25px; + min-width: 260px; +} + +div.login_nick img, +div.login_pass img{ + vertical-align: middle; + margin: 3px; +} + + +div.login_nick input, +div.login_pass input{ + background-color: rgba(255, 255, 255, 0.00) !important; + border:0px !important; + color:white !important; + border-radius: 0px; + width: 89%; + height: 40px; + font-size: 9pt; + padding: 0px !important; +} + + +div.login_nick input:focus, +div.login_pass input:focus{ + outline: none; +} + +div.login_nick input:-webkit-autofill, +div.login_nick input:-webkit-autofill:hover, +div.login_nick input:-webkit-autofill:focus, +div.login_nick input:-webkit-autofill:active, +div.login_pass input:-webkit-autofill, +div.login_pass input:-webkit-autofill:hover, +div.login_pass input:-webkit-autofill:focus, +div.login_pass input:-webkit-autofill:active { + transition: background-color 10000s ease-in-out 0s; + -webkit-box-shadow: 0 0 0px 0px transparent inset !important; + -webkit-text-fill-color: white !important; + border:0px; + width: 89%; +} + +div.login_nick input::-webkit-input-placeholder, +div.login_pass input::-webkit-input-placeholder { + color:white; +} + +div.login_pass img, +div.login_nick img{ + width: 30px; +} + +div.login_pass div, +div.login_nick div{ + float: left; + width: 11%; +} + +div.login_button{ + margin: 0 auto; + width: 70%; + height: 40px; + background-color: rgb(25, 25, 25); + border: 1px solid white; + min-width: 260px; +} + +div.login_button input { + width: 100%; + background-color: rgb(25, 25, 25) !important; + text-align: center; + border:0px; + border-radius: 0px; + height: 40px; + padding: 0px; + font-size: 9pt; + color: white; +} + +div.login_data { + width: 65%; + min-height: 600px; + float:left; +} + +div.text_banner_login{ + width: 100%; + margin-bottom: 60px; + color: white; + text-align: center; +} + +div.text_banner_login span{ + width: 100%; +} + +span.span1{ + font-size: 3vw; + font-family: 'lato-thin'; + color: white; +} + +span.span2{ + font-size: 3vw; + font-family: 'lato-bolder'; + color: white; +} + +div.img_banner_login{ + width: 100%; + text-align: center; +} + +div.img_banner_login img{ + max-width: 70%; + min-width: 70%; + max-height: 50%; + min-height: 50%; +} + +@media all and (max-width: 1200px) { + span.span1{ + font-size: 30pt; + } + span.span2{ + font-size: 30pt; + } +} + +.new_task p, .new_task h3, .new_task h2, .new_task a{ + color: #222222; +} +.item p { + color: #222222; } \ No newline at end of file From 45383875b1127215efa7b42e418804b7420508af Mon Sep 17 00:00:00 2001 From: enriquecd Date: Tue, 10 Oct 2017 14:55:17 +0200 Subject: [PATCH 046/311] Uncomment collation order for case insensitive agent search - #1441 --- pandora_console/godmode/agentes/modificar_agente.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/agentes/modificar_agente.php b/pandora_console/godmode/agentes/modificar_agente.php index 3c5406c46c..b77e77a841 100644 --- a/pandora_console/godmode/agentes/modificar_agente.php +++ b/pandora_console/godmode/agentes/modificar_agente.php @@ -181,7 +181,7 @@ $order_collation = ""; switch ($config["dbtype"]) { case "mysql": $order_collation = ""; - //$order_collation = "COLLATE utf8_general_ci"; + $order_collation = "COLLATE utf8_general_ci"; break; case "postgresql": case "oracle": From 5171f7a7470be7d1ea0b7439c34e5268a9441c85 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Tue, 10 Oct 2017 16:32:02 +0200 Subject: [PATCH 047/311] Fixed cron on server modules --- pandora_server/lib/PandoraFMS/Core.pm | 10 +++- pandora_server/lib/PandoraFMS/Tools.pm | 80 +++++++++++++++++++++----- 2 files changed, 73 insertions(+), 17 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 24bdfeea51..4e50807381 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -1478,7 +1478,10 @@ sub pandora_process_module ($$$$$$$$$;$) { # Calculate the current interval my $current_interval; if (defined ($module->{'cron_interval'}) && $module->{'cron_interval'} ne '' && $module->{'cron_interval'} ne '* * * * *') { - $current_interval = cron_next_execution ($module->{'cron_interval'}); + $current_interval = cron_next_execution ( + $module->{'cron_interval'}, + $module->{'module_interval'} == 0 ? $agent->{'intervalo'} : $module->{'module_interval'} + ); } elsif ($module->{'module_interval'} == 0) { $current_interval = $agent->{'intervalo'}; @@ -3174,7 +3177,10 @@ sub pandora_update_module_on_error ($$$) { # Set tagente_estado.current_interval to make sure it is not 0 my $current_interval; if (defined($module->{'cron_interval'}) && $module->{'cron_interval'} ne '' && $module->{'cron_interval'} ne '* * * * *') { - $current_interval = cron_next_execution ($module->{'cron_interval'}); + $current_interval = cron_next_execution ( + $module->{'cron_interval'}, + $module->{'module_interval'} == 0 ? 300 : $module->{'module_interval'} + ); } elsif ($module->{'module_interval'} == 0) { $current_interval = 300; diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index e0dda9af4f..c69691cc66 100755 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -1254,12 +1254,12 @@ sub translate_obj ($$$) { ############################################################################### # Get the number of seconds left to the next execution of the given cron entry. ############################################################################### -sub cron_next_execution ($) { - my ($cron) = @_; +sub cron_next_execution { + my ($cron, $interval) = @_; # Check cron conf format if ($cron !~ /^((\*|(\d+(-\d+){0,1}))\s*){5}$/) { - return 300; + return $interval; } # Get day of the week and month from cron config @@ -1271,7 +1271,7 @@ sub cron_next_execution ($) { # Any day of the week if ($wday eq '*') { - my $nex_time = cron_next_execution_date ($cron, $cur_time); + my $nex_time = cron_next_execution_date ($cron, $cur_time, $interval); return $nex_time - time(); } # A range? @@ -1283,7 +1283,7 @@ sub cron_next_execution ($) { my $count = 0; my $nex_time = $cur_time; do { - $nex_time = cron_next_execution_date ($cron, $nex_time); + $nex_time = cron_next_execution_date ($cron, $nex_time, $interval); my $nex_time_wd = $nex_time; my ($nex_mon, $nex_wday) = (localtime ($nex_time_wd))[4, 6]; my $nex_mon_wd; @@ -1301,7 +1301,7 @@ sub cron_next_execution ($) { } while ($count < 60); # Something went wrong, default to 5 minutes - return 300; + return $interval; } ############################################################################### # Get the number of seconds left to the next execution of the given cron entry. @@ -1315,8 +1315,8 @@ sub cron_check_syntax ($) { ############################################################################### # Get the next execution date for the given cron entry in seconds since epoch. ############################################################################### -sub cron_next_execution_date ($$) { - my ($cron, $cur_time) = @_; +sub cron_next_execution_date { + my ($cron, $cur_time, $interval) = @_; # Get cron configuration my ($min, $hour, $mday, $mon, $wday) = split (/\s/, $cron); @@ -1330,16 +1330,24 @@ sub cron_next_execution_date ($$) { if (! defined ($cur_time)) { $cur_time = time(); } - my ($cur_min, $cur_hour, $cur_mday, $cur_mon, $cur_year) = (localtime ($cur_time))[1, 2, 3, 4, 5]; + # Check if current time + interval is on cron too + my $nex_time = $cur_time + $interval; + my ($cur_min, $cur_hour, $cur_mday, $cur_mon, $cur_year) + = (localtime ($nex_time))[1, 2, 3, 4, 5]; + + my @cron_array = ($min, $hour, $mday, $mon); + my @curr_time_array = ($cur_min, $cur_hour, $cur_mday, $cur_mon); + return ($nex_time) if cron_is_in_cron(\@cron_array, \@curr_time_array) == 1; # Parse intervals - $min = cron_get_closest_in_range ($cur_min, $min); - $hour = cron_get_closest_in_range ($cur_hour, $hour); - $mday = cron_get_closest_in_range ($cur_mday, $mday); - $mon = cron_get_closest_in_range ($cur_mon, $mon); + ($min, undef) = cron_get_interval ($min); + ($hour, undef) = cron_get_interval ($hour); + ($mday, undef) = cron_get_interval ($mday); + ($mon, undef) = cron_get_interval ($mon); # Get first next date candidate from cron configuration - my ($nex_min, $nex_hour, $nex_mday, $nex_mon, $nex_year) = ($min, $hour, $mday, $mon, $cur_year); + my ($nex_min, $nex_hour, $nex_mday, $nex_mon, $nex_year) + = ($min, $hour, $mday, $mon, $cur_year); # Replace wildcards if ($min eq '*') { @@ -1400,9 +1408,51 @@ sub cron_next_execution_date ($$) { } while ($count < 60); # Something went wrong, default to 5 minutes - return $cur_time + 300; + return $nex_time; } +############################################################################### +# Returns if a date is in a cron. Recursive. +# Needs the cron like an array reference and +# current time in cron format to works properly +############################################################################### +sub cron_is_in_cron { + my ($elems_cron, $elems_curr_time) = @_; + + my $elem_cron = shift(@$elems_cron); + my $elem_curr_time = shift (@$elems_curr_time); + #If there is no elements means that is in cron + return 1 unless (defined($elem_cron) || defined($elem_curr_time)); + + # Go to last element if current is a wild card + if ($elem_cron ne '*') { + my ($down, $up) = cron_get_interval($elem_cron); + # Check if there is no a range + return 0 if (!defined($up) && ($down != $cron)); + # Check if there is on the range + if ($down < $up) { + return 0 if ($elem_curr_time < $down || $elem_curr_time > $up); + } else { + return 0 if ($elem_curr_time > $down || $elem_curr_time < $up); + } + } + return cron_is_in_cron($elems_cron, $elems_curr_time); +} +############################################################################### +# Returns the interval of a cron element. If there is not a range, +# returns an array with the first element in the first place of array +# and the second place undefined. +############################################################################### +sub cron_get_interval { + my ($element) = @_; + + # Not a range + if ($element !~ /(\d+)\-(\d+)/) { + return ($element, undef); + } + + return ($1, $2); +} ############################################################################### # Returns the closest number to the target inside the given range (including # the target itself). From 60b428ac24c9da15e5daeba2b2d459dc3250a430 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Tue, 10 Oct 2017 18:41:53 +0200 Subject: [PATCH 048/311] Added module_user_session token to module_proc on windows agent --- .../win32/modules/pandora_module_factory.cc | 16 ++- .../win32/modules/pandora_module_proc.cc | 13 ++- .../win32/modules/pandora_module_proc.h | 3 + pandora_agents/win32/windows/pandora_wmi.cc | 110 ++++++++++++++---- pandora_agents/win32/windows/pandora_wmi.h | 2 +- 5 files changed, 118 insertions(+), 26 deletions(-) diff --git a/pandora_agents/win32/modules/pandora_module_factory.cc b/pandora_agents/win32/modules/pandora_module_factory.cc index db33c1315a..f6a97c99e0 100644 --- a/pandora_agents/win32/modules/pandora_module_factory.cc +++ b/pandora_agents/win32/modules/pandora_module_factory.cc @@ -121,6 +121,7 @@ using namespace Pandora_Strutils; #define TOKEN_MACRO ("module_macro") #define TOKEN_NATIVE_ENCODING ("module_native_encoding") #define TOKEN_ALERT_TEMPLATE ("module_alert_template") +#define TOKEN_USER_SESSION ("module_user_session ") string parseLine (string line, string token) { @@ -158,7 +159,7 @@ Pandora_Module_Factory::getModuleFromDefinition (string definition) { string module_dsn, module_freememory; string module_logevent, module_source, module_eventtype, module_eventcode; string module_pattern, module_application, module_async; - string module_watchdog, module_start_command; + string module_watchdog, module_start_command, module_user_session; string module_wmiquery, module_wmicolumn; string module_retries, module_startdelay, module_retrydelay; string module_perfcounter, module_tcpcheck; @@ -253,6 +254,7 @@ Pandora_Module_Factory::getModuleFromDefinition (string definition) { module_ff_interval = ""; module_native_encoding = ""; module_alert_template = ""; + module_user_session = ""; macro = ""; stringtok (tokens, definition, "\n"); @@ -507,6 +509,10 @@ Pandora_Module_Factory::getModuleFromDefinition (string definition) { if (module_alert_template == "") { module_alert_template = parseLine (line, TOKEN_ALERT_TEMPLATE); module_alert_template.erase (0,1); + } + + if (module_user_session == "") { + module_user_session = parseLine (line, TOKEN_USER_SESSION); } if (macro == "") { @@ -1085,6 +1091,13 @@ Pandora_Module_Factory::getModuleFromDefinition (string definition) { module_alert_template.replace(pos_macro, macro_name.size(), macro_value); } } + + if (module_user_session != "") { + pos_macro = module_user_session.find(macro_name); + if (pos_macro != string::npos){ + module_user_session.replace(pos_macro, macro_name.size(), macro_value); + } + } } } } @@ -1121,6 +1134,7 @@ Pandora_Module_Factory::getModuleFromDefinition (string definition) { module_proc->setRetries (atoi(module_retries.c_str ())); module_proc->setStartDelay (atoi(module_startdelay.c_str ())); module_proc->setRetryDelay (atoi(module_retrydelay.c_str ())); + module_proc->setUserSession (is_enabled(module_user_session)); } } } else if (module_service != "") { diff --git a/pandora_agents/win32/modules/pandora_module_proc.cc b/pandora_agents/win32/modules/pandora_module_proc.cc index e8eed1f97d..1c06e1001d 100644 --- a/pandora_agents/win32/modules/pandora_module_proc.cc +++ b/pandora_agents/win32/modules/pandora_module_proc.cc @@ -48,6 +48,7 @@ Pandora_Module_Proc::Pandora_Module_Proc (string name, string process_name) this->setKind (module_proc_str); this->watchdog = false; + this->user_session = false; this->start_command = ""; this->retries = 3; this->start_delay = 5000; @@ -95,6 +96,11 @@ Pandora_Module_Proc::getRetryDelay () const { return this->retry_delay; } +bool +Pandora_Module_Proc::getUserSession () const { + return this->user_session; +} + void Pandora_Module_Proc::setWatchdog (bool watchdog) { this->watchdog = watchdog; @@ -131,6 +137,11 @@ Pandora_Module_Proc::setRetryDelay (int mseconds) { this->retry_delay = mseconds; } +void +Pandora_Module_Proc::setUserSession (bool usession) { + this->user_session = usession; +} + void async_run (Pandora_Module_Proc *module) { HANDLE *processes = NULL; @@ -156,7 +167,7 @@ async_run (Pandora_Module_Proc *module) { } Sleep (module->getRetryDelay ()); - Pandora_Wmi::runProgram (module->getStartCommand ()); + Pandora_Wmi::runProgram (module->getStartCommand (), NULL, module->getUserSession()); Sleep (module->getStartDelay ()); counter++; continue; diff --git a/pandora_agents/win32/modules/pandora_module_proc.h b/pandora_agents/win32/modules/pandora_module_proc.h index edab85cb88..0286efcf5c 100644 --- a/pandora_agents/win32/modules/pandora_module_proc.h +++ b/pandora_agents/win32/modules/pandora_module_proc.h @@ -32,6 +32,7 @@ namespace Pandora_Modules { string process_name; HANDLE thread; bool watchdog; + bool user_session; string start_command; int retries; int start_delay; @@ -46,12 +47,14 @@ namespace Pandora_Modules { int getRetries () const; int getStartDelay () const; int getRetryDelay () const; + bool getUserSession () const; void setWatchdog (bool watchdog); void setStartCommand (string command); void setRetries (int retries); void setStartDelay (int mseconds); void setRetryDelay (int mseconds); + void setUserSession (bool usession); void run (); }; diff --git a/pandora_agents/win32/windows/pandora_wmi.cc b/pandora_agents/win32/windows/pandora_wmi.cc index e4763cc433..fb572bddcb 100644 --- a/pandora_agents/win32/windows/pandora_wmi.cc +++ b/pandora_agents/win32/windows/pandora_wmi.cc @@ -369,16 +369,16 @@ Pandora_Wmi::getOSName () { dhGetValue (L"%s", &name, quickfix, L".Caption"); - if (name != NULL) { - // Remove the (R) character. - for (int i = 0; i < strlen(name); i++) { - if ((unsigned char)name[i] == 0xAE) { - name[i] = ' '; - } - } - ret = name; - dhFreeString (name); - } + if (name != NULL) { + // Remove the (R) character. + for (int i = 0; i < strlen(name); i++) { + if ((unsigned char)name[i] == 0xAE) { + name[i] = ' '; + } + } + ret = name; + dhFreeString (name); + } } NEXT_THROW (quickfix); } catch (string errstr) { @@ -411,12 +411,12 @@ Pandora_Wmi::getOSVersion () { L".CSDVersion"); if (version != NULL) { - // Remove the (R) character. - for (int i = 0; i < strlen(version); i++) { - if ((unsigned char)version[i] == 0xAE) { - version[i] = ' '; - } - } + // Remove the (R) character. + for (int i = 0; i < strlen(version); i++) { + if ((unsigned char)version[i] == 0xAE) { + version[i] = ' '; + } + } ret = version; dhFreeString (version); } @@ -501,7 +501,7 @@ Pandora_Wmi::getSystemName () { * @param flags Process creation flags */ bool -Pandora_Wmi::runProgram (string command, DWORD flags) { +Pandora_Wmi::runProgram (string command, DWORD flags, BOOL user_session) { PROCESS_INFORMATION process_info; STARTUPINFO startup_info; bool success; @@ -514,11 +514,75 @@ Pandora_Wmi::runProgram (string command, DWORD flags) { startup_info.cb = sizeof (startup_info); ZeroMemory (&process_info, sizeof (process_info)); - pandoraDebug ("Start process \"%s\".", command.c_str ()); - cmd = strdup (command.c_str ()); - success = CreateProcess (NULL, cmd, NULL, NULL, FALSE, flags, - NULL, NULL, &startup_info, &process_info); - pandoraFree (cmd); + if (user_session) { + DWORD sessionId = WTSGetActiveConsoleSessionId(); + startup_info.cb = sizeof(STARTUPINFO); + startup_info.hStdError = 0; + startup_info.hStdInput = 0; + startup_info.hStdOutput = 0; + if ( + startup_info.hStdError != 0 + || startup_info.hStdInput != 0 + || startup_info.hStdOutput != 0 + ) { + startup_info.dwFlags |= STARTF_USESTDHANDLES; + } + + HANDLE procHandle = GetCurrentProcess(); + HANDLE token, userToken; + + // Tray to open the process + if (OpenProcessToken(procHandle, TOKEN_DUPLICATE, &token) == 0) { + pandoraDebug ("Open Process Token fails with error %d.", GetLastError()); + return false; + } + + // Duplicate token + if (DuplicateTokenEx(token, + MAXIMUM_ALLOWED, + 0, + SecurityImpersonation, + TokenPrimary, + &userToken) == 0) { + pandoraDebug ("Duplicate token fails with error %d.", GetLastError()); + return false; + } + + // Set Token Information + if (SetTokenInformation(userToken, + (TOKEN_INFORMATION_CLASS)TokenSessionId, + &sessionId, + sizeof(sessionId)) == 0) { + // Error 1314 will be thrown if agent is not running as service. + if (GetLastError() != 1314) { + pandoraDebug ("Set token information fails with error %d.", GetLastError()); + return false; + } + } + + LPSTR command_exec = (LPSTR)command.c_str(); + + // Create Process As User + // Changed inherit and command + success = CreateProcessAsUser( + userToken, + 0, + command_exec, + 0, + 0, + FALSE, + flags, + 0, + NULL, + &startup_info, + &process_info); + } else { + pandoraDebug ("Start process \"%s\".", command.c_str ()); + cmd = strdup (command.c_str ()); + success = CreateProcess (NULL, cmd, NULL, NULL, FALSE, flags, + NULL, NULL, &startup_info, &process_info); + pandoraFree (cmd); + } if (success) { pandoraDebug ("The process \"%s\" was started.", command.c_str ()); @@ -949,7 +1013,7 @@ getIPs(VARIANT *ip_array){ if (V_VT(&pvArray[i]) == VT_BSTR) { if (i > 0) { ret += " , "; - } + } LPSTR szStringA; ret += Pandora_Strutils::strUnicodeToAnsi( V_BSTR(&pvArray[i])); } diff --git a/pandora_agents/win32/windows/pandora_wmi.h b/pandora_agents/win32/windows/pandora_wmi.h index 601499f4a1..de4f3db81b 100644 --- a/pandora_agents/win32/windows/pandora_wmi.h +++ b/pandora_agents/win32/windows/pandora_wmi.h @@ -53,7 +53,7 @@ namespace Pandora_Wmi { string getOSBuild (); string getSystemName (); string getSystemAddress (); - bool runProgram (string command, DWORD flags = 0); + bool runProgram (string command, DWORD flags = 0, BOOL user_session = false); bool startService (string service_name); bool stopService (string service_name); void runWMIQuery (string wmi_query, From 806b282e8f55f886bfd38e5f926a5f0f825e6d91 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Tue, 10 Oct 2017 18:48:58 +0200 Subject: [PATCH 049/311] Fix resize sla graphs in visual console - #1334 --- pandora_console/include/graphs/functions_flot.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pandora_console/include/graphs/functions_flot.php b/pandora_console/include/graphs/functions_flot.php index 319e69cab0..7e30d49215 100644 --- a/pandora_console/include/graphs/functions_flot.php +++ b/pandora_console/include/graphs/functions_flot.php @@ -866,9 +866,7 @@ function flot_slicesbar_graph ($graph_data, $period, $width, $height, $legend, $ global $config; include_javascript_dependencies_flot_graph(); - - $height+= 20; - + $stacked_str = 'stack: stack,'; // Get a unique identifier to graph @@ -876,10 +874,10 @@ function flot_slicesbar_graph ($graph_data, $period, $width, $height, $legend, $ // Set some containers to legend, graph, timestamp tooltip, etc. if ($stat_win) { - $return = "
    "; + $return = "
    "; } else { - $return = "
    "; + $return = "
    "; } $return .= ""; From 4dfd000ba075cc7c2c6ae655696682ad41e7ca45 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Wed, 11 Oct 2017 11:05:55 +0200 Subject: [PATCH 050/311] Modified events protection checking to protect secundary servers too --- pandora_server/bin/pandora_server | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_server/bin/pandora_server b/pandora_server/bin/pandora_server index ef617343aa..1f13627cb3 100755 --- a/pandora_server/bin/pandora_server +++ b/pandora_server/bin/pandora_server @@ -314,9 +314,6 @@ sub pandora_server_tasks ($) { # Check if an autodisabled agent needs to be autodisable pandora_disable_autodisable_agents ($pa_config, $dbh); - - # Set event storm protection - pandora_set_event_storm_protection (pandora_get_tconfig_token ($dbh, 'event_storm_protection', 0)); } # TASKS EXECUTED EVERY 60 SECONDS (High latency tasks) @@ -355,6 +352,9 @@ sub pandora_server_tasks ($) { # Rotate Log File if (($counter % 30) == 0) { pandora_rotate_logfile($pa_config); + + # Set event storm protection + pandora_set_event_storm_protection (pandora_get_tconfig_token ($dbh, 'event_storm_protection', 0)); } # Pandora self monitoring if (defined($pa_config->{"self_monitoring"}) From f9abfa043c294a4dad2ad6f3570142169ec88481 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Fri, 13 Oct 2017 11:59:37 +0200 Subject: [PATCH 051/311] Added _event_cfX_ to macros help --- pandora_console/include/help/en/help_alert_config.php | 1 + pandora_console/include/help/en/help_alert_macros.php | 1 + pandora_console/include/help/es/help_alert_config.php | 1 + pandora_console/include/help/es/help_alert_macros.php | 1 + pandora_console/include/help/ja/help_alert_config.php | 1 + pandora_console/include/help/ja/help_alert_macros.php | 1 + 6 files changed, 6 insertions(+) diff --git a/pandora_console/include/help/en/help_alert_config.php b/pandora_console/include/help/en/help_alert_config.php index fec6b2a7bf..ff1c16522d 100644 --- a/pandora_console/include/help/en/help_alert_config.php +++ b/pandora_console/include/help/en/help_alert_config.php @@ -52,6 +52,7 @@ Apart from the defined module macros, the following macros are also available:
  • _alert_text_severity_ : Text alert severity (Maintenance, Informational, Normal Minor, Warning, Major, Critical).
  • _event_text_severity_ : (Only event alerts) Text event (who fire the alert) severity (Maintenance, Informational, Normal Minor, Warning, Major, Critical).
  • _event_id_ : (Only event alerts) Id of the event that fired the alert.
  • +
  • _event_cfX_ : (Only event alerts) Key of the event custom field that fired the alert.
  • _id_agent_ : Id of agent, useful to build direct URL to redirect to a Pandora FMS console webpage.
  • _id_group_ : Id of agent group.
  • _id_module_ : Id of module.
  • diff --git a/pandora_console/include/help/en/help_alert_macros.php b/pandora_console/include/help/en/help_alert_macros.php index 5382c502ab..5b9185b991 100644 --- a/pandora_console/include/help/en/help_alert_macros.php +++ b/pandora_console/include/help/en/help_alert_macros.php @@ -45,6 +45,7 @@ Besides the defined module macros, the following macros are available:
  • _alert_text_severity_: Priority level, in text, for the alert (Maintenance, Informational, Normal Minor, Major, Critical).
  • _event_text_severity_: (Only event alerts) Text event (which triggered the alert) severity (Maintenance, Informational, Normal Minor, Warning, Major, Critical).
  • _event_id_: (Only event alerts) ID of the event that triggered the alert.
  • +
  • _event_cfX_ : (Only event alerts) Key of the event custom field that fired the alert.
  • _id_agent_: Agent’s ID, useful for building a direct URL that redirects to a Pandora FMS console webpage.
  • _id_group_ : Agent group ID.
  • _id_module_ : ID of module.
  • diff --git a/pandora_console/include/help/es/help_alert_config.php b/pandora_console/include/help/es/help_alert_config.php index 5ab70b784e..565e40afe2 100644 --- a/pandora_console/include/help/es/help_alert_config.php +++ b/pandora_console/include/help/es/help_alert_config.php @@ -54,6 +54,7 @@ Además de las macros de módulo definidas, las siguientes macros están disponi
  • _alert_text_severity_: Prioridad en texto de la alerta. (Maintenance, Informational, Normal Minor, Warning, Major, Critical)
  • _eventt_text_severity_: (Solo alertas de evento) Prioridad en texto de el evento que dispara la alerta. (Maintenance, Informational, Normal Minor, Warning, Major, Critical)
  • _event_id_ : (Solo alertas de evento) Id del evento que disparó la alerta.
  • +
  • _event_cfX_ : (Solo alertas de evento) Clave del campo personalizado del evento que disparó la alerta.
  • _id_agent_: ID del agente, util para construir URL de acceso a la consola de Pandora.
  • _id_group_ : Id del grupo de agente.
  • _id_module_ : ID del módulo.
  • diff --git a/pandora_console/include/help/es/help_alert_macros.php b/pandora_console/include/help/es/help_alert_macros.php index 74efb4582b..f4d179fb79 100644 --- a/pandora_console/include/help/es/help_alert_macros.php +++ b/pandora_console/include/help/es/help_alert_macros.php @@ -45,6 +45,7 @@ Además de las macros de módulo definidas, las siguientes macros están disponi
  • _alert_text_severity_: Prioridad en texto de la alerta (Maintenance, Informational, Normal Minor, Warning, Major, Critical).
  • _eventt_text_severity_: (Solo alertas de evento) Prioridad en texto de el evento que dispara la alerta (Maintenance, Informational, Normal Minor, Warning, Major, Critical).
  • _event_id_: (Solo alertas de evento) Id del evento que disparó la alerta.
  • +
  • _event_cfX_ : (Solo alertas de evento) Clave del campo personalizado del evento que disparó la alerta.
  • _id_agent_: ID del agente, util para construir URL de acceso a la consola de Pandora.
  • _id_group_ : Id del grupo de agente.
  • _id_module_ : ID del módulo.
  • diff --git a/pandora_console/include/help/ja/help_alert_config.php b/pandora_console/include/help/ja/help_alert_config.php index 592ed64ee3..a2cd8ca519 100644 --- a/pandora_console/include/help/ja/help_alert_config.php +++ b/pandora_console/include/help/ja/help_alert_config.php @@ -53,6 +53,7 @@ email アクションを設定するには、_field1_ (送信先アドレス)、
  • _alert_text_severity_ : テキストでのアラートの重要度 (Maintenance, Informational, Normal Minor, Warning, Major, Critical)
  • _event_text_severity_ : (イベントアラートのみ) イベント(アラートの発生元)のテキストでの重要度 (Maintenance, Informational, Normal Minor, Warning, Major, Critical)
  • _event_id_ : (イベントアラートのみ) アラート発生元のイベントID
  • +
  • _event_cfX_ : (Only event alerts) Key of the event custom field that fired the alert.
  • _id_agent_ : エージェントのID / Webコンソールへのリンクを生成するのに便利です
  • _id_group_ : エージェントグループのID
  • _id_module_ : モジュールID
  • diff --git a/pandora_console/include/help/ja/help_alert_macros.php b/pandora_console/include/help/ja/help_alert_macros.php index c9729e6bfd..236f0e4e72 100644 --- a/pandora_console/include/help/ja/help_alert_macros.php +++ b/pandora_console/include/help/ja/help_alert_macros.php @@ -45,6 +45,7 @@
  • _alert_text_severity_ : テキストでのアラートの重要度 (Maintenance, Informational, Normal Minor, Warning, Major, Critical)
  • _event_text_severity_ : (イベントアラートのみ) イベント(アラートの発生元)のテキストでの重要度 (Maintenance, Informational, Normal Minor, Warning, Major, Critical)
  • _event_id_ : (イベントアラートのみ) アラート発生元のイベントID
  • +
  • _event_cfX_ : (Only event alerts) Key of the event custom field that fired the alert.
  • _id_agent_ : エージェントのID / Webコンソールへのリンクを生成するのに便利です
  • _id_group_ : エージェントグループのID
  • _id_module_ : モジュール ID
  • From c81f4fcc323a00ecbb725a3ed4fb4e2eb8423bd1 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Fri, 13 Oct 2017 15:10:10 +0200 Subject: [PATCH 052/311] Performance improvements. --- pandora_console/include/class/Tree.class.php | 65 ++++++++++- pandora_console/include/functions_users.php | 108 +++++++++++++------ 2 files changed, 133 insertions(+), 40 deletions(-) diff --git a/pandora_console/include/class/Tree.class.php b/pandora_console/include/class/Tree.class.php index 902e964db8..6dc52ea68d 100644 --- a/pandora_console/include/class/Tree.class.php +++ b/pandora_console/include/class/Tree.class.php @@ -325,10 +325,21 @@ class Tree { $user_groups_str = "-1"; $group_acl = ""; if (!$this->strictACL) { - if (!empty($this->userGroups)) { - $user_groups_str = implode(",", array_keys($this->userGroups)); + if (empty($this->userGroups)) { + return; + } + + // Asking for a specific group. + if ($item_for_count !== false) { + if (!isset($this->userGroups[$item_for_count])) { + return; + } + } + // Asking for all groups. + else { + $user_groups_str = implode(",", array_keys($this->userGroups)); + $group_acl = "AND ta.id_grupo IN ($user_groups_str)"; } - $group_acl = "AND ta.id_grupo IN ($user_groups_str)"; } else { if (!empty($this->acltags)) { @@ -1142,7 +1153,7 @@ class Tree { } // If user have not permissions in parent, set parent node to 0 (all) - $user_groups_with_privileges = users_get_groups($config['id_user']); + $user_groups_with_privileges = $this->userGroups; foreach ($groups as $id => $group) { if (!in_array($groups[$id]['parent'], array_keys($user_groups_with_privileges))) { $groups[$id]['parent'] = 0; @@ -1306,7 +1317,7 @@ class Tree { // Get the counters of the group (special case) if ($processed_item['type'] == 'group') { - $counters = $this->getCounters($item['id']); + $counters = $this->getGroupCounters($item['id']); if (!empty($counters)) { foreach ($counters as $type => $value) { $item[$type] = $value; @@ -2608,6 +2619,50 @@ class Tree { return $tree_modules; } + protected function getGroupCounters($group_id) { + global $config; + static $group_stats = false; + + # Do not use the group stat cache when using tags or real time group stats. + if ($config['realtimestats'] == 1 || (isset($this->userGroups[$group_id]['tags']) && $this->userGroups[$group_id]['tags'] != "")) { + return $this->getCounters($group_id); + } + + # Update the group stat cache. + if ( $group_stats === false) { + $group_stats = array(); + $stats = db_get_all_rows_sql('SELECT * FROM tgroup_stat'); + + foreach ($stats as $group) { + if ($group['modules'] > 0) { + $group_stats[$group['id_group']]['total_count'] = $group['modules'] > 0 ? $group['agents'] : 0; + $group_stats[$group['id_group']]['total_critical_count'] = $group['critical']; + $group_stats[$group['id_group']]['total_unknown_count'] = $group['unknown']; + $group_stats[$group['id_group']]['total_warning_count'] = $group['warning']; + $group_stats[$group['id_group']]['total_not_init_count'] = $group['non-init']; + $group_stats[$group['id_group']]['total_normal_count'] = $group['normal']; + $group_stats[$group['id_group']]['total_fired_count'] = $group['alerts_fired']; + } + # Skip groups without modules. + else { + $group_stats[$group['id_group']]['total_count'] = 0; + $group_stats[$group['id_group']]['total_critical_count'] = 0; + $group_stats[$group['id_group']]['total_unknown_count'] = 0; + $group_stats[$group['id_group']]['total_warning_count'] = 0; + $group_stats[$group['id_group']]['total_not_init_count'] = 0; + $group_stats[$group['id_group']]['total_normal_count'] = 0; + $group_stats[$group['id_group']]['total_fired_count'] = 0; + } + } + } + + if ($group_stats !== false && isset($group_stats[$group_id])) { + return $group_stats[$group_id]; + } + + return $this->getCounters($group_id); + } + static function recursive_modules_tree_view (&$new_modules, &$new_modules_child, $i, $child) { foreach ($new_modules as $index => $module) { if ($module['id'] == $child['parent']) { diff --git a/pandora_console/include/functions_users.php b/pandora_console/include/functions_users.php index 13116c6eb8..8e3eac823b 100755 --- a/pandora_console/include/functions_users.php +++ b/pandora_console/include/functions_users.php @@ -161,57 +161,95 @@ function users_get_groups ($id_user = false, $privilege = "AR", $returnAllGroup } } - if (isset($id_groups)) { - //Get recursive id groups - $list_id_groups = array(); - foreach ((array)$id_groups as $id_group) { - $list_id_groups = array_merge($list_id_groups, groups_get_id_recursive($id_group)); + // Check the group cache first. + if (array_key_exists($id_user, $group_cache)) { + $groups = $group_cache[$id_user]; + } else { + // Admin. + if (is_user_admin($id_user)) { + $groups = db_get_all_rows_sql ("SELECT * FROM tgrupo"); + } + // Per-group permissions. + else { + $query = sprintf("SELECT tgrupo.*, tperfil.*, tusuario_perfil.tags FROM tgrupo, tusuario_perfil, tperfil + WHERE (tgrupo.id_grupo = tusuario_perfil.id_grupo OR tusuario_perfil.id_grupo = 0) + AND tusuario_perfil.id_perfil = tperfil.id_perfil + AND tusuario_perfil.id_usuario = '%s'", $id_user); + $groups = db_get_all_rows_sql ($query); + + // Get children groups. + $parent_ids = array(); + $parents = $groups; + $seen = array(); + while (!empty($parents)) { + $children = array(); + foreach ($parents as $parent) { + // Do not process the same parent twice. + if (array_key_exists($parent['id_grupo'], $seen)) { + continue; + } + $seen[$parent['id_grupo']] = 1; + + // Does this group propagate ACLs? + if ($parent['propagate'] == '0') { + continue; + } + + // Save a list of parents in the tree to search for user profiles, including the current parent! + $parent_ids[$parent['id_grupo']] = isset($parent_ids[$parent['parent']]) ? array_merge(array($parent['id_grupo']), $parent_ids[$parent['parent']]) : array($parent['id_grupo']); + + // Get children groups from the DB. + $query = sprintf("SELECT tgrupo.*, tperfil.*, tusuario_perfil.tags FROM tgrupo, tusuario_perfil, tperfil + WHERE tgrupo.parent = %d + AND tusuario_perfil.id_grupo IN (%s) + AND tusuario_perfil.id_perfil = tperfil.id_perfil + AND tusuario_perfil.id_usuario = '%s'", $parent['id_grupo'], join(',', $parent_ids[$parent['id_grupo']]), $id_user); + $local_children = db_get_all_rows_sql ($query); + if (!empty($local_children)) { + $children = array_merge($children, $local_children); + } + } + + if (!empty($children)) { + $groups = array_merge($groups, $children); + } + + // Move down in the hierarchy. + $parents = $children; + } } - - $list_id_groups = array_unique($list_id_groups); - - $groups = db_get_all_rows_filter('tgrupo', array('id_grupo' => $list_id_groups, 'order' => 'parent, nombre')); - } - else { - $groups = db_get_all_rows_in_table ('tgrupo', 'parent, nombre'); + + // Update the group cache. + $group_cache[$id_user] = $groups; } $user_groups = array (); - if (!$groups) { return $user_groups; } if ($returnAllGroup) { //All group - if ($returnAllColumns) { - $groupall = array('id_grupo' => 0, 'nombre' => __('All'), - 'icon' => 'world', 'parent' => 0, 'disabled' => 0, - 'custom_id' => null, 'description' => '', 'propagate' => 0); - } - else { - $groupall = array('id_grupo' => 0, 'nombre' => __("All")); - } + $groupall = array('id_grupo' => 0, 'nombre' => __('All'), + 'icon' => 'world', 'parent' => 0, 'disabled' => 0, + 'custom_id' => null, 'description' => '', 'propagate' => 0); // Add the All group to the beginning to be always the first array_unshift($groups, $groupall); } + $acl_column = get_acl_column($privilege); foreach ($groups as $group) { - if ($privilege === false) { - if ($returnAllColumns) { - $user_groups[$group[$keys_field]] = $group; - } - else { - $user_groups[$group[$keys_field]] = $group['nombre']; - } + + # Check the specific permission column. acl_column is undefined for admins. + if (defined($group[$acl_column]) && $group[$acl_column] != '1') { + continue; } - else if (check_acl($id_user, $group["id_grupo"], $privilege)) { - if ($returnAllColumns) { - $user_groups[$group[$keys_field]] = $group; - } - else { - $user_groups[$group[$keys_field]] = $group['nombre']; - } + + if ($returnAllColumns) { + $user_groups[$group[$keys_field]] = $group; + } + else { + $user_groups[$group[$keys_field]] = $group['nombre']; } } From 7d3e86296bb01a27b29d3af692e841eb7ed39618 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Fri, 13 Oct 2017 15:10:46 +0200 Subject: [PATCH 053/311] Add metaconsole support to server-side group stats. --- pandora_server/lib/PandoraFMS/Core.pm | 43 +++++++++++++-------------- 1 file changed, 20 insertions(+), 23 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 88edb0a11a..9233da13bc 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -4553,6 +4553,7 @@ sub pandora_group_statistics ($$) { # Get all groups my @groups = get_db_rows ($dbh, 'SELECT id_grupo FROM tgrupo'); + my $table = is_metaconsole($pa_config) ? 'tmetaconsole_agent' : 'tagente'; # For each valid group get the stats: Simple uh? foreach my $group_row (@groups) { @@ -4561,50 +4562,46 @@ sub pandora_group_statistics ($$) { # NOTICE - Calculations done here MUST BE the same than used in PHP code to have # the same criteria. PLEASE, double check any changes here and in functions_groups.php - $agents_unknown = get_db_value ($dbh, "SELECT COUNT(*) FROM tagente WHERE tagente.disabled=0 AND critical_count=0 AND warning_count=0 AND unknown_count>0 AND id_grupo=?", $group); + $agents_unknown = get_db_value ($dbh, "SELECT COUNT(*) FROM $table WHERE disabled=0 AND critical_count=0 AND warning_count=0 AND unknown_count>0 AND id_grupo=?", $group); $agents_unknown = 0 unless defined ($agents_unknown); - $agents = get_db_value ($dbh, "SELECT COUNT(*) FROM tagente WHERE id_grupo = $group AND disabled = 0"); + $agents = get_db_value ($dbh, "SELECT COUNT(*) FROM $table WHERE id_grupo = $group AND disabled=0"); $agents = 0 unless defined ($agents); - $modules = get_db_value ($dbh, "SELECT COUNT(tagente_estado.id_agente_estado) FROM tagente_estado, tagente, tagente_modulo WHERE tagente.id_grupo = $group AND tagente.disabled = 0 AND tagente_estado.id_agente = tagente.id_agente AND tagente_estado.id_agente_modulo = tagente_modulo.id_agente_modulo AND tagente_modulo.disabled = 0"); + $modules = get_db_value ($dbh, "SELECT SUM(total_count) FROM $table WHERE disabled=0 AND id_grupo=?", $group); $modules = 0 unless defined ($modules); - $normal = get_db_value ($dbh, "SELECT COUNT(*) FROM tagente WHERE tagente.disabled=0 AND normal_count=total_count AND id_grupo=?", $group); + $normal = get_db_value ($dbh, "SELECT COUNT(*) FROM $table WHERE disabled=0 AND critical_count=0 AND warning_count=0 AND unknown_count=0 AND normal_count>0 AND id_grupo=?", $group); $normal = 0 unless defined ($normal); - $critical = get_db_value ($dbh, "SELECT COUNT(*) FROM tagente WHERE tagente.disabled=0 AND critical_count>0 AND id_grupo=?", $group); + $critical = get_db_value ($dbh, "SELECT COUNT(*) FROM $table WHERE disabled=0 AND critical_count>0 AND id_grupo=?", $group); $critical = 0 unless defined ($critical); - $warning = get_db_value ($dbh, "SELECT COUNT(*) FROM tagente WHERE tagente.disabled=0 AND critical_count=0 AND warning_count>0 AND id_grupo=?", $group); + $warning = get_db_value ($dbh, "SELECT COUNT(*) FROM $table WHERE disabled=0 AND critical_count=0 AND warning_count>0 AND id_grupo=?", $group); $warning = 0 unless defined ($warning); - $unknown = get_db_value ($dbh, "SELECT COUNT(*) FROM tagente WHERE tagente.disabled=0 AND critical_count=0 AND warning_count=0 AND unknown_count>0 AND id_grupo=?", $group); + $unknown = get_db_value ($dbh, "SELECT COUNT(*) FROM $table WHERE disabled=0 AND critical_count=0 AND warning_count=0 AND unknown_count>0 AND id_grupo=?", $group); $unknown = 0 unless defined ($unknown); - $non_init = get_db_value ($dbh, "SELECT COUNT(*) FROM tagente WHERE disabled=0 AND critical_count=0 AND warning_count=0 AND unknown_count=0 AND notinit_count>0 AND id_grupo=?", $group); + $non_init = get_db_value ($dbh, "SELECT COUNT(*) FROM $table WHERE disabled=0 AND total_count=notinit_count AND id_grupo=?", $group); $non_init = 0 unless defined ($non_init); - $alerts = get_db_value ($dbh, "SELECT COUNT(talert_template_modules.id) - FROM talert_template_modules, tagente_modulo, tagente - WHERE tagente.id_grupo = $group AND tagente_modulo.id_agente = tagente.id_agente - AND tagente_modulo.disabled = 0 AND tagente.disabled = 0 - AND talert_template_modules.disabled = 0 - AND talert_template_modules.id_agent_module = tagente_modulo.id_agente_modulo"); + # Total alert count not available on the meta console. + if ($table eq 'tagente') { + $alerts = get_db_value ($dbh, "SELECT COUNT(talert_template_modules.id) + FROM talert_template_modules, tagente_modulo, tagente + WHERE tagente.id_grupo = $group AND tagente_modulo.id_agente = tagente.id_agente + AND tagente_modulo.disabled = 0 AND tagente.disabled = 0 + AND talert_template_modules.disabled = 0 + AND talert_template_modules.id_agent_module = tagente_modulo.id_agente_modulo"); + } $alerts = 0 unless defined ($alerts); - $alerts_fired = get_db_value ($dbh, "SELECT COUNT(talert_template_modules.id) - FROM talert_template_modules, tagente_modulo, tagente - WHERE tagente.id_grupo = $group AND tagente_modulo.id_agente = tagente.id_agente - AND tagente_modulo.disabled = 0 AND tagente.disabled = 0 - AND talert_template_modules.disabled = 0 - AND talert_template_modules.id_agent_module = tagente_modulo.id_agente_modulo - AND times_fired > 0"); + $alerts_fired = get_db_value ($dbh, "SELECT SUM(fired_count) FROM $table WHERE disabled=0 AND id_grupo=?", $group); $alerts_fired = 0 unless defined ($alerts_fired); # Update the record. - db_do ($dbh, "DELETE FROM tgroup_stat WHERE id_group = $group"); - db_do ($dbh, "INSERT INTO tgroup_stat (id_group, modules, normal, critical, warning, unknown, " . $PandoraFMS::DB::RDBMS_QUOTE . 'non-init' . $PandoraFMS::DB::RDBMS_QUOTE . ", alerts, alerts_fired, agents, agents_unknown, utimestamp) VALUES ($group, $modules, $normal, $critical, $warning, $unknown, $non_init, $alerts, $alerts_fired, $agents, $agents_unknown, UNIX_TIMESTAMP())"); + db_do ($dbh, "REPLACE INTO tgroup_stat (id_group, modules, normal, critical, warning, unknown, " . $PandoraFMS::DB::RDBMS_QUOTE . 'non-init' . $PandoraFMS::DB::RDBMS_QUOTE . ", alerts, alerts_fired, agents, agents_unknown, utimestamp) VALUES ($group, $modules, $normal, $critical, $warning, $unknown, $non_init, $alerts, $alerts_fired, $agents, $agents_unknown, UNIX_TIMESTAMP())"); } From 90366e7e586a1ca69441e8adfee11553fbca2ef7 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Fri, 13 Oct 2017 15:49:12 +0200 Subject: [PATCH 054/311] Performance improvements. Rewrote safe_input and safe_output. Ref pandora_enterprise#1465. --- pandora_server/lib/PandoraFMS/DataServer.pm | 11 +- pandora_server/lib/PandoraFMS/Tools.pm | 271 ++++++++++---------- 2 files changed, 144 insertions(+), 138 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DataServer.pm b/pandora_server/lib/PandoraFMS/DataServer.pm index ebd8f860ee..603cbf8cf2 100644 --- a/pandora_server/lib/PandoraFMS/DataServer.pm +++ b/pandora_server/lib/PandoraFMS/DataServer.pm @@ -186,6 +186,7 @@ sub data_consumer ($$) { for (0..1) { eval { threads->yield; + $xml_data = XMLin ($file_name, forcearray => 'module'); }; @@ -527,7 +528,7 @@ sub process_xml_data ($$$$$) { # Single data if (! defined ($module_data->{'datalist'})) { my $data_timestamp = get_tag_value ($module_data, 'timestamp', $timestamp); - process_module_data ($pa_config, $module_data, $server_id, $agent_name, $module_name, $module_type, $interval, $data_timestamp, $dbh, $new_agent); + process_module_data ($pa_config, $module_data, $server_id, $agent, $module_name, $module_type, $interval, $data_timestamp, $dbh, $new_agent); next; } @@ -544,7 +545,7 @@ sub process_xml_data ($$$$$) { $module_data->{'data'} = $data->{'value'}; my $data_timestamp = get_tag_value ($data, 'timestamp', $timestamp); - process_module_data ($pa_config, $module_data, $server_id, $agent_name, $module_name, + process_module_data ($pa_config, $module_data, $server_id, $agent, $module_name, $module_type, $interval, $data_timestamp, $dbh, $new_agent); } } @@ -584,16 +585,16 @@ sub process_xml_data ($$$$$) { # Process module data, creating module if necessary. ########################################################################## sub process_module_data ($$$$$$$$$$) { - my ($pa_config, $data, $server_id, $agent_name, + my ($pa_config, $data, $server_id, $agent, $module_name, $module_type, $interval, $timestamp, $dbh, $force_processing) = @_; # Get agent data - my $agent = get_db_single_row ($dbh, 'SELECT * FROM tagente WHERE nombre = ?', safe_input($agent_name)); if (! defined ($agent)) { - logger($pa_config, "Invalid agent '$agent_name' for module '$module_name'.", 3); + logger($pa_config, "Invalid agent for module '$module_name'.", 3); return; } + my $agent_name = $agent->{'nombre'}; # Get module parameters, matching column names in tagente_modulo my $module_conf; diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index e0dda9af4f..a9481d4f13 100755 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -151,6 +151,141 @@ if ($OS eq 'linux') { } chomp($OS_VERSION); +# Entity to character mapping. Contains a few tweaks to make it backward compatible with the previous safe_input implementation. +my %ENT2CHR = ( + '#x00' => chr(0), + '#x01' => chr(1), + '#x02' => chr(2), + '#x03' => chr(3), + '#x04' => chr(4), + '#x05' => chr(5), + '#x06' => chr(6), + '#x07' => chr(7), + '#x08' => chr(8), + '#x09' => chr(9), + '#x0a' => chr(10), + '#x0b' => chr(11), + '#x0c' => chr(12), + '#x0d' => chr(13), + '#x0e' => chr(14), + '#x0f' => chr(15), + '#x10' => chr(16), + '#x11' => chr(17), + '#x12' => chr(18), + '#x13' => chr(19), + '#x14' => chr(20), + '#x15' => chr(21), + '#x16' => chr(22), + '#x17' => chr(23), + '#x18' => chr(24), + '#x19' => chr(25), + '#x1a' => chr(26), + '#x1b' => chr(27), + '#x1c' => chr(28), + '#x1d' => chr(29), + '#x1e' => chr(30), + '#x1f' => chr(31), + '#x20' => chr(32), + 'quot' => chr(34), + 'amp' => chr(38), + '#039' => chr(39), + '#40' => chr(40), + '#41' => chr(41), + 'lt' => chr(60), + 'gt' => chr(62), + '#92' => chr(92), + '#x80' => chr(128), + '#x81' => chr(129), + '#x82' => chr(130), + '#x83' => chr(131), + '#x84' => chr(132), + '#x85' => chr(133), + '#x86' => chr(134), + '#x87' => chr(135), + '#x88' => chr(136), + '#x89' => chr(137), + '#x8a' => chr(138), + '#x8b' => chr(139), + '#x8c' => chr(140), + '#x8d' => chr(141), + '#x8e' => chr(142), + '#x8f' => chr(143), + '#x90' => chr(144), + '#x91' => chr(145), + '#x92' => chr(146), + '#x93' => chr(147), + '#x94' => chr(148), + '#x95' => chr(149), + '#x96' => chr(150), + '#x97' => chr(151), + '#x98' => chr(152), + '#x99' => chr(153), + '#x9a' => chr(154), + '#x9b' => chr(155), + '#x9c' => chr(156), + '#x9d' => chr(157), + '#x9e' => chr(158), + '#x9f' => chr(159), + '#xa0' => chr(160), + '#xa1' => chr(161), + '#xa2' => chr(162), + '#xa3' => chr(163), + '#xa4' => chr(164), + '#xa5' => chr(165), + '#xa6' => chr(166), + '#xa7' => chr(167), + '#xa8' => chr(168), + '#xa9' => chr(169), + '#xaa' => chr(170), + '#xab' => chr(171), + '#xac' => chr(172), + '#xad' => chr(173), + '#xae' => chr(174), + '#xaf' => chr(175), + '#xb0' => chr(176), + '#xb1' => chr(177), + '#xb2' => chr(178), + '#xb3' => chr(179), + '#xb4' => chr(180), + '#xb5' => chr(181), + '#xb6' => chr(182), + '#xb7' => chr(183), + '#xb8' => chr(184), + '#xb9' => chr(185), + '#xba' => chr(186), + '#xbb' => chr(187), + '#xbc' => chr(188), + '#xbd' => chr(189), + '#xbe' => chr(190), + 'Aacute' => chr(193), + 'Auml' => chr(196), + 'Eacute' => chr(201), + 'Euml' => chr(203), + 'Iacute' => chr(205), + 'Iuml' => chr(207), + 'Ntilde' => chr(209), + 'Oacute' => chr(211), + 'Ouml' => chr(214), + 'Uacute' => chr(218), + 'Uuml' => chr(220), + 'aacute' => chr(225), + 'auml' => chr(228), + 'eacute' => chr(233), + 'euml' => chr(235), + 'iacute' => chr(237), + 'iuml' => chr(239), + 'ntilde' => chr(241), + 'oacute' => chr(243), + 'ouml' => chr(246), + 'uacute' => chr(250), + 'uuml' => chr(252), +); + +# Construct the character to entity mapping. +my %CHR2ENT; +while (my ($ent, $chr) = each(%ENT2CHR)) { + $CHR2ENT{$chr} = "&" . $ent . ";"; +} ############################################################################### # Sets user:group owner for the given file @@ -201,49 +336,7 @@ sub pandora_trash_ascii { sub safe_input($) { my $value = shift; - $value = encode_entities ($value, "<>&"); - - #//Replace the character '\' for the equivalent html entitie - $value =~ s/\\/\/gi; - - #// First attempt to avoid SQL Injection based on SQL comments - #// Specific for MySQL. - $value =~ s/\/\*//*/gi; - $value =~ s/\*\//*//gi; - - #//Replace ' for the html entitie - $value =~ s/\"/"/gi; - - #//Replace ' for the html entitie - $value =~ s/\'/'/gi; - - #//Replace ( for the html entitie - $value =~ s/\(/(/gi; - - #//Replace ( for the html entitie - $value =~ s/\)/)/gi; - - #//Replace some characteres for html entities - for (my $i=0;$i<33;$i++) { - my $pattern = chr($i); - my $hex = ascii_to_html($i); - $value =~ s/$pattern/$hex/gi; - } - - for (my $i=128;$i<191;$i++) { - my $pattern = chr($i); - my $hex = ascii_to_html($i); - $value =~ s/$pattern/$hex/gi; - } - - #//Replace characteres for tildes and others - my $trans = get_html_entities(); - - foreach(keys(%$trans)) - { - my $pattern = chr($_); - $value =~ s/$pattern/$trans->{$_}/g; - } + $value =~ s/([\x00-\xFF])/$CHR2ENT{$1}||$1/ge; return $value; } @@ -254,99 +347,11 @@ sub safe_input($) { sub safe_output($) { my $value = shift; - $value = decode_entities ($value); - - #//Replace the character '\' for the equivalent html entitie - $value =~ s/\/\\/gi; - - #// First attempt to avoid SQL Injection based on SQL comments - #// Specific for MySQL. - $value =~ s//*/\/\*/gi; - $value =~ s/*//\*\//gi; - - #//Replace ( for the html entitie - $value =~ s/(/\(/gi; - - #//Replace ( for the html entitie - $value =~ s/)/\)/gi; - - #//Replace ' for the html entitie - $value =~ s/'/')/gi; - - #//Replace " for the html entitie - $value =~ s/"/")/gi; - - #//Replace some characteres for html entities - for (my $i=0;$i<33;$i++) { - my $pattern = chr($i); - my $hex = ascii_to_html($i); - $value =~ s/$hex/$pattern/gi; - } - - for (my $i=128;$i<191;$i++) { - my $pattern = chr($i); - my $hex = ascii_to_html($i); - $value =~ s/$hex/$pattern/gi; - } - - #//Replace characteres for tildes and others - my $trans = get_html_entities(); - - foreach(keys(%$trans)) - { - my $pattern = chr($_); - $value =~ s/$trans->{$_}/$pattern/g; - } - + _decode_entities ($value, \%ENT2CHR); + return $value; } -########################################################################## -# SUB get_html_entities -# Returns a hash table with the acute and special html entities -# Usefull for future chars addition: -# http://cpansearch.perl.org/src/GAAS/HTML-Parser-3.68/lib/HTML/Entities.pm -########################################################################## - -sub get_html_entities { - my %trans = ( - 225 => 'á', - 233 => 'é', - 237 => 'í', - 243 => 'ó', - 250 => 'ú', - 193 => 'Á', - 201 => 'É', - 205 => 'Í', - 211 => 'Ó', - 218 => 'Ú', - 228 => 'ä', - 235 => 'ë', - 239 => 'ï', - 246 => 'ö', - 252 => 'ü', - 196 => 'Ä', - 203 => 'Ë', - 207 => 'Ï', - 214 => 'Ö', - 220 => 'Ü', - 241 => 'ñ', - 209 => 'Ñ' - ); - - return \%trans; -} -######################################################################## -# SUB ascii_to_html (string) -# Convert an ascii string to hexadecimal -######################################################################## - -sub ascii_to_html($) { - my $ascii = shift; - - return "&#x".substr(unpack("H*", pack("N", $ascii)),6,3).";"; -} - ######################################################################## # Sub daemonize () # Put program in background (for daemon mode) From ce72e5a5afef41154c2d8083453a9d9d7cd16a4b Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Mon, 16 Oct 2017 16:10:59 +0200 Subject: [PATCH 055/311] Added structure to new item --- .../visual_console_builder.editor.js | 51 +++++++++++++++++++ pandora_console/include/constants.php | 1 + .../include/functions_visual_map_editor.php | 14 ++--- 3 files changed, 57 insertions(+), 9 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 22c6c4d8d4..1e40c44279 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -434,6 +434,19 @@ function update_button_palette_callback() { setEventsBar(idItem, values); break; + case 'donut_graph': + if($('input[name=width]').val() == ''){ + alert('Undefined width'); + return false; + } + if($('input[name=height]').val() == ''){ + alert('Undefined height'); + return false; + } + $("#image_" + idItem).attr("src", "images/spinner.gif"); + + setDonutsGraph(idItem, values); + break; case 'simple_value': //checkpoint // if(($('#text-label_ifr').contents().find('#tinymce p').html() == '_VALUE_' || @@ -699,6 +712,12 @@ function create_button_palette_callback() { validate = false; } break; + case 'donut_graph': + if ((values['agent'] == '')) { + alert($("#message_alert_no_agent").html()); + validate = false; + } + break; case 'label': if ((values['label'] == '')) { alert($("#message_alert_no_label").html()); @@ -975,6 +994,7 @@ function toggle_item_palette() { activeToolboxButton('box_item', true); activeToolboxButton('line_item', true); activeToolboxButton('auto_sla_graph', true); + activeToolboxButton('donut_graph', true); if (typeof(enterprise_activeToolboxButton) == 'function') { enterprise_activeToolboxButton(true); @@ -995,6 +1015,7 @@ function toggle_item_palette() { activeToolboxButton('static_graph', false); activeToolboxButton('module_graph', false); activeToolboxButton('auto_sla_graph', false); + activeToolboxButton('donut_graph', false); activeToolboxButton('simple_value', false); activeToolboxButton('label', false); activeToolboxButton('icon', false); @@ -2348,6 +2369,17 @@ function createItem(type, values, id_data) { setEventsBar(id_data, values); break; + case 'donut_graph': + var sizeStyle = ''; + var imageSize = ''; + item = $('
    ' + + '
    ' + + '' + + '
    ' + ); + + setDonutsGraph(id_data, values); + break; case 'percentile_bar': case 'percentile_item': var sizeStyle = ''; @@ -2679,6 +2711,7 @@ function updateDB_visual(type, idElement , values, event, top, left) { case 'icon': case 'module_graph': case 'auto_sla_graph': + case 'donut_graph': if (type == 'simple_value') { setModuleValue(idElement, values.process_simple_value, @@ -3093,6 +3126,15 @@ function eventsItems(drag) { activeToolboxButton('delete_item', true); activeToolboxButton('show_grid', false); } + if ($(divParent).hasClass('donut_graph')) { + creationItem = null; + selectedItem = 'donut_graph'; + idItem = $(divParent).attr('id'); + activeToolboxButton('copy_item', true); + activeToolboxButton('edit_item', true); + activeToolboxButton('delete_item', true); + activeToolboxButton('show_grid', false); + } if ($(divParent).hasClass('group_item')) { creationItem = null; selectedItem = 'group_item'; @@ -3293,6 +3335,9 @@ function eventsItems(drag) { if ($(event.target).hasClass('auto_sla_graph')) { selectedItem = 'auto_sla_graph'; } + if ($(event.target).hasClass('donut_graph')) { + selectedItem = 'donut_graph'; + } if ($(event.target).hasClass('group_item')) { selectedItem = 'group_item'; } @@ -3617,6 +3662,10 @@ function click_button_toolbox(id) { toolbuttonActive = creationItem = 'auto_sla_graph'; toggle_item_palette(); break; + case 'donut_graph': + toolbuttonActive = creationItem = 'donut_graph'; + toggle_item_palette(); + break; case 'simple_value': toolbuttonActive = creationItem = 'simple_value'; toggle_item_palette(); @@ -3674,6 +3723,7 @@ function click_button_toolbox(id) { activeToolboxButton('service', false); activeToolboxButton('group_item', false); activeToolboxButton('auto_sla_graph', false); + activeToolboxButton('donut_graph', false); activeToolboxButton('copy_item', false); activeToolboxButton('edit_item', false); activeToolboxButton('delete_item', false); @@ -3704,6 +3754,7 @@ function click_button_toolbox(id) { activeToolboxButton('icon', true); activeToolboxButton('group_item', true); activeToolboxButton('auto_sla_graph', true); + activeToolboxButton('donut_graph', true); } break; case 'save_visualmap': diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php index f039a90504..8d0facabee 100644 --- a/pandora_console/include/constants.php +++ b/pandora_console/include/constants.php @@ -197,6 +197,7 @@ define('SERVICE', 10); //Enterprise Item. define('GROUP_ITEM', 11); define('BOX_ITEM', 12); define('LINE_ITEM', 13); +define('DONUT_GRAPH', 17); //Some styles define('MIN_WIDTH', 300); define('MIN_HEIGHT', 120); diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index 54db2d8008..ec9e06c9e8 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -54,6 +54,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { 'static_graph' => __('Static Graph'), 'percentile_item' => __('Percentile Item'), 'module_graph' => __('Graph'), + 'donut_graph' => __('Donut graph'), 'auto_sla_graph' => __('Auto SLA Graph'), 'simple_value' => __('Simple value') . ui_print_help_tip(__("To use 'label'field, you should write a text to replace '(_VALUE_)' and the value of the module will be printed at the end."), true), @@ -277,7 +278,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['agent_row'] = array(); $form_items['agent_row']['items'] = array('static_graph', 'percentile_bar', 'percentile_item', 'module_graph', - 'simple_value', 'datos', 'auto_sla_graph'); + 'simple_value', 'datos', 'auto_sla_graph', 'donut_graph'); $form_items['agent_row']['html'] = '' . __('Agent') . ''; $params = array(); @@ -310,7 +311,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['module_row'] = array(); $form_items['module_row']['items'] = array('static_graph', 'percentile_bar', 'percentile_item', 'module_graph', - 'simple_value', 'datos', 'auto_sla_graph'); + 'simple_value', 'datos', 'auto_sla_graph', 'donut_graph'); $form_items['module_row']['html'] = '' . __('Module') . ' ' . @@ -446,12 +447,6 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { html_print_radio_button_extended('value_show', 'value', ('Value'), 'value', false, '', '', true) . ''; } - - - $form_items['period_row'] = array(); - $form_items['period_row']['items'] = array('module_graph', 'simple_value', 'datos'); - $form_items['period_row']['html'] = '' . __('Period') . ' - ' . html_print_extended_select_for_time ('period', SECONDS_5MINUTES, '', '', '', false, true) . ''; $form_items['show_statistics_row'] = array(); $form_items['show_statistics_row']['items'] = array('group_item'); @@ -530,7 +525,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items_advance['size_row']['items'] = array( 'group_item', 'background', 'static_graph', 'icon datos', - 'auto_sla_graph'); + 'auto_sla_graph', 'donut_graph'); $form_items_advance['size_row']['html'] = '' . __('Size') . ui_print_help_tip ( @@ -674,6 +669,7 @@ function visual_map_editor_print_toolbox() { visual_map_print_button_editor('static_graph', __('Static Graph'), 'left', false, 'camera_min', true); visual_map_print_button_editor('percentile_item', __('Percentile Item'), 'left', false, 'percentile_item_min', true); visual_map_print_button_editor('module_graph', __('Module Graph'), 'left', false, 'graph_min', true); + visual_map_print_button_editor('donut_graph', __('Donut Graph'), 'left', false, 'donut_graph_min', true); visual_map_print_button_editor('auto_sla_graph', __('Auto SLA Graph'), 'left', false, 'auto_sla_graph_min', true); visual_map_print_button_editor('simple_value', __('Simple Value'), 'left', false, 'binary_min', true); visual_map_print_button_editor('label', __('Label'), 'left', false, 'label_min', true); From d18dded93aec519e15645ff959510ac5ad2fc896 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Tue, 17 Oct 2017 10:54:08 +0200 Subject: [PATCH 056/311] Added a lot of code to add donut graph to visual console. Print donut in progress. --- .../visual_console_builder.editor.js | 60 ++++++++++++++---- .../ajax/visual_console_builder.ajax.php | 46 ++++++++++++++ .../include/functions_visual_map.php | 63 +++++++++++++++++++ .../include/graphs/functions_d3.php | 28 +++++++++ pandora_console/include/graphs/pandora.d3.js | 47 ++++++++++++++ 5 files changed, 231 insertions(+), 13 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 1e40c44279..0825a97eb8 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -448,13 +448,6 @@ function update_button_palette_callback() { setDonutsGraph(idItem, values); break; case 'simple_value': - //checkpoint - // if(($('#text-label_ifr').contents().find('#tinymce p').html() == '_VALUE_' || - // $('#text-label_ifr').contents().find('#tinymce').html() == '_VALUE_') - // && $('#data_image_check').html() != 'On'){ - // alert('_VALUE_ exactly value is only enable for data image. Please change label text or select a data image module.'); - // return; - // } $("#" + idItem).html(values['label']); if( (values['label'].replace( /<.*?>/g, '' ) != '_VALUE_') && (values['label'].replace( /<.*?>/g, '' ) != '(_VALUE_)') ){ @@ -469,12 +462,7 @@ function update_button_palette_callback() { $("#" + idItem).html( '
    '+values["label"]+'
    ' ) - } - - - //$("#simplevalue_" + idItem) - //.html($('').attr('src', "images/spinner.gif")); setModuleValue(idItem,values['process_simple_value'], values['period'],values['width']); break; case 'label': @@ -2011,6 +1999,53 @@ function setEventsBar(id_data, values) { }); } +function setDonutsGraph (id_data, values) { + var url_hack_metaconsole = ''; + if (is_metaconsole()) { + url_hack_metaconsole = '../../'; + } + + parameter = Array(); + + parameter.push ({name: "page", value: "include/ajax/visual_console_builder.ajax"}); + parameter.push ({name: "action", value: "get_module_type_string"}); + parameter.push ({name: "id_agent", value: values['id_agent']}); + parameter.push ({name: "id_agent_module", value: values['module']}); + if (is_metaconsole()) { + parameter.push ({name: "id_metaconsole", value: id_metaconsole}); + } + parameter.push ({name: "id_visual_console", value: id_visual_console}); + jQuery.ajax({ + url: get_url_ajax(), + data: parameter, + type: "POST", + dataType: 'json', + success: function (data) { + if (data['no_data'] == true) { + if (values['width'] == "0" || values['height'] == "0") { + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); + } + else { + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); + $("#" + id_data + " img").css('width', values['width'] + 'px'); + $("#" + id_data + " img").css('height', values['height'] + 'px'); + } + } + else { + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); + + if($('#text-width').val() == 0 || $('#text-height').val() == 0){ + // Image size + } + else{ + $("#" + id_data + " img").css('width', $('#text-width').val()+'px'); + $("#" + id_data + " img").css('height', $('#text-height').val()+'px'); + } + } + } + }); +} + function setPercentileBubble(id_data, values) { metaconsole = $("input[name='metaconsole']").val(); @@ -2373,7 +2408,6 @@ function createItem(type, values, id_data) { var sizeStyle = ''; var imageSize = ''; item = $('
    ' + - '
    ' + '' + '
    ' ); diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index e854a31c49..bab30d680c 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -141,6 +141,36 @@ switch ($action) { echo json_encode($return); break; + case 'get_module_type_string': + $data = array (); + + if (!empty($id_metaconsole)) { + $connection = db_get_row_filter ('tmetaconsole_setup', $id_metaconsole); + if (metaconsole_load_external_db($connection) != NOERR) { + continue; + } + } + + $is_string = db_get_value_filter ('id_tipo_modulo', 'tagente_modulo', + array ('id_agente' => $id_agent, + 'id_agente_modulo' => $id_module)); + + if (!empty($id_metaconsole)) { + metaconsole_restore_db(); + } + + $return = array(); + if (($is_string == 17) || ($is_string == 23) || ($is_string == 3) || + ($is_string == 10) || ($is_string == 33)) { + $return['no_data'] = false; + } + else { + $return['no_data'] = true; + } + + echo json_encode($return); + break; + case 'get_module_events': $data = array (); @@ -465,6 +495,7 @@ switch ($action) { case 'label': case 'icon': case 'auto_sla_graph': + case 'donut_graph': default: if ($type == 'label') { $values['type'] = LABEL; @@ -551,6 +582,15 @@ switch ($action) { $values['height'] = $height; } break; + case 'donut_graph': + $values['type'] = DONUT_GRAPH; + if ($width !== null) { + $values['width'] = $width; + } + if ($height !== null) { + $values['height'] = $height; + } + break; case 'box_item': $values['border_width'] = $border_width; $values['border_color'] = $border_color; @@ -711,6 +751,7 @@ switch ($action) { case 'label': case 'icon': case 'auto_sla_graph': + case 'donut_graph': $elementFields = db_get_row_filter('tlayout_data', array('id' => $id_element)); @@ -929,6 +970,11 @@ switch ($action) { $values['width'] = $width; $values['height'] = $height; break; + case 'donut_graph': + $values['type'] = DONUT_GRAPH; + $values['width'] = $width; + $values['height'] = $height; + break; case 'percentile_item': case 'percentile_bar': if ($type_percentile == 'percentile') { diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index b06a0c6d5c..54cff753c3 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -379,6 +379,9 @@ function visual_map_print_item($mode = "read", $layoutData, case AUTO_SLA_GRAPH: $link = true; break; + case DONUT_GRAPH: + $link = true; + break; default: if (!empty($element_enterprise)) { $link = $element_enterprise['link']; @@ -487,6 +490,18 @@ function visual_map_print_item($mode = "read", $layoutData, "&date_to=" . $date_to . "&time_to=" . $time_to . "&status=-1"; } break; + + case DONUT_GRAPH: + if (empty($layout_data['id_metaconsole'])) { + $url = $config['homeurl'] . "index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=" . $layoutData['id_agent'] . + "&tab=module&edit_module=1&id_agent_module=" . $layoutData['id_agente_modulo']; + } + else { + $url = "index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=" . $layoutData['id_agent'] . + "&tab=module&edit_module=1&id_agent_module=" . $layoutData['id_agente_modulo']; + } + break; + case GROUP_ITEM: $is_a_link_to_other_visualconsole = false; if ($layoutData['id_layout_linked'] != 0) { @@ -1121,6 +1136,44 @@ function visual_map_print_item($mode = "read", $layoutData, metaconsole_restore_db(); } + $z_index = 2 + 1; + break; + + case DONUT_GRAPH: + $donut_data = get_donut_module_data($layoutData['id_agent'], $layoutData['id_agente_modulo']); + + if ((get_parameter('action') == 'edit') || (get_parameter('operation') == 'edit_visualmap')) { + if($width == 0 || $height == 0){ + if ($layoutData['id_metaconsole'] != 0) { + $img = ''; + } + else{ + $img = ''; + } + } + else{ + if ($layoutData['id_metaconsole'] != 0) { + $img = ''; + } + else{ + $img = ''; + } + } + } + else { + if ($width == 0 || $height == 0) { + $img = d3_donut_graph ($layoutData['id'], 200, 400, $donut_data); + } + else{ + $img = d3_donut_graph ($layoutData['id'], $width, $height, $donut_data); + } + } + + //Restore db connection + if ($layoutData['id_metaconsole'] != 0) { + metaconsole_restore_db(); + } + $z_index = 2 + 1; break; } @@ -1133,6 +1186,9 @@ function visual_map_print_item($mode = "read", $layoutData, case AUTO_SLA_GRAPH: $class .= "auto_sla_graph"; break; + case DONUT_GRAPH: + $class .= "donut_graph"; + break; case GROUP_ITEM: $class .= "group_item"; break; @@ -1575,6 +1631,9 @@ function visual_map_print_item($mode = "read", $layoutData, echo io_safe_output($text); } break; + case DONUT_GRAPH: + echo $img; + break; case SIMPLE_VALUE: case SIMPLE_VALUE_MAX: case SIMPLE_VALUE_MIN: @@ -1726,6 +1785,10 @@ function visual_map_print_item($mode = "read", $layoutData, } } +function get_donut_module_data ($id_agent, $id_module) { + +} + /** * The function to get simple value type from the value of process type in the form * diff --git a/pandora_console/include/graphs/functions_d3.php b/pandora_console/include/graphs/functions_d3.php index f181492b7a..3106358217 100644 --- a/pandora_console/include/graphs/functions_d3.php +++ b/pandora_console/include/graphs/functions_d3.php @@ -309,4 +309,32 @@ function ux_console_phases_donut ($phases, $id, $return = false) { return $output; } + +function d3_donut_graph ($id, $width, $height, $module_data) { + global $config; + + $module_data = json_encode($module_data); + + $recipient_name = "donut_graph_" . $id; + $recipient_name_to_js = "#donut_graph_" . $id; + + $output = "
    "; + $output .= include_javascript_d3(true); + $output .= ""; + + $output .= ""; + + if (!$return) + echo $output; + + return $output; +} + ?> diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index 95a914104f..bf2d10b886 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1492,4 +1492,51 @@ function print_phases_donut (recipient, phases) { polyline.exit() .remove(); } +} + +function print_donut_graph (recipient, width, height, module_data) { + var svg = d3.select(recipient) + .append("svg") + .attr("width", width) + .attr("height", height) + .append("g"); + + var radius = Math.min(width, height) / 2; + + var pie = d3.layout.pie() + .sort(null) + .value(function(d) { + return parseFloat(d.label2); + }); + + svg.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); + + /* ------- PIE SLICES -------*/ + var slice = svg.select(".slices").selectAll("path.slice") + .data(module_data); + + slice.enter() + .insert("path") + .style("fill", function(d) { + if (d.data.value == 0) { + return "#80BA27"; + } + else { + return "#FC4444"; + } + }) + .attr("class", "slice"); + + slice.transition() + .duration(0) + .attrTween("d", function(d) { + this._current = this._current || d; + var interpolate = d3.interpolate(this._current, d); + this._current = interpolate(0); + return function(t) { + return arc(interpolate(t)); + }; + }); + + slice.exit().remove(); } \ No newline at end of file From 3a80eeeefc4e2a9e89d72b35ea97faa11e23bd0e Mon Sep 17 00:00:00 2001 From: enriquecd Date: Tue, 17 Oct 2017 11:30:52 +0200 Subject: [PATCH 057/311] Not show error when only update custom fields in agents - #1458 --- .../godmode/agentes/configurar_agente.php | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index e2a264e6e0..dcf43b0617 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -228,7 +228,7 @@ if ($create_agent) { if ($id_agente !== false) { // Create custom fields for this agent foreach ($field_values as $key => $value) { - db_process_sql_insert ('tagent_custom_data', + $update_custom = db_process_sql_insert ('tagent_custom_data', array('id_field' => $key, 'id_agent' => $id_agente, 'description' => $value)); } @@ -730,13 +730,17 @@ if ($update_agent) { // if modified some agent paramenter if ($old_value === false) { // Create custom field if not exist - db_process_sql_insert ('tagent_custom_data', + $update_custom = db_process_sql_insert ('tagent_custom_data', array('id_field' => $key,'id_agent' => $id_agente, 'description' => $value)); } else { - db_process_sql_update ('tagent_custom_data', + $update_custom = db_process_sql_update ('tagent_custom_data', array('description' => $value), array('id_field' => $key,'id_agent' => $id_agente)); + + if($update_custom == 1){ + $update_custom_result = 1; + } } } @@ -793,7 +797,9 @@ if ($update_agent) { // if modified some agent paramenter WHERE id_group = ".$group_old); $result = db_process_sql_update ('tagente', $values, array ('id_agente' => $id_agente)); - if ($result == false) { + + + if ($result == false && $update_custom_result == false) { ui_print_error_message( __('There was a problem updating the agent')); } From d35b420c36c185777233f57bd3cab5a474acdcb1 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Tue, 17 Oct 2017 12:09:55 +0200 Subject: [PATCH 058/311] Init d3 donut function --- .../include/functions_visual_map.php | 25 ++++++++++++++++--- .../include/graphs/functions_d3.php | 3 --- pandora_console/include/graphs/pandora.d3.js | 4 ++- 3 files changed, 24 insertions(+), 8 deletions(-) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 54cff753c3..42d98f41ab 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -31,6 +31,7 @@ require_once ($config['homedir'].'/include/functions_agents.php'); require_once ($config['homedir'].'/include/functions_modules.php'); require_once ($config['homedir'].'/include/functions_users.php'); require_once ($config['homedir'].'/include/functions.php'); +require_once ($config['homedir'].'/include/graphs/functions_d3.php'); function visual_map_print_item_toolbox($idDiv, $text, $float) { if ($float == 'left') { @@ -1140,7 +1141,7 @@ function visual_map_print_item($mode = "read", $layoutData, break; case DONUT_GRAPH: - $donut_data = get_donut_module_data($layoutData['id_agent'], $layoutData['id_agente_modulo']); + $donut_data = get_donut_module_data($layoutData['id_agente_modulo']); if ((get_parameter('action') == 'edit') || (get_parameter('operation') == 'edit_visualmap')) { if($width == 0 || $height == 0){ @@ -1168,7 +1169,7 @@ function visual_map_print_item($mode = "read", $layoutData, $img = d3_donut_graph ($layoutData['id'], $width, $height, $donut_data); } } - + //Restore db connection if ($layoutData['id_metaconsole'] != 0) { metaconsole_restore_db(); @@ -1632,6 +1633,7 @@ function visual_map_print_item($mode = "read", $layoutData, } break; case DONUT_GRAPH: + html_debug($img, true); echo $img; break; case SIMPLE_VALUE: @@ -1785,8 +1787,23 @@ function visual_map_print_item($mode = "read", $layoutData, } } -function get_donut_module_data ($id_agent, $id_module) { - +function get_donut_module_data ($id_module) { + $mod_values = db_get_value_filter('datos', 'tagente_estado', array('id_agente_modulo' => $id_module)); + + $values = explode(";", $mod_values); + + $values_to_return = array(); + $index = 0; + $total = 0; + foreach ($values as $val) { + $data = explode(":", $val); + $values_to_return[$index]['tag'] = $data[0]; + $values_to_return[$index]['value'] = $data[1]; + $index++; + } + $values_to_return['total'] = count($values_to_return); + + return $values_to_return; } /** diff --git a/pandora_console/include/graphs/functions_d3.php b/pandora_console/include/graphs/functions_d3.php index 3106358217..57414af522 100644 --- a/pandora_console/include/graphs/functions_d3.php +++ b/pandora_console/include/graphs/functions_d3.php @@ -331,9 +331,6 @@ function d3_donut_graph ($id, $width, $height, $module_data) { print_donut_graph('" . $recipient_name_to_js . "', " . $width . ", " . $height . ", " . $module_data . "); "; - if (!$return) - echo $output; - return $output; } diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index bf2d10b886..921b64b5eb 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1495,6 +1495,8 @@ function print_phases_donut (recipient, phases) { } function print_donut_graph (recipient, width, height, module_data) { + console.log(module_data); + var svg = d3.select(recipient) .append("svg") .attr("width", width) @@ -1511,7 +1513,6 @@ function print_donut_graph (recipient, width, height, module_data) { svg.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); - /* ------- PIE SLICES -------*/ var slice = svg.select(".slices").selectAll("path.slice") .data(module_data); @@ -1539,4 +1540,5 @@ function print_donut_graph (recipient, width, height, module_data) { }); slice.exit().remove(); + } \ No newline at end of file From 323bd7cac9e4dad2d67f669bc8b65af0ff271c21 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 17 Oct 2017 15:12:16 +0200 Subject: [PATCH 059/311] Changed convert_urls in tinymce --- .../godmode/reporting/visual_console_builder.editor.php | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.php b/pandora_console/godmode/reporting/visual_console_builder.editor.php index 28307766fd..7ead92f83e 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.php +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.php @@ -180,6 +180,7 @@ ui_require_javascript_file ('encode_decode_base64'); tinyMCE.init({ mode : "exact", elements: "text-label", + convert_urls: false, theme : "advanced", Date: Tue, 17 Oct 2017 16:50:00 +0200 Subject: [PATCH 060/311] Added donut to visual console view --- .../include/functions_visual_map.php | 38 ++++++-- .../include/graphs/functions_d3.php | 2 +- pandora_console/include/graphs/pandora.d3.js | 88 +++++++++++++------ 3 files changed, 91 insertions(+), 37 deletions(-) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 42d98f41ab..98a36fface 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1163,7 +1163,7 @@ function visual_map_print_item($mode = "read", $layoutData, } else { if ($width == 0 || $height == 0) { - $img = d3_donut_graph ($layoutData['id'], 200, 400, $donut_data); + $img = d3_donut_graph ($layoutData['id'], 200, 300, $donut_data); } else{ $img = d3_donut_graph ($layoutData['id'], $width, $height, $donut_data); @@ -1633,7 +1633,6 @@ function visual_map_print_item($mode = "read", $layoutData, } break; case DONUT_GRAPH: - html_debug($img, true); echo $img; break; case SIMPLE_VALUE: @@ -1792,16 +1791,41 @@ function get_donut_module_data ($id_module) { $values = explode(";", $mod_values); + $colors = array(); + $colors[] = "#aa3333"; + $colors[] = "#045FB4"; + $colors[] = "#8181F7"; + $colors[] = "#F78181"; + $colors[] = "#D0A9F5"; + $colors[] = "#BDBDBD"; + $colors[] = "#6AB277"; + $values_to_return = array(); $index = 0; $total = 0; + $max_elements = 6; + foreach ($values as $val) { - $data = explode(":", $val); - $values_to_return[$index]['tag'] = $data[0]; - $values_to_return[$index]['value'] = $data[1]; - $index++; + if ($index < $max_elements) { + $data = explode(":", $val); + $values_to_return[$index]['tag_name'] = $data[0]; + $values_to_return[$index]['color'] = $colors[$index]; + $values_to_return[$index]['value'] = (int)$data[1]; + $total += (int)$data[1]; + $index++; + } + else { + $data = explode(":", $val); + $values_to_return[$index]['tag_name'] = __('Others'); + $values_to_return[$index]['color'] = $colors[$index]; + $values_to_return[$index]['value'] += (int)$data[1]; + $total += (int)$data[1]; + } + } + + foreach ($values_to_return as $ind => $donut_data) { + $values_to_return[$ind]['percent'] = ($donut_data['value'] * 100) / $total; } - $values_to_return['total'] = count($values_to_return); return $values_to_return; } diff --git a/pandora_console/include/graphs/functions_d3.php b/pandora_console/include/graphs/functions_d3.php index 57414af522..0e1a95f5f4 100644 --- a/pandora_console/include/graphs/functions_d3.php +++ b/pandora_console/include/graphs/functions_d3.php @@ -326,7 +326,7 @@ function d3_donut_graph ($id, $width, $height, $module_data) { fill-rule: evenodd; } "; - + $output .= ""; diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index 921b64b5eb..ba0216d53b 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1495,50 +1495,80 @@ function print_phases_donut (recipient, phases) { } function print_donut_graph (recipient, width, height, module_data) { - console.log(module_data); - var svg = d3.select(recipient) .append("svg") .attr("width", width) .attr("height", height) .append("g"); - var radius = Math.min(width, height) / 2; + svg.append("g") + .attr("class", "slices"); + + var radius = 100; + + var arc = d3.svg.arc() + .outerRadius(radius * 0.8) + .innerRadius(radius * 0.4); + + var key = function(d){ return d.data.label; }; var pie = d3.layout.pie() .sort(null) .value(function(d) { - return parseFloat(d.label2); + return parseFloat(d.percent); }); - svg.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")"); + var increment_y = 0; + jQuery.each(module_data, function (key, m_d) { + svg.append("g") + .append("text") + .append("tspan") + .attr("dy", increment_y + ".8em") + .attr("dx", ".1em") + .text(m_d.tag_name + ", ") + .style("font-family", "Verdana") + .style("font-size", "15px") + .append("tspan") + .attr("dx", ".2em") + .text(m_d.value) + .style("font-family", "Verdana") + .style("font-size", "15px"); + + increment_y += 1; + }); - var slice = svg.select(".slices").selectAll("path.slice") - .data(module_data); + function donutData (){ + return module_data.map(function(m_data){ + return { label: m_data.tag_name, value: m_data.value , percent: m_data.percent, color : m_data.color} + }); + } - slice.enter() - .insert("path") - .style("fill", function(d) { - if (d.data.value == 0) { - return "#80BA27"; - } - else { - return "#FC4444"; - } - }) - .attr("class", "slice"); + print_phases(donutData()); - slice.transition() - .duration(0) - .attrTween("d", function(d) { - this._current = this._current || d; - var interpolate = d3.interpolate(this._current, d); - this._current = interpolate(0); - return function(t) { - return arc(interpolate(t)); - }; - }); + function print_phases(data) { + var slice = svg.select(".slices").selectAll("path.slice") + .data(pie(data), key); - slice.exit().remove(); + slice.enter() + .insert("path") + .style("fill", function(d) { + console.log(d); + return d.data.color; + }) + .attr("class", "slice") + .attr("transform", "translate(" + width / 2 + "," + (height - radius) + ")"); + slice.transition() + .duration(0) + .attrTween("d", function(d) { + this._current = this._current || d; + var interpolate = d3.interpolate(this._current, d); + this._current = interpolate(0); + return function(t) { + return arc(interpolate(t)); + }; + }); + + slice.exit().remove(); + } } \ No newline at end of file From 74308ae42b1f729c156396702c22a1a6e5c4a25c Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 17 Oct 2017 16:58:05 +0200 Subject: [PATCH 061/311] Created Safe operation mode --- pandora_console/extras/mr/9.sql | 5 + .../pandoradb_migrate_6.0_to_7.0.mysql.sql | 1 + .../godmode/agentes/agent_manager.php | 120 ++++++++++++------ .../godmode/agentes/configurar_agente.php | 12 +- pandora_console/pandoradb.sql | 1 + 5 files changed, 94 insertions(+), 45 deletions(-) create mode 100644 pandora_console/extras/mr/9.sql diff --git a/pandora_console/extras/mr/9.sql b/pandora_console/extras/mr/9.sql new file mode 100644 index 0000000000..055b7b36b3 --- /dev/null +++ b/pandora_console/extras/mr/9.sql @@ -0,0 +1,5 @@ +START TRANSACTION; + +ALTER TABLE tagente ADD COLUMN `safe_mode_module` int(10) unsigned NOT NULL default '0'; + +COMMIT; \ No newline at end of file diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 4e31057a89..190dfd1b7d 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -1218,6 +1218,7 @@ ALTER TABLE tagente ADD `remote` tinyint(1) NOT NULL default 0; ALTER TABLE tagente ADD COLUMN `cascade_protection_module` int(10) unsigned NOT NULL default '0'; ALTER TABLE tagente ADD COLUMN (alias varchar(600) not null default ''); ALTER TABLE tagente ADD `alias_as_name` int(2) unsigned default '0'; +ALTER TABLE tagente ADD COLUMN `safe_mode_module` int(10) unsigned NOT NULL default '0'; UPDATE tagente SET tagente.alias = tagente.nombre; -- --------------------------------------------------------------------- diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index efee6dc435..42e71093ab 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -252,25 +252,6 @@ foreach ($modules as $m) { $modules_values[$m['id_module']] = $m['name']; } -$table->data[3][0] = __('Parent'); -$params = array(); -$params['return'] = true; -$params['show_helptip'] = true; -$params['input_name'] = 'id_parent'; -$params['print_hidden_input_idagent'] = true; -$params['hidden_input_idagent_name'] = 'id_agent_parent'; -$params['hidden_input_idagent_value'] = $id_parent; -$params['value'] = db_get_value ("alias","tagente","id_agente",$id_parent); -$params['selectbox_id'] = 'cascade_protection_module'; -$params['javascript_is_function_select'] = true; -$params['cascade_protection'] = true; - -$table->data[3][1] = ui_print_agent_autocomplete_input($params); - -$table->data[3][1] .= html_print_checkbox ("cascade_protection", 1, $cascade_protection, true).__('Cascade protection'). " " . ui_print_help_icon("cascade_protection", true); - -$table->data[3][1] .= "  " . __('Module') . " " . html_print_select ($modules_values, "cascade_protection_module", $cascade_protection_module, "", "", 0, true); - $table->data[4][0] = __('Group'); $table->data[4][1] = html_print_select_groups(false, "AR", false, 'grupo', $grupo, '', '', 0, true); $table->data[4][1] .= ' '; @@ -320,52 +301,87 @@ $table->class = "databox filters"; $table->head = array (); $table->style = array (); $table->style[0] = 'font-weight: bold; '; -$table->style[2] = 'font-weight: bold;'; +$table->style[4] = 'font-weight: bold;'; $table->data = array (); // Custom ID $table->data[0][0] = __('Custom ID'); $table->data[0][1] = html_print_input_text ('custom_id', $custom_id, '', 16, 255, true); +$table->data[1][0] = __('Parent'); +$params = array(); +$params['return'] = true; +$params['show_helptip'] = true; +$params['input_name'] = 'id_parent'; +$params['print_hidden_input_idagent'] = true; +$params['hidden_input_idagent_name'] = 'id_agent_parent'; +$params['hidden_input_idagent_value'] = $id_parent; +$params['value'] = db_get_value ("alias","tagente","id_agente",$id_parent); +$params['selectbox_id'] = 'cascade_protection_module'; +$params['javascript_is_function_select'] = true; +$params['cascade_protection'] = true; + +$table->data[1][1] = ui_print_agent_autocomplete_input($params); +$table->data[1][1] .= html_print_checkbox ("cascade_protection", 1, $cascade_protection, true).__('Cascade protection'). " " . ui_print_help_icon("cascade_protection", true); +$table->data[1][1] .= "  " . __('Module') . " " . html_print_select ($modules_values, "cascade_protection_module", $cascade_protection_module, "", "", 0, true); + +//safe operation mode +if($id_agente){ + $sql_modules = db_get_all_rows_sql("SELECT id_agente_modulo as id_module, nombre as name FROM tagente_modulo + WHERE id_agente = " . $id_agente); + $safe_mode_modules = array(); + $safe_mode_modules[0] = __('Any'); + foreach ($sql_modules as $m) { + $safe_mode_modules[$m['id_module']] = $m['name']; + } + + $table->data[2][0] = __('Safe operation mode') + . ui_print_help_tip(__('This mode allow Pandora FMS to disable all modules + of this agent while the selected module is on CRITICAL status'), true); + $table->data[2][1] = html_print_checkbox('safe_mode', 1, $safe_mode, true); + $table->data[2][1] .= "  " . __('Module') . " " . html_print_select ($safe_mode_modules, "safe_mode_module", $safe_mode_module, "", "", 0, true); +} + + // Learn mode / Normal mode -$table->data[1][0] = __('Module definition') . +$table->data[3][0] = __('Module definition') . ui_print_help_icon("module_definition", true); -$table->data[1][1] = __('Learning mode') . ' ' . +$table->data[3][1] = __('Learning mode') . ' ' . html_print_radio_button_extended ("modo", 1, '', $modo, false, 'show_modules_not_learning_mode_context_help();', 'style="margin-right: 40px;"', true); -$table->data[1][1] .= __('Normal mode') . ' ' . +$table->data[3][1] .= __('Normal mode') . ' ' . html_print_radio_button_extended ("modo", 0, '', $modo, false, 'show_modules_not_learning_mode_context_help();', 'style="margin-right: 40px;"', true); -$table->data[1][1] .= __('Autodisable mode') . ' ' . +$table->data[3][1] .= __('Autodisable mode') . ' ' . html_print_radio_button_extended ("modo", 2, '', $modo, false, 'show_modules_not_learning_mode_context_help();', 'style="margin-right: 40px;"', true); // Status (Disabled / Enabled) -$table->data[2][0] = __('Status'); -$table->data[2][1] = __('Disabled') . ' ' . +$table->data[4][0] = __('Status'); +$table->data[4][1] = __('Disabled') . ' ' . html_print_radio_button_extended ("disabled", 1, '', $disabled, false, '', 'style="margin-right: 40px;"', true); -$table->data[2][1] .= __('Active') . ' ' . +$table->data[4][1] .= __('Active') . ' ' . html_print_radio_button_extended ("disabled", 0, '', $disabled, false, '', 'style="margin-right: 40px;"', true); // Remote configuration -$table->data[3][0] = __('Remote configuration'); +$table->data[5][0] = __('Remote configuration'); if (!$new_agent) { - $table->data[3][1] = '' . __('Not available') . ''; + $table->data[5][1] = '' . __('Not available') . ''; if (isset($filename)) { if (file_exists ($filename['md5'])) { - $table->data[3][1] = date ("F d Y H:i:s", fileatime ($filename['md5'])); + $table->data[5][1] = date ("F d Y H:i:s", fileatime ($filename['md5'])); // Delete remote configuration - $table->data[3][1] .= ''; - $table->data[3][1] .= html_print_image( + $table->data[5][1] .= html_print_image( "images/cross.png", true, array ('title' => __('Delete remote configuration file'), 'style' => 'vertical-align: middle;')).''; - $table->data[3][1] .= '' . + $table->data[5][1] .= '' . ui_print_help_tip( __('Delete this conf file implies that for restore you must reactive remote config in the local agent.'), true); @@ -373,7 +389,7 @@ if (!$new_agent) { } } else - $table->data[3][1] = '' . __('Not available') . ''; + $table->data[5][1] = '' . __('Not available') . ''; $listIcons = gis_get_array_list_icons(); @@ -411,23 +427,23 @@ $table->data[0][3] = html_print_select($arraySelectIcon, "icon_path", array("id" => "icon_warning", "style" => "display:".$display_icons.";")); if ($config['activate_gis']) { - $table->data[1][2] = __('Ignore new GIS data:'); - $table->data[1][3] = __('Yes') . ' ' . + $table->data[3][2] = __('Ignore new GIS data:'); + $table->data[3][3] = __('Yes') . ' ' . html_print_radio_button_extended ("update_gis_data", 0, '', $update_gis_data, false, '', 'style="margin-right: 40px;"', true); - $table->data[1][3] .= __('No') . ' ' . + $table->data[3][3] .= __('No') . ' ' . html_print_radio_button_extended ("update_gis_data", 1, '', $update_gis_data, false, '', 'style="margin-right: 40px;"', true); } -$table->data[2][2] = __('Url address'); -$table->data[2][3] = html_print_input_text ('url_description', +$table->data[4][2] = __('Url address'); +$table->data[4][3] = html_print_input_text ('url_description', $url_description, '', 45, 255, true); -$table->data[3][2] = __('Quiet'); -$table->data[3][3] = ui_print_help_tip( +$table->data[5][2] = __('Quiet'); +$table->data[5][3] = ui_print_help_tip( __('The agent still runs but the alerts and events will be stop'), true); -$table->data[3][3] .= html_print_checkbox('quiet', 1, $quiet, true); +$table->data[5][3] .= html_print_checkbox('quiet', 1, $quiet, true); ui_toggle(html_print_table ($table, true), __('Advanced options')); unset($table); @@ -582,6 +598,26 @@ ui_require_jquery_file('bgiframe'); $("#cascade_protection_module").attr("disabled", 'disabled'); } }); + + var safe_mode_checked = $("#checkbox-safe_mode").is(":checked"); + if (safe_mode_checked) { + $("#safe_mode_module").removeAttr("disabled"); + } + else { + $("#safe_mode_module").attr("disabled", 'disabled'); + } + + $("#checkbox-safe_mode").change(function () { + var safe_mode_checked = $("#checkbox-safe_mode").is(":checked"); + + if (safe_mode_checked) { + $("#safe_mode_module").removeAttr("disabled"); + } + else { + $("#safe_mode_module").val(0); + $("#safe_mode_module").attr("disabled", 'disabled'); + } + }); paint_qrcode( " $update_gis_data, 'url_address' => $url_description, 'url_address' => $url_description, - 'quiet' => $quiet); + 'quiet' => $quiet, + 'safe_mode_module' => $safe_mode_module); if ($config['metaconsole_agent_cache'] == 1) { $values['update_module_count'] = 1; // Force an update of the agent cache. @@ -900,6 +904,8 @@ if ($id_agente) { $update_gis_data = $agent["update_gis_data"]; $url_description = $agent["url_address"]; $quiet = $agent["quiet"]; + $safe_mode_module = $agent["safe_mode_module"]; + $safe_mode = ($safe_mode_module) ? 1 : 0; } $update_module = (bool) get_parameter ('update_module'); diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 0d749db694..9df76cbd34 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -85,6 +85,7 @@ CREATE TABLE IF NOT EXISTS `tagente` ( `alias` varchar(600) BINARY NOT NULL default '', `transactional_agent` tinyint(1) NOT NULL default '0', `alias_as_name` tinyint(2) NOT NULL default '0', + `safe_mode_module` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id_agente`), KEY `nombre` (`nombre`(255)), KEY `direccion` (`direccion`), From 7786a6fbd5dc0f564c6f58e69c187cc9a26a6aa6 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Tue, 17 Oct 2017 17:03:05 +0200 Subject: [PATCH 062/311] Audit password changes in system audit log - #1329 --- pandora_console/godmode/users/configure_user.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 0f3ce0cb57..b40ee077ea 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -236,6 +236,8 @@ if ($create_user) { case "postgresql": $result = create_user($id, $password_new, $values); if ($result) { + db_process_sql_insert ('tsesion', array('id_sesion' => '','id_usuario' => $id,'ip_origen' => $_SERVER['REMOTE_ADDR'],'accion' => 'Password change', + 'descripcion' => 'Access password updated','fecha' => date("Y-m-d H:i:s"),'utimestamp' => time())); $res = save_pass_history($id, $password_new); } break; @@ -334,6 +336,8 @@ if ($update_user) { else { $res2 = update_user_password ($id, $password_new); if ($res2) { + db_process_sql_insert ('tsesion', array('id_sesion' => '','id_usuario' => $id,'ip_origen' => $_SERVER['REMOTE_ADDR'],'accion' => 'Password change', + 'descripcion' => 'Access password updated','fecha' => date("Y-m-d H:i:s"),'utimestamp' => time())); $res3 = save_pass_history($id, $password_new); } ui_print_result_message ($res1 || $res2, @@ -345,6 +349,8 @@ if ($update_user) { $res2 = update_user_password ($id, $password_new); if ($res2) { $res3 = save_pass_history($id, $password_new); + db_process_sql_insert ('tsesion', array('id_sesion' => '','id_usuario' => $id,'ip_origen' => $_SERVER['REMOTE_ADDR'],'accion' => 'Password change', + 'descripcion' => 'Access password updated','fecha' => date("Y-m-d H:i:s"),'utimestamp' => time())); } ui_print_result_message ($res1 || $res2, __('User info successfully updated'), From 405cf9e16c7b67285c6f7381b49e91402508117a Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 17 Oct 2017 17:05:31 +0200 Subject: [PATCH 063/311] Fixed issue --- pandora_console/godmode/agentes/configurar_agente.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index 9833285e32..39f3cbba5b 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -166,6 +166,8 @@ if ($create_agent) { $id_os = (int) get_parameter_post ("id_os"); $disabled = (int) get_parameter_post ("disabled"); $custom_id = (string) get_parameter_post ("custom_id",''); + $cascade_protection = (int) get_parameter_post ("cascade_protection", 0); + $cascade_protection_module = (int) get_parameter_post("cascade_protection_module", 0); $safe_mode = (int) get_parameter_post ("safe_mode", 0); $safe_mode_module = (int) get_parameter_post ("safe_mode_module", 0); $icon_path = (string) get_parameter_post ("icon_path",''); From eaf4bd6e8dc99819313dbd02d904ad31ae2d1c9d Mon Sep 17 00:00:00 2001 From: daniel Date: Tue, 17 Oct 2017 19:00:05 +0200 Subject: [PATCH 064/311] fixed error in pandora_agent collections --- pandora_agents/unix/pandora_agent | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 2ed8bb51e5..9268ac6ef5 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1244,7 +1244,11 @@ sub check_collections () { # Delete old collections if there are no broker agents if ($BrokerEnabled == 0) { - opendir (DIR, "$ConfDir/collections") || return; + if(!opendir (DIR, "$ConfDir/collections")){ + log_message ('Collection', "Could not open dir $ConfDir/collections"); + return; + } + while (defined (my $file_name = readdir(DIR))) { next if ($file_name eq '.' || $file_name eq '..'); @@ -1252,8 +1256,14 @@ sub check_collections () { $file_name =~ s/\.md5$//; if (! defined ($Collections{$file_name})) { - rmrf ("$ConfDir/collections/$file_name"); - unlink ("$ConfDir/collections/$file_name.md5"); + if(opendir (DIR_check, "$ConfDir/collections/$file_name")){ + closedir (DIR_check); + rmrf ("$ConfDir/collections/$file_name"); + unlink ("$ConfDir/collections/$file_name.md5"); + } + else { + log_message ('Collection', "Could not open dir $ConfDir/collections/$file_name"); + } } } closedir (DIR); @@ -1272,7 +1282,11 @@ sub check_collections () { # Get remote md5 error ("File '$Conf{'temporal'}/$collection_md5_file' already exists as a symlink and could not be removed: $!.") if (-l "$Conf{'temporal'}/$collection_md5_file" && !unlink("$Conf{'temporal'}/$collection_md5_file")); - next unless (recv_file ($collection_md5_file, $Conf{'server_path_md5'}) == 0); + if(recv_file ($collection_md5_file, $Conf{'server_path_md5'}) != 0){ + log_message ('Collection', "Could not write $collection_md5_file on " . $Conf{'server_path_md5'}); + next; + } + open (MD5_FILE, "< $Conf{'temporal'}/$collection_md5_file") || error ("Could not open file '$Conf{'temporal'}/$collection_md5_file' for reading: $!."); my $remote_collection_md5 = ; close (MD5_FILE); @@ -1284,13 +1298,20 @@ sub check_collections () { $local_collection_md5 = ; close MD5_FILE; } + else{ + log_message ('Collection', "Could not open dir $ConfDir/collections/$collection_md5_file"); + next; + } # Check for changes $local_collection_md5 = $remote_collection_md5 unless defined ($local_collection_md5); next if ($local_collection_md5 eq $remote_collection_md5); # Download and unzip - next unless (recv_file ($collection_file, $Conf{'server_path_zip'}) == 0); + if(recv_file ($collection_md5_file, $Conf{'server_path_md5'}) != 0){ + log_message ('Collection', "Could not write $collection_file on " . $Conf{'server_path_zip'}); + next; + } rmrf ("$ConfDir/collections/$collection"); `unzip -d "$ConfDir/collections/$collection" "$Conf{'temporal'}/$collection_file" 2>$DevNull`; unlink ("$Conf{'temporal'}/$collection_file"); From c30b05f40958f5f85877cc5f7c22193b4559e77c Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 18 Oct 2017 10:27:20 +0200 Subject: [PATCH 065/311] fixed error in event fields --- pandora_console/godmode/events/custom_events.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pandora_console/godmode/events/custom_events.php b/pandora_console/godmode/events/custom_events.php index 94e834bbf5..f60ba4e5a6 100644 --- a/pandora_console/godmode/events/custom_events.php +++ b/pandora_console/godmode/events/custom_events.php @@ -30,15 +30,15 @@ $default = (int) get_parameter('default', 0); if ($default != 0) { - $event_fields = io_safe_input('evento,id_agente,estado,timestamp'); - $fields_selected = explode (',', $event_fields); + //$event_fields = io_safe_input('evento,id_agente,estado,timestamp'); + $fields_selected = explode (',', $config['event_fields']); } else if ($update != '') { $fields_selected = (array)get_parameter('fields_selected'); if ($fields_selected[0] == '') { - $event_fields = io_safe_input('evento,id_agente,estado,timestamp'); - $fields_selected = explode (',', $event_fields); + //$event_fields = io_safe_input('evento,id_agente,estado,timestamp'); + $fields_selected = explode (',', $config['event_fields']); } else { $event_fields = implode (',', $fields_selected); @@ -130,7 +130,7 @@ $event = array(); echo '

    '.__('Show event fields'); echo ' '; -html_print_image ('images/clean.png', false, array ('title' => __('Load default event fields'), 'onclick' => "if (! confirm ('" . __('Default event fields will be loaded. Do you want to continue?') ."')) return false")); +html_print_image ('images/clean.png', false, array ('title' => __('Load the fields from previous events'), 'onclick' => "if (! confirm ('" . __('Event fields will be loaded. Do you want to continue?') ."')) return false")); echo '

    '; $table = new stdClass(); From 03f0c47bc2b15d0ea242d1dd8ec2c4e185379f48 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 18 Oct 2017 11:15:51 +0200 Subject: [PATCH 066/311] fixed icon with planned downtime --- .../godmode/agentes/modificar_agente.php | 15 ++++++---- .../operation/agentes/estado_agente.php | 22 ++++++++++++-- .../agentes/estado_generalagente.php | 7 ++++- .../operation/search_agents.getdata.php | 2 +- pandora_console/operation/search_agents.php | 30 ++++++++++++++----- 5 files changed, 58 insertions(+), 18 deletions(-) diff --git a/pandora_console/godmode/agentes/modificar_agente.php b/pandora_console/godmode/agentes/modificar_agente.php index 3c5406c46c..3dc4d7eed5 100644 --- a/pandora_console/godmode/agentes/modificar_agente.php +++ b/pandora_console/godmode/agentes/modificar_agente.php @@ -540,10 +540,6 @@ if ($agents !== false) { } echo ''; echo ""; - if ($agent['quiet']) { - html_print_image("images/dot_green.disabled.png", false, array("border" => '0', "title" => __('Quiet'), "alt" => "")); - echo " "; - } if (check_acl ($config["id_user"], $agent["id_grupo"], "AW")) { $main_tab = 'main'; @@ -562,8 +558,10 @@ if ($agents !== false) { ""; echo ""; - $in_planned_downtime = db_get_value_filter('id', 'tplanned_downtime_agents', array('id_agent' => $agent["id_agente"])); - + $in_planned_downtime = db_get_sql('SELECT executed FROM tplanned_downtime + INNER JOIN tplanned_downtime_agents ON tplanned_downtime.id = tplanned_downtime_agents.id_downtime + WHERE tplanned_downtime_agents.id_agent = '. $agent["id_agente"] . ' AND tplanned_downtime.executed = 1'); + if ($agent["disabled"]) { ui_print_help_tip(__('Disabled')); @@ -571,6 +569,11 @@ if ($agents !== false) { echo ""; } } + + if ($agent['quiet']) { + echo " "; + html_print_image("images/dot_green.disabled.png", false, array("border" => '0', "title" => __('Quiet'), "alt" => "")); + } if ($in_planned_downtime) { ui_print_help_tip (__('Agent in planned downtime'), false, 'images/minireloj-16.png'); diff --git a/pandora_console/operation/agentes/estado_agente.php b/pandora_console/operation/agentes/estado_agente.php index 151ae893ec..a458e308b3 100644 --- a/pandora_console/operation/agentes/estado_agente.php +++ b/pandora_console/operation/agentes/estado_agente.php @@ -597,22 +597,38 @@ foreach ($agents as $agent) { $agent["warning_count"], $agent["unknown_count"], $agent["total_count"], $agent["notinit_count"]); + $in_planned_downtime = db_get_sql('SELECT executed FROM tplanned_downtime + INNER JOIN tplanned_downtime_agents + ON tplanned_downtime.id = tplanned_downtime_agents.id_downtime + WHERE tplanned_downtime_agents.id_agent = '. $agent["id_agente"] . + ' AND tplanned_downtime.executed = 1'); + $data = array (); $data[0] = '
    '; $data[0] .= ''; - if ($agent['quiet']) { - $data[0] .= html_print_image("images/dot_green.disabled.png", true, array("border" => '0', "title" => __('Quiet'), "alt" => "")) . " "; - } $data[0] .= ' '.$agent["alias"].''; $data[0] .= ''; + + if ($agent['quiet']) { + $data[0] .= " "; + $data[0] .= html_print_image("images/dot_green.disabled.png", true, array("border" => '0', "title" => __('Quiet'), "alt" => "")); + } + + if ($in_planned_downtime) { + $data[0] .= ui_print_help_tip (__('Agent in planned downtime'), true, 'images/minireloj-16.png'); + $data[0] .= ""; + } + $data[0] .= '
    '; $data[1] = ui_print_truncate_text($agent["description"], 'description', false, true, true, '[…]', 'font-size: 6.5pt'); diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php index 80a891b38e..78f3dd06a4 100755 --- a/pandora_console/operation/agentes/estado_generalagente.php +++ b/pandora_console/operation/agentes/estado_generalagente.php @@ -74,7 +74,12 @@ $table_agent->data = array(); $data = array(); $agent_name = ui_print_agent_name($agent["id_agente"], true, 500, "font-size: medium;font-weight:bold", true); -$in_planned_downtime = db_get_value_filter('id', 'tplanned_downtime_agents', array('id_agent' => $agent["id_agente"])); +$in_planned_downtime = db_get_sql('SELECT executed FROM tplanned_downtime + INNER JOIN tplanned_downtime_agents + ON tplanned_downtime.id = tplanned_downtime_agents.id_downtime + WHERE tplanned_downtime_agents.id_agent = '. $agent["id_agente"] . + ' AND tplanned_downtime.executed = 1'); + if ($agent['disabled']) { if ($in_planned_downtime) { diff --git a/pandora_console/operation/search_agents.getdata.php b/pandora_console/operation/search_agents.getdata.php index d605cbaad8..60c7f87ad4 100644 --- a/pandora_console/operation/search_agents.getdata.php +++ b/pandora_console/operation/search_agents.getdata.php @@ -168,7 +168,7 @@ if ($searchAgents) { ) "; - $select = "SELECT t1.id_agente, t1.ultimo_contacto, t1.nombre, t1.id_os, t1.intervalo, t1.id_grupo, t1.disabled, t1.alias"; + $select = "SELECT t1.id_agente, t1.ultimo_contacto, t1.nombre, t1.id_os, t1.intervalo, t1.id_grupo, t1.disabled, t1.alias, t1.quiet"; if ($only_count) { $limit = " ORDER BY " . $order['field'] . " " . $order['order'] . " LIMIT " . $config["block_size"] . " OFFSET 0"; diff --git a/pandora_console/operation/search_agents.php b/pandora_console/operation/search_agents.php index 5720730787..3282deaa70 100755 --- a/pandora_console/operation/search_agents.php +++ b/pandora_console/operation/search_agents.php @@ -70,13 +70,13 @@ else { $table->align = array (); $table->align[0] = "left"; - $table->align[1] = "center"; - $table->align[2] = "center"; - $table->align[3] = "center"; - $table->align[4] = "center"; - $table->align[5] = "center"; - $table->align[6] = "center"; - $table->align[7] = "right"; + $table->align[1] = "left"; + $table->align[2] = "left"; + $table->align[3] = "left"; + $table->align[4] = "left"; + $table->align[5] = "left"; + $table->align[6] = "left"; + $table->align[7] = "left"; $table->align[8] = "center"; $table->data = array (); @@ -95,6 +95,22 @@ else { ''.$agent["alias"].'
    '; } + if ($agent['quiet']) { + $cellName .= " "; + $cellName .= html_print_image("images/dot_green.disabled.png", true, array("border" => '0', "title" => __('Quiet'), "alt" => "")); + } + + $in_planned_downtime = db_get_sql('SELECT executed FROM tplanned_downtime + INNER JOIN tplanned_downtime_agents + ON tplanned_downtime.id = tplanned_downtime_agents.id_downtime + WHERE tplanned_downtime_agents.id_agent = '. $agent["id_agente"] . + ' AND tplanned_downtime.executed = 1'); + + if ($in_planned_downtime) { + $cellName .= "".ui_print_help_tip (__('Agent in planned downtime'), true, 'images/minireloj-16.png'); + $cellName .= ""; + } + $last_time = strtotime ($agent["ultimo_contacto"]); $now = time (); $diferencia = $now - $last_time; From f6fca4e46dd3c8a4cfcd0b81456374382e0b08a2 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Wed, 18 Oct 2017 11:40:40 +0200 Subject: [PATCH 067/311] Added donut to node visual consoles --- .../visual_console_builder.editor.js | 27 +++---- .../images/console/signes/donut-graph.png | Bin 0 -> 10359 bytes .../console/signes/wrong_donut_graph.png | Bin 0 -> 13944 bytes .../images/icono-quesito.disabled.png | Bin 0 -> 563 bytes pandora_console/images/icono-quesito.png | Bin 0 -> 562 bytes .../ajax/visual_console_builder.ajax.php | 18 ++--- .../include/functions_visual_map.php | 70 ++++++++++++++---- .../include/functions_visual_map_editor.php | 4 +- pandora_console/include/graphs/pandora.d3.js | 68 +++++++++++++---- pandora_console/include/styles/pandora.css | 6 ++ 10 files changed, 138 insertions(+), 55 deletions(-) create mode 100644 pandora_console/images/console/signes/donut-graph.png create mode 100644 pandora_console/images/console/signes/wrong_donut_graph.png create mode 100644 pandora_console/images/icono-quesito.disabled.png create mode 100644 pandora_console/images/icono-quesito.png diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 0825a97eb8..2911edc311 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -435,14 +435,6 @@ function update_button_palette_callback() { setEventsBar(idItem, values); break; case 'donut_graph': - if($('input[name=width]').val() == ''){ - alert('Undefined width'); - return false; - } - if($('input[name=height]').val() == ''){ - alert('Undefined height'); - return false; - } $("#image_" + idItem).attr("src", "images/spinner.gif"); setDonutsGraph(idItem, values); @@ -2005,6 +1997,8 @@ function setDonutsGraph (id_data, values) { url_hack_metaconsole = '../../'; } + width_percentile = values['width_percentile']; + parameter = Array(); parameter.push ({name: "page", value: "include/ajax/visual_console_builder.ajax"}); @@ -2021,25 +2015,26 @@ function setDonutsGraph (id_data, values) { type: "POST", dataType: 'json', success: function (data) { + console.log(data); if (data['no_data'] == true) { - if (values['width'] == "0" || values['height'] == "0") { - $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); + if (values['width'] == "0") { + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/wrong_donut_graph.png'); } else { - $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); - $("#" + id_data + " img").css('width', values['width'] + 'px'); - $("#" + id_data + " img").css('height', values['height'] + 'px'); + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/wrong_donut_graph.png'); + $("#" + id_data + " img").css('width', width_percentile + 'px'); + $("#" + id_data + " img").css('height', width_percentile + 'px'); } } else { - $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/donut-graph.png'); if($('#text-width').val() == 0 || $('#text-height').val() == 0){ // Image size } else{ - $("#" + id_data + " img").css('width', $('#text-width').val()+'px'); - $("#" + id_data + " img").css('height', $('#text-height').val()+'px'); + $("#" + id_data + " img").css('width', $('#text-width_percentile').val()+'px'); + $("#" + id_data + " img").css('height', $('#text-width_percentile').val()+'px'); } } } diff --git a/pandora_console/images/console/signes/donut-graph.png b/pandora_console/images/console/signes/donut-graph.png new file mode 100644 index 0000000000000000000000000000000000000000..57a2d3eb2b93c9c8c7142bcc7053778d11e6094f GIT binary patch literal 10359 zcmZX31z20n)^30R!Gk*lD-17NEEVD^Q?#p}0F=fl}OxYjJl8QsDA^ z=RfEC_uf2D)}GmW&8$5$@2vNoBw9^H77LvW9RL7e$;(M;000O{e}6$JFBaZ{qW|)M z)I(a&L(|3D!`sZw3LtLjVr~VIcQUiF(y%hK^mQGy5&{62Nadx(wR{%MO-Wvb;AXn- zj^#WGbCd2MtE7|^3#s#grDm6BoSAtr5s|ee;ydS+HqRg?#&0&`xsRy+;jyv9 zrcD0fIXO9@b}g1S>WOiFmeX{%2pDY9SiBhL_Lyp?)B)TNDU7O5?rv__<0P4W{kYZr zjwz3Y?>Mp+WQ92>I0TD-@2;_9x{o~+5MU1=gBmd~%Kd>`K1qxqgiocP35Q9!!i7Y&UR8^nBl>t&cVfN--$9U6L3HL9xX&3BHuXcKLw9;vH{( zAJSkS&Ypgim3f&r;fv#?=D+ffqT#1&IC(STaeL5a=M{SrW-2vJ&9HVt2;gDXIqWT_ z)N3XU4Mt@WL?To0JT%7W6BO+etppV7i&C`efO=FE{%$Vi(sDF*_(j03cXx)RhzV8n zn~v$rsx)0HEHI&pDxu9c5@GeZ>jI{jL@1jM*z$e4yaWLRQ7S~r*6#J5IU9-R*AH~KwMAhEuM%HkEdWtu!hnNaGRV%D34BCx=h&Cjn;!|Pwi#Cxkr z(|N>9*-VS6(@8rvuq3LiTAv~IMGk@uLO@BuND|E=I)E70ab<~V9c@BxL@QRvB6?dh z;3(&v3er2Uw5FOmoht$}SsyMR67tZ3t(*!>z~e(C6Qwls{Kp(QnWUq-o1^(Bi^pom z6m#B-rCOWM=a{0VWJ9BW&OS%(D0d$sD1#~NzpIQ`0nD|8B4xU7gM0UGfWS?~zc7(5;7$*=fVk1(3521@? zm|JqS8xc*Yh~=iMW@qKd`LO&zOgk<#npywb@$JST?G z5z^1CVYH1}R$0?bHf2+QqFXXNO+znM=Ncc$YBrZ?cyyWaiL?4#M~)l8frD*T4Rdx zof&*d#H%FYmC~BGI~Hid(;n&wTe;j?PIMpt+{+##;G?0-JbV$DyUXt1N%dw+?D9_N zTe-as!4Fe*a8*Nx>cM!1sfgI`ShsbWk~tvlbzU8azLA4? zBebR-VHfNN%IGw_(V(aUh5s`b;V%fIN%~rZo?oW?t<7Z-z!?*t4-Cxh80#8mgFmfW zqf&yjcZ=XfF^Exi@%;iy3}x!5=VFE#QE4bUD)tbsPMk5{B8ps3&5!CPBy#&Vbm*W1 zs*hZ8Kqm8$FN+?XAggkdY_L3Oe;-~n>?Hr5@P!$0$dc#Yc!us z#U=vyP@F!R=wtL*Gwu;5j_V3KZzZfhSvQC43Gol8tjL&@rJ&j@^sd*FQ_F(Y#odf3 z1^sZ|jpBaHcL}TA7Ec_Dx6rA2AdXosJH=nb$|RZHYVFEG@jk#Q)bU`b2h_WVYX4}* zh*wdCENX1|>hP2>^aHlM)ZFu{_&j&^U2-@#NjR~*ca8@t;B3|TE(wKQES-vbMYsV>8;kg zmCYN(cgl}0euG&TtoWyWtpN_9^Yex@Cg`RgmI%*~-d?v{u#T9(mb@juVGDM(AI`Ta zDchL$V|Na!ha?UL*gZE(t9PLBMDA5JIVv46!pE^iFeVp9WCY711!N*@s02Lr!~F}4 zts+98>v-9tfv1!kF8H-aSnnojDZ(%!oH_iMP6-i!oBVE`ff&T-2qPuulGa603na9< zyy2x^`7)tk0b#jm70O(^9tbQ36or{{%M*8+HtmFGFeonWN{MM{heczm7tjwwU=QvZ zt_ljCHa1pNRgSMRCXyh{UdIID;hJiR%K+J3V{3H+J;c1wJ_cts7ODd{iP8QSAYT$6 zC>*Z9WJrrCizBXdO&37+ExkkHjIJ^=R=2F^Fg6Wah8z{!)^P zReNhHVP~hwYt#x}mdl4UKvv`;+73ztbt4pXtJ)3}h$rJgZ`i^&`qQe8XiJKvIgn7Y zPz*j7tw)5UcuaX4Kb%={WOi7twx6#0cj2H)TLhhq@WNN!$N4i%0K#9dF7pcQb}%JD z2{mBlC5#9VUi8`V+1XjfjD4CJ3cGFd()Xbu1+cs(e+}f?FYuerw|7~;xhr*8K)q)g z^utQ8#0y9_1L*r#6pDNHLdnuIGQtK22UpE1eXX*BXnBi7paFhC6|!oO-q;(8khFP`ao|LPKi z`0uM4CK6`o``pJzCZ7%uPM_M<`AdrwcY3>^bJ<(V@x(ll8+pT>fW5{!Qd?kcHY&y( zw3PjX{4vWtIEY$Q0N0GI!(Et!G9Zi*MSKLmDHpXl=xKWK^mJR)L9nYECm~oy6ASn{ zftuXp$1sDgZwD8?D4vL@XJRoabT7StnAciVf(Ur-a;H_qD*I6tg?P0q0aBAvI{NTE z%w|q2F;r?121BmQTmVgdS5@R~t{hz#ZHR$F%DjgKyN#?N98t6n_zR`BAt_hSc^+E> z3E}ZpBXtzUv{AhS_=aBZKM*+{!`K=Bu*FeBDFB)8hPt}@njg`iK3Cz^gAvfj__FZ6 zz{06J;@H?&gO}Cy7DU=gKA~YB66`ikfFtujn*CaXTs7(!Is~}6uN(io*CzPp$iFJ! z#>VHrp-`2li3k3L%Ye%e$ZXu-wYA~j+$kTYMK@4sGQ^L?ONp0Oo$*;a)pP!JCTiE` zjIUs+i_)Hq@lK+`!#M6BwxCqke!BWb9N5?SB1KrfycA|O_7r`of^kJ*{)zJ@c7xGTBc7t;ws9sA4$Lq*rxo~-&$&#dH9-ugO>Fg4o8SLH@za{r} zzY&6iRT*kjk;(VCLyW*g+^4mr!1JBWTmdg5g=}y~n>o_dKC_Wvj3!Fw>xy+WvTzLp zDmu7N!Eg+nhY%_(A`lPBf}>VBODIQ}8jYP?>w`7b$%rwki@2FzI@=P=P}KJ1*vvd2 zXXR!GnZMHr3#G44BJfG!%sqSz?j)u^MJ#58&66#_B$!jKX+%EHev2{>^tmA4WS7de z#?Ry)0?$p0TPA;H`jo{NAdq02i9MLU60dgfZb*S2UR$q$Jxu1nVuW ziuK@r%^xyxN+qvxFBsc1reYYa=!E=hWk1k%KIz21Kn1)+|JrX>30qN_>%&=bw!A(# zt?X5uh*zh#CQ*^Pm5I zm!yz#uP{YGSUWk!!5V7YesyNuP&M@yRC!KY-`gaEhP;pn8GeCvyzxNDLYe%>a@FQ_ zdjkoYD1@yQ?nmtGxmM`wsePsphzw7w9liQQ`pFJndYUcan;38(nPvBs(>QJZbZd9e zKysKPui9708Ry5lBh(>8^RjiSy903wKi|9=yb3$3WGW`E22B~9lWA^i^x zBjo5OS97O$f4CT<8Hw{Dj={n)(&6>JPNj}TpBQp>cJ}v!gM%_#s1Hm&DO{$omYavC z9|RpYACWRQJh(YctH`qr3VQl*wRAKwF%g}dj4MO*+0w#-F6oU_`$|{Vs>90}cx$*D zvBsN+MkmdTLKH3_@OFd`A3I(Ng>IjVKmcuf$h1$I78D`gFo9{mJ(R{W`C(guw+g*~ zSxyZM)WA?5NJAGuQ75K*P1Zo6=@Jx|<@J>EGvU{=yXa0Xyo0)%8hi6+4(TcXuJ`J$ z@7k^qd-qFBz@kdo410wZv*dXx4K_{7UoXje&=A>|HN3?4VYnOMsy*j@t4LVy-#fpG{pjLj;99)WTi`jw?os@)7N@1n=B$J zx2v0*1aFTC1MH3rDSm}AGjRePPjBz%g@uK|$uKqg)*^+Qgt1+lco0Z+#Qiu7ts5ugArbSMA<0{q`5qH;4)%9}{8RqdXsJuXi9CjsXGxy?= zd+5vHcliV9vzaLn;e#`9;rswCf$i=8M0<%kpH!rIf(?QpY@dWcNY(zQCf0*mPH1m(!f6c$yCkca+0&1T5^iXYE=O@zU_fVQ??JwUe zd`+mR&&Z%^bMSg_>(X?5FGUmy>Os5h@P92? z1?}~;>>+(Qy;#y;cf(jvq+bxKc)gW+dg_4x?4$%!}S>T&A6IMS3ZwL znP;9h)>*_Z6Swc3mZD`C$&wDG(-K_KGWicrhv=G2vZ))GeCKe+yfnwHi1dA(>&}Uh zhl}x=bpsT)XyDFoMcwl}%XYfS?nhUTztJ5RnnbPnn4?}7iy!A0w-POG>a$v|=R-YZA#dirc=R!^iXdIwS8m17JB z%fP|!lf%82Ma=zD=F-t|wu7`p4jI5#B06vNShs7W1ox3t9YY-IjEAoi-hrl28b<3J zzLw7eQ)bYB2yma3iLXCF=C4b3ej5eeeAoIE0ZBKvkMS;g#`;JH^MJo4d|1@eLHv6k zi9Ln?OA7ubIf{k86gh~)gbQVYR0jN`=%RW*W#!+kAMhGVgAluZoR_pEw1}j|K|(Jo z^M9J*0zU`bv{!`i)(n4Bd+*nwc(-+F3ui@%?q#Dt4+}O>e%_y$YJQXzkihF}+IshXVOF{#vuOs&;J|nyi}aUmGPmR_ z`3BjxiJctZc>S(Ks)E!f$zqL#cFRGSu!v#-a5k-{=T1eT$h&D&&@S)s(r|k$M{u&v zYFI)1qn(eS{ z2UEkZ3b%A27i^JJUy=%lNUAw+jCBia@$Je!ce}KC0>pDrkgXYQ<|6|}nm+YHO~717 zcPSBF;F^xWt^KOks4&BBsox!B|`{0>N4_D8MsWMllvMa6HY!l}{N zxv0@kZ-&pd5%Odh`Y;WtJ9Ma?gq(N(0&K5yuKg@+ z{^0^b0Bw+y<20!6t*jsq-vYVHngG!ZVKNFD4PcT3uQ?EmMxLqGOGiG&4Lc1Mu7JvH zxl7M1@11Y45uh#~;|v;Hl*4n5NKN8=!CenVonMPS5sc1KjjowJjk8OF&3-MScHi(AMfi}u) z8Yoe~)aq%MCoz*#)_?-;0}Ux&<Pn|V_vL_CG1z&|JK>qQy_Dkp}u7=QSM>%W3R zh<2Ie9rG$QveTubc{w#e8-}zM0ahDu_QfvMR;mE9Krh7)GfkikyDpeay;;gk^xjVA zFy{t+p3N@K;O_Ta_39=PG4R)HA@}b~Xc!Uy=CJ>=+P}H*|GD$;YSP)+dashWirWjf zQwjN~86>T*ucy?T0KlIhyPT30_Kid8&?H|`%_KgQhbRjmjoampvb6dFo!lR2ryq@& z?Q(bUb8vQNszb*I;Z{(1-}H1UN@N%oT7l(be>{04wXk1bGSX>uwWrZ#aqClM>UBh# zf>lRzv$wx2>YIS?s#QkqM3siEbtS09eru3)OULz|2u31y^V-USxJ_U>k~h4Sp7 zLVQrKUTWvIo3E<3w>JSsFD?pWtLLGP2mEA3@!Vyu&&{wJey_nIDpjcP$1biH3!CP3 zm!s6*|BL_z(t?4ur$G`|<)^}cJo%JCYGn%L7Bo%P=wuRodjc-gx_XtHy}9p5$PqmSRVPob+D;U#zXhaPp9j599&#lq>rEp zBT`d7x?X9H%Tv|s^PfuNdk=uJUUQqr^&bL|6DlgIDjvsq2opf({j2U=(crGO59<<7 zyX*J2+LX+BRemAU`N`!QX`Y9($0JO)+zzags1v85u=muQEQZ27-Z`*bR5?lt)I){M zAK^0PSO65&au|E}pSmnGSg$ZvQl?0Jb5;9^z^Ep`3R(VM<>bAi^ptwY^!mAikrTyy zhi`p7mfDw!VG&{Bz!vP}pKU}CPoK{nH;WG5RVLl5q$o`Dt?s+!Wo2b?t8F$52pW+; z{XKn_UkL%SXbPLU?hn4Pd>qh@RGL{oH>9NKLHZ)jfo0+2b9*9y6x6zfUi7r#;@qsI+1Lgt|Ud+Y~Fw*DocYwHZ={NY38>9v0xA z!Tqbpm#F`G{r`-A#Gz7CEagw&#pA*BwCv2*)ox`XKbzrwUEyhM@Rh0O?q1>A-LvuI z+4(H|r0@RJXlaq+=%TiLQK+NvJiC}i%yj0nkb6T=Qt+9R+EqPJ_bFEwBNwOywVE3+ zLPSA8Tmi*A3t!6|TI?^TO`+yJ!$q~Q)rSN(i8W8Pzv#zOOB z{=w`qPLl{Kg2X$Q$>6GQu@;+=IdN3Eo1fQi_=%W6V3d2TyHVA=%2(_GJC;}CUy4$K zj`}49_HZFrr5=E8&LF9JEoy}|jgK_V-%@I+DW-y<0CC$1Ur$(93I$q) zTE1_2#arLwLPmo;7vt_iKT|kooO;JzPe9*QecyJe{0g_W35j^LP5LM-v8E zA$?K{4cnb>??+%7Kt4$?_!~u5jqRXN!deF$e_dRaWog;seGULY0--LzFQ{zSSqIn& zlcsPV&lIH>BRMPIEEW|#B5swubP{)9SQ^{P)r^0cxT_3!ako&#!58*&TqGVK2$WJV8{nB}gbd{||TfXt#oWw=)lkyluu6y}!C{g0Q%y6g{<)!Bz zH>=F*q*e@mw&1RIvMSLr-bAz0rib#$(TDPVMH8LU5)tQX&SLpjk>cn%@`P?TJvK8) zyrP?yAaJiCF)Nah2C(8|6&p%h>i;u(~E=DG2 zJF}xBL0}#6#Z=)h*1}tJr(bUpMcNKx|1j9zI0b+897*>qOo*p`_m`QBaX@$!z$}e9 zu_RJ9E9;~J$>Joe&4gjzI?@0|xQM@WP}%hO4eU6CNlcICF2cdSURz>w%_XQLDmoCY zn1cX!7b4>}wgWp=$rmzUPy zFku-WNSGCV`N2-3ak9^<=kir9-P{8XweZ5Ha(cq~rg&ZhqOQbGa(YQZN?CXmq7UmB z*W`Dn=nH+GzhKQ&#sg!y)cS_k+CdFqOXL5<6Y zAaEN!WkoUE|LAW7?j&JiZK zTX7Xbj?lwl<)Ki9KR(5k!fQXOttjYiH#@X7h*yj_*rx~t4XYh|6tb&hetgq5H&y#I zkZ8izv~c=q^y>@4Gk9z81jq2HvMSmbk#O8p6jO!-AA>>QbUaAuDwv8@VazT%ZQvyX zjQt>lcrZKtRs2R5cH_4`xuj6kAd>tCTaV2oWFkMsW|i&4=Dti@*Z(ARW&60+tdI+# z2XD1Q0oGWNUQdl0n=<)6tWLl+#iRrXLM%dJU=QCjd@uq-ZX@>1uD=fro~=&FSXpJr z0zp`*oqg}$FZ4Il+Z=Datm5bML7bR--wK!Q&+HkEwLlP+B_CXoBXFOESnJ=k01?|` z=|2;Mue|-!>0qda&|{v;bEF-`w>xY#PJ$pI`98*cn^M$hR$&ZLDx^lP7%OnJDyHId zg|WdDVtD5JJfs&N$t~OUhc>~vPELEaWPmuKxp3jC!!d*L{KYP>QE&zZi`ZV@OL8NG zb9P>=Z?ZWicIyA;Uv0k*BGw6+h(5|u*C&JtSD6sf3STaDKNYmBJb1;&wbmep7tc38 ze%}Zx!DJ7-{AFXbOr=G|z{aPyaT)?J`?1=ku(T;KB~y*J@9dMxH}^`?`%V9AF};tE z5hq(2sH=*>zAY`UGSX7r;o0yYjU%biN3U7}2&<|9Sg}HaHjtJ<6yU$Vm04Knu4@k{ zy`Old5!-|MdyA-Fjc2?fQPz*m7`vDg@tYD(1gsxSVH++|&AAt&`#!Dsmv5Gucz-8O zYUSdWEj}Gb)I$IkX#+i4^QQHKPs_3hDyD`wX9 z%sk$lt@v+shyH^2wl5h*PR1%H>%PU6W!d^fE&(`@Q<&JaIH;IvUHz ztQz!G-t#HJnd+;Lxsi@pUW<>2VSK6F!Mk_Hh*NWaZxb@^P&W8Q&Q8ErF}?3@-9ZzU zRMNk8)wXDsgTSQ%@>Xt#H>eL)Wh^YX)S@qpb}Arvh8N=dkoy2o4%U4#EK^J!!N!sF zdYGF?d)ki1XUtt~u=}M+&g<+^f}&M6tmmO9bG^*Pp>s^u>hNRr;1}?EF!P0PUI?u` zVG8xF38xAo{akBqCtCM73CaUyz zmQsS+f_zF(UysesNR@XB&9^_Qjjz$n{0z8+a4>&MMIh*r44IIfA}~LkccT}>qrc?- zu`Pge@j2-(>u7HrFd4lH-q%yb2U*E^rl6%|;&AHT`%X=YL?OMVYPlm_eVvhuHUS66$ zE#R2g3V(j^gju1m)9)$a5kN4bgtRJNYvp7PYq5)=S zMU_H0X|Gs&=DA2`1=k8v%7olUb=yT*3zsh7Z`%z+-u{J0btkP8pIX|vXPMC28-4lP zxH91;e2z{uXdyNhkl$c0wI=7gNY_MkU~5uVtbVa(8}#n(0nvg z+^g3W{fgsO$TJ>U)}su{q}#Ua@dZPcB0HfI+N4#PWAkz*@{6POt$0X2Z(g{KYW^{f z7!e3!VdqS&w~Tm8S}`HF_EW*>G!_t=&_kbdYDZS9>mNKoMe%$eCi&`tMvNq+dHG(P z+aK+8gp-daNXoMgs@?xIDeIX)Cq@$Bn=~5q35_5$6cAbkRLE*e$P2Pqm3Iu#-LX7s z3#wRzv*R56kqHsIS9Kf7oliF_MoUv2qi}L8h7E0$Bnz-MiGF>4QFO6s&4;xV?&%Dw zsDaGss;^e7`VSMsx|S8%3vQow0xQ9U1R(I z-?j!QDe+djuPMIWAaA#Z6@&=9zm4x&p+{j&ELQrjcz;p0FB1NL>D&LP+<)oY|ES!5 zTmZvpNt_vMMsDc@AV%f`u z{ckWm4MV3*JW8HE+%C7ekI{?uDk&>(_f`|%!zE+yUU@Qb)LIRvC%>Gd_zMA8Z-s@8 zlvPxM^ojA>iS9XLkEPZ;Z;lo?iP?=kbP&)pf)WLUrVu?J(w>$l%)8f>f(QKP4Bbb^ zu*iA%dI87^89!crpMUV&c72$6I#MfL>%fMU&Q-j>oE{jEfGw#t;V zd9<^d04Tjmn%W{p9zQ0p0hxsK`*e3!fq!<}JP&1foR{@T8<8idIm!?I++FTNRCjNK zXY$Xl+`4U4mvRr(_|<}M6YpEvMZ8|AO)WQi9qa4je?jGdGLLF-7Fw@WvyIa}Yf_R_ h3kbd(TwgxAaGViQr!1j3(W}3!^3p0&RT8Gq{{ym_3akJC literal 0 HcmV?d00001 diff --git a/pandora_console/images/console/signes/wrong_donut_graph.png b/pandora_console/images/console/signes/wrong_donut_graph.png new file mode 100644 index 0000000000000000000000000000000000000000..8005a9ac462ab0a60e2283b504138f0f6b05a3d7 GIT binary patch literal 13944 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 literal 0 HcmV?d00001 diff --git a/pandora_console/images/icono-quesito.disabled.png b/pandora_console/images/icono-quesito.disabled.png new file mode 100644 index 0000000000000000000000000000000000000000..8202e2040ba1993d7cc06b783d1a6a982ba5f647 GIT binary patch literal 563 zcmV-30?hr1P)u%*zyfGyLtGC8iOAYnKyC!$^FS2}K)N2;Opw5RkeNW+6#)W>5zV^}Kx#j-7~E4x zCIkSf^+;+0q5km);sB_aAi5U~cG#z@E$(BN}`+5`ij&^drBi!ov`L;xDj z2}A^3BM`>}@kHccM^8iRkun4!PzcSZ0_Z6iIk}^hH?Z^uN>b>F0Vz7?W3g-kBOV3t zlujVb@1un`Jk=>+QNNJLU|5JPg~DPJ9n=%yN>F&_MJP*)NI9zYFa1Q`et0086S#vxqf0&oBT002ovPDHLkV1nGs B%OL;& literal 0 HcmV?d00001 diff --git a/pandora_console/images/icono-quesito.png b/pandora_console/images/icono-quesito.png new file mode 100644 index 0000000000000000000000000000000000000000..f1a0ed73ff4712e5b5a92148a8b023134b7f837a GIT binary patch literal 562 zcmV-20?qx2P)EX zq4a&2vVI_C2oOMwP|kTEWdKus>eMMl26V%K?D-%*Ba*;-ASD3Afu%*zyfGyLtGC8iOAYnKyC!$^FS2}K)N2;Opw5RkeNW+6#)W>5zV^}Kx#j-7~E4x zCIkSf^+;+0q5km);sB_aAPbZMQy2&|X#1!!YbK~$V7^X33x)Z(QY0)@ zCPHIN04BzSo@#(V0UDM9NN!bRLQ7&3(41BXGXx;O7zud-8hj2=n_vJGItOrNF-9zg z2tdO*frx->1mbugo`@Xm=xJy@QidP|3ZeN_06hgGCwG+c2A1AHNeVqNAVueVES61R z#G?S7(g}q5eYEg~r#b~J>K76j3=6TPP*`lDgL)!d2@21AoUxB1l0aeFh#a#-q>w`N z*l!@ $id_agent, - 'id_agente_modulo' => $id_module)); + 'id_agente_modulo' => $id_agent_module)); if (!empty($id_metaconsole)) { metaconsole_restore_db(); } - + $return = array(); if (($is_string == 17) || ($is_string == 23) || ($is_string == 3) || ($is_string == 10) || ($is_string == 33)) { @@ -583,13 +583,11 @@ switch ($action) { } break; case 'donut_graph': + if ($width_percentile !== null) { + $values['width'] = $width_percentile; + $values['height'] = $width_percentile; + } $values['type'] = DONUT_GRAPH; - if ($width !== null) { - $values['width'] = $width; - } - if ($height !== null) { - $values['height'] = $height; - } break; case 'box_item': $values['border_width'] = $border_width; @@ -823,7 +821,9 @@ switch ($action) { $elementFields['type_percentile'] = 'bubble'; } break; - + case 'donut_graph': + $elementFields['width_percentile'] = $elementFields['width']; + break; case 'module_graph': $elementFields['width_module_graph'] = $elementFields['width']; $elementFields['height_module_graph'] = $elementFields['height']; diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 98a36fface..199a1204f3 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1141,34 +1141,78 @@ function visual_map_print_item($mode = "read", $layoutData, break; case DONUT_GRAPH: - $donut_data = get_donut_module_data($layoutData['id_agente_modulo']); + if (!empty($id_metaconsole)) { + $connection = db_get_row_filter ('tmetaconsole_setup', $id_metaconsole); + if (metaconsole_load_external_db($connection) != NOERR) { + continue; + } + } - if ((get_parameter('action') == 'edit') || (get_parameter('operation') == 'edit_visualmap')) { - if($width == 0 || $height == 0){ + $is_string = db_get_value_filter ('id_tipo_modulo', 'tagente_modulo', + array ('id_agente' => $layoutData['id_agent'], + 'id_agente_modulo' => $id_module)); + + if (!empty($id_metaconsole)) { + metaconsole_restore_db(); + } + + if (($is_string == 17) || ($is_string == 23) || ($is_string == 3) || + ($is_string == 10) || ($is_string == 33)) { + $no_data = false; + } + else { + $no_data = true; + } + + if ($no_data) { + if($width == 0){ if ($layoutData['id_metaconsole'] != 0) { - $img = ''; + $img = ''; } else{ - $img = ''; + $img = ''; } } else{ if ($layoutData['id_metaconsole'] != 0) { - $img = ''; + $img = ''; } else{ - $img = ''; + $img = ''; } } } else { - if ($width == 0 || $height == 0) { - $img = d3_donut_graph ($layoutData['id'], 200, 300, $donut_data); + $donut_data = get_donut_module_data($layoutData['id_agente_modulo']); + + if ((get_parameter('action') == 'edit') || (get_parameter('operation') == 'edit_visualmap')) { + if($width == 0){ + if ($layoutData['id_metaconsole'] != 0) { + $img = ''; + } + else{ + $img = ''; + } + } + else{ + if ($layoutData['id_metaconsole'] != 0) { + $img = ''; + } + else{ + $img = ''; + } + } } - else{ - $img = d3_donut_graph ($layoutData['id'], $width, $height, $donut_data); + else { + if ($width == 0) { + $img = d3_donut_graph ($layoutData['id'], 400, 400, $donut_data); + } + else{ + $img = d3_donut_graph ($layoutData['id'], $width, $width, $donut_data); + } } } + //Restore db connection if ($layoutData['id_metaconsole'] != 0) { @@ -1808,7 +1852,7 @@ function get_donut_module_data ($id_module) { foreach ($values as $val) { if ($index < $max_elements) { $data = explode(":", $val); - $values_to_return[$index]['tag_name'] = $data[0]; + $values_to_return[$index]['tag_name'] = $data[0] . ", " . $data[1]; $values_to_return[$index]['color'] = $colors[$index]; $values_to_return[$index]['value'] = (int)$data[1]; $total += (int)$data[1]; @@ -1816,7 +1860,7 @@ function get_donut_module_data ($id_module) { } else { $data = explode(":", $val); - $values_to_return[$index]['tag_name'] = __('Others'); + $values_to_return[$index]['tag_name'] = __('Others') . ", " . $data[1]; $values_to_return[$index]['color'] = $colors[$index]; $values_to_return[$index]['value'] += (int)$data[1]; $total += (int)$data[1]; diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index ec9e06c9e8..4f0b730b74 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -397,7 +397,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['percentile_bar_row_1'] = array(); - $form_items['percentile_bar_row_1']['items'] = array('percentile_bar', 'percentile_item', 'datos'); + $form_items['percentile_bar_row_1']['items'] = array('percentile_bar', 'percentile_item', 'datos', 'donut_graph'); $form_items['percentile_bar_row_1']['html'] = '' . __('Width') . ' ' . html_print_input_text('width_percentile', 0, '', 3, 5, true) . ''; @@ -525,7 +525,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items_advance['size_row']['items'] = array( 'group_item', 'background', 'static_graph', 'icon datos', - 'auto_sla_graph', 'donut_graph'); + 'auto_sla_graph'); $form_items_advance['size_row']['html'] = '' . __('Size') . ui_print_help_tip ( diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index ba0216d53b..b571732cd1 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1504,7 +1504,53 @@ function print_donut_graph (recipient, width, height, module_data) { svg.append("g") .attr("class", "slices"); - var radius = 100; + var radius = 120; + var increment_y = 60; + var increment_y_padding = 25; + var text_size = 15; + var decrement_x_padding = 150; + if (width >= 500) { + radius = 160; + increment_y = 60; + text_size = 25; + increment_y_padding = 25; + decrement_x_padding = 75; + } + else if (width >= 400) { + radius = 120; + increment_y = 60; + text_size = 22; + increment_y_padding = 25; + decrement_x_padding = 75; + } + else if (width >= 300) { + radius = 80; + increment_y = 40; + text_size = 14; + increment_y_padding = 20; + decrement_x_padding = 60; + } + else if (width >= 200) { + radius = 50; + increment_y = 40; + text_size = 14; + increment_y_padding = 15; + decrement_x_padding = 45; + } + else if (width >= 100) { + radius = 20; + increment_y = 20; + text_size = 10; + increment_y_padding = 8; + decrement_x_padding = 25; + } + else { + radius = 10; + increment_y = 10; + text_size = 4; + increment_y_padding = 3; + decrement_x_padding = 5; + } var arc = d3.svg.arc() .outerRadius(radius * 0.8) @@ -1518,28 +1564,20 @@ function print_donut_graph (recipient, width, height, module_data) { return parseFloat(d.percent); }); - var increment_y = 0; jQuery.each(module_data, function (key, m_d) { svg.append("g") .append("text") - .append("tspan") - .attr("dy", increment_y + ".8em") - .attr("dx", ".1em") - .text(m_d.tag_name + ", ") - .style("font-family", "Verdana") - .style("font-size", "15px") - .append("tspan") - .attr("dx", ".2em") - .text(m_d.value) - .style("font-family", "Verdana") - .style("font-size", "15px"); + .attr("transform", "translate(" + (((width / 2) - (radius + decrement_x_padding))) + "," + (((height / 2) - radius) - increment_y) + ")") + .text(m_d.tag_name) + .style("font-family", "Verdana") + .style("font-size", text_size + "px"); - increment_y += 1; + increment_y -= increment_y_padding; }); function donutData (){ return module_data.map(function(m_data){ - return { label: m_data.tag_name, value: m_data.value , percent: m_data.percent, color : m_data.color} + return { label: m_data.tag_name, percent: m_data.percent, color : m_data.color} }); } diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index fcf084085b..93bb7a5976 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -787,6 +787,12 @@ input.auto_sla_graph_min { input.auto_sla_graph_min[disabled] { background: #fefefe url(../../images/auto_sla_graph.disabled.png) no-repeat center !important; } +input.donut_graph_min { + background: #fefefe url(../../images/icono-quesito.png) no-repeat center !important; +} +input.donut_graph_min[disabled] { + background: #fefefe url(../../images/icono-quesito.disabled.png) no-repeat center !important; +} input.binary_min { background: #fefefe url(../../images/binary.png) no-repeat center !important; } From b4c1e7d5fe037118c517469511cba32cd47f8523 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Wed, 18 Oct 2017 13:20:17 +0200 Subject: [PATCH 068/311] Changed filter --- pandora_console/include/functions_visual_map.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 199a1204f3..97ac64b8d4 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1834,7 +1834,12 @@ function get_donut_module_data ($id_module) { $mod_values = db_get_value_filter('datos', 'tagente_estado', array('id_agente_modulo' => $id_module)); $values = explode(";", $mod_values); - + if (preg_match("/\r\n/", $mod_values)) { + $values = explode("\r\n", $mod_values); + } + elseif (preg_match("/\n/", $mod_values)) { + $values = explode("\n", $mod_values); + } $colors = array(); $colors[] = "#aa3333"; $colors[] = "#045FB4"; From 0f2d6d17beb81bf1f23984b1d469bdbf5368b162 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Wed, 18 Oct 2017 15:13:26 +0200 Subject: [PATCH 069/311] Added change about linked visualmaps --- .../visual_console_builder.editor.js | 13 +--------- .../ajax/visual_console_builder.ajax.php | 6 ++--- .../include/functions_visual_map_editor.php | 25 ++++++++++++++----- 3 files changed, 23 insertions(+), 21 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 22c6c4d8d4..bc69c22351 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -304,7 +304,7 @@ function update_button_palette_callback() { alert('Undefined height'); return false; } - + $("#text_" + idItem).html(values['label']); if(values['show_statistics'] == 1){ @@ -2899,9 +2899,6 @@ function updateDB(type, idElement , values, event) { } function copyDB(idItem) { - - console.log(idItem); - metaconsole = $("input[name='metaconsole']").val(); parameter = Array(); @@ -3357,8 +3354,6 @@ function eventsItems(drag) { } } else{ - console.log('Dragstart'); - multiDragStart(event); } @@ -3375,8 +3370,6 @@ function eventsItems(drag) { updateDB(selectedItem, idItem, values, 'dragstop'); } else{ - - console.log('Dragstop'); multidragStop(event); } }); @@ -3464,10 +3457,6 @@ function eventsItems(drag) { break; } } - else{ - console.log('Drag'); - - } }); } diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index e854a31c49..cc869131a4 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -515,13 +515,13 @@ switch ($action) { $values['id_agent'] = $id_agent; } } - else if (!empty($id_agent)) { - $values['id_agent'] = $id_agent; - } else if ($agent !== null) { $id_agent = agents_get_agent_id($agent); $values['id_agent'] = $id_agent; } + else { + $values['id_agent'] = $id_agent; + } if ($id_module !== null) { $values['id_agente_modulo'] = $id_module; } diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index 54db2d8008..1d08758b84 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -556,12 +556,11 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { ''; $form_items_advance['map_linked_row'] = array(); - $form_items_advance['map_linked_row']['items'] = array( - 'group_item', 'static_graph', 'percentile_bar', - 'percentile_item', 'module_graph', 'simple_value', - 'icon', 'label', 'datos'); + $form_items_advance['map_linked_row']['items'] = array('static_graph', 'label'); $form_items_advance['map_linked_row']['html'] = ''. - __('Map linked') . '' . + __('Map linked') . ui_print_help_tip ( + __("If a parent visual console is selected here, an agent or module cannot be selected and will be removed if a previous selection was done."), true) . + '' . '' . html_print_select_from_sql ( 'SELECT id, name FROM tlayout @@ -747,4 +746,18 @@ function visual_map_editor_print_hack_translate_strings() { echo ''; } -?> \ No newline at end of file +?> + + \ No newline at end of file From ddbe2a298c0dd8db49a50b7b7f0bd8af60f2c1fb Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Wed, 18 Oct 2017 16:29:51 +0200 Subject: [PATCH 070/311] Adapts donut graph to meta --- .../reporting/visual_console_builder.editor.js | 5 +---- .../include/ajax/visual_console_builder.ajax.php | 8 +++++--- pandora_console/include/functions_visual_map.php | 9 +++------ pandora_console/include/graphs/functions_d3.php | 11 ++++++++--- pandora_console/include/graphs/pandora.d3.js | 1 - 5 files changed, 17 insertions(+), 17 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 2911edc311..799c6a72b2 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -2005,9 +2005,7 @@ function setDonutsGraph (id_data, values) { parameter.push ({name: "action", value: "get_module_type_string"}); parameter.push ({name: "id_agent", value: values['id_agent']}); parameter.push ({name: "id_agent_module", value: values['module']}); - if (is_metaconsole()) { - parameter.push ({name: "id_metaconsole", value: id_metaconsole}); - } + parameter.push ({name: "id_element", value: id_data}); parameter.push ({name: "id_visual_console", value: id_visual_console}); jQuery.ajax({ url: get_url_ajax(), @@ -2015,7 +2013,6 @@ function setDonutsGraph (id_data, values) { type: "POST", dataType: 'json', success: function (data) { - console.log(data); if (data['no_data'] == true) { if (values['width'] == "0") { $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/wrong_donut_graph.png'); diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index 4d32a885c3..a909206b53 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -144,8 +144,10 @@ switch ($action) { case 'get_module_type_string': $data = array (); - if (!empty($id_metaconsole)) { - $connection = db_get_row_filter ('tmetaconsole_setup', $id_metaconsole); + $layoutData = db_get_row_filter('tlayout_data', array('id' => $id_element)); + + if ($layoutData['id_metaconsole'] != 0) { + $connection = db_get_row_filter ('tmetaconsole_setup', $layoutData['id_metaconsole']); if (metaconsole_load_external_db($connection) != NOERR) { continue; } @@ -155,7 +157,7 @@ switch ($action) { array ('id_agente' => $id_agent, 'id_agente_modulo' => $id_agent_module)); - if (!empty($id_metaconsole)) { + if ($layoutData['id_metaconsole'] != 0) { metaconsole_restore_db(); } diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 97ac64b8d4..e8a8d76bdb 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1141,8 +1141,8 @@ function visual_map_print_item($mode = "read", $layoutData, break; case DONUT_GRAPH: - if (!empty($id_metaconsole)) { - $connection = db_get_row_filter ('tmetaconsole_setup', $id_metaconsole); + if ($layoutData['id_metaconsole'] != 0) { + $connection = db_get_row_filter ('tmetaconsole_setup', $layoutData['id_metaconsole']); if (metaconsole_load_external_db($connection) != NOERR) { continue; } @@ -1151,10 +1151,6 @@ function visual_map_print_item($mode = "read", $layoutData, $is_string = db_get_value_filter ('id_tipo_modulo', 'tagente_modulo', array ('id_agente' => $layoutData['id_agent'], 'id_agente_modulo' => $id_module)); - - if (!empty($id_metaconsole)) { - metaconsole_restore_db(); - } if (($is_string == 17) || ($is_string == 23) || ($is_string == 3) || ($is_string == 10) || ($is_string == 33)) { @@ -1831,6 +1827,7 @@ function visual_map_print_item($mode = "read", $layoutData, } function get_donut_module_data ($id_module) { + $mod_values = db_get_value_filter('datos', 'tagente_estado', array('id_agente_modulo' => $id_module)); $values = explode(";", $mod_values); diff --git a/pandora_console/include/graphs/functions_d3.php b/pandora_console/include/graphs/functions_d3.php index 0e1a95f5f4..35b97240b1 100644 --- a/pandora_console/include/graphs/functions_d3.php +++ b/pandora_console/include/graphs/functions_d3.php @@ -24,9 +24,14 @@ function include_javascript_d3 ($return = false) { if (!$is_include_javascript) { $is_include_javascript = true; - $output .= ''; - $output .= ''; - + if (is_metaconsole()) { + $output .= ''; + $output .= ''; + } + else { + $output .= ''; + $output .= ''; + } } if (!$return) echo $output; diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index b571732cd1..b7382d01f9 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1590,7 +1590,6 @@ function print_donut_graph (recipient, width, height, module_data) { slice.enter() .insert("path") .style("fill", function(d) { - console.log(d); return d.data.color; }) .attr("class", "slice") From b641323eed9f98c941e3dfea42379f28cd58fd74 Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Wed, 18 Oct 2017 17:29:06 +0200 Subject: [PATCH 071/311] [artica/pandora_enterprise#1462] Added the DB changes needed by the dashboard items slideshow feature --- pandora_console/extras/mr/9.sql | 4 ++++ pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql | 4 ++++ pandora_console/pandoradb.sql | 1 + 3 files changed, 9 insertions(+) create mode 100644 pandora_console/extras/mr/9.sql diff --git a/pandora_console/extras/mr/9.sql b/pandora_console/extras/mr/9.sql new file mode 100644 index 0000000000..bae52bda12 --- /dev/null +++ b/pandora_console/extras/mr/9.sql @@ -0,0 +1,4 @@ + +START TRANSACTION; +ALTER TABLE `tdashboard` ADD COLUMN `cells_slideshow` TINYINT(1) NOT NULL default 0; +COMMIT; diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 4e31057a89..9be839a8a0 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -1440,3 +1440,7 @@ INSERT INTO tmodule VALUES (8, 'Wux module'); INSERT INTO ttipo_modulo VALUES (25,'web_analysis', 8, 'Web analysis data', 'module-wux.png'); +-- --------------------------------------------------------------------- +-- Table `tdashboard` +-- --------------------------------------------------------------------- +ALTER TABLE `tdashboard` ADD COLUMN `cells_slideshow` TINYINT(1) NOT NULL default 0; diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 0d749db694..64e6f8582a 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -2206,6 +2206,7 @@ CREATE TABLE IF NOT EXISTS `tdashboard` ( `id_group` int(10) NOT NULL default 0, `active` tinyint(1) NOT NULL default 0, `cells` int(10) unsigned default 0, + `cells_slideshow` TINYINT(1) NOT NULL default 0 PRIMARY KEY (`id`) ) ENGINE = InnoDB DEFAULT CHARSET=utf8; From 038fce3346a52985a60f984de151af6d5b34d0ad Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 19 Oct 2017 00:01:08 +0200 Subject: [PATCH 072/311] 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.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.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 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index c3b9fed657..0fc65262b9 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.713-171018 +Version: 7.0NG.713-171019 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 601432269a..eb3577be08 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.713-171018" +pandora_version="7.0NG.713-171019" 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 f4780c18a7..7070045f37 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -41,7 +41,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.713'; -use constant AGENT_BUILD => '171018'; +use constant AGENT_BUILD => '171019'; # 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 5d0e1e4d5e..ea4034f962 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.713 -%define release 171018 +%define release 171019 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 ae5a512cd6..8b87566809 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.713 -%define release 171018 +%define release 171019 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 37de832d91..7a1ae07c28 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.713" -PI_BUILD="171018" +PI_BUILD="171019" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index f70866d914..60e8e6f3c6 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{171018} +{171019} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 2a7d6d2be0..f4c2a56bbd 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.713(Build 171018)") +#define PANDORA_VERSION ("7.0NG.713(Build 171019)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index d908daef30..fb5991581c 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.713(Build 171018))" + VALUE "ProductVersion", "(7.0NG.713(Build 171019))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index d7223d3088..e6891cfd24 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.713-171018 +Version: 7.0NG.713-171019 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 d2d407b819..3d121f0864 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.713-171018" +pandora_version="7.0NG.713-171019" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 5e2483e48c..8eb990a31f 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -22,7 +22,7 @@ /** * Pandora build version and version */ -$build_version = 'PC171018'; +$build_version = 'PC171019'; $pandora_version = 'v7.0NG.713'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index aabc482067..d404664330 100755 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -71,7 +71,7 @@
    Date: Thu, 19 Oct 2017 10:03:53 +0200 Subject: [PATCH 073/311] Added item to editor palette --- .../include/functions_visual_map_editor.php | 30 +++++++++++++------ pandora_console/include/styles/pandora.css | 6 ++++ 2 files changed, 27 insertions(+), 9 deletions(-) diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index 54db2d8008..250bc12dbc 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -146,7 +146,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { ''; $form_items['module_graph_size_row'] = array(); - $form_items['module_graph_size_row']['items'] = array('module_graph', 'datos'); + $form_items['module_graph_size_row']['items'] = array('module_graph', 'datos', 'bars_graph'); $form_items['module_graph_size_row']['html'] = '' . __('Size') . ' ' . html_print_input_text('width_module_graph', 300, '', 3, 5, true) . @@ -163,7 +163,8 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { 'simple_value', 'datos', 'group_item', - 'auto_sla_graph'); + 'auto_sla_graph', + 'bars_graph'); $form_items['label_row']['html'] = '' . __('Label') . ' @@ -214,7 +215,8 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { 'module_graph', 'simple_value', 'datos', - 'icon'); + 'icon', + 'bars_graph'); if (!is_metaconsole()) $form_items['enable_link_row']['items'][] = 'group_item'; @@ -237,7 +239,8 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['background_color'] = array(); $form_items['background_color']['items'] = array( 'module_graph', - 'datos'); + 'datos', + 'bars_graph'); $form_items['background_color']['html'] = '' . __('Background color') . ' '. html_print_select ( @@ -449,7 +452,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['period_row'] = array(); - $form_items['period_row']['items'] = array('module_graph', 'simple_value', 'datos'); + $form_items['period_row']['items'] = array('module_graph', 'simple_value', 'datos', 'bars_graph'); $form_items['period_row']['html'] = '' . __('Period') . ' ' . html_print_extended_select_for_time ('period', SECONDS_5MINUTES, '', '', '', false, true) . ''; @@ -462,7 +465,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['module_graph_size_row'] = array(); - $form_items['module_graph_size_row']['items'] = array('module_graph', 'datos'); + $form_items['module_graph_size_row']['items'] = array('module_graph', 'datos', 'bars_graph'); $form_items['module_graph_size_row']['html'] = '' . __('Size') . ' ' . html_print_input_text('width_module_graph', 300, '', 3, 5, true) . @@ -494,6 +497,14 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { html_print_button(__('Cancel'), 'cancel_button', false, 'cancel_button_palette_callback();', 'class="sub cancel"', true) . ' ' . html_print_button(__('Create'), 'create_button', false, 'create_button_palette_callback();', 'class="sub wand"', true) . ''; + + + $bars_graph_types = array('vertical' => __('Vertical'), 'horizontal' => __('Horizontal')); + $form_items['bars_graph_type'] = array(); + $form_items['bars_graph_type']['items'] = array('bars_graph'); + $form_items['bars_graph_type']['html'] = '' . + __('Background') . ' + ' . html_print_select($bars_graph_types, 'bars_graph_type', 'vertical', '', '', '', true) . ''; foreach ($form_items as $item => $item_options) { @@ -518,7 +529,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items_advance['position_row']['items'] = array('static_graph', 'percentile_bar', 'percentile_item', 'module_graph', 'simple_value', 'label', 'icon', 'datos', 'box_item', - 'auto_sla_graph'); + 'auto_sla_graph', 'bars_graph'); $form_items_advance['position_row']['html'] = ' ' . __('Position') . ' (' . html_print_input_text('left', '0', '', 3, 5, true) . @@ -547,7 +558,8 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items_advance['parent_row']['items'] = array( 'group_item', 'static_graph', 'percentile_bar', 'percentile_item', 'module_graph', - 'simple_value', 'label', 'icon', 'datos', 'auto_sla_graph'); + 'simple_value', 'label', 'icon', 'datos', 'auto_sla_graph', + 'bars_graph'); $form_items_advance['parent_row']['html'] = '' . __('Parent') . ' ' . @@ -572,7 +584,6 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items_advance['line_case']['html'] = ' ' . __('Lines haven\'t advanced options') . ''; - //Insert and modify before the buttons to create or update. if (enterprise_installed()) { enterprise_visual_map_editor_modify_form_items_advance_palette($form_items_advance); @@ -674,6 +685,7 @@ function visual_map_editor_print_toolbox() { visual_map_print_button_editor('static_graph', __('Static Graph'), 'left', false, 'camera_min', true); visual_map_print_button_editor('percentile_item', __('Percentile Item'), 'left', false, 'percentile_item_min', true); visual_map_print_button_editor('module_graph', __('Module Graph'), 'left', false, 'graph_min', true); + visual_map_print_button_editor('bars_graph', __('Bars Graph'), 'left', false, 'bars_graph_min', true); visual_map_print_button_editor('auto_sla_graph', __('Auto SLA Graph'), 'left', false, 'auto_sla_graph_min', true); visual_map_print_button_editor('simple_value', __('Simple Value'), 'left', false, 'binary_min', true); visual_map_print_button_editor('label', __('Label'), 'left', false, 'label_min', true); diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index fcf084085b..6194b87b78 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -769,6 +769,12 @@ input.graph_min { input.graph_min[disabled] { background: #fefefe url(../../images/chart_curve.disabled.png) no-repeat center !important; } +input.bars_graph_min { + background: #fefefe url(../../images/chart_curve.png) no-repeat center !important; +} +input.bars_graph_min[disabled] { + background: #fefefe url(../../images/chart_curve.disabled.png) no-repeat center !important; +} input.percentile_min { background: #fefefe url(../../images/chart_bar.png) no-repeat center !important; } From 90e12d66c2275d7f62056b8ec780947bdd441cd6 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Thu, 19 Oct 2017 10:52:19 +0200 Subject: [PATCH 074/311] Added item form and code in js --- .../visual_console_builder.editor.js | 168 ++++++++++++++++++ .../ajax/visual_console_builder.ajax.php | 33 ++++ .../include/functions_visual_map_editor.php | 21 ++- 3 files changed, 211 insertions(+), 11 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 22c6c4d8d4..af73a7365d 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -420,6 +420,42 @@ function update_button_palette_callback() { $("#image_" + idItem).attr("src", "images/spinner.gif"); setModuleGraph(idItem); break; + case 'bars_graph': + if($('#dir_items').html() == 'horizontal'){ + if(parseInt($('#text-left').val()) + (parseInt($('input[name=height_module_graph]').val() * $('#count_items').html())) > parseInt($('#background').css('width')) + || parseInt($('#text-left').val()) + (parseInt($('input[name=width_module_graph]').val() * $('#count_items').html())) > parseInt($('#background').css('width'))){ + + alert($('#count_items').html()+' joined graph items are wider than background'); + return false; + + } + } + + if($('#dir_items').html() == 'vertical'){ + if(parseInt($('#text-top').val()) + (parseInt($('input[name=height_module_graph]').val() * $('#count_items').html())) > parseInt($('#background').css('height'))){ + alert($('#count_items').html()+' joined graph items are higher than background'); + return false; + + } + } + + if($('input[name=width_module_graph]').val() == ''){ + alert('Undefined width'); + return false; + } + if($('input[name=height_module_graph]').val() == ''){ + alert('Undefined height'); + return false; + } + if($('#custom_graph_row').css('display') != 'none' && $("#custom_graph option:selected").html() == 'None'){ + alert('Undefined graph'); + return false; + } + + $("#text_" + idItem).html(values['label']); + $("#image_" + idItem).attr("src", "images/spinner.gif"); + setBarsGraph(idItem, values); + break; case 'auto_sla_graph': if($('input[name=width]').val() == ''){ alert('Undefined width'); @@ -616,6 +652,7 @@ function readFields() { } } values['height'] = $("input[name=height]").val(); + values['bars_graph_type'] = $("select[name=bars_graph_type]").val(); values['parent'] = $("select[name=parent]").val(); values['map_linked'] = $("select[name=map_linked]").val(); values['width_percentile'] = $("input[name=width_percentile]").val(); @@ -766,6 +803,24 @@ function create_button_palette_callback() { } } break; + case 'bars_graph': + if (values['width_module_graph'] == '') { + alert('Undefined width'); + validate = false; + } + if (values['height_module_graph'] == '') { + alert('Undefined height'); + validate = false; + } + if ((values['agent'] == '')) { + alert($("#message_alert_no_agent").html()); + validate = false; + } + if ((values['module'] == 0)) { + alert($("#message_alert_no_module").html()); + validate = false; + } + break; case 'simple_value': if ((values['agent'] == '')) { alert($("#message_alert_no_agent").html()); @@ -967,6 +1022,7 @@ function toggle_item_palette() { activeToolboxButton('static_graph', true); activeToolboxButton('module_graph', true); + activeToolboxButton('bars_graph', true); activeToolboxButton('simple_value', true); activeToolboxButton('label', true); activeToolboxButton('icon', true); @@ -994,6 +1050,7 @@ function toggle_item_palette() { activeToolboxButton('static_graph', false); activeToolboxButton('module_graph', false); + activeToolboxButton('bars_graph', false); activeToolboxButton('auto_sla_graph', false); activeToolboxButton('simple_value', false); activeToolboxButton('label', false); @@ -1267,6 +1324,8 @@ function loadFieldsFromDB(item) { $("input[name=width_module_graph]").val(val); if (key == 'height_module_graph') $("input[name=height_module_graph]").val(val); + if (key == 'bars_graph_type') + $("select[name=bars_graph_type]").val(val); if (key == 'type_percentile') { if (val == 'percentile') { @@ -1527,6 +1586,9 @@ function hiddenFields(item) { $("#module_graph_size_row").css('display', 'none'); $("#module_graph_size_row." + item).css('display', ''); + $("#bars_graph_type").css('display', 'none'); + $("#bars_graph_type." + item).css('display', ''); + $("#background_color").css('display', 'none'); $("#background_color." + item).css('display', ''); @@ -1743,6 +1805,57 @@ function set_image(type, idElement, image) { }); } +function setBarsGraph(id_data, values) { + var url_hack_metaconsole = ''; + if (is_metaconsole()) { + url_hack_metaconsole = '../../'; + } + + parameter = Array(); + + parameter.push ({name: "page", value: "include/ajax/visual_console_builder.ajax"}); + parameter.push ({name: "action", value: "get_module_type_string"}); + parameter.push ({name: "id_agent", value: values['id_agent']}); + parameter.push ({name: "id_agent_module", value: values['module']}); + parameter.push ({name: "id_visual_console", value: id_visual_console}); + jQuery.ajax({ + url: get_url_ajax(), + data: parameter, + type: "POST", + dataType: 'json', + success: function (data) { + if (data['no_data'] == true) { + if (values['width'] == "0" || values['height'] == "0") { + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); + } + else { + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); + $("#" + id_data + " img").css('width', values['width'] + 'px'); + $("#" + id_data + " img").css('height', values['height'] + 'px'); + } + } + else { + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); + + if($('#text-width').val() == 0 || $('#text-height').val() == 0){ + // Image size + } + else{ + $("#" + id_data + " img").css('width', $('#text-width').val()+'px'); + $("#" + id_data + " img").css('height', $('#text-height').val()+'px'); + } + } + + if($('#'+id_data+' table').css('float') == 'right' || $('#'+id_data+ ' table').css('float') == 'left'){ + $('#'+id_data+ ' img').css('margin-top', parseInt($('#'+id_data).css('height'))/2 - parseInt($('#'+id_data+ ' img').css('height'))/2); + } + else{ + $('#'+id_data+ ' img').css('margin-left',parseInt($('#'+id_data).css('width'))/2 - parseInt($('#'+id_data+ ' img').css('width'))/2); + } + } + }); +} + function setModuleGraph(id_data) { var parameter = Array(); @@ -2459,6 +2572,42 @@ function createItem(type, values, id_data) { setModuleGraph(id_data); break; + case 'bars_graph': + sizeStyle = ''; + imageSize = ''; + + if(values['label_position'] == 'up'){ + item = $('
    ' + + '
    ' + values['label'] + '
    ' + + '' + + '
    ' + ); + } + else if(values['label_position'] == 'down'){ + item = $('
    ' + + '' + + '
    ' + values['label'] + '
    ' + + '
    ' + ); + } + else if(values['label_position'] == 'left'){ + item = $('
    ' + + '' + + '
    ' + values['label'] + '
    ' + + '
    ' + ); + } + else if(values['label_position'] == 'right'){ + item = $('
    ' + + '' + + '
    ' + values['label'] + '
    ' + + '
    ' + ); + } + + + setBarsGraph(id_data, values); + break; case 'simple_value': sizeStyle = ''; imageSize = ''; @@ -2678,6 +2827,7 @@ function updateDB_visual(type, idElement , values, event, top, left) { case 'label': case 'icon': case 'module_graph': + case 'bars_graph': case 'auto_sla_graph': if (type == 'simple_value') { setModuleValue(idElement, @@ -3120,6 +3270,15 @@ function eventsItems(drag) { activeToolboxButton('delete_item', true); activeToolboxButton('show_grid', false); } + if ($(divParent).hasClass('bars_graph')) { + creationItem = null; + selectedItem = 'bars_graph'; + idItem = $(divParent).attr('id'); + activeToolboxButton('copy_item', true); + activeToolboxButton('edit_item', true); + activeToolboxButton('delete_item', true); + activeToolboxButton('show_grid', false); + } if ($(divParent).hasClass('simple_value')) { creationItem = null; selectedItem = 'simple_value'; @@ -3302,6 +3461,9 @@ function eventsItems(drag) { if ($(event.target).hasClass('module_graph')) { selectedItem = 'module_graph'; } + if ($(event.target).hasClass('bars_graph')) { + selectedItem = 'bars_graph'; + } if ($(event.target).hasClass('simple_value')) { selectedItem = 'simple_value'; } @@ -3613,6 +3775,10 @@ function click_button_toolbox(id) { toolbuttonActive = creationItem = 'module_graph'; toggle_item_palette(); break; + case 'bars_graph': + toolbuttonActive = creationItem = 'bars_graph'; + toggle_item_palette(); + break; case 'auto_sla_graph': toolbuttonActive = creationItem = 'auto_sla_graph'; toggle_item_palette(); @@ -3668,6 +3834,7 @@ function click_button_toolbox(id) { activeToolboxButton('static_graph', false); activeToolboxButton('percentile_item', false); activeToolboxButton('module_graph', false); + activeToolboxButton('bars_graph', false); activeToolboxButton('simple_value', false); activeToolboxButton('label', false); activeToolboxButton('icon', false); @@ -3699,6 +3866,7 @@ function click_button_toolbox(id) { activeToolboxButton('static_graph', true); activeToolboxButton('percentile_item', true); activeToolboxButton('module_graph', true); + activeToolboxButton('bars_graph', true); activeToolboxButton('simple_value', true); activeToolboxButton('label', true); activeToolboxButton('icon', true); diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index e854a31c49..3894313b4f 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -140,6 +140,39 @@ switch ($action) { $return['font'] = $config['fontpath']; echo json_encode($return); break; + + case 'get_module_type_string': + $data = array (); + + $layoutData = db_get_row_filter('tlayout_data', array('id' => $id_element)); + + if ($layoutData['id_metaconsole'] != 0) { + $connection = db_get_row_filter ('tmetaconsole_setup', $layoutData['id_metaconsole']); + + if (metaconsole_load_external_db($connection) != NOERR) { + continue; + } + } + + $is_string = db_get_value_filter ('id_tipo_modulo', 'tagente_modulo', + array ('id_agente' => $id_agent, + 'id_agente_modulo' => $id_module)); + + if ($layoutData['id_metaconsole'] != 0) { + metaconsole_restore_db(); + } + + $return = array(); + if (($is_string == 17) || ($is_string == 23) || ($is_string == 3) || + ($is_string == 10) || ($is_string == 33)) { + $return['no_data'] = false; + } + else { + $return['no_data'] = true; + } + + echo json_encode($return); + break; case 'get_module_events': $data = array (); diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index 250bc12dbc..edbf86ccd4 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -280,7 +280,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['agent_row'] = array(); $form_items['agent_row']['items'] = array('static_graph', 'percentile_bar', 'percentile_item', 'module_graph', - 'simple_value', 'datos', 'auto_sla_graph'); + 'simple_value', 'datos', 'auto_sla_graph', 'bars_graph'); $form_items['agent_row']['html'] = '' . __('Agent') . ''; $params = array(); @@ -313,7 +313,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['module_row'] = array(); $form_items['module_row']['items'] = array('static_graph', 'percentile_bar', 'percentile_item', 'module_graph', - 'simple_value', 'datos', 'auto_sla_graph'); + 'simple_value', 'datos', 'auto_sla_graph', 'bars_graph'); $form_items['module_row']['html'] = '' . __('Module') . ' ' . @@ -452,7 +452,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['period_row'] = array(); - $form_items['period_row']['items'] = array('module_graph', 'simple_value', 'datos', 'bars_graph'); + $form_items['period_row']['items'] = array('module_graph', 'simple_value', 'datos'); $form_items['period_row']['html'] = '' . __('Period') . ' ' . html_print_extended_select_for_time ('period', SECONDS_5MINUTES, '', '', '', false, true) . ''; @@ -475,6 +475,13 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { '1 '. ' item/s '; + + $bars_graph_types = array('vertical' => __('Vertical'), 'horizontal' => __('Horizontal')); + $form_items['bars_graph_type'] = array(); + $form_items['bars_graph_type']['items'] = array('bars_graph'); + $form_items['bars_graph_type']['html'] = '' . + __('Type') . ' + ' . html_print_select($bars_graph_types, 'bars_graph_type', 'vertical', '', '', '', true) . ''; //Insert and modify before the buttons to create or update. @@ -497,14 +504,6 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { html_print_button(__('Cancel'), 'cancel_button', false, 'cancel_button_palette_callback();', 'class="sub cancel"', true) . ' ' . html_print_button(__('Create'), 'create_button', false, 'create_button_palette_callback();', 'class="sub wand"', true) . ''; - - - $bars_graph_types = array('vertical' => __('Vertical'), 'horizontal' => __('Horizontal')); - $form_items['bars_graph_type'] = array(); - $form_items['bars_graph_type']['items'] = array('bars_graph'); - $form_items['bars_graph_type']['html'] = '' . - __('Background') . ' - ' . html_print_select($bars_graph_types, 'bars_graph_type', 'vertical', '', '', '', true) . ''; foreach ($form_items as $item => $item_options) { From 40c15af9f2fb6e5832861579f6f1856c2a68dde0 Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Thu, 19 Oct 2017 11:46:55 +0200 Subject: [PATCH 075/311] [artica/pandora_enterprise#1477] Fixed the HTML entities problem of the sound events view --- pandora_console/operation/events/events.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php index 15da1cf221..9ee74d2abc 100644 --- a/pandora_console/operation/events/events.php +++ b/pandora_console/operation/events/events.php @@ -165,7 +165,7 @@ if (is_ajax ()) { $module_name = modules_get_agentmodule_name($event['id_agentmodule']); $agent_name = agents_get_alias($event['id_agente']); - $return['message'] = $agent_name . " - " . __('Alert fired in module ') . io_safe_output($module_name) . + $return['message'] = io_safe_output($agent_name) . " - " . __('Alert fired in module ') . io_safe_output($module_name) . " - " . $event['timestamp']; } else if ($resultCritical) { @@ -176,7 +176,7 @@ if (is_ajax ()) { $module_name = modules_get_agentmodule_name($event['id_agentmodule']); $agent_name = agents_get_alias($event['id_agente']); - $return['message'] = $agent_name . " - " . __('Module ') . io_safe_output($module_name) . __(' is going to critical') . + $return['message'] = io_safe_output($agent_name) . " - " . __('Module ') . io_safe_output($module_name) . __(' is going to critical') . " - " . $event['timestamp']; } else if ($resultWarning) { @@ -187,7 +187,7 @@ if (is_ajax ()) { $module_name = modules_get_agentmodule_name($event['id_agentmodule']); $agent_name = agents_get_alias($event['id_agente']); - $return['message'] = $agent_name . " - " . __('Module ') . io_safe_output($module_name) . __(' is going to warning') . + $return['message'] = io_safe_output($agent_name) . " - " . __('Module ') . io_safe_output($module_name) . __(' is going to warning') . " - " . $event['timestamp']; } else if ($resultUnknown) { @@ -198,7 +198,7 @@ if (is_ajax ()) { $module_name = modules_get_agentmodule_name($event['id_agentmodule']); $agent_name = agents_get_alias($event['id_agente']); - $return['message'] = $agent_name . " - " . __('Module ') . io_safe_output($module_name) . __(' is going to unknown') . + $return['message'] = io_safe_output($agent_name) . " - " . __('Module ') . io_safe_output($module_name) . __(' is going to unknown') . " - " . $event['timestamp']; } else { From 1d3a082e5c59f5282cf8702809ea390f36b25e07 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Thu, 19 Oct 2017 12:22:01 +0200 Subject: [PATCH 076/311] Added item to editor --- .../agentes/module_manager_editor_common.php | 18 ++++----- .../manage_network_components_form_common.php | 4 +- .../visual_console_builder.editor.js | 6 +-- .../images/console/signes/barras-no.png | Bin 0 -> 9851 bytes .../images/console/signes/barras.png | Bin 0 -> 3877 bytes .../images/icono-barras-arriba.disabled.png | Bin 0 -> 315 bytes .../images/icono-barras-arriba.png | Bin 0 -> 331 bytes .../ajax/visual_console_builder.ajax.php | 33 +++++++++++++++ pandora_console/include/constants.php | 1 + .../include/functions_visual_map.php | 38 ++++++++++++++++++ pandora_console/include/styles/pandora.css | 4 +- 11 files changed, 88 insertions(+), 16 deletions(-) create mode 100644 pandora_console/images/console/signes/barras-no.png create mode 100644 pandora_console/images/console/signes/barras.png create mode 100644 pandora_console/images/icono-barras-arriba.disabled.png create mode 100644 pandora_console/images/icono-barras-arriba.png diff --git a/pandora_console/godmode/agentes/module_manager_editor_common.php b/pandora_console/godmode/agentes/module_manager_editor_common.php index f66aa17296..9b9b96ffaf 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_common.php +++ b/pandora_console/godmode/agentes/module_manager_editor_common.php @@ -291,7 +291,7 @@ if (modules_is_string_type($id_module_type) || $edit) { $table_simple->data[4][1] .= '
    '.__('Inverse interval').''; $table_simple->data[4][1] .= html_print_checkbox ("warning_inverse", 1, $warning_inverse, true, $disabledBecauseInPolicy); if (!modules_is_string_type($id_module_type) || $edit) { - $table_simple->data[4][2] = ' '; + $table_simple->data[4][2] = ''; $table_simple->colspan[4][2] = 2; $table_simple->rowspan[4][2] = 3; } @@ -1323,8 +1323,8 @@ function paint_graph_status(min_w, max_w, min_c, max_c, inverse_w, inverse_c, er .attr("id", "legend_normal") .attr("x", 72) .attr("y", -30) - .attr("width", 10) - .attr("height", 10) + .attr("width", '10px') + .attr("height", '10px') .style("fill", "#82B92E"); //legend Warning text @@ -1343,8 +1343,8 @@ function paint_graph_status(min_w, max_w, min_c, max_c, inverse_w, inverse_c, er .attr("id", "legend_warning") .attr("x", 168) .attr("y", -30) - .attr("width", 10) - .attr("height", 10) + .attr("width", '10px') + .attr("height", '10px') .style("fill", "#ffd731"); //legend Critical text @@ -1363,8 +1363,8 @@ function paint_graph_status(min_w, max_w, min_c, max_c, inverse_w, inverse_c, er .attr("id", "legend_critical") .attr("x", 258) .attr("y", -30) - .attr("width", 10) - .attr("height", 10) + .attr("width", '10px') + .attr("height", '10px') .style("fill", "#fc4444"); //styles for number and axes @@ -1382,8 +1382,8 @@ function paint_graph_status(min_w, max_w, min_c, max_c, inverse_w, inverse_c, er .attr("id", "warning_rect") .attr("x", 3) .attr("y", 0) - .attr("width", 300) - .attr("height", 200) + .attr("width", '300px') + .attr("height", '200px') .style("fill", "#82B92E"); //controls the inverse warning diff --git a/pandora_console/godmode/modules/manage_network_components_form_common.php b/pandora_console/godmode/modules/manage_network_components_form_common.php index 83b21b225b..b9cc96a468 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_common.php +++ b/pandora_console/godmode/modules/manage_network_components_form_common.php @@ -473,8 +473,8 @@ $next_row++; .attr("id", "legend_normal") .attr("x", 72) .attr("y", -30) - .attr("width", 10) - .attr("height", 10) + .attr("width", '10px') + .attr("height", '10px') .style("fill", "#82B92E"); //legend Warning text diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index af73a7365d..e84c5d8c56 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -1826,16 +1826,16 @@ function setBarsGraph(id_data, values) { success: function (data) { if (data['no_data'] == true) { if (values['width'] == "0" || values['height'] == "0") { - $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/barras-no.png'); } else { - $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/barras-no.png'); $("#" + id_data + " img").css('width', values['width'] + 'px'); $("#" + id_data + " img").css('height', values['height'] + 'px'); } } else { - $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/module-events.png'); + $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/barras.png'); if($('#text-width').val() == 0 || $('#text-height').val() == 0){ // Image size diff --git a/pandora_console/images/console/signes/barras-no.png b/pandora_console/images/console/signes/barras-no.png new file mode 100644 index 0000000000000000000000000000000000000000..c4545405e092841b8c59f6890baa991cb3d86870 GIT binary patch literal 9851 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 Ks!Y<@@BaZb##c%J literal 0 HcmV?d00001 diff --git a/pandora_console/images/console/signes/barras.png b/pandora_console/images/console/signes/barras.png new file mode 100644 index 0000000000000000000000000000000000000000..be81fb22120087c594654b4f600583f5a51404b1 GIT binary patch literal 3877 zcmbtW2{@E%8~(nbjD1LsZJI#|Npv_!%-G2mO@%-Ez9d_WQJFM}C>o+HljSIqH4HIS z_JopM5=vyPFl5I3qfY)hopb%$b$#D=z0dPL&wW4dv%J?Aeb~%^n?r;H003?yLtRS% z0OL1a=vL;JTDjGRxgi{+XBBkhlv_}UV}L85<#Ni&6=`(R(cRV3)zKx?zt#010Pr*$ z>1tuHgENDQ9FG+Q@S|n@yIyxcr^C^^Pi5Nauxdm{V7ZqB&2adct6Q`tiJ29LwT3M2 z)h^WKwG+?OB-e;5O2tRng{K9wdC%&$jeRsu|ai8NAF;tQLnoYW*qU|SFxFEnGLVb;l4 zFyb3!-;n45g4%t!k&8C&*l58omSC6FnGy*bW`xX`4U1qJSw6?W2g~JY<#P|#kG!R* zfQB-ricO{KM}XxysY_ZgXog?cwt>`Tw^_y40(<4HtOkVnn&um?w}p1_vS+wA$gIy# zoUS0eK?~1(4G@HqqjvT(poFy6T3nrU6M@OEb??(bfmc!kOUY^8w!m! zztL#m9q1mzx4f$jwu_Shi||avB}VSifr8>uRSF05$x8>xk~)cU8`g@h!+{W@_#r{& zCIJuAMjPsC(^SMcGUfXZm!hHK8=w$v=p!xhX=Sa-t0Ljaom`LSKHmIXY8c9Hj_So8 z7Z!@Y1C*G4CT)Hqdj%jjG^$1DK!jz5<#wNJcS`X7OrPvE zVZ@0UK-ExFMLdPJ;)H6sw!tiElS$Uow&Vd{GWE1=xLHK3ebOhz`=KJ{@r8F~)j6Do zs%Mg@eHCO+5h2d)o#)srlX6<+FbBgrOZhpWFc6eLqFGs^@BrT*YnR!AiIb6WMdViR z!XjT4UX@Pt#H4bKiCrMiNMET7$Ol70Ai8KgwB=&*Q(=rZ?NGV;SAXP#+>@s+=itQd zsW%XJZNefUS=qZ*<@WTvGns=KC*h&rv3^?z4F+GbP=oml@Q^OLqp3Lyq!}dXID=gdl?fpYD6d~_?4}-qc^PKy=n&k@o zdnkuEhV(roHFjnb_6rNZWO}Vy>lMH@qJL{{mO}c?Ug{L-mhfHllX2>;TamA$wrtY> zMMN7a>GWboj9eRsbLNu=!@k8A@REXma`|?U&2zo>L&h{d#^m0kFEPxK`91F`iWW!x z>2(xZpz31Qa}OmC@=!gF;_HNY>~`PC?f!sg-3Y2qG2S?nOFg{Lw$WaFf!?OMagxIE{cRM zHGkylT8W#R+pDm*Y5Uc&N9km$!}hKGW2(O-VMg}mUO4FEAPJLCcS6*gQKzC-epou%Jf0MtPYge@Im#swmFeMT0ge;<)yE|1> z`oIObYPHLE52!BB3v3B!zmZ#+uXkSV2JiNe%moSf*S^~<*M|6$>ZhW@pc^U^lVPY? z-0UMIxn`GwLu^33GnCrXW0jy7|bHq$DtBL+*+etoBnL@P(yC4FIhCl zQv|Um{=}UZ!ph8U$zH4=ld~He8%y@mK6sr`5K>yB*G^e@ttx7Y@uY_1G&Q~0yuH1% zkL9}(6FVj*+{((zF#Qj&g?F}xz9p)wO=3amkq~?R8)^T)i_H40HfU;9IVd1UeN*I$KQFFVEEZvGLS4`B@gG) zs4SGZE3=$sXCvmgkBvA~Pp0P#Z|hd^a5%o~G<`bQ!m-ri`+V*U~W`{m(1oTqsoG0uVxmCHrR7HRVP7x9F{K7>(!E7F@! zt2;?W+YS0ESz^uZyr{AnQ;V7nR$uR%E~W`Qwrt0swUtPhM%S2mabc#`=tXxgOUn&x zj=}u_6Ok+WHPvvZkF;=h!>A@3p;v+&7XwPH%3Oga6N;U=O+l|kWtFf~7d7PlGCY3T zkKmE0bI=FGEB+$E@7xt)_?aR|H`Tl~@=?PYNZ5Ujezbb{6*pg~Y8js3msr0bPRJJH zjbc%_IR;W;#7dO_6yeRJ8CZ3-xvR@^K*a$xsl`t8wzjqw@J+paIha2V9|INOV`mWW z=zgDiOyg3kT<6D)uvyA%ZQyO=G-^GqZu@~^<;fi_<5*iZ;Kdzv21-;3Daw<=VsdAW zR;TEJ2GD2#1_M}G0T5&^|0n6I>o=55sY$;>7T+00opLP=DNbmmR#@7Y?>K7LZ`jYW zLB+KH=JFp&`j19*JLBWR*NJEDF;ZHo$DWKB*V>(PkOU#bRy+Ya1D|pENGV9{-NL%U zhHwOtNB{~2AP_trU_O5(IX99&JSMEIQV~Q{$GNsQVQWsK`EQ2y)!o0w%G#186t_Zl zbLc-q*z%qKSHN#*|6YpcR?Ejb{zVcTc>hTGf18JIrTWqDZwu#8nxjH5K9+AQzi;0^ zjDaKX7Zw!qFtT|XFd$O@|F1oh_iw3x+;fmUVQ2SB2HC^BPWD1fGJ~t(mxi@iN{4-Z zE6~Hsbf+`I#iWtf59JI_1qF9@blfw-%kaOWD=_M=!dHr#f2SO@C^)uuSWfUb=f#L} z4u#RN%orS{7BS|}xZS)I1k=zo!j@8(bpfgHPRXa#o}sblf#?T(tGAzf_#hC75uD2o z{0IJbOR9Cvp_)&rsT7*o;CxKCS9!pfF)nv1@hD)4ttxKjLsj4qzP^!Iv8B&pQyKgE zxm#0D$dfH(uM=+yCno~2F=lrX(nzGH5|KI0ncZR`JS}xjrF@ac0|Nu|IXO9vgigZo zv1%w(9Kxc}W9Cw|`Kbf-UM}G3Q&Q_OD^iZ<13_p03Jbd1@LG+QTJ{s8kf0mUW8?##*uoD00&M6YMpBauT4*<_tEo2NjC5$) zswbp@lvtu9!S@3x10hzAr}Y2R$c0Aw_PFtQ|uvp}kukQD64Yc@at zQ3oN16M9I1Tw4zcfm5eWHJ}9-C}cp6c4WcjXKVnb_yN>}2bdAZZ~;nx00#APE(+P$38nphW@<2(S>7-jRSK(K(LV dfN992QviD*M2>eq73lx~002ovPDHLkV1oN%b*2CS literal 0 HcmV?d00001 diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index 3894313b4f..afa3e8d8ba 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -104,6 +104,7 @@ $width_percentile = get_parameter('width_percentile', null); $max_percentile = get_parameter('max_percentile', null); $height_module_graph = get_parameter('height_module_graph', null); $width_module_graph = get_parameter('width_module_graph', null); +$bars_graph_type = get_parameter('bars_graph_type', null); $id_agent_module = get_parameter('id_agent_module', 0); $process_simple_value = get_parameter('process_simple_value', PROCESS_VALUE_NONE); $type_percentile = get_parameter('type_percentile', 'percentile'); @@ -498,6 +499,7 @@ switch ($action) { case 'label': case 'icon': case 'auto_sla_graph': + case 'bars_graph': default: if ($type == 'label') { $values['type'] = LABEL; @@ -621,6 +623,20 @@ switch ($action) { $values['id_custom_graph'] = $id_custom_graph; } break; + case 'bars_graph': + if ($height_module_graph !== null) { + $values['height'] = $height_module_graph; + } + if ($width_module_graph !== null) { + $values['width'] = $width_module_graph; + } + if ($bars_graph_type !== null) { + $values['type_graph'] = $id_custom_graph; + } + if ($background_color !== null) { + $values['image'] = $background_color; + } + break; case 'percentile_item': case 'percentile_bar': if ($action == 'update') { @@ -683,6 +699,10 @@ switch ($action) { unset($values['image']); unset($values['type_graph']); break; + case 'bars_graph': + unset($values['image']); + unset($values['type_graph']); + break; case 'box_item': unset($values['border_width']); unset($values['border_color']); @@ -740,6 +760,7 @@ switch ($action) { case 'static_graph': case 'group_item': case 'module_graph': + case 'bars_graph': case 'simple_value': case 'label': case 'icon': @@ -820,6 +841,11 @@ switch ($action) { $elementFields['width_module_graph'] = $elementFields['width']; $elementFields['height_module_graph'] = $elementFields['height']; break; + case 'bars_graph': + $elementFields['width_module_graph'] = $elementFields['width']; + $elementFields['height_module_graph'] = $elementFields['height']; + $elementFields['bars_graph_type'] = $elementFields['type_graph']; + break; case 'box_item': $elementFields['width_box'] = $elementFields['width']; $elementFields['height_box'] = $elementFields['height']; @@ -956,6 +982,13 @@ switch ($action) { } $values['period'] = $period; break; + case 'bars_graph': + $values['type'] = BARS_GRAPH; + $values['height'] = $height_module_graph; + $values['width'] = $width_module_graph; + $values['type_graph'] = $bars_graph_type; + $values['image'] = $background_color; + break; case 'auto_sla_graph': $values['type'] = AUTO_SLA_GRAPH; $values['period'] = $event_max_time_row; diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php index f039a90504..fd3ecc056e 100644 --- a/pandora_console/include/constants.php +++ b/pandora_console/include/constants.php @@ -197,6 +197,7 @@ define('SERVICE', 10); //Enterprise Item. define('GROUP_ITEM', 11); define('BOX_ITEM', 12); define('LINE_ITEM', 13); +define('BARS_GRAPH', 18); //Some styles define('MIN_WIDTH', 300); define('MIN_HEIGHT', 120); diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index b06a0c6d5c..355d6cbd1a 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -375,6 +375,9 @@ function visual_map_print_item($mode = "read", $layoutData, $link = true; } + break; + case BARS_GRAPH: + $link = true; break; case AUTO_SLA_GRAPH: $link = true; @@ -487,6 +490,17 @@ function visual_map_print_item($mode = "read", $layoutData, "&date_to=" . $date_to . "&time_to=" . $time_to . "&status=-1"; } break; + + case BARS_GRAPH: + if (empty($layout_data['id_metaconsole'])) { + $url = $config['homeurl'] . "index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=" . $layoutData['id_agent'] . + "&tab=module&edit_module=1&id_agent_module=" . $layoutData['id_agente_modulo']; + } + else { + $url = "index.php?sec=gagente&sec2=godmode/agentes/configurar_agente&id_agente=" . $layoutData['id_agent'] . + "&tab=module&edit_module=1&id_agent_module=" . $layoutData['id_agente_modulo']; + } + break; case GROUP_ITEM: $is_a_link_to_other_visualconsole = false; if ($layoutData['id_layout_linked'] != 0) { @@ -1143,6 +1157,9 @@ function visual_map_print_item($mode = "read", $layoutData, case MODULE_GRAPH: $class .= "module_graph"; break; + case MODULE_GRAPH: + $class .= "bars_graph"; + break; case SIMPLE_VALUE: case SIMPLE_VALUE_MAX: case SIMPLE_VALUE_MIN: @@ -1554,6 +1571,20 @@ function visual_map_print_item($mode = "read", $layoutData, echo $img; + if ($layoutData['label_position']=='down') { + echo io_safe_output($text); + } + elseif($layoutData['label_position']=='left' || $layoutData['label_position']=='right') { + echo io_safe_output($text); + } + break; + case BARS_GRAPH: + if ($layoutData['label_position']=='up') { + echo io_safe_output($text); + } + + echo $img; + if ($layoutData['label_position']=='down') { echo io_safe_output($text); } @@ -2947,6 +2978,10 @@ function visual_map_create_internal_name_item($label = null, $type, $image, $age case MODULE_GRAPH: $text = __('Module graph'); break; + case 'bars_graph': + case BARS_GRAPH: + $text = __('Bars graph'); + break; case 'auto_sla_graph': case AUTO_SLA_GRAPH: $text = __('Auto SLA Graph'); @@ -3062,6 +3097,9 @@ function visual_map_type_in_js($type) { case MODULE_GRAPH: return 'module_graph'; break; + case BARS_GRAPH: + return 'bars_graph'; + break; case AUTO_SLA_GRAPH: return 'auto_sla_graph'; break; diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 6194b87b78..94af9716a9 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -767,10 +767,10 @@ input.graph_min { background: #fefefe url(../../images/chart_curve.png) no-repeat center !important; } input.graph_min[disabled] { - background: #fefefe url(../../images/chart_curve.disabled.png) no-repeat center !important; + background: #fefefe url(../../images/icono-barras-arriba.disabled.png) no-repeat center !important; } input.bars_graph_min { - background: #fefefe url(../../images/chart_curve.png) no-repeat center !important; + background: #fefefe url(../../images/icono-barras-arriba.png) no-repeat center !important; } input.bars_graph_min[disabled] { background: #fefefe url(../../images/chart_curve.disabled.png) no-repeat center !important; From b9eba3454beb6b296fbc5b3ce5c601bbe988c553 Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Thu, 19 Oct 2017 13:33:51 +0200 Subject: [PATCH 077/311] Error fix --- .../godmode/reporting/visual_console_builder.editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 22c6c4d8d4..bdb791fed6 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -1660,7 +1660,7 @@ function set_static_graph_status(idElement, image, status) { data: parameter, success: function (data) { set_static_graph_status(idElement, image, data); - if(values['show_statistics'] == 1){ + if(data['show_statistics'] == 1){ if($('#'+idElement+' table').css('float') == 'right' || $('#'+idElement+ ' table').css('float') == 'left'){ $('#'+idElement+ ' img').css('margin-top', parseInt($('#'+idElement).css('height'))/2 - parseInt($('#'+idElement+ ' img').css('height'))/2); } From d5646e80b73938e319060f607bc42a6394637508 Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Thu, 19 Oct 2017 13:35:35 +0200 Subject: [PATCH 078/311] [artica/pandora_enterprise#1390] Fixed the error which caused the agent link status changed when moving a visual console item --- pandora_console/include/ajax/visual_console_builder.ajax.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index e854a31c49..08a1b069c3 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -639,7 +639,8 @@ switch ($action) { // Don't change the label because only change the positions unset($values['label']); unset($values['label_position']); - // Don't change background color in graphs when move + // Don't change this values when move + unset($values['enable_link']); switch ($type) { case 'group_item': From 5ad47dba9bc9b990f4a6d20abd67f1fd864c9f3d Mon Sep 17 00:00:00 2001 From: daniel Date: Thu, 19 Oct 2017 16:03:04 +0200 Subject: [PATCH 079/311] fixed minor error in img size in visual console --- .../include/functions_visual_map.php | 46 ++++++++++--------- 1 file changed, 25 insertions(+), 21 deletions(-) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index b06a0c6d5c..8d2ee1908d 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1268,9 +1268,12 @@ function visual_map_print_item($mode = "read", $layoutData, $imgpos = 'float:left'; } + if ($layoutData['id_metaconsole'] != 0) { + $img = "../../" . $img; + } + $varsize = getimagesize($img); - if($layoutData['show_statistics'] == 1){ if (get_parameter('action') == 'edit') { @@ -1364,34 +1367,35 @@ function visual_map_print_item($mode = "read", $layoutData, else{ if ($width == 0 || $height == 0) { + if($varsize[0] > 150 || $varsize[1] > 150){ echo html_print_image($img, true, - array("class" => "image", - "id" => "image_" . $id, - "width" => "70px", - "height" => "70px", - "title" => $img_style_title, - "style" => $borderStyle.$imgpos), false, - false, false, $isExternalLink); + array("class" => "image", + "id" => "image_" . $id, + "width" => "70px", + "height" => "70px", + "title" => $img_style_title, + "style" => $borderStyle.$imgpos), false, + false, false, $isExternalLink); } else{ echo html_print_image($img, true, - array("class" => "image", - "id" => "image_" . $id, - "title" => $img_style_title, - "style" => $borderStyle.$imgpos), false, - false, false, $isExternalLink); + array("class" => "image", + "id" => "image_" . $id, + "title" => $img_style_title, + "style" => $borderStyle.$imgpos), false, + false, false, $isExternalLink); } } else{ - echo html_print_image($img, true, - array("class" => "image", - "id" => "image_" . $id, - "width" => $width, - "height" => $height, - "title" => $img_style_title, - "style" => $borderStyle.$imgpos), false, - false, false, $isExternalLink); + echo html_print_image($img, true, + array("class" => "image", + "id" => "image_" . $id, + "width" => $width, + "height" => $height, + "title" => $img_style_title, + "style" => $borderStyle.$imgpos), false, + false, false, $isExternalLink); } } From 30f4162d91574efdf428d07cc39a5f73146de61c Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 20 Oct 2017 00:01:08 +0200 Subject: [PATCH 080/311] 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.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.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 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 0fc65262b9..c9de473966 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.713-171019 +Version: 7.0NG.713-171020 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 eb3577be08..860d0d0aa3 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.713-171019" +pandora_version="7.0NG.713-171020" 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 7070045f37..29e19d5cc8 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -41,7 +41,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.713'; -use constant AGENT_BUILD => '171019'; +use constant AGENT_BUILD => '171020'; # 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 ea4034f962..20c8966bfd 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.713 -%define release 171019 +%define release 171020 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 8b87566809..4efe506622 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.713 -%define release 171019 +%define release 171020 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 7a1ae07c28..0161e4e94d 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.713" -PI_BUILD="171019" +PI_BUILD="171020" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 60e8e6f3c6..3ce29e1c39 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{171019} +{171020} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index f4c2a56bbd..82cd5e830a 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.713(Build 171019)") +#define PANDORA_VERSION ("7.0NG.713(Build 171020)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index fb5991581c..ca3a5577bf 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.713(Build 171019))" + VALUE "ProductVersion", "(7.0NG.713(Build 171020))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index e6891cfd24..c728196979 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.713-171019 +Version: 7.0NG.713-171020 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 3d121f0864..6d2552bc23 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.713-171019" +pandora_version="7.0NG.713-171020" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 8eb990a31f..85ec3296b4 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -22,7 +22,7 @@ /** * Pandora build version and version */ -$build_version = 'PC171019'; +$build_version = 'PC171020'; $pandora_version = 'v7.0NG.713'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index d404664330..fd53e28f6c 100755 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -71,7 +71,7 @@
    Date: Fri, 20 Oct 2017 11:08:45 +0200 Subject: [PATCH 081/311] fixed multiple error static_graph meta --- pandora_console/include/ajax/visual_console_builder.ajax.php | 3 +++ pandora_console/include/functions_visual_map.php | 2 +- pandora_console/include/functions_visual_map_editor.php | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index e854a31c49..bc36606544 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -946,6 +946,9 @@ switch ($action) { $values['image'] = $image; $values['width'] = $width; $values['height'] = $height; + if(defined('METACONSOLE') && $values['id_agent'] == 0){ + $values['id_metaconsole'] = 1; + } break; case 'group_item': $values['type'] = GROUP_ITEM; diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 8d2ee1908d..8a6b1f3b76 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -421,7 +421,7 @@ function visual_map_print_item($mode = "read", $layoutData, } } else if ($is_a_link_to_other_visualconsole) { - if (empty($layout_data['id_metaconsole'])) { + if (empty($layoutData['id_metaconsole'])) { $url = $config['homeurl'] . "index.php?sec=reporting&sec2=operation/visual_console/render_view&pure=" . $config["pure"] . "&id=" . $layoutData["id_layout_linked"]; } else { diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index 54db2d8008..c6a15e446d 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -222,7 +222,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['enable_link_row']['html'] = '' . __('Enable link') . ' ' . - html_print_checkbox('enable_link', '', !is_metaconsole(), true) . ''; + html_print_checkbox('enable_link', '', 1, true) . ''; $form_items['preview_row'] = array(); From c1bd70a0f02cb7bd2cacb34b04ca487b4498daab Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Fri, 20 Oct 2017 11:44:58 +0200 Subject: [PATCH 082/311] added filter in VISUAL CONSOLE --- .../godmode/reporting/map_builder.php | 105 ++++++++++++++++-- .../include/functions_visual_map.php | 27 ++++- 2 files changed, 116 insertions(+), 16 deletions(-) diff --git a/pandora_console/godmode/reporting/map_builder.php b/pandora_console/godmode/reporting/map_builder.php index a63f4672be..720d8750ba 100644 --- a/pandora_console/godmode/reporting/map_builder.php +++ b/pandora_console/godmode/reporting/map_builder.php @@ -46,6 +46,9 @@ $delete_layout = (bool) get_parameter ('delete_layout'); $refr = (int) get_parameter('refr', $config['vc_refr']); $offset = (int) get_parameter('offset', 0); $pagination = (int) get_parameter ("pagination", $config["block_size"]); +$search = (string) get_parameter("search",""); +$ag_group = (int)get_parameter("ag_group",0); +$recursion = get_parameter("recursion",0); if ($delete_layout || $copy_layout) { // Visual console required @@ -199,6 +202,50 @@ if ($delete_layout || $copy_layout) { } } +if ($ag_group > 0) { + + $ag_groups = array(); + $ag_groups = (array)$ag_group; + if ($recursion) { + $ag_groups = groups_get_id_recursive($ag_group, true); + } +} + +echo " + "; +if(!is_metaconsole()){ + echo ""; +} else { + echo ""; +} + +echo ""; +echo ""; +echo "
    "; +echo __('Search') . ' '; +html_print_input_text ("search", $search, '', 50); + +echo ""; + +echo __('Group') . ' '; +$own_info = get_user_info($config['id_user']); +if (!$own_info['is_admin'] && !check_acl ($config['id_user'], 0, "AW")) + $return_all_group = false; +else + $return_all_group = true; +html_print_select_groups(false, "AR", $return_all_group, "ag_group", $ag_group, 'this.form.submit();', '', 0, false, false, true, '', false); + +echo ""; +echo __('Group Recursion') . ' '; +html_print_checkbox ("recursion", 1, $recursion, false, false, 'this.form.submit()'); + +echo ""; +echo ""; +echo ""; +echo "
    "; + $table = new stdClass(); $table->width = '100%'; $table->class = 'databox data'; @@ -228,31 +275,69 @@ $table->align[4] = 'left'; // or has "VR" privileges, otherwise show only maps of user group $filters['offset'] = $offset; $filters['limit'] = $pagination; +if(!empty($search)){ + $filters['name'] = io_safe_input($search); +} + +if($ag_group){ + $filters['group'] = array_flip($ag_groups); +} + $own_info = get_user_info ($config['id_user']); if (!defined('METACONSOLE')) { - $url = 'index.php?sec=network&sec2=godmode/reporting/map_builder&pagination='.$pagination; + $url = 'index.php?sec=network&sec2=godmode/reporting/map_builder&recursion='.$recursion.'&ag_group='.$ag_group.'&search='.$search.'&pagination='.$pagination; } else { - $url = 'index.php?sec=screen&sec2=screens/screens&action=visualmap&pagination='.$pagination; + $url = 'index.php?sec=screen&sec2=screens/screens&action=visualmap&recursion='.$recursion.'&ag_group='.$ag_group.'&search='.$search.'&pagination='.$pagination; } if ($own_info['is_admin'] || $vconsoles_read) { - $maps = visual_map_get_user_layouts (0,false,$filters); - $total_maps = count(visual_map_get_user_layouts()); + if($ag_group){ + $maps = visual_map_get_user_layouts (0,false,$filters,false); + unset($filters['offset']); + unset($filters['limit']); + $total_maps = count(visual_map_get_user_layouts(0,false,$filters,false)); + }else{ + $maps = visual_map_get_user_layouts (0,false,$filters); + unset($filters['offset']); + unset($filters['limit']); + $total_maps = count(visual_map_get_user_layouts(0,false,$filters)); + } } else { $maps = visual_map_get_user_layouts ($config['id_user'], false, $filters, false); + unset($filters['offset']); + unset($filters['limit']); $total_maps = count(visual_map_get_user_layouts ($config['id_user'], false, - false, false)); + $filters, false)); } if (!$maps && !is_metaconsole()) { - require_once ($config['homedir'] . "/general/firts_task/map_builder.php"); + $total = count(visual_map_get_user_layouts ($config['id_user'], false, + false, false)); + if(!$total){ + require_once ($config['homedir'] . "/general/firts_task/map_builder.php"); + } else { + ui_print_info_message( + array( + 'no_close'=>false, + 'message'=> __('No available data to show'))); + } } elseif (!$maps && is_metaconsole()) { - ui_print_info_message( - array( - 'no_close'=>true, - 'message'=> __('There are no visual console defined yet.'))); + $total = count(visual_map_get_user_layouts ($config['id_user'], false, + false, false)); + if(!$total){ + ui_print_info_message( + array( + 'no_close'=>true, + 'message'=> __('There are no visual console defined yet.'))); + }else{ + ui_print_info_message( + array( + 'no_close'=>false, + 'message'=> __('No available data to show'))); + } + } else { ui_pagination ($total_maps, $url, $offset, $pagination); diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index b06a0c6d5c..1dc9c6c06a 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -2775,14 +2775,29 @@ function visual_map_print_visual_map ($id_layout, $show_links = true, * @return array A list of layouts the user can see. */ function visual_map_get_user_layouts ($id_user = 0, $only_names = false, $filter = false, $returnAllGroup = true) { - if (! is_array ($filter)) + if (! is_array ($filter)){ $filter = array (); - - if ($returnAllGroup) + } else { + if(!empty($filter['name'])){ + $where .= "name LIKE '%".io_safe_output($filter['name'])."%'"; + unset($filter['name']); + } + } + + if ($returnAllGroup){ $groups = users_get_groups ($id_user, 'VR'); - else - $groups = users_get_groups ($id_user, 'VR', false); - + } else { + if(!empty($filter['group'])){ + $groups = $filter['group']; + unset($filter['group']); + } else { + $groups = users_get_groups ($id_user, 'VR', false); + if(empty($groups)){ + $groups = users_get_groups ($id_user, 'VM', false); + } + } + } + if (!empty($groups)) { if (empty($where)) $where = ""; From 83b0e393e1bae826e1d96474bd8f2f1a47270368 Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 21 Oct 2017 00:01:07 +0200 Subject: [PATCH 083/311] 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.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.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 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index c9de473966..633aea9426 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.713-171020 +Version: 7.0NG.713-171021 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 860d0d0aa3..bcf5735b5c 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.713-171020" +pandora_version="7.0NG.713-171021" 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 29e19d5cc8..0b00c1991e 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -41,7 +41,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.713'; -use constant AGENT_BUILD => '171020'; +use constant AGENT_BUILD => '171021'; # 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 20c8966bfd..302e76b059 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.713 -%define release 171020 +%define release 171021 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 4efe506622..85bc1a8659 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.713 -%define release 171020 +%define release 171021 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 0161e4e94d..a24944197c 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.713" -PI_BUILD="171020" +PI_BUILD="171021" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 3ce29e1c39..4278d56d39 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{171020} +{171021} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 82cd5e830a..7b54fff974 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.713(Build 171020)") +#define PANDORA_VERSION ("7.0NG.713(Build 171021)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index ca3a5577bf..2236f80d73 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.713(Build 171020))" + VALUE "ProductVersion", "(7.0NG.713(Build 171021))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index c728196979..8e437471b9 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.713-171020 +Version: 7.0NG.713-171021 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 6d2552bc23..d22b8c6b4e 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.713-171020" +pandora_version="7.0NG.713-171021" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 85ec3296b4..c8abb582b2 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -22,7 +22,7 @@ /** * Pandora build version and version */ -$build_version = 'PC171020'; +$build_version = 'PC171021'; $pandora_version = 'v7.0NG.713'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index fd53e28f6c..80a923a65c 100755 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -71,7 +71,7 @@
    Date: Sun, 22 Oct 2017 00:01:08 +0200 Subject: [PATCH 084/311] 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.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.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 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 633aea9426..7961feaad3 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.713-171021 +Version: 7.0NG.713-171022 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 bcf5735b5c..0323ed6744 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.713-171021" +pandora_version="7.0NG.713-171022" 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 0b00c1991e..8b0406b1c9 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -41,7 +41,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.713'; -use constant AGENT_BUILD => '171021'; +use constant AGENT_BUILD => '171022'; # 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 302e76b059..97e63cb926 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.713 -%define release 171021 +%define release 171022 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 85bc1a8659..409d4be686 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.713 -%define release 171021 +%define release 171022 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 a24944197c..9630e2976b 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.713" -PI_BUILD="171021" +PI_BUILD="171022" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 4278d56d39..fbcb0347ee 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{171021} +{171022} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 7b54fff974..77da27a01f 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.713(Build 171021)") +#define PANDORA_VERSION ("7.0NG.713(Build 171022)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 2236f80d73..2ba582b973 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.713(Build 171021))" + VALUE "ProductVersion", "(7.0NG.713(Build 171022))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 8e437471b9..13487ed149 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.713-171021 +Version: 7.0NG.713-171022 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 d22b8c6b4e..25be5c1851 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.713-171021" +pandora_version="7.0NG.713-171022" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index c8abb582b2..34f2e0432f 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -22,7 +22,7 @@ /** * Pandora build version and version */ -$build_version = 'PC171021'; +$build_version = 'PC171022'; $pandora_version = 'v7.0NG.713'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 80a923a65c..a6f3799879 100755 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -71,7 +71,7 @@
    Date: Mon, 23 Oct 2017 00:01:07 +0200 Subject: [PATCH 085/311] 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.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.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 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 7961feaad3..b7760155ab 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.713-171022 +Version: 7.0NG.713-171023 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 0323ed6744..8ff545fb63 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.713-171022" +pandora_version="7.0NG.713-171023" 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 8b0406b1c9..51a79215d5 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -41,7 +41,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.713'; -use constant AGENT_BUILD => '171022'; +use constant AGENT_BUILD => '171023'; # 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 97e63cb926..866d9c2716 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.713 -%define release 171022 +%define release 171023 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 409d4be686..4335097524 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.713 -%define release 171022 +%define release 171023 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 9630e2976b..2c360cd79d 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.713" -PI_BUILD="171022" +PI_BUILD="171023" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index fbcb0347ee..1f7c1d7673 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{171022} +{171023} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 77da27a01f..033f0e3d67 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.713(Build 171022)") +#define PANDORA_VERSION ("7.0NG.713(Build 171023)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 2ba582b973..5a4c64d100 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.713(Build 171022))" + VALUE "ProductVersion", "(7.0NG.713(Build 171023))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 13487ed149..be1566c3f3 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.713-171022 +Version: 7.0NG.713-171023 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 25be5c1851..f8f9fa6749 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.713-171022" +pandora_version="7.0NG.713-171023" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 34f2e0432f..87a1b9afaa 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -22,7 +22,7 @@ /** * Pandora build version and version */ -$build_version = 'PC171022'; +$build_version = 'PC171023'; $pandora_version = 'v7.0NG.713'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index a6f3799879..7fbc46ceaa 100755 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -71,7 +71,7 @@
    Date: Mon, 23 Oct 2017 08:32:41 +0200 Subject: [PATCH 086/311] Added item to editor --- .../visual_console_builder.editor.js | 94 ++++---------- .../ajax/visual_console_builder.ajax.php | 18 +-- .../include/functions_visual_map.php | 116 +++++++++++++++++- .../include/functions_visual_map_editor.php | 2 +- 4 files changed, 151 insertions(+), 79 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index e84c5d8c56..39eccab60e 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -421,39 +421,14 @@ function update_button_palette_callback() { setModuleGraph(idItem); break; case 'bars_graph': - if($('#dir_items').html() == 'horizontal'){ - if(parseInt($('#text-left').val()) + (parseInt($('input[name=height_module_graph]').val() * $('#count_items').html())) > parseInt($('#background').css('width')) - || parseInt($('#text-left').val()) + (parseInt($('input[name=width_module_graph]').val() * $('#count_items').html())) > parseInt($('#background').css('width'))){ - - alert($('#count_items').html()+' joined graph items are wider than background'); - return false; - - } - } - - if($('#dir_items').html() == 'vertical'){ - if(parseInt($('#text-top').val()) + (parseInt($('input[name=height_module_graph]').val() * $('#count_items').html())) > parseInt($('#background').css('height'))){ - alert($('#count_items').html()+' joined graph items are higher than background'); - return false; - - } - } - - if($('input[name=width_module_graph]').val() == ''){ + if($('input[name=width_percentile]').val() == ''){ alert('Undefined width'); return false; } - if($('input[name=height_module_graph]').val() == ''){ - alert('Undefined height'); - return false; - } - if($('#custom_graph_row').css('display') != 'none' && $("#custom_graph option:selected").html() == 'None'){ - alert('Undefined graph'); - return false; - } $("#text_" + idItem).html(values['label']); $("#image_" + idItem).attr("src", "images/spinner.gif"); + setBarsGraph(idItem, values); break; case 'auto_sla_graph': @@ -701,7 +676,7 @@ function readFields() { function create_button_palette_callback() { var values = readFields(); - +console.log(values); //VALIDATE DATA var validate = true; switch (creationItem) { @@ -804,14 +779,6 @@ function create_button_palette_callback() { } break; case 'bars_graph': - if (values['width_module_graph'] == '') { - alert('Undefined width'); - validate = false; - } - if (values['height_module_graph'] == '') { - alert('Undefined height'); - validate = false; - } if ((values['agent'] == '')) { alert($("#message_alert_no_agent").html()); validate = false; @@ -1811,6 +1778,8 @@ function setBarsGraph(id_data, values) { url_hack_metaconsole = '../../'; } + width_percentile = values['width_percentile']; + parameter = Array(); parameter.push ({name: "page", value: "include/ajax/visual_console_builder.ajax"}); @@ -1825,24 +1794,24 @@ function setBarsGraph(id_data, values) { dataType: 'json', success: function (data) { if (data['no_data'] == true) { - if (values['width'] == "0" || values['height'] == "0") { + if (values['width'] == "0") { $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/barras-no.png'); } else { $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/barras-no.png'); - $("#" + id_data + " img").css('width', values['width'] + 'px'); - $("#" + id_data + " img").css('height', values['height'] + 'px'); + $("#" + id_data + " img").css('width', width_percentile + 'px'); + $("#" + id_data + " img").css('height', width_percentile + 'px'); } } else { $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/barras.png'); - if($('#text-width').val() == 0 || $('#text-height').val() == 0){ + if($('#text-width').val() == 0){ // Image size } else{ - $("#" + id_data + " img").css('width', $('#text-width').val()+'px'); - $("#" + id_data + " img").css('height', $('#text-height').val()+'px'); + $("#" + id_data + " img").css('width', $('#text-width_percentile').val()+'px'); + $("#" + id_data + " img").css('height', $('#text-width_percentile').val()+'px'); } } @@ -2344,34 +2313,23 @@ function createItem(type, values, id_data) { } if(values['show_statistics'] != 1){ - - if ((values['width'] == 0) || (values['height'] == 0)) { - // Do none - if($('#preview > img')[0].naturalWidth > 150 || $('#preview > img')[0].naturalHeight > 150){ - $image.attr('width', '70') - .attr('height', '70'); - } - else{ - $image.attr('width', $('#preview > img')[0].naturalWidth) - .attr('height', $('#preview > img')[0].naturalHeight); - } - } - else { - $image.attr('width', values['width']) - .attr('height', values['height']); + if ((values['width'] == 0) || (values['height'] == 0)) { + // Do none + if($('#preview > img')[0].naturalWidth > 150 || $('#preview > img')[0].naturalHeight > 150){ + $image.attr('width', '70') + .attr('height', '70'); } + else{ + $image.attr('width', $('#preview > img')[0].naturalWidth) + .attr('height', $('#preview > img')[0].naturalHeight); + } } - // else{ - // $('#image_'+id_data).css('width', values['width']+'px'); - // $('#image_'+id_data).css('height', values['height']+'px'); - // } -/* - var $span = $('') - .attr('id', 'text_' + id_data) - .attr('class', 'text') - .append(values['label']); - -*/ + else { + $image.attr('width', values['width']) + .attr('height', values['height']); + } + } + var $input = $('') .attr('id', 'hidden-status_' + id_data) .attr('type', 'hidden') diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index afa3e8d8ba..6fee42aa22 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -624,11 +624,8 @@ switch ($action) { } break; case 'bars_graph': - if ($height_module_graph !== null) { - $values['height'] = $height_module_graph; - } - if ($width_module_graph !== null) { - $values['width'] = $width_module_graph; + if ($width_percentile !== null) { + $values['width'] = $width_percentile; } if ($bars_graph_type !== null) { $values['type_graph'] = $id_custom_graph; @@ -842,8 +839,7 @@ switch ($action) { $elementFields['height_module_graph'] = $elementFields['height']; break; case 'bars_graph': - $elementFields['width_module_graph'] = $elementFields['width']; - $elementFields['height_module_graph'] = $elementFields['height']; + $elementFields['width_percentile'] = $elementFields['width']; $elementFields['bars_graph_type'] = $elementFields['type_graph']; break; case 'box_item': @@ -984,8 +980,12 @@ switch ($action) { break; case 'bars_graph': $values['type'] = BARS_GRAPH; - $values['height'] = $height_module_graph; - $values['width'] = $width_module_graph; + if ($width_percentile == null) { + $values['width'] = 0; + } + else { + $values['width'] = $width_percentile; + } $values['type_graph'] = $bars_graph_type; $values['image'] = $background_color; break; diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 355d6cbd1a..84256db7fb 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1080,6 +1080,120 @@ function visual_map_print_item($mode = "read", $layoutData, } break; + + case BARS_GRAPH: + + $imgpos = ''; + + if($layoutData['label_position']=='left'){ + $imgpos = 'float:right'; + } + else if($layoutData['label_position']=='right'){ + $imgpos = 'float:left'; + } + + if (!empty($proportion)) { + $width = + ((integer)($proportion['proportion_width'] * $width)); + $height = + ((integer)($proportion['proportion_height'] * $height)); + } + //Metaconsole db connection + if ($layoutData['id_metaconsole'] != 0) { + $connection = db_get_row_filter ('tmetaconsole_setup', + array('id' => $layoutData['id_metaconsole'])); + if (metaconsole_load_external_db($connection) != NOERR) { + continue; + } + } + + if ($isExternalLink) + $homeurl = $config['homeurl']; + else + $homeurl = ''; + + if ( (get_parameter('action') == 'edit') || (get_parameter('operation') == 'edit_visualmap') ) { + if($width == 0){ + if ($layoutData['id_metaconsole'] != 0) { + $img = ''; + } + else{ + $img = ''; + } + } + else{ + if ($layoutData['id_metaconsole'] != 0) { + $img = ''; + } + else{ + $img = ''; + } + } + } + else { + if ($width == 0) { + if ($layoutData['label_position']=='left') { + $img = '
    '. + grafico_modulo_sparse($id_module, $period, + 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, 1, false, 0, + modules_get_unit($id_module), 0, 0, true, $only_image, '', 1, false, '', + false, false, false, $layoutData['image'], + null, true, false, $type_graph) . '
    '; + } + elseif($layoutData['label_position']=='right') { + $img = '
    ' . + grafico_modulo_sparse($id_module, + $period, 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, + 1, false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', + 1, false, '', false, false, false, + $layoutData['image'], null, true, + false, $type_graph) . '
    '; + } + else { + $img = grafico_modulo_sparse($id_module, + $period, 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, 1, + false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', + 1, false, '', false, false, false, + $layoutData['image'], null, true, false, $type_graph); + } + } + else{ + if ($layoutData['label_position']=='left') { + $img = '
    ' . + grafico_modulo_sparse($id_module, $period, + 0, $width, $height, modules_get_agentmodule_name($id_module), null, false, 1, + false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', + 1, false, '', false, false, false, + $layoutData['image'], null, true, + false, $type_graph) . '
    '; + } + elseif ($layoutData['label_position']=='right') { + $img = '
    ' . + grafico_modulo_sparse($id_module, $period, + 0, $width, $height, modules_get_agentmodule_name($id_module), null, false, 1, + false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, + '', 1, false, modules_get_unit($id_module), false, false, false, + $layoutData['image'], null, true, + false, $type_graph) . '
    '; + } + else { + $img = grafico_modulo_sparse($id_module, + $period, 0, $width, $height, modules_get_agentmodule_name($id_module), null, + false, 1, false, 0, modules_get_unit($id_module), 0, 0, true, + $only_image, '', 1, false, '', false, + false, false, $layoutData['image'], + null, false, true, $type_graph); + } + } + } + + //Restore db connection + if ($layoutData['id_metaconsole'] != 0) { + metaconsole_restore_db(); + } + + break; + case LABEL: $z_index = 4 + 1; break; @@ -1157,7 +1271,7 @@ function visual_map_print_item($mode = "read", $layoutData, case MODULE_GRAPH: $class .= "module_graph"; break; - case MODULE_GRAPH: + case BARS_GRAPH: $class .= "bars_graph"; break; case SIMPLE_VALUE: diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index edbf86ccd4..8fb0db1abe 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -399,7 +399,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['percentile_bar_row_1'] = array(); - $form_items['percentile_bar_row_1']['items'] = array('percentile_bar', 'percentile_item', 'datos'); + $form_items['percentile_bar_row_1']['items'] = array('percentile_bar', 'percentile_item', 'datos', 'bars_graph'); $form_items['percentile_bar_row_1']['html'] = '' . __('Width') . ' ' . html_print_input_text('width_percentile', 0, '', 3, 5, true) . ''; From cb7390371c6576efd57136491626260567fd5a20 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Mon, 23 Oct 2017 09:21:57 +0200 Subject: [PATCH 087/311] Replace the index data_index1 on tagente_datos with a composite index. Agent data is always searched by agent id and utimestamp. A composite index makes queries on tagente_datos a lot faster. pandora_db.pl can still use the existing index on utimestamp. Ref pandora_enterprise#1485. --- pandora_console/pandoradb.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 0d749db694..95e93774a4 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -99,7 +99,7 @@ CREATE TABLE IF NOT EXISTS `tagente_datos` ( `id_agente_modulo` int(10) unsigned NOT NULL default '0', `datos` double(22,5) default NULL, `utimestamp` bigint(20) default '0', - KEY `data_index1` (`id_agente_modulo`), + KEY `data_index1` (`id_agente_modulo`, `utimestamp`), KEY `idx_utimestamp` USING BTREE (`utimestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ; @@ -120,7 +120,7 @@ CREATE TABLE IF NOT EXISTS `tagente_datos_string` ( `id_agente_modulo` int(10) unsigned NOT NULL default '0', `datos` mediumtext NOT NULL, `utimestamp` int(20) unsigned NOT NULL default 0, - KEY `data_string_index_1` (`id_agente_modulo`), + KEY `data_string_index_1` (`id_agente_modulo`, `utimestamp`), KEY `idx_utimestamp` USING BTREE (`utimestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; From 12f51156f8c290feedf277fe079ed2af31d37145 Mon Sep 17 00:00:00 2001 From: daniel Date: Mon, 23 Oct 2017 10:35:57 +0200 Subject: [PATCH 088/311] fixed error background image metaconsole --- .../reporting/visual_console_builder.php | 54 +++++++++---------- .../include/functions_visual_map.php | 10 +++- 2 files changed, 33 insertions(+), 31 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.php b/pandora_console/godmode/reporting/visual_console_builder.php index fa997be6e5..7288784acf 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.php +++ b/pandora_console/godmode/reporting/visual_console_builder.php @@ -205,11 +205,7 @@ switch ($activeTab) { // If the background is changed the size is reseted $background_now = $visualConsole['background']; - /*if ($background_now != $background && $background) { - $sizeBackground = getimagesize($config['homedir'] . '/images/console/background/' . $background); - $values['width'] = $sizeBackground[0]; - $values['height'] = $sizeBackground[1]; - }*/ + $values['width'] = $width; $values['height'] = $height; switch ($action) { @@ -237,33 +233,31 @@ switch ($activeTab) { break; case 'save': - if (!defined('METACONSOLE')) { - if ($values['name'] != "" && $values['background']) - $idVisualConsole = db_process_sql_insert('tlayout', $values); - else - $idVisualConsole = false; + if ($values['name'] != "" && $values['background']) + $idVisualConsole = db_process_sql_insert('tlayout', $values); + else + $idVisualConsole = false; + + if ($idVisualConsole !== false) { + db_pandora_audit( "Visual console builder", "Create visual console #$idVisualConsole"); + $action = 'edit'; + $statusProcessInDB = array('flag' => true, + 'message' => ui_print_success_message(__('Successfully created.'), '', true)); - if ($idVisualConsole !== false) { - db_pandora_audit( "Visual console builder", "Create visual console #$idVisualConsole"); - $action = 'edit'; - $statusProcessInDB = array('flag' => true, - 'message' => ui_print_success_message(__('Successfully created.'), '', true)); - - // Return the updated visual console - $visualConsole = db_get_row_filter('tlayout', - array('id' => $idVisualConsole)); - // Update the ACL - //$vconsole_read = $vconsole_read_new; - $vconsole_write = $vconsole_write_new; - $vconsole_manage = $vconsole_manage_new; - } - else { - db_pandora_audit( "Visual console builder", "Fail try to create visual console"); - $statusProcessInDB = array('flag' => false, - 'message' => ui_print_error_message(__('Could not be created.'), '', true)); - } + // Return the updated visual console + $visualConsole = db_get_row_filter('tlayout', + array('id' => $idVisualConsole)); + // Update the ACL + //$vconsole_read = $vconsole_read_new; + $vconsole_write = $vconsole_write_new; + $vconsole_manage = $vconsole_manage_new; } - break; + else { + db_pandora_audit( "Visual console builder", "Fail try to create visual console"); + $statusProcessInDB = array('flag' => false, + 'message' => ui_print_error_message(__('Could not be created.'), '', true)); + } + break; } break; diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 8a6b1f3b76..febad658cb 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1650,6 +1650,13 @@ function visual_map_print_item($mode = "read", $layoutData, } break; case LABEL: + if (get_parameter('action') == 'edit' || get_parameter('operation') == 'edit_visualmap') { + $aux_text1 = explode("", $aux_text1[1]); + $aux_text3 = explode("", $aux_text2[1]); + + $text = $aux_text1[0].$aux_text3[0].$aux_text3[1]; + } echo io_safe_output($text); break; case ICON: @@ -2682,9 +2689,10 @@ function visual_map_print_visual_map ($id_layout, $show_links = true, $mapWidth = $layout["width"]; $mapHeight = $layout["height"]; $backgroundImage = ''; - if ($layout["background"] != 'None.png' ) + if ($layout["background"] != 'None.png' ){ $backgroundImage = $metaconsole_hack . 'images/console/background/' . $layout["background"]; + } } if (defined('METACONSOLE')) { From 68ac55e33c6e948c4b5975086e9aafd8007c6881 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Mon, 23 Oct 2017 10:43:12 +0200 Subject: [PATCH 089/311] Added first version of new windows module type module_logchannel --- pandora_agents/win32/Makefile.am | 2 +- .../modules/pandora_module_logchannel.cc | 537 ++++++++++++++++++ .../win32/modules/pandora_module_logchannel.h | 85 +++ 3 files changed, 623 insertions(+), 1 deletion(-) create mode 100755 pandora_agents/win32/modules/pandora_module_logchannel.cc create mode 100755 pandora_agents/win32/modules/pandora_module_logchannel.h diff --git a/pandora_agents/win32/Makefile.am b/pandora_agents/win32/Makefile.am index 6e47cafcc1..d41c722ced 100644 --- a/pandora_agents/win32/Makefile.am +++ b/pandora_agents/win32/Makefile.am @@ -3,7 +3,7 @@ if DEBUG PandoraAgent_SOURCES = misc/pandora_file.cc modules/pandora_data.cc modules/pandora_module_factory.cc modules/pandora_module.cc modules/pandora_module_list.cc modules/pandora_module_plugin.cc modules/pandora_module_inventory.cc modules/pandora_module_freememory.cc modules/pandora_module_exec.cc modules/pandora_module_perfcounter.cc modules/pandora_module_proc.cc modules/pandora_module_tcpcheck.cc modules/pandora_module_freememory_percent.cc modules/pandora_module_freedisk.cc modules/pandora_module_freedisk_percent.cc modules/pandora_module_logevent.cc modules/pandora_module_service.cc modules/pandora_module_cpuusage.cc modules/pandora_module_wmiquery.cc modules/pandora_module_regexp.cc modules/pandora_module_ping.cc modules/pandora_module_snmpget.cc udp_server/udp_server.cc main.cc pandora_strutils.cc pandora.cc windows_service.cc pandora_agent_conf.cc windows/pandora_windows_info.cc windows/pandora_wmi.cc pandora_windows_service.cc misc/md5.c misc/sha256.cc windows/wmi/disphelper.c ssh/libssh2/channel.c ssh/libssh2/mac.c ssh/libssh2/session.c ssh/libssh2/comp.c ssh/libssh2/misc.c ssh/libssh2/sftp.c ssh/libssh2/crypt.c ssh/libssh2/packet.c ssh/libssh2/userauth.c ssh/libssh2/hostkey.c ssh/libssh2/publickey.c ssh/libssh2/kex.c ssh/libssh2/scp.c ssh/pandora_ssh_client.cc ssh/pandora_ssh_test.cc ftp/pandora_ftp_client.cc ftp/pandora_ftp_test.cc debug_new.cpp PandoraAgent_CXXFLAGS=-g -O0 else -PandoraAgent_SOURCES = misc/pandora_file.cc modules/pandora_data.cc modules/pandora_module_factory.cc modules/pandora_module.cc modules/pandora_module_list.cc modules/pandora_module_plugin.cc modules/pandora_module_inventory.cc modules/pandora_module_freememory.cc modules/pandora_module_exec.cc modules/pandora_module_perfcounter.cc modules/pandora_module_proc.cc modules/pandora_module_tcpcheck.cc modules/pandora_module_freememory_percent.cc modules/pandora_module_freedisk.cc modules/pandora_module_freedisk_percent.cc modules/pandora_module_logevent.cc modules/pandora_module_service.cc modules/pandora_module_cpuusage.cc modules/pandora_module_wmiquery.cc modules/pandora_module_regexp.cc modules/pandora_module_ping.cc modules/pandora_module_snmpget.cc udp_server/udp_server.cc main.cc pandora_strutils.cc pandora.cc windows_service.cc pandora_agent_conf.cc windows/pandora_windows_info.cc windows/pandora_wmi.cc pandora_windows_service.cc misc/md5.c misc/sha256.cc windows/wmi/disphelper.c ssh/libssh2/channel.c ssh/libssh2/mac.c ssh/libssh2/session.c ssh/libssh2/comp.c ssh/libssh2/misc.c ssh/libssh2/sftp.c ssh/libssh2/crypt.c ssh/libssh2/packet.c ssh/libssh2/userauth.c ssh/libssh2/hostkey.c ssh/libssh2/publickey.c ssh/libssh2/kex.c ssh/libssh2/scp.c ssh/pandora_ssh_client.cc ssh/pandora_ssh_test.cc ftp/pandora_ftp_client.cc ftp/pandora_ftp_test.cc +PandoraAgent_SOURCES = misc/pandora_file.cc modules/pandora_data.cc modules/pandora_module_factory.cc modules/pandora_module.cc modules/pandora_module_list.cc modules/pandora_module_plugin.cc modules/pandora_module_inventory.cc modules/pandora_module_freememory.cc modules/pandora_module_exec.cc modules/pandora_module_perfcounter.cc modules/pandora_module_proc.cc modules/pandora_module_tcpcheck.cc modules/pandora_module_freememory_percent.cc modules/pandora_module_freedisk.cc modules/pandora_module_freedisk_percent.cc modules/pandora_module_logevent.cc modules/pandora_module_logchannel.cc modules/pandora_module_service.cc modules/pandora_module_cpuusage.cc modules/pandora_module_wmiquery.cc modules/pandora_module_regexp.cc modules/pandora_module_ping.cc modules/pandora_module_snmpget.cc udp_server/udp_server.cc main.cc pandora_strutils.cc pandora.cc windows_service.cc pandora_agent_conf.cc windows/pandora_windows_info.cc windows/pandora_wmi.cc pandora_windows_service.cc misc/md5.c misc/sha256.cc windows/wmi/disphelper.c ssh/libssh2/channel.c ssh/libssh2/mac.c ssh/libssh2/session.c ssh/libssh2/comp.c ssh/libssh2/misc.c ssh/libssh2/sftp.c ssh/libssh2/crypt.c ssh/libssh2/packet.c ssh/libssh2/userauth.c ssh/libssh2/hostkey.c ssh/libssh2/publickey.c ssh/libssh2/kex.c ssh/libssh2/scp.c ssh/pandora_ssh_client.cc ssh/pandora_ssh_test.cc ftp/pandora_ftp_client.cc ftp/pandora_ftp_test.cc PandoraAgent_CXXFLAGS=-O2 endif diff --git a/pandora_agents/win32/modules/pandora_module_logchannel.cc b/pandora_agents/win32/modules/pandora_module_logchannel.cc new file mode 100755 index 0000000000..b85e791d3b --- /dev/null +++ b/pandora_agents/win32/modules/pandora_module_logchannel.cc @@ -0,0 +1,537 @@ +/* Pandora logchannel module. This module checks for log events that match a given + pattern using XML functions provided by wevtapi. + + Copyright (C) 2017 Artica ST. + Written by Fermin Hernandez. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + +#include +#include +#include +#include + +#include "pandora_module_logchannel.h" +#include "../windows/pandora_wmi.h" +#include "../pandora_windows_service.h" +#include "pandora_module_logchannel.h" +#include "pandora_strutils.h" + +using namespace Pandora; +using namespace Pandora_Modules; +using namespace Pandora_Strutils; + +// Pointers to Wevtapi.dll functions +static HINSTANCE WINEVENT = NULL; +static EvtQueryT EvtQueryF = NULL; +static EvtNextT EvtNextF = NULL; +static EvtSeekT EvtSeekF = NULL; +static EvtCreateRenderContextT EvtCreateRenderContextF = NULL; +static EvtRenderT EvtRenderF = NULL; +static EvtCloseT EvtCloseF = NULL; +static EvtFormatMessageT EvtFormatMessageF = NULL; +static EvtOpenPublisherMetadataT EvtOpenPublisherMetadataF = NULL; +static EvtCreateBookmarkT EvtCreateBookmarkF = NULL; +static EvtUpdateBookmarkT EvtUpdateBookmarkF = NULL; + +/** + * Creates a Pandora_Module_Logchannel object. + * + * @param name Module name. + * @param service_name Service internal name to check. + */ +Pandora_Module_Logchannel::Pandora_Module_Logchannel (string name, string source, string type, string id, string pattern, string application) + : Pandora_Module (name) { + int i; + string upper_type = type; + + // Convert the type string to uppercase + for (i = 0; i < type.length(); i++) { + upper_type[i] = toupper(type[i]); + } + + // Set the type filter + if (upper_type.compare("ERROR") == 0) { + this->type = EVENTLOG_ERROR_TYPE; + } else if (upper_type.compare("WARNING") == 0) { + this->type = EVENTLOG_WARNING_TYPE; + } else if (upper_type.compare("INFORMATION") == 0) { + this->type = EVENTLOG_INFORMATION_TYPE; + } else if (upper_type.compare("AUDIT SUCCESS") == 0) { + this->type = EVENTLOG_AUDIT_SUCCESS; + } else if (upper_type.compare("AUDIT FAILURE") == 0) { + this->type = EVENTLOG_AUDIT_FAILURE; + } else { + this->type = -1; + } + + this->id = strtoul (id.c_str (), NULL, 0); + this->source = source; + this->pattern = pattern; + if (! pattern.empty ()) { + // Compile the regular expression + if (regcomp (&this->regexp, pattern.c_str (), REG_EXTENDED) != 0) { + pandoraLog ("Invalid regular expression %s", pattern.c_str ()); + } + } + this->application = application; + this->bookmark_xml = L""; + this->setKind (module_logchannel_str); + + // Load Wevtapi.dll and some functions + if (WINEVENT == NULL) { + WINEVENT = LoadLibrary("Wevtapi.dll"); + if (WINEVENT == NULL) { + + // Log to the bedug log, since this is not an error + pandoraLog ("Library Wevtapi.dll not available"); + return; + } + + EvtQueryF = (EvtQueryT) GetProcAddress (WINEVENT, "EvtQuery"); + if (EvtQueryF == NULL) { + pandoraLog ("Error loading function EvtQuery from Wevtapi.dll"); + FreeLibrary (WINEVENT); + WINEVENT = NULL; + return; + } + EvtNextF = (EvtNextT) GetProcAddress (WINEVENT, "EvtNext"); + if (EvtNextF == NULL) { + pandoraLog ("Error loading function EvtNext from Wevtapi.dll"); + FreeLibrary (WINEVENT); + WINEVENT = NULL; + return; + } + EvtSeekF = (EvtSeekT) GetProcAddress (WINEVENT, "EvtSeek"); + if (EvtSeekF == NULL) { + pandoraLog ("Error loading function EvtSeek from Wevtapi.dll"); + FreeLibrary (WINEVENT); + WINEVENT = NULL; + return; + } + EvtCreateRenderContextF = (EvtCreateRenderContextT) GetProcAddress (WINEVENT, "EvtCreateRenderContext"); + if (EvtCreateRenderContextF == NULL) { + pandoraLog ("Error loading function EvtCreateRenderContext from Wevtapi.dll"); + FreeLibrary (WINEVENT); + WINEVENT = NULL; + return; + } + EvtRenderF = (EvtRenderT) GetProcAddress (WINEVENT, "EvtRender"); + if (EvtRenderF == NULL) { + pandoraLog ("Error loading function EvtRender from Wevtapi.dll"); + FreeLibrary (WINEVENT); + WINEVENT = NULL; + return; + } + EvtCloseF = (EvtCloseT) GetProcAddress (WINEVENT, "EvtClose"); + if (EvtCloseF == NULL) { + pandoraLog ("Error loading function EvtClose from Wevtapi.dll"); + FreeLibrary (WINEVENT); + WINEVENT = NULL; + return; + } + EvtFormatMessageF = (EvtFormatMessageT) GetProcAddress (WINEVENT, "EvtFormatMessage"); + if (EvtFormatMessageF == NULL) { + pandoraLog ("Error loading function EvtFormatMessage from Wevtapi.dll"); + FreeLibrary (WINEVENT); + WINEVENT = NULL; + return; + } + EvtOpenPublisherMetadataF = (EvtOpenPublisherMetadataT) GetProcAddress (WINEVENT, "EvtOpenPublisherMetadata"); + if (EvtOpenPublisherMetadataF == NULL) { + pandoraLog ("Error loading function EvtOpenPublisherMetadata from Wevtapi.dll"); + FreeLibrary (WINEVENT); + WINEVENT = NULL; + return; + } + EvtCreateBookmarkF = (EvtCreateBookmarkT) GetProcAddress (WINEVENT, "EvtCreateBookmark"); + if (EvtCreateBookmarkF == NULL) { + pandoraLog ("Error loading function EvtCreateBookmark from Wevtapi.dll"); + FreeLibrary (WINEVENT); + WINEVENT = NULL; + return; + } + EvtUpdateBookmarkF = (EvtUpdateBookmarkT) GetProcAddress (WINEVENT, "EvtUpdateBookmark"); + if (EvtUpdateBookmarkF == NULL) { + pandoraLog ("Error loading function EvtUpdateBookmark from Wevtapi.dll"); + FreeLibrary (WINEVENT); + WINEVENT = NULL; + return; + } + } +} + +void +Pandora_Module_Logchannel::run () { + list event_list; + list::iterator event; + SYSTEMTIME system_time; + + // Run + try { + Pandora_Module::run (); + } catch (Interval_Not_Fulfilled e) { + return; + } + + // Initialize log event query + this->initializeLogChannel(); + + // Read events on a list + this->getLogEvents (event_list); + + // Return if no data stored on list + if (event_list.size () < 1) return; + + for (event = event_list.begin (); event != event_list.end(); ++event) { + // Store the data + this->setOutput (*event); + } +} + +/** + * Fill the first bookmark of events. + */ +void +Pandora_Module_Logchannel::initializeLogChannel () { + EVT_HANDLE hEvents[1]; + EVT_HANDLE hResults; + EVT_HANDLE hBookmark; + DWORD dwReturned = 0; + string filter = "*"; + + // Check whether the first bookmark is set + if (!this->bookmark_xml.empty()) return; + + // Open the event log with a query + hResults = EvtQueryF ( + NULL, + strAnsiToUnicode (this->source.c_str()).c_str(), + strAnsiToUnicode (filter.c_str()).c_str(), + EvtOpenChannelPath | EvtQueryForwardDirection + ); + if (hResults == NULL) { + pandoraDebug ("Could not open event log channel. Error: '%d'", GetLastError()); + return; + } + + // Put the events on the last event + if (!EvtSeekF(hResults, 0, NULL, 0, EvtSeekRelativeToLast)) { + pandoraDebug("Cannot positionate the event at first. 'Error %d'.", GetLastError()); + EvtCloseF(hResults); + return; + } + // Read next event to positionate the bookmark + if (!EvtNextF(hResults, 1, hEvents, INFINITE, 0, &dwReturned)) { + if (GetLastError() != ERROR_NO_MORE_ITEMS) { + pandoraDebug ("EvtNext (initializeLogChannel) error: %d", GetLastError()); + EvtCloseF(hResults); + return; + } + } + // If no events read, do not use bookmark to read all events + if (dwReturned == 0) { + pandoraDebug("No events found positionating bookmark."); + EvtCloseF(hResults); + return; + } + // Create the bookmar + pandoraDebug("Creating bookmark to channel %s", this->source.c_str()); + hBookmark = EvtCreateBookmarkF(NULL); + if (hBookmark == NULL) { + pandoraDebug("EvtCreateBookmark (initializeLogChannel) failed %d", GetLastError()); + EvtCloseF(hResults); + EvtCloseF(hEvents[0]); + return; + } + if (!EvtUpdateBookmarkF(hBookmark, hEvents[0])) { + pandoraDebug("EvtUpdateBookmarkF (initializeLogChannel) failed %d", GetLastError()); + EvtCloseF(hResults); + EvtCloseF(hEvents[0]); + EvtCloseF(hBookmark); + return; + } + // Save the bookmark like an XML. + this->updateBookmarkXML(hBookmark); + + // Clean tasks + EvtCloseF(hResults); + EvtCloseF(hBookmark); + EvtCloseF(hEvents[0]); +} + +/** + * Update the bookmark XML. Returns false if fails + */ +bool +Pandora_Module_Logchannel::updateBookmarkXML (EVT_HANDLE hBookmark) { + LPWSTR pBookmarkXml = NULL; + DWORD dwBufferSize = 0; + DWORD dwBufferUsed = 0; + DWORD dwPropertyCount = 0; + DWORD status = 0; + + if (!EvtRenderF(NULL, hBookmark, EvtRenderBookmark, dwBufferSize, pBookmarkXml, &dwBufferUsed, &dwPropertyCount)){ + if (ERROR_INSUFFICIENT_BUFFER == (status = GetLastError())){ + dwBufferSize = dwBufferUsed; + pBookmarkXml = (LPWSTR)malloc(dwBufferSize); + if (pBookmarkXml){ + EvtRenderF(NULL, hBookmark, EvtRenderBookmark, dwBufferSize, pBookmarkXml, &dwBufferUsed, &dwPropertyCount); + } + else{ + pandoraDebug("Error loading the bookmark. Cannot load enough memory"); + this->cleanBookmark(); + free(pBookmarkXml); + return false; + } + } + if (ERROR_SUCCESS != (status = GetLastError())){ + pandoraDebug("EvtRender (updateBookmarkXML) failed with %d\n", GetLastError()); + this->cleanBookmark(); + free(pBookmarkXml); + return false; + } + } + this->bookmark_xml = pBookmarkXml; + free(pBookmarkXml); + return true; +} + +/** + * Clean the bookmark XML. + */ +void +Pandora_Module_Logchannel::cleanBookmark () { + this->bookmark_xml = L""; +} + +/** + * Reads available events from the event log. + */ +void +Pandora_Module_Logchannel::getLogEvents (list &event_list) { + EVT_HANDLE hResults = NULL; + EVT_HANDLE hBookmark = NULL; + EVT_HANDLE hEvents[1]; + EVT_HANDLE hContext = NULL; + PEVT_VARIANT pRenderedValues = NULL; + EVT_HANDLE hProviderMetadata = NULL; + LPWSTR pwsMessage = NULL; + LPWSTR ppValues[] = {L"Event/System/Provider/@Name"}; + DWORD count = sizeof(ppValues)/sizeof(LPWSTR); + DWORD dwReturned = 0; + DWORD dwBufferSize = 0; + DWORD dwBufferUsed = 0; + DWORD dwPropertyCount = 0; + DWORD status = ERROR_SUCCESS; + wstring filter = L"*"; + //wstring filter = L"*[System[TimeCreated[@SystemTime>='2017-10-19T00:00:00']]]"; + bool update_bookmark = false; + + // An empty bookmark XML means that log cannot be open + if (this->bookmark_xml.empty()) return; + + // Open the event log with a query + hResults = EvtQueryF ( + NULL, + strAnsiToUnicode (this->source.c_str()).c_str(), + filter.c_str(), + EvtOpenChannelPath | EvtQueryForwardDirection + ); + if (hResults == NULL) { + pandoraDebug ("Could not open event log channel '%s'. Error: '%d'", this->source.c_str(), GetLastError()); + EvtCloseF(hResults); + this->cleanBookmark(); + return; + } + + // Seek on the bookmark + hBookmark = EvtCreateBookmarkF(this->bookmark_xml.c_str()); + if (hBookmark == NULL) { + pandoraDebug("Cannot read the string bookmark. Error: %d.", GetLastError()); + EvtCloseF(hResults); + this->cleanBookmark(); + return; + } + if (!EvtSeekF(hResults, 1, hBookmark, 0, EvtSeekRelativeToBookmark)) { + pandoraDebug("Cannot positionate the event at bookmark. Error %d.", GetLastError()); + EvtCloseF(hResults); + EvtCloseF(hBookmark); + this->cleanBookmark(); + return; + } + + // Read events one by one + hEvents[0] = NULL; + while (EvtNextF(hResults, 1, hEvents, INFINITE, 0, &dwReturned)) { + hContext = EvtCreateRenderContextF(count, (LPCWSTR*)ppValues, EvtRenderContextValues); + if (NULL == hContext) { + pandoraDebug ("EvtCreateRenderContext error: %d", GetLastError()); + EvtCloseF(hResults); + EvtCloseF(hBookmark); + EvtCloseF(hEvents[0]); + this->cleanBookmark(); + return; + } + + // Reinitialize the buffers + dwBufferSize = 0; + dwBufferUsed = 0; + if (! EvtRenderF(hContext, hEvents[0], EvtRenderEventValues, dwBufferSize, pRenderedValues, &dwBufferUsed, &dwPropertyCount)) { + if ((status = GetLastError()) == ERROR_INSUFFICIENT_BUFFER) { + dwBufferSize = dwBufferUsed; + pRenderedValues = (PEVT_VARIANT)malloc(dwBufferSize); + if (pRenderedValues) { + EvtRenderF(hContext, hEvents[0], EvtRenderEventValues, dwBufferSize, pRenderedValues, &dwBufferUsed, &dwPropertyCount); + } + else { + pandoraDebug ("EvtRender error: %d", status); + EvtCloseF(hResults); + EvtCloseF(hBookmark); + EvtCloseF(hEvents[0]); + EvtCloseF(hContext); + this->cleanBookmark(); + return; + } + } + + if ((status = GetLastError()) != ERROR_SUCCESS) { + pandoraDebug ("EvtRender error getting buffer size: %d", status); + EvtCloseF(hResults); + EvtCloseF(hBookmark); + EvtCloseF(hEvents[0]); + EvtCloseF(hContext); + this->cleanBookmark(); + return; + } + } + + // Get the handle to the provider's metadata that contains the message strings + hProviderMetadata = EvtOpenPublisherMetadataF(NULL, pRenderedValues[0].StringVal, NULL, 0, 0); + if (hProviderMetadata == NULL) { + pandoraDebug ("EvtOpenPublisherMetadata error: %d", GetLastError()); + EvtCloseF(hResults); + EvtCloseF(hBookmark); + EvtCloseF(hEvents[0]); + EvtCloseF(hContext); + free(pRenderedValues); + this->cleanBookmark(); + return; + } + + // Read the event message + pwsMessage = GetMessageString(hProviderMetadata, hEvents[0], EvtFormatMessageEvent); + if (pwsMessage == NULL) { + EvtCloseF(hResults); + EvtCloseF(hBookmark); + EvtCloseF(hEvents[0]); + EvtCloseF(hContext); + free(pRenderedValues); + EvtCloseF(hProviderMetadata); + this->cleanBookmark(); + return; + } + + // Save the event message + pandoraLog("Message: %S.", pwsMessage); + event_list.push_back (strUnicodeToAnsi(pwsMessage)); + + // Clean up some used vars + EvtCloseF(hContext); + free(pRenderedValues); + EvtCloseF(hProviderMetadata); + free(pwsMessage); + + // Update the bookmark + if (!EvtUpdateBookmarkF(hBookmark, hEvents[0])) { + pandoraDebug("EvtUpdateBookmarkF (getLogEvents) failed %d", GetLastError()); + EvtCloseF(hResults); + EvtCloseF(hBookmark); + EvtCloseF(hEvents[0]); + this->cleanBookmark(); + return; + } + + // Cleanup current event and read the next log + EvtCloseF(hEvents[0]); + hEvents[0] = NULL; + + // Information token to update bookmark + update_bookmark = true; + } + status = GetLastError(); + if (status != ERROR_NO_MORE_ITEMS) { + pandoraDebug ("EvtNext getLogEvents error: %d", GetLastError()); + EvtCloseF(hResults); + EvtCloseF(hBookmark); + this->cleanBookmark(); + return; + } + + // Update bookmark if there is new events + if (update_bookmark) this->updateBookmarkXML(hBookmark); + + // Clean handlers + EvtCloseF(hResults); + EvtCloseF(hBookmark); +} + +// Gets the specified message string from the event. If the event does not +// contain the specified message, the function returns NULL. +// See http://msdn.microsoft.com/en-us/library/windows/desktop/dd996923(v=vs.85).aspx +LPWSTR +Pandora_Module_Logchannel::GetMessageString(EVT_HANDLE hMetadata, EVT_HANDLE hEvent, EVT_FORMAT_MESSAGE_FLAGS FormatId) { + LPWSTR pBuffer = NULL; + DWORD dwBufferSize = 0; + DWORD dwBufferUsed = 0; + DWORD status = 0; + + if (!EvtFormatMessageF(hMetadata, hEvent, 0, 0, NULL, FormatId, dwBufferSize, pBuffer, &dwBufferUsed)) { + status = GetLastError(); + if (ERROR_INSUFFICIENT_BUFFER == status) { + // An event can contain one or more keywords. The function returns keywords + // as a list of keyword strings. To process the list, you need to know the + // size of the buffer, so you know when you have read the last string, or you + // can terminate the list of strings with a second null terminator character + // as this example does. + if ((EvtFormatMessageKeyword == FormatId)) { + pBuffer[dwBufferSize-1] = L'\0'; + } + else { + dwBufferSize = dwBufferUsed; + } + pBuffer = (LPWSTR)malloc(dwBufferSize * sizeof(WCHAR)); + + if (pBuffer) { + EvtFormatMessageF(hMetadata, hEvent, 0, 0, NULL, FormatId, dwBufferSize, pBuffer, &dwBufferUsed); + + // Add the second null terminator character. + if ((EvtFormatMessageKeyword == FormatId)) { + pBuffer[dwBufferUsed-1] = L'\0'; + } + } + else { + return NULL; + } + } + else { + pandoraDebug ("EvtFormatMessage error: %d", status); + return NULL; + } + } + + return pBuffer; +} \ No newline at end of file diff --git a/pandora_agents/win32/modules/pandora_module_logchannel.h b/pandora_agents/win32/modules/pandora_module_logchannel.h new file mode 100755 index 0000000000..5eb02f0f15 --- /dev/null +++ b/pandora_agents/win32/modules/pandora_module_logchannel.h @@ -0,0 +1,85 @@ +/* Pandora logchannel module. This module checks for log events that match a given + pattern using XML functions provided by wevtapi. + + Copyright (C) 2017 Artica ST. + Written by Fermin Hernandez. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License along + with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +*/ + +#ifndef __PANDORA_MODULE_LOGCHANNEL_H__ +#define __PANDORA_MODULE_LOGCHANNEL_H__ + +#include "pandora_module.h" +#include "boost/regex.h" +#include "../windows/winevt.h" + +// Log event read buffer size +#define BUFFER_SIZE 1024 + +// Length of a timestamp string YYYY-MM-DD HH:MM:SS +#define TIMESTAMP_LEN 19 + +// The EventID property equals the InstanceId with the top two bits masked off. +// See: http://msdn.microsoft.com/en-us/library/system.diagnostics.eventlogentry.eventid.aspx +//#define EVENT_ID_MASK 0x3FFFFFFF + +// The Windows Event Log Viewer seems to ignore the most significant 16 bits. +#define EVENT_ID_MASK 0x0000FFFF + +// Types for pointers to Wevtapi.dll functions +typedef EVT_HANDLE WINAPI (*EvtQueryT) (EVT_HANDLE Session, LPCWSTR Path, LPCWSTR Query, DWORD Flags); +typedef WINBOOL WINAPI (*EvtNextT) (EVT_HANDLE ResultSet, DWORD EventArraySize, EVT_HANDLE* EventArray, DWORD Timeout, DWORD Flags, PDWORD Returned); +typedef WINBOOL WINAPI (*EvtSeekT) (EVT_HANDLE ResultSet, LONGLONG Position, EVT_HANDLE Bookmark, DWORD Timeout, DWORD Flags); +typedef EVT_HANDLE WINAPI (*EvtCreateRenderContextT) (DWORD ValuePathsCount, LPCWSTR *ValuePaths, DWORD Flags); +typedef WINBOOL WINAPI (*EvtRenderT) (EVT_HANDLE Context, EVT_HANDLE Fragment, DWORD Flags, DWORD BufferSize, PVOID Buffer, PDWORD BufferUsed, PDWORD PropertyCount); +typedef WINBOOL WINAPI (*EvtCloseT) (EVT_HANDLE Object); +typedef WINBOOL WINAPI (*EvtFormatMessageT) (EVT_HANDLE PublisherMetadata, EVT_HANDLE Event, DWORD MessageId, DWORD ValueCount, PEVT_VARIANT Values, DWORD Flags, DWORD BufferSize, LPWSTR Buffer, PDWORD BufferUsed); +typedef EVT_HANDLE WINAPI (*EvtOpenPublisherMetadataT) (EVT_HANDLE Session, LPCWSTR PublisherIdentity, LPCWSTR LogFilePath, LCID Locale, DWORD Flags); +typedef EVT_HANDLE WINAPI (*EvtCreateBookmarkT) (LPCWSTR BookmarkXml); +typedef WINBOOL WINAPI (*EvtUpdateBookmarkT) (EVT_HANDLE Bookmark, EVT_HANDLE Event); + +namespace Pandora_Modules { + + /** + * This module checks for log events that match a given + * pattern. Events can be filtered by source and type. + */ + + class Pandora_Module_Logchannel : public Pandora_Module { + private: + regex_t regexp; + unsigned long id; + int type; + unsigned char first_run; + string source; + string application; + string pattern; + wstring bookmark_xml; + HANDLE messages_dll; + + void initializeLogChannel (); + bool updateBookmarkXML (EVT_HANDLE hBookmark); + void getLogEvents (list &event_list); + void cleanBookmark (); + LPWSTR GetMessageString(EVT_HANDLE hMetadata, EVT_HANDLE hEvent, EVT_FORMAT_MESSAGE_FLAGS FormatId); + + public: + Pandora_Module_Logchannel (string name, string source, string type, string id, string pattern, string application); + void run (); + }; +} + +#endif From f6e012e0fa6223716eac03e27079d50d744823dd Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 23 Oct 2017 13:17:06 +0200 Subject: [PATCH 090/311] Added time autorefresh --- pandora_console/extras/mr/8.sql | 3 +++ .../extras/pandoradb_migrate_6.0_to_7.0.mysql.sql | 1 + pandora_console/general/header.php | 12 ++++++++++-- pandora_console/operation/users/user_edit.php | 9 +++++++-- pandora_console/pandoradb.sql | 1 + 5 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 pandora_console/extras/mr/8.sql diff --git a/pandora_console/extras/mr/8.sql b/pandora_console/extras/mr/8.sql new file mode 100644 index 0000000000..977f7989fd --- /dev/null +++ b/pandora_console/extras/mr/8.sql @@ -0,0 +1,3 @@ +START TRANSACTION; +ALTER TABLE tusuario ADD COLUMN `time_autorefresh` int(5) unsigned NOT NULL default '30'; +COMMIT; \ No newline at end of file diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 4e31057a89..da6445ad81 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -1183,6 +1183,7 @@ ALTER TABLE tusuario ADD COLUMN `id_filter` int(10) UNSIGNED NULL DEFAULT NULL; ALTER TABLE tusuario ADD CONSTRAINT `fk_id_filter` FOREIGN KEY (`id_filter`) REFERENCES tevent_filter(`id_filter`) ON DELETE SET NULL; ALTER TABLE tusuario ADD COLUMN `session_time` int(10) signed NOT NULL default '0'; alter table tusuario add autorefresh_white_list text not null default ''; +ALTER TABLE tusuario ADD COLUMN `time_autorefresh` int(5) unsigned NOT NULL default '30'; -- --------------------------------------------------------------------- -- Table `tagente_modulo` diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php index 46e95a7026..49ef936515 100644 --- a/pandora_console/general/header.php +++ b/pandora_console/general/header.php @@ -191,7 +191,7 @@ config_check(); $_GET['refr'] = null; } - $select = db_process_sql("SELECT autorefresh_white_list FROM tusuario WHERE id_user = '" . $config['id_user'] . "'"); + $select = db_process_sql("SELECT autorefresh_white_list,time_autorefresh FROM tusuario WHERE id_user = '" . $config['id_user'] . "'"); $autorefresh_list = json_decode($select[0]['autorefresh_white_list']); if ($autorefresh_list !== null && array_search($_GET['sec2'], $autorefresh_list) !== false) { @@ -389,7 +389,15 @@ config_check(); $("#combo_refr").toggle (); $("#combo_refr").css('padding-right', '9px'); href = $("a.autorefresh").attr ("href"); - $(document).attr ("location", href + "30"); + + var refresh = ''; + $(document).attr ("location", href + refresh); + + '; $data[0] .= $table_ichanges; +//time autorefresh +$times = get_refresh_time_array(); +$data[1] = ''.__('Time autorefresh').''; +$data[1] .= $jump . ''. html_print_select ($times, 'time_autorefresh', $user_info["time_autorefresh"], '', '', '', true,false,false).''; $table->rowclass[] = ''; -$table->colspan[count($table->data)][0] = 3; -$table->rowstyle[] = 'font-weight: bold;'; +$table->rowstyle[] = 'font-weight: bold;vertical-align: top'; $table->data[] = $data; $data = array(); diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 0d749db694..7b1a30f86d 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1114,6 +1114,7 @@ CREATE TABLE IF NOT EXISTS `tusuario` ( `session_time` int(10) signed NOT NULL default 0, `default_event_filter` int(10) unsigned NOT NULL default 0, `autorefresh_white_list` text not null default '', + `time_autorefresh` int(5) unsigned NOT NULL default '30', CONSTRAINT `fk_filter_id` FOREIGN KEY (`id_filter`) REFERENCES tevent_filter (`id_filter`) ON DELETE SET NULL, UNIQUE KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; From b5b976e41b1997af5368d92747f7a6d546f5ea1e Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Mon, 23 Oct 2017 13:54:30 +0200 Subject: [PATCH 091/311] Added some things to new item visualization --- .../include/functions_visual_map.php | 200 +++++++++++++----- 1 file changed, 147 insertions(+), 53 deletions(-) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 84256db7fb..ad5216b58a 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1112,77 +1112,127 @@ function visual_map_print_item($mode = "read", $layoutData, else $homeurl = ''; + $is_string = db_get_value_filter ('id_tipo_modulo', 'tagente_modulo', + array ('id_agente' => $layoutData['id_agent'], + 'id_agente_modulo' => $id_module)); + if ( (get_parameter('action') == 'edit') || (get_parameter('operation') == 'edit_visualmap') ) { if($width == 0){ - if ($layoutData['id_metaconsole'] != 0) { - $img = ''; + if (($is_string == 17) || ($is_string == 23) || ($is_string == 3) || + ($is_string == 10) || ($is_string == 33)) { + if ($layoutData['id_metaconsole'] != 0) { + $img = ''; + } + else{ + $img = ''; + } } - else{ - $img = ''; + else { + if ($layoutData['id_metaconsole'] != 0) { + $img = ''; + } + else{ + $img = ''; + } } } else{ - if ($layoutData['id_metaconsole'] != 0) { - $img = ''; + if (($is_string == 17) || ($is_string == 23) || ($is_string == 3) || + ($is_string == 10) || ($is_string == 33)) { + if ($layoutData['id_metaconsole'] != 0) { + $img = ''; + } + else{ + $img = ''; + } } - else{ - $img = ''; + else { + if ($layoutData['id_metaconsole'] != 0) { + $img = ''; + } + else{ + $img = ''; + } } } } else { - if ($width == 0) { - if ($layoutData['label_position']=='left') { - $img = '
    '. - grafico_modulo_sparse($id_module, $period, - 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, 1, false, 0, - modules_get_unit($id_module), 0, 0, true, $only_image, '', 1, false, '', - false, false, false, $layoutData['image'], - null, true, false, $type_graph) . '
    '; + if (($is_string == 17) || ($is_string == 23) || ($is_string == 3) || + ($is_string == 10) || ($is_string == 33)) { + + $module_data = get_bars_module_data($id_module); +html_debug($module_data, true); + if ($width == 0) { + if ($layoutData['label_position']=='left') { + $img = '
    '. + grafico_modulo_sparse($id_module, $period, + 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, 1, false, 0, + modules_get_unit($id_module), 0, 0, true, $only_image, '', 1, false, '', + false, false, false, $layoutData['image'], + null, true, false, $type_graph) . '
    '; + } + elseif($layoutData['label_position']=='right') { + $img = '
    ' . + grafico_modulo_sparse($id_module, + $period, 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, + 1, false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', + 1, false, '', false, false, false, + $layoutData['image'], null, true, + false, $type_graph) . '
    '; + } + else { + $img = grafico_modulo_sparse($id_module, + $period, 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, 1, + false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', + 1, false, '', false, false, false, + $layoutData['image'], null, true, false, $type_graph); + } } - elseif($layoutData['label_position']=='right') { - $img = '
    ' . - grafico_modulo_sparse($id_module, - $period, 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, - 1, false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', + else{ + if ($layoutData['label_position']=='left') { + $img = '
    ' . + grafico_modulo_sparse($id_module, $period, + 0, $width, $height, modules_get_agentmodule_name($id_module), null, false, 1, + false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', 1, false, '', false, false, false, $layoutData['image'], null, true, false, $type_graph) . '
    '; - } - else { - $img = grafico_modulo_sparse($id_module, - $period, 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, 1, - false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', - 1, false, '', false, false, false, - $layoutData['image'], null, true, false, $type_graph); + } + elseif ($layoutData['label_position']=='right') { + $img = '
    ' . + grafico_modulo_sparse($id_module, $period, + 0, $width, $height, modules_get_agentmodule_name($id_module), null, false, 1, + false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, + '', 1, false, modules_get_unit($id_module), false, false, false, + $layoutData['image'], null, true, + false, $type_graph) . '
    '; + } + else { + $img = grafico_modulo_sparse($id_module, + $period, 0, $width, $height, modules_get_agentmodule_name($id_module), null, + false, 1, false, 0, modules_get_unit($id_module), 0, 0, true, + $only_image, '', 1, false, '', false, + false, false, $layoutData['image'], + null, false, true, $type_graph); + } } } - else{ - if ($layoutData['label_position']=='left') { - $img = '
    ' . - grafico_modulo_sparse($id_module, $period, - 0, $width, $height, modules_get_agentmodule_name($id_module), null, false, 1, - false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', - 1, false, '', false, false, false, - $layoutData['image'], null, true, - false, $type_graph) . '
    '; + else { + if($width == 0){ + if ($layoutData['id_metaconsole'] != 0) { + $img = ''; + } + else{ + $img = ''; + } } - elseif ($layoutData['label_position']=='right') { - $img = '
    ' . - grafico_modulo_sparse($id_module, $period, - 0, $width, $height, modules_get_agentmodule_name($id_module), null, false, 1, - false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, - '', 1, false, modules_get_unit($id_module), false, false, false, - $layoutData['image'], null, true, - false, $type_graph) . '
    '; - } - else { - $img = grafico_modulo_sparse($id_module, - $period, 0, $width, $height, modules_get_agentmodule_name($id_module), null, - false, 1, false, 0, modules_get_unit($id_module), 0, 0, true, - $only_image, '', 1, false, '', false, - false, false, $layoutData['image'], - null, false, true, $type_graph); + else{ + if ($layoutData['id_metaconsole'] != 0) { + $img = ''; + } + else{ + $img = ''; + } } } } @@ -1871,6 +1921,50 @@ function visual_map_print_item($mode = "read", $layoutData, } } +function get_bars_module_data ($id_module) { + $mod_values = db_get_value_filter('datos', 'tagente_estado', array('id_agente_modulo' => $id_module)); + + if (preg_match("/\r\n/", $mod_values)) { + $values = explode("\r\n", $mod_values); + } + elseif (preg_match("/\n/", $mod_values)) { + $values = explode("\n", $mod_values); + } + + $colors = array(); + $colors[] = "#aa3333"; + $colors[] = "#045FB4"; + $colors[] = "#8181F7"; + $colors[] = "#F78181"; + $colors[] = "#D0A9F5"; + $colors[] = "#BDBDBD"; + $colors[] = "#6AB277"; + + $values_to_return = array(); + $index = 0; + $color_index = 0; + $total = 0; + foreach ($values as $val) { + $data = explode(":", $val); + $values_to_return[$index]['tag_name'] = $data[0] . ", " . $data[1]; + if ($color_index == 6) { + $color_index = 0; + } + $values_to_return[$index]['color'] = $colors[$color_index]; + $values_to_return[$index]['value'] = (int)$data[1]; + $total += (int)$data[1]; + $index++; + $color_index++; + } + + foreach ($values_to_return as $ind => $bar_data) { + $values_to_return[$ind]['percent'] = ($bar_data['value'] * 100) / $total; + } + + return $values_to_return; +} + + /** * The function to get simple value type from the value of process type in the form * From 9b01919342821e97f54e6d3a89240888cbc8c0ef Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Mon, 23 Oct 2017 14:58:02 +0200 Subject: [PATCH 092/311] Fixed function to get string type --- .../godmode/reporting/visual_console_builder.editor.js | 2 +- pandora_console/include/ajax/visual_console_builder.ajax.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 39eccab60e..16e31a61a6 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -1785,7 +1785,7 @@ function setBarsGraph(id_data, values) { parameter.push ({name: "page", value: "include/ajax/visual_console_builder.ajax"}); parameter.push ({name: "action", value: "get_module_type_string"}); parameter.push ({name: "id_agent", value: values['id_agent']}); - parameter.push ({name: "id_agent_module", value: values['module']}); + parameter.push ({name: "module", value: values['module']}); parameter.push ({name: "id_visual_console", value: id_visual_console}); jQuery.ajax({ url: get_url_ajax(), diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index 6fee42aa22..27f58967fe 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -144,7 +144,7 @@ switch ($action) { case 'get_module_type_string': $data = array (); - + $layoutData = db_get_row_filter('tlayout_data', array('id' => $id_element)); if ($layoutData['id_metaconsole'] != 0) { @@ -158,7 +158,7 @@ switch ($action) { $is_string = db_get_value_filter ('id_tipo_modulo', 'tagente_modulo', array ('id_agente' => $id_agent, 'id_agente_modulo' => $id_module)); - + html_debug($is_string, true); if ($layoutData['id_metaconsole'] != 0) { metaconsole_restore_db(); } From 5eacf15d653395c290724cca9ed74d0d0faa10cd Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 23 Oct 2017 15:37:07 +0200 Subject: [PATCH 093/311] Fixed issue in filter visual console --- pandora_console/include/functions_visual_map.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 2103e1de71..ed5141cc47 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -2800,7 +2800,11 @@ function visual_map_get_user_layouts ($id_user = 0, $only_names = false, $filter $groups = users_get_groups ($id_user, 'VR'); } else { if(!empty($filter['group'])){ - $groups = $filter['group']; + $permissions_group = users_get_groups ($id_user, 'VR', false); + if(empty($permissions_group)){ + $permissions_group = users_get_groups ($id_user, 'VM', false); + } + $groups = array_intersect_key($filter['group'], $permissions_group); unset($filter['group']); } else { $groups = users_get_groups ($id_user, 'VR', false); From a235abb903a89881126745ca63ca8b2775240a90 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Mon, 23 Oct 2017 15:51:58 +0200 Subject: [PATCH 094/311] Removed unwanted trace (pandora_module_service.cc) --- pandora_agents/win32/modules/pandora_module_service.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/pandora_agents/win32/modules/pandora_module_service.cc b/pandora_agents/win32/modules/pandora_module_service.cc index c3f2259773..11abf8b2fa 100644 --- a/pandora_agents/win32/modules/pandora_module_service.cc +++ b/pandora_agents/win32/modules/pandora_module_service.cc @@ -124,7 +124,6 @@ async_run (Pandora_Module_Service *module) { // If time out and polling, // check the service status actively if (result == WAIT_TIMEOUT && polling) { - pandoraLog("Timeout. Polling"); module->execute_async_service(prev_res, module, modules); } continue; From 423e6f29e1b45c9fc8240d108af1a43b56bf23ea Mon Sep 17 00:00:00 2001 From: fermin831 Date: Mon, 23 Oct 2017 15:51:58 +0200 Subject: [PATCH 095/311] Removed unwanted trace (pandora_module_service.cc) (cherry picked from commit a235abb903a89881126745ca63ca8b2775240a90) --- pandora_agents/win32/modules/pandora_module_service.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/pandora_agents/win32/modules/pandora_module_service.cc b/pandora_agents/win32/modules/pandora_module_service.cc index c3f2259773..11abf8b2fa 100644 --- a/pandora_agents/win32/modules/pandora_module_service.cc +++ b/pandora_agents/win32/modules/pandora_module_service.cc @@ -124,7 +124,6 @@ async_run (Pandora_Module_Service *module) { // If time out and polling, // check the service status actively if (result == WAIT_TIMEOUT && polling) { - pandoraLog("Timeout. Polling"); module->execute_async_service(prev_res, module, modules); } continue; From 92633f21b4e8a1c17deb34d4e34945df18b344df Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Mon, 23 Oct 2017 16:19:11 +0200 Subject: [PATCH 096/311] Added element to view --- .../ajax/visual_console_builder.ajax.php | 6 +- .../include/functions_visual_map.php | 207 ++++++++++++------ .../include/functions_visual_map_editor.php | 4 +- .../include/graphs/flot/pandora.flot.js | 2 +- .../include/graphs/functions_pchart.php | 8 +- 5 files changed, 152 insertions(+), 75 deletions(-) diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index 27f58967fe..e1b276d967 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -144,7 +144,7 @@ switch ($action) { case 'get_module_type_string': $data = array (); - + $layoutData = db_get_row_filter('tlayout_data', array('id' => $id_element)); if ($layoutData['id_metaconsole'] != 0) { @@ -158,7 +158,7 @@ switch ($action) { $is_string = db_get_value_filter ('id_tipo_modulo', 'tagente_modulo', array ('id_agente' => $id_agent, 'id_agente_modulo' => $id_module)); - html_debug($is_string, true); + if ($layoutData['id_metaconsole'] != 0) { metaconsole_restore_db(); } @@ -628,7 +628,7 @@ switch ($action) { $values['width'] = $width_percentile; } if ($bars_graph_type !== null) { - $values['type_graph'] = $id_custom_graph; + $values['type_graph'] = $bars_graph_type; } if ($background_color !== null) { $values['image'] = $background_color; diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index ad5216b58a..265e2506f7 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1160,60 +1160,164 @@ function visual_map_print_item($mode = "read", $layoutData, if (($is_string == 17) || ($is_string == 23) || ($is_string == 3) || ($is_string == 10) || ($is_string == 33)) { + $color = array(); + + $color[0] = array('border' => '#000000', + 'color' => $config['graph_color1'], + 'alpha' => CHART_DEFAULT_ALPHA); + $color[1] = array('border' => '#000000', + 'color' => $config['graph_color2'], + 'alpha' => CHART_DEFAULT_ALPHA); + $color[2] = array('border' => '#000000', + 'color' => $config['graph_color3'], + 'alpha' => CHART_DEFAULT_ALPHA); + $color[3] = array('border' => '#000000', + 'color' => $config['graph_color4'], + 'alpha' => CHART_DEFAULT_ALPHA); + $color[4] = array('border' => '#000000', + 'color' => $config['graph_color5'], + 'alpha' => CHART_DEFAULT_ALPHA); + $color[5] = array('border' => '#000000', + 'color' => $config['graph_color6'], + 'alpha' => CHART_DEFAULT_ALPHA); + $color[6] = array('border' => '#000000', + 'color' => $config['graph_color7'], + 'alpha' => CHART_DEFAULT_ALPHA); + $color[7] = array('border' => '#000000', + 'color' => $config['graph_color8'], + 'alpha' => CHART_DEFAULT_ALPHA); + $color[8] = array('border' => '#000000', + 'color' => $config['graph_color9'], + 'alpha' => CHART_DEFAULT_ALPHA); + $color[9] = array('border' => '#000000', + 'color' => $config['graph_color10'], + 'alpha' => CHART_DEFAULT_ALPHA); + $color[11] = array('border' => '#000000', + 'color' => COL_GRAPH9, + 'alpha' => CHART_DEFAULT_ALPHA); + $color[12] = array('border' => '#000000', + 'color' => COL_GRAPH10, + 'alpha' => CHART_DEFAULT_ALPHA); + $color[13] = array('border' => '#000000', + 'color' => COL_GRAPH11, + 'alpha' => CHART_DEFAULT_ALPHA); + $color[14] = array('border' => '#000000', + 'color' => COL_GRAPH12, + 'alpha' => CHART_DEFAULT_ALPHA); + $color[15] = array('border' => '#000000', + 'color' => COL_GRAPH13, + 'alpha' => CHART_DEFAULT_ALPHA); + $module_data = get_bars_module_data($id_module); -html_debug($module_data, true); + $water_mark = array('file' => '/var/www/html/pandora_console/images/logo_vertical_water.png', + 'url' => 'http://localhost/pandora_console/images/logo_vertical_water.png'); + if ($width == 0) { if ($layoutData['label_position']=='left') { - $img = '
    '. - grafico_modulo_sparse($id_module, $period, - 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, 1, false, 0, - modules_get_unit($id_module), 0, 0, true, $only_image, '', 1, false, '', - false, false, false, $layoutData['image'], - null, true, false, $type_graph) . '
    '; + if ($layoutData['type_graph'] == 'horizontal') { + $img = '
    '. + hbar_graph(true, $module_data, + 400, 400, $color, array(), array(), + ui_get_full_url("images/image_problem.opaque.png", false, false, false), + "", "", $water_mark, $config['fontpath'], 6, + "", 0, $config['homeurl'], $layoutData['image']) . '
    '; + } + else { + $img = '
    '. + vbar_graph(true, $module_data, + 400, 400, $color, array(), array(), + ui_get_full_url("images/image_problem.opaque.png", false, false, false), + "", "", $water_mark, $config['fontpath'], 6, + "", 0, $config['homeurl'], $layoutData['image'], true) . '
    '; + } } elseif($layoutData['label_position']=='right') { - $img = '
    ' . - grafico_modulo_sparse($id_module, - $period, 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, - 1, false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', - 1, false, '', false, false, false, - $layoutData['image'], null, true, - false, $type_graph) . '
    '; + if ($layoutData['type_graph'] == 'horizontal') { + $img = '
    '. + hbar_graph(true, $module_data, + 400, 400, $color, array(), array(), + ui_get_full_url("images/image_problem.opaque.png", false, false, false), + "", "", $water_mark, $config['fontpath'], 6, + "", 0, $config['homeurl'], $layoutData['image']) . '
    '; + } + else { + $img = '
    '. + vbar_graph(true, $module_data, + 400, 400, $color, array(), array(), + ui_get_full_url("images/image_problem.opaque.png", false, false, false), + "", "", $water_mark, $config['fontpath'], 6, + "", 0, $config['homeurl'], $layoutData['image'], true) . '
    '; + } } else { - $img = grafico_modulo_sparse($id_module, - $period, 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, 1, - false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', - 1, false, '', false, false, false, - $layoutData['image'], null, true, false, $type_graph); + if ($layoutData['type_graph'] == 'horizontal') { + $img = hbar_graph(true, $module_data, + 400, 400, $color, array(), array(), + ui_get_full_url("images/image_problem.opaque.png", false, false, false), + "", "", $water_mark, $config['fontpath'], 6, + "", 0, $config['homeurl'], $layoutData['image']); + } + else { + $img = vbar_graph(true, $module_data, + 400, 400, $color, array(), array(), + ui_get_full_url("images/image_problem.opaque.png", false, false, false), + "", "", $water_mark, $config['fontpath'], 6, + "", 0, $config['homeurl'], $layoutData['image'], true); + } } } else{ if ($layoutData['label_position']=='left') { - $img = '
    ' . - grafico_modulo_sparse($id_module, $period, - 0, $width, $height, modules_get_agentmodule_name($id_module), null, false, 1, - false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', - 1, false, '', false, false, false, - $layoutData['image'], null, true, - false, $type_graph) . '
    '; + if ($layoutData['type_graph'] == 'horizontal') { + $img = '
    '. + hbar_graph(true, $module_data, + $width, $width, $color, array(), array(), + ui_get_full_url("images/image_problem.opaque.png", false, false, false), + "", "", $water_mark, $config['fontpath'], 6, + "", 0, $config['homeurl'], $layoutData['image']) . '
    '; + } + else { + $img = '
    '. + vbar_graph(true, $module_data, + $width, $width, $color, array(), array(), + ui_get_full_url("images/image_problem.opaque.png", false, false, false), + "", "", $water_mark, $config['fontpath'], 6, + "", 0, $config['homeurl'], $layoutData['image'], true) . '
    '; + } } - elseif ($layoutData['label_position']=='right') { - $img = '
    ' . - grafico_modulo_sparse($id_module, $period, - 0, $width, $height, modules_get_agentmodule_name($id_module), null, false, 1, - false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, - '', 1, false, modules_get_unit($id_module), false, false, false, - $layoutData['image'], null, true, - false, $type_graph) . '
    '; + elseif($layoutData['label_position']=='right') { + if ($layoutData['type_graph'] == 'horizontal') { + $img = '
    '. + hbar_graph(true, $module_data, + $width, $width, $color, array(), array(), + ui_get_full_url("images/image_problem.opaque.png", false, false, false), + "", "", $water_mark, $config['fontpath'], 6, + "", 0, $config['homeurl'], $layoutData['image']) . '
    '; + } + else { + $img = '
    '. + vbar_graph(true, $module_data, + $width, $width, $color, array(), array(), + ui_get_full_url("images/image_problem.opaque.png", false, false, false), + "", "", $water_mark, $config['fontpath'], 6, + "", 0, $config['homeurl'], $layoutData['image'], true) . '
    '; + } } else { - $img = grafico_modulo_sparse($id_module, - $period, 0, $width, $height, modules_get_agentmodule_name($id_module), null, - false, 1, false, 0, modules_get_unit($id_module), 0, 0, true, - $only_image, '', 1, false, '', false, - false, false, $layoutData['image'], - null, false, true, $type_graph); + if ($layoutData['type_graph'] == 'horizontal') { + $img = hbar_graph(true, $module_data, + $width, $width, $color, array(), array(), + ui_get_full_url("images/image_problem.opaque.png", false, false, false), + "", "", $water_mark, $config['fontpath'], 6, + "", 0, $config['homeurl'], $layoutData['image']); + } + else { + $img = vbar_graph(true, $module_data, + $width, $width, $color, array(), array(), + ui_get_full_url("images/image_problem.opaque.png", false, false, false), + "", "", $water_mark, $config['fontpath'], 6, + "", 0, $config['homeurl'], $layoutData['image'], true); + } } } } @@ -1931,34 +2035,13 @@ function get_bars_module_data ($id_module) { $values = explode("\n", $mod_values); } - $colors = array(); - $colors[] = "#aa3333"; - $colors[] = "#045FB4"; - $colors[] = "#8181F7"; - $colors[] = "#F78181"; - $colors[] = "#D0A9F5"; - $colors[] = "#BDBDBD"; - $colors[] = "#6AB277"; - $values_to_return = array(); $index = 0; $color_index = 0; $total = 0; foreach ($values as $val) { $data = explode(":", $val); - $values_to_return[$index]['tag_name'] = $data[0] . ", " . $data[1]; - if ($color_index == 6) { - $color_index = 0; - } - $values_to_return[$index]['color'] = $colors[$color_index]; - $values_to_return[$index]['value'] = (int)$data[1]; - $total += (int)$data[1]; - $index++; - $color_index++; - } - - foreach ($values_to_return as $ind => $bar_data) { - $values_to_return[$ind]['percent'] = ($bar_data['value'] * 100) / $total; + $values_to_return[$data[0]] = array('g' =>$data[1]); } return $values_to_return; diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index 8fb0db1abe..b1bae184ae 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -146,7 +146,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { ''; $form_items['module_graph_size_row'] = array(); - $form_items['module_graph_size_row']['items'] = array('module_graph', 'datos', 'bars_graph'); + $form_items['module_graph_size_row']['items'] = array('module_graph', 'datos'); $form_items['module_graph_size_row']['html'] = '' . __('Size') . ' ' . html_print_input_text('width_module_graph', 300, '', 3, 5, true) . @@ -465,7 +465,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { $form_items['module_graph_size_row'] = array(); - $form_items['module_graph_size_row']['items'] = array('module_graph', 'datos', 'bars_graph'); + $form_items['module_graph_size_row']['items'] = array('module_graph', 'datos'); $form_items['module_graph_size_row']['html'] = '' . __('Size') . ' ' . html_print_input_text('width_module_graph', 300, '', 3, 5, true) . diff --git a/pandora_console/include/graphs/flot/pandora.flot.js b/pandora_console/include/graphs/flot/pandora.flot.js index e036a9855e..9024424ab0 100644 --- a/pandora_console/include/graphs/flot/pandora.flot.js +++ b/pandora_console/include/graphs/flot/pandora.flot.js @@ -638,7 +638,7 @@ function pandoraFlotVBars(graph_id, values, labels, labels_long, legend, colors, } format.push([i, - '
    ' + '
    ' + label + '
    ']); } diff --git a/pandora_console/include/graphs/functions_pchart.php b/pandora_console/include/graphs/functions_pchart.php index f5368ca4c5..a6637f04ba 100644 --- a/pandora_console/include/graphs/functions_pchart.php +++ b/pandora_console/include/graphs/functions_pchart.php @@ -743,13 +743,7 @@ function pch_bar_graph ($graph_type, $index, $data, $width, $height, $font, $myPicture->setGraphArea($margin_left, $margin_top, $width - $margin_right, $height - $margin_bottom); $myPicture->drawScale($scaleSettings); - /* - if (isset($legend)) { - /* Write the chart legend - $size = $myPicture->getLegendSize(array("Style"=>LEGEND_NOBORDER,"Mode"=>LEGEND_HORIZONTAL)); - $myPicture->drawLegend($width-$size['Width'],0,array("Style"=>LEGEND_NOBORDER,"Mode"=>LEGEND_HORIZONTAL, "BoxWidth"=>10, "BoxHeight"=>10)); - } - */ + /* Turn on shadow computing */ $myPicture->setShadow(TRUE,array("X"=>0,"Y"=>1,"R"=>0,"G"=>0,"B"=>0,"Alpha"=>10)); From edcff5e1f1eaedc86ed7b42cc078674f0f75ce95 Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Mon, 23 Oct 2017 16:23:30 +0200 Subject: [PATCH 097/311] [Pandora Server] Added a decode to the alert description before the event creation, to avoid a double encode with HTML entities --- pandora_server/lib/PandoraFMS/Core.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 88edb0a11a..77db28e6e7 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -3495,7 +3495,7 @@ sub pandora_evaluate_snmp_alerts ($$$$$$$$$) { # Generate an event, ONLY if our alert action is different from generate an event. if ($action->{'id_alert_command'} != 3){ - pandora_event ($pa_config, "SNMP alert fired (" . $alert->{'description'} . ")", + pandora_event ($pa_config, "SNMP alert fired (" . safe_output($alert->{'description'}) . ")", 0, 0, $alert->{'priority'}, 0, 0, 'alert_fired', 0, $dbh); } @@ -3549,7 +3549,7 @@ sub pandora_evaluate_snmp_alerts ($$$$$$$$$) { # Generate an event, ONLY if our alert action is different from generate an event. if ($other_action->{'id_alert_command'} != 3){ - pandora_event ($pa_config, "SNMP alert fired (" . $alert->{'description'} . ")", + pandora_event ($pa_config, "SNMP alert fired (" . safe_output($alert->{'description'}) . ")", 0, 0, $alert->{'priority'}, 0, 0, 'alert_fired', 0, $dbh); } From 3c4331631d984850adc6634576f9c20d2a806a68 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Mon, 23 Oct 2017 16:24:40 +0200 Subject: [PATCH 098/311] Fixed width in js --- .../reporting/visual_console_builder.editor.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 16e31a61a6..4cecad235d 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -1794,7 +1794,7 @@ function setBarsGraph(id_data, values) { dataType: 'json', success: function (data) { if (data['no_data'] == true) { - if (values['width'] == "0") { + if (values['width_percentile'] == "0") { $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/barras-no.png'); } else { @@ -1806,20 +1806,20 @@ function setBarsGraph(id_data, values) { else { $("#" + id_data + " img").attr('src', url_hack_metaconsole + 'images/console/signes/barras.png'); - if($('#text-width').val() == 0){ + if (values['width_percentile'] == "0") { // Image size } else{ - $("#" + id_data + " img").css('width', $('#text-width_percentile').val()+'px'); - $("#" + id_data + " img").css('height', $('#text-width_percentile').val()+'px'); + $("#" + id_data + " img").css('width', width_percentile+'px'); + $("#" + id_data + " img").css('height', width_percentile+'px'); } } if($('#'+id_data+' table').css('float') == 'right' || $('#'+id_data+ ' table').css('float') == 'left'){ - $('#'+id_data+ ' img').css('margin-top', parseInt($('#'+id_data).css('height'))/2 - parseInt($('#'+id_data+ ' img').css('height'))/2); + $('#'+id_data+ ' img').css('margin-top', parseInt($('#'+id_data).css('height'))/2 - parseInt($('#'+id_data+ ' img').css('height'))/2); } else{ - $('#'+id_data+ ' img').css('margin-left',parseInt($('#'+id_data).css('width'))/2 - parseInt($('#'+id_data+ ' img').css('width'))/2); + $('#'+id_data+ ' img').css('margin-left', parseInt($('#'+id_data).css('width'))/2 - parseInt($('#'+id_data+ ' img').css('width'))/2); } } }); From 039964771b7f4e8bdb0a77bd63b35631f9d792c8 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 23 Oct 2017 16:43:16 +0200 Subject: [PATCH 099/311] Fixed search in status monitor with ACL enterprise --- .../operation/agentes/status_monitor.php | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/pandora_console/operation/agentes/status_monitor.php b/pandora_console/operation/agentes/status_monitor.php index 27baeced96..2c1db8f684 100644 --- a/pandora_console/operation/agentes/status_monitor.php +++ b/pandora_console/operation/agentes/status_monitor.php @@ -516,7 +516,7 @@ foreach ($custom_fields as $custom_field) { } -$filters = '
    '; if (is_metaconsole()) { @@ -943,31 +943,31 @@ if (!empty($result)) { $table->head[0] = '' . __('P.') . ''; $table->head[1] = __('Agent'); - $table->head[1] .=' ' . html_print_image('images/sort_up.png', true, array('style' => $selectAgentNameUp, 'alt' => 'up')) . '' . - '' . html_print_image('images/sort_down.png', true, array('style' => $selectAgentNameDown, 'alt' => 'down')) . ''; + $table->head[1] .=' ' . html_print_image('images/sort_up.png', true, array('style' => $selectAgentNameUp, 'alt' => 'up')) . '' . + '' . html_print_image('images/sort_down.png', true, array('style' => $selectAgentNameDown, 'alt' => 'down')) . ''; $table->head[2] = __('Data Type'); - $table->head[2] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectTypeUp, 'alt' => 'up')) . '' . - '' . html_print_image('images/sort_down.png', true, array('style' => $selectTypeDown, 'alt' => 'down')) . ''; + $table->head[2] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectTypeUp, 'alt' => 'up')) . '' . + '' . html_print_image('images/sort_down.png', true, array('style' => $selectTypeDown, 'alt' => 'down')) . ''; $table->align[2] = 'left'; $table->head[3] = __('Module name'); - $table->head[3] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectModuleNameUp, 'alt' => 'up')) . '' . - '' . html_print_image('images/sort_down.png', true, array('style' => $selectModuleNameDown, 'alt' => 'down')) . ''; + $table->head[3] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectModuleNameUp, 'alt' => 'up')) . '' . + '' . html_print_image('images/sort_down.png', true, array('style' => $selectModuleNameDown, 'alt' => 'down')) . ''; $table->head[4] = __('Server type'); - $table->head[4] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectModuleNameUp, 'alt' => 'up')) . '' . - '' . html_print_image('images/sort_down.png', true, array('style' => $selectModuleNameDown, 'alt' => 'down')) . ''; + $table->head[4] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectModuleNameUp, 'alt' => 'up')) . '' . + '' . html_print_image('images/sort_down.png', true, array('style' => $selectModuleNameDown, 'alt' => 'down')) . ''; $table->head[5] = __('Interval'); - $table->head[5] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectIntervalUp, 'alt' => 'up')) . '' . - '' . html_print_image('images/sort_down.png', true, array('style' => $selectIntervalDown, 'alt' => 'down')) . ''; + $table->head[5] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectIntervalUp, 'alt' => 'up')) . '' . + '' . html_print_image('images/sort_down.png', true, array('style' => $selectIntervalDown, 'alt' => 'down')) . ''; $table->align[5] = 'left'; $table->head[6] = __('Status'); - $table->head[6] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectStatusUp, 'alt' => 'up')) . '' . - '' . html_print_image('images/sort_down.png', true, array('style' => $selectStatusDown, 'alt' => 'down')) . ''; + $table->head[6] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectStatusUp, 'alt' => 'up')) . '' . + '' . html_print_image('images/sort_down.png', true, array('style' => $selectStatusDown, 'alt' => 'down')) . ''; $table->align[6] = 'left'; @@ -980,13 +980,13 @@ if (!empty($result)) { $table->head[9] = __('Data'); $table->align[9] = 'left'; if ( is_metaconsole() ) { - $table->head[9] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectStatusUp, 'alt' => 'up')) . '' . - '' . html_print_image('images/sort_down.png', true, array('style' => $selectStatusDown, 'alt' => 'down')) . ''; + $table->head[9] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectStatusUp, 'alt' => 'up')) . '' . + '' . html_print_image('images/sort_down.png', true, array('style' => $selectStatusDown, 'alt' => 'down')) . ''; } $table->head[10] = __('Timestamp'); - $table->head[10] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectTimestampUp, 'alt' => 'up')) . '' . - '' . html_print_image('images/sort_down.png', true, array('style' => $selectTimestampDown, 'alt' => 'down')) . ''; + $table->head[10] .= ' ' . html_print_image('images/sort_up.png', true, array('style' => $selectTimestampUp, 'alt' => 'up')) . '' . + '' . html_print_image('images/sort_down.png', true, array('style' => $selectTimestampDown, 'alt' => 'down')) . ''; $table->align[10] = 'left'; $id_type_web_content_string = db_get_value('id_tipo', 'ttipo_modulo', From 906201a34c8f80d6821245df2356134d8e2b49c6 Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 23 Oct 2017 17:45:29 +0200 Subject: [PATCH 100/311] 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/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.spec | 4 ++-- pandora_console/pandora_console_install | 2 +- pandora_console/pandoradb_data.sql | 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/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 +- 49 files changed, 56 insertions(+), 56 deletions(-) diff --git a/pandora_agents/pc/AIX/pandora_agent.conf b/pandora_agents/pc/AIX/pandora_agent.conf index 621d64bb64..a22cebc516 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.713, AIX version +# Version 7.0NG.714, AIX version # Licensed under GPL license v2, # Copyright (c) 2003-2010 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 0afdd45947..18e8a21aad 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.713, FreeBSD Version +# Version 7.0NG.714, FreeBSD Version # Licensed under GPL license v2, # Copyright (c) 2003-2010 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 2c4273f52b..19c970f98a 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.713, HP-UX Version +# Version 7.0NG.714, HP-UX Version # Licensed under GPL license v2, # Copyright (c) 2003-2009 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 2049bb29cc..c777a2e7fb 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.713, GNU/Linux +# Version 7.0NG.714, GNU/Linux # Licensed under GPL license v2, # Copyright (c) 2003-2009 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 33d014f333..749548f2c0 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.713, GNU/Linux +# Version 7.0NG.714, GNU/Linux # Licensed under GPL license v2, # Copyright (c) 2003-2009 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 d3c33e8c24..bb83684a4d 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.713, Solaris Version +# Version 7.0NG.714, Solaris Version # Licensed under GPL license v2, # Copyright (c) 2003-2009 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 2f830817ad..49c1784938 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-2010 Artica Soluciones Tecnologicas -# Version 7.0NG.713 +# Version 7.0NG.714 # 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 diff --git a/pandora_agents/shellscript/aix/pandora_agent.conf b/pandora_agents/shellscript/aix/pandora_agent.conf index 36b8c26603..4387ba2911 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.713, AIX version +# Version 7.0NG.714, 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 3e369cfa71..aa89be6fcc 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.713 +# Version 7.0NG.714 # 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 6268c1b169..12bcbc5beb 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.713, HPUX Version +# Version 7.0NG.714, HPUX Version # General Parameters # ================== diff --git a/pandora_agents/shellscript/linux/pandora_agent.conf b/pandora_agents/shellscript/linux/pandora_agent.conf index 5a267f00ab..1038178d4b 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.713 +# Version 7.0NG.714 # Licensed under GPL license v2, # (c) 2003-2010 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 a0df4a2098..da27975054 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.713 +# Version 7.0NG.714 # Licensed under GPL license v2, # (c) 2003-2009 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 34e606e96b..06f42c5dba 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.713 +# Version 7.0NG.714 # 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 8b78f45aee..2c75ad952e 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.713, Solaris version +# Version 7.0NG.714, Solaris version # General Parameters # ================== diff --git a/pandora_agents/unix/AIX/pandora_agent.conf b/pandora_agents/unix/AIX/pandora_agent.conf index fc85b92e50..d80b2d00e2 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.713, AIX version +# Version 7.0NG.714, AIX version # Licensed under GPL license v2, # Copyright (c) 2003-2010 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index b7760155ab..177d2f788d 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.713-171023 +Version: 7.0NG.714 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 8ff545fb63..696b182907 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.713-171023" +pandora_version="7.0NG.714" 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/pandora_agent.conf b/pandora_agents/unix/Darwin/pandora_agent.conf index 463753cce4..723b17232c 100644 --- a/pandora_agents/unix/Darwin/pandora_agent.conf +++ b/pandora_agents/unix/Darwin/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.713, GNU/Linux +# Version 7.0NG.714, GNU/Linux # Licensed under GPL license v2, # Copyright (c) 2003-2012 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/FreeBSD/pandora_agent.conf b/pandora_agents/unix/FreeBSD/pandora_agent.conf index dfed2140ba..8a8ecd3451 100644 --- a/pandora_agents/unix/FreeBSD/pandora_agent.conf +++ b/pandora_agents/unix/FreeBSD/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.713, FreeBSD Version +# Version 7.0NG.714, FreeBSD Version # Licensed under GPL license v2, # Copyright (c) 2003-2016 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/HP-UX/pandora_agent.conf b/pandora_agents/unix/HP-UX/pandora_agent.conf index 961acd9c83..f31d7e6cd0 100644 --- a/pandora_agents/unix/HP-UX/pandora_agent.conf +++ b/pandora_agents/unix/HP-UX/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.713, HP-UX Version +# Version 7.0NG.714, HP-UX Version # Licensed under GPL license v2, # Copyright (c) 2003-2009 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/Linux/pandora_agent.conf b/pandora_agents/unix/Linux/pandora_agent.conf index c9ebc00767..59ea7ed59d 100644 --- a/pandora_agents/unix/Linux/pandora_agent.conf +++ b/pandora_agents/unix/Linux/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.713, GNU/Linux +# Version 7.0NG.714, GNU/Linux # Licensed under GPL license v2, # Copyright (c) 2003-2014 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/NT4/pandora_agent.conf b/pandora_agents/unix/NT4/pandora_agent.conf index e234318c7e..ee6b7bb18d 100644 --- a/pandora_agents/unix/NT4/pandora_agent.conf +++ b/pandora_agents/unix/NT4/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.713, GNU/Linux +# Version 7.0NG.714, GNU/Linux # Licensed under GPL license v2, # Copyright (c) 2003-2009 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/NetBSD/pandora_agent.conf b/pandora_agents/unix/NetBSD/pandora_agent.conf index 9b9a078a9d..aa64beba39 100644 --- a/pandora_agents/unix/NetBSD/pandora_agent.conf +++ b/pandora_agents/unix/NetBSD/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.713, NetBSD Version +# Version 7.0NG.714, NetBSD Version # Licensed under GPL license v2, # Copyright (c) 2003-2010 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/SunOS/pandora_agent.conf b/pandora_agents/unix/SunOS/pandora_agent.conf index c11f852b29..3dada142de 100644 --- a/pandora_agents/unix/SunOS/pandora_agent.conf +++ b/pandora_agents/unix/SunOS/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.713, Solaris Version +# Version 7.0NG.714, Solaris Version # Licensed under GPL license v2, # Copyright (c) 2003-2009 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 51a79215d5..b00f417566 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -40,7 +40,7 @@ my $Sem = undef; # Semaphore used to control the number of threads my $ThreadSem = undef; -use constant AGENT_VERSION => '7.0NG.713'; +use constant AGENT_VERSION => '7.0NG.714'; use constant AGENT_BUILD => '171023'; # Agent log default file size maximum and instances diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 866d9c2716..8d7002e248 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -2,8 +2,8 @@ #Pandora FMS Linux Agent # %define name pandorafms_agent_unix -%define version 7.0NG.713 -%define release 171023 +%define version 7.0NG.714 +%define release 1 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 4335097524..b86e29980a 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -2,8 +2,8 @@ #Pandora FMS Linux Agent # %define name pandorafms_agent_unix -%define version 7.0NG.713 -%define release 171023 +%define version 7.0NG.714 +%define release 1 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 2c360cd79d..7150641c58 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -9,7 +9,7 @@ # Please see http://www.pandorafms.org. This code is licensed under GPL 2.0 license. # ********************************************************************** -PI_VERSION="7.0NG.713" +PI_VERSION="7.0NG.714" PI_BUILD="171023" OS_NAME=`uname -s` diff --git a/pandora_agents/win32/bin/pandora_agent.conf b/pandora_agents/win32/bin/pandora_agent.conf index d8cd441060..c8c32e84d0 100644 --- a/pandora_agents/win32/bin/pandora_agent.conf +++ b/pandora_agents/win32/bin/pandora_agent.conf @@ -1,6 +1,6 @@ # Base config file for Pandora FMS Windows Agent # (c) 2006-2014 Artica Soluciones Tecnologicas -# Version 7.0NG.713 +# Version 7.0NG.714 # 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 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 1f7c1d7673..4cd2935f19 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -3,7 +3,7 @@ AllowLanguageSelection {Yes} AppName -{Pandora FMS Windows Agent v7.0NG.713} +{Pandora FMS Windows Agent v7.0NG.714} ApplicationID {17E3D2CF-CA02-406B-8A80-9D31C17BD08F} @@ -2387,7 +2387,7 @@ Windows,BuildSeparateArchives {No} Windows,Executable -{<%AppName%>-<%Version%>-Setup<%Ext%>} +{<%AppName%>-Setup<%Ext%>} Windows,FileDescription {<%AppName%> <%Version%> Setup} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 033f0e3d67..17e2e06051 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.713(Build 171023)") +#define PANDORA_VERSION ("7.0NG.714(Build 171023)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 5a4c64d100..c69f636300 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.713(Build 171023))" + VALUE "ProductVersion", "(7.0NG.714(Build 171023))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index be1566c3f3..923291406c 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.713-171023 +Version: 7.0NG.714 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 f8f9fa6749..a564362a2f 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.713-171023" +pandora_version="7.0NG.714" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 87a1b9afaa..e1ef5ee0d3 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -23,7 +23,7 @@ * Pandora build version and version */ $build_version = 'PC171023'; -$pandora_version = 'v7.0NG.713'; +$pandora_version = 'v7.0NG.714'; // Do not overwrite default timezone set if defined. $script_tz = @date_default_timezone_get(); diff --git a/pandora_console/install.php b/pandora_console/install.php index 7fbc46ceaa..dab2e96117 100755 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -70,7 +70,7 @@
    Date: Mon, 23 Oct 2017 18:54:57 +0200 Subject: [PATCH 101/311] Add show on top option to all visual console elements - #1313 --- .../pandoradb_migrate_6.0_to_7.0.mysql.sql | 1 + .../visual_console_builder.editor.js | 37 +++++++++++++++- .../reporting/visual_console_builder.php | 2 + .../ajax/visual_console_builder.ajax.php | 7 ++++ .../include/functions_visual_map.php | 42 ++++++++++++------- .../include/functions_visual_map_editor.php | 8 +++- pandora_console/pandoradb.sql | 1 + 7 files changed, 80 insertions(+), 18 deletions(-) diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 4e31057a89..bf3fa97319 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -1231,6 +1231,7 @@ ALTER TABLE tlayout ADD `background_color` varchar(50) NOT NULL default '#FFF'; ALTER TABLE tlayout_data ADD `type_graph` varchar(50) NOT NULL default 'area'; ALTER TABLE tlayout_data ADD `label_position` varchar(50) NOT NULL default 'down'; ALTER TABLE tlayout_data ADD COLUMN `show_statistics` tinyint(2) NOT NULL default '0'; +ALTER TABLE tlayout_data ADD COLUMN `show_on_top` tinyint(1) NOT NULL default '0'; -- --------------------------------------------------------------------- -- Table `tagent_custom_fields` diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index bc69c22351..02ca529f8f 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -642,6 +642,7 @@ function readFields() { values['line_color'] = $("input[name='line_color']").val(); values['label_position'] = $(".labelpos[sel=yes]").attr('position'); values['show_statistics'] = $("input[name=show_statistics]").is(':checked') ? 1 : 0; + values['show_on_top'] = $("input[name=show_on_top]").is(':checked') ? 1 : 0; if (is_metaconsole()) { values['metaconsole'] = 1; @@ -1047,6 +1048,9 @@ function toggle_item_palette() { } hiddenFields(item); + + $("#show_on_top_row").css('display', 'table-row'); + $("#show_on_top." + item).css('display', 'block'); $("#properties_panel").show("fast"); @@ -1176,6 +1180,17 @@ function loadFieldsFromDB(item) { } } + if (key == 'show_on_top') { + if (val == "1") { + $("input[name=show_on_top]") + .prop("checked", true); + } + else { + $("input[name=show_on_top]") + .prop("checked", false); + } + } + if (key == 'type_graph') { $("select[name=type_graph]").val(val); } @@ -1601,6 +1616,7 @@ function cleanFields(item) { $("input[name='fill_color']").val('#ffffff'); $("input[name='line_width']").val(3); $("input[name='line_color']").val('#000000'); + $("input[name=show_on_top]").prop("checked", false); $("#preview").empty(); @@ -2517,8 +2533,6 @@ function createItem(type, values, id_data) { } $("#background").append(item); - $(".item").css('z-index', '2'); - $(".box_item").css('z-index', '1'); if (values['parent'] != 0) { var line = {"id": id_data, @@ -2541,6 +2555,14 @@ function createItem(type, values, id_data) { $('#text_'+id_data).css({'display':'block','float':'left'}); } + if(values['show_on_top'] == 1){ + $("#" + id_data).css('z-index', '10'); + } + + if(values['show_on_top'] == 0){ + $("#" + id_data).css('z-index', '5'); + } + } function addItemSelectParents(id_data, text) { @@ -2747,6 +2769,15 @@ function updateDB_visual(type, idElement , values, event, top, left) { refresh_lines(lines, 'background', true); draw_user_lines("", 0, 0, 0 , 0, 0, true); + + if(values['show_on_top'] == 1){ + $("#" + idElement).css('z-index',10); + } + + if(values['show_on_top'] == 0){ + $("#" + idElement).css('z-index',5); + } + } function updateDB(type, idElement , values, event) { @@ -3544,6 +3575,8 @@ function eventsBackground() { if ((!is_opened_palette) && (autosave)) { toggle_item_palette(); } + $("#show_on_top_row").css('display', 'none'); + $("#show_on_top." + item).css('display', ''); }); } diff --git a/pandora_console/godmode/reporting/visual_console_builder.php b/pandora_console/godmode/reporting/visual_console_builder.php index 7288784acf..a3256f8592 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.php +++ b/pandora_console/godmode/reporting/visual_console_builder.php @@ -413,6 +413,8 @@ switch ($activeTab) { $value_show = get_parameter ("value_show", 'percent'); $label_type = get_parameter ("label_type", 'agent_module'); $enable_link = get_parameter ("enable_link", 'enable_link'); + $show_on_top = get_parameter ("show_on_top", 0); + // This var switch between creation of items, item_per_agent = 0 => item per module; item_per_agent <> 0 => item per agent $item_per_agent = get_parameter ("item_per_agent", 0); $id_server = (int)get_parameter('servers', 0); diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index e5e3ac546e..f89456a0a5 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -130,6 +130,7 @@ $line_color = get_parameter('line_color', ''); $get_element_status = get_parameter('get_element_status', 0); $enable_link = get_parameter('enable_link', 1); +$show_on_top = get_parameter('show_on_top', 0); $type_graph = get_parameter('type_graph', 'area'); $label_position = get_parameter('label_position', 'down'); $show_statistics = get_parameter('show_statistics', 0); @@ -431,6 +432,7 @@ switch ($action) { $values = array(); $values['label_position'] = $label_position; + $values['show_on_top'] = $show_on_top; // In Graphs, background color is stored in column image (sorry) if ($type == 'module_graph') { @@ -474,6 +476,9 @@ switch ($action) { if ($enable_link !== null) { $values['enable_link'] = $enable_link; } + if ($show_on_top !== null) { + $values['show_on_top'] = $show_on_top; + } if ($label !== null) { $values['label'] = $label; } @@ -639,6 +644,7 @@ switch ($action) { // Don't change the label because only change the positions unset($values['label']); unset($values['label_position']); + unset($values['show_on_top']); // Don't change background color in graphs when move switch ($type) { @@ -867,6 +873,7 @@ switch ($action) { $values['id_layout_linked'] = $map_linked; $values['parent_item'] = $parent; $values['enable_link'] = $enable_link; + $values['show_on_top'] = $show_on_top; $values['image'] = $background_color; $values['type_graph'] = $type_graph; diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index ed5141cc47..ef6e279609 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -110,6 +110,14 @@ function visual_map_print_item($mode = "read", $layoutData, $border_color = $layoutData['border_color']; $fill_color = $layoutData['fill_color']; $label_position = $layoutData['label_position']; + $show_on_top = $layoutData['show_on_top']; + + if($show_on_top){ + $show_on_top_index = 10; + } + else{ + $show_on_top_index = ''; + } $sizeStyle = ''; $borderStyle = ''; @@ -925,14 +933,14 @@ function visual_map_print_item($mode = "read", $layoutData, else { if ($width == 0 || $height == 0) { if ($layoutData['label_position']=='left') { - $img = '
    '.custom_graphs_print( + $img = '
    '.custom_graphs_print( $layoutData['id_custom_graph'], 180, 480, $period, null, true, 0, $only_image, $layoutData['image'], array(), '', array(), array(), true, false, false, true, 1, false, true).'
    '; } elseif ($layoutData['label_position']=='right') { - $img = '
    '.custom_graphs_print( + $img = '
    '.custom_graphs_print( $layoutData['id_custom_graph'], 180, 480, $period, null, true, 0, $only_image, $layoutData['image'], array(), '', array(), array(), true, @@ -952,14 +960,14 @@ function visual_map_print_item($mode = "read", $layoutData, } else { if ($layoutData['label_position']=='left') { - $img = '
    '.custom_graphs_print( + $img = '
    '.custom_graphs_print( $layoutData['id_custom_graph'], $height, $width, $period, null, true, 0, $only_image, $layoutData['image'], array(), '', array(), array(), true, false, false, true, 1, false, true).'
    '; } elseif($layoutData['label_position']=='right') { - $img = '
    '.custom_graphs_print( + $img = '
    '.custom_graphs_print( $layoutData['id_custom_graph'], $height, $width, $period, null, true, 0, $only_image, $layoutData['image'], array(), '', array(), array(), true, @@ -1005,7 +1013,7 @@ function visual_map_print_item($mode = "read", $layoutData, if ($width == 0 || $height == 0) { if ($layoutData['label_position']=='left') { - $img = '
    '. + $img = '
    '. grafico_modulo_sparse($id_module, $period, 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, 1, false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', 1, false, '', @@ -1013,7 +1021,7 @@ function visual_map_print_item($mode = "read", $layoutData, null, true, false, $type_graph) . '
    '; } elseif($layoutData['label_position']=='right') { - $img = '
    ' . + $img = '
    ' . grafico_modulo_sparse($id_module, $period, 0, 300, 180, modules_get_agentmodule_name($id_module),null, false, 1, false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', @@ -1031,7 +1039,7 @@ function visual_map_print_item($mode = "read", $layoutData, } else{ if ($layoutData['label_position']=='left') { - $img = '
    ' . + $img = '
    ' . grafico_modulo_sparse($id_module, $period, 0, $width, $height, modules_get_agentmodule_name($id_module), null, false, 1, false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, '', @@ -1040,7 +1048,7 @@ function visual_map_print_item($mode = "read", $layoutData, false, $type_graph) . '
    '; } elseif ($layoutData['label_position']=='right') { - $img = '
    ' . + $img = '
    ' . grafico_modulo_sparse($id_module, $period, 0, $width, $height, modules_get_agentmodule_name($id_module), null, false, 1, false, 0, modules_get_unit($id_module), 0, 0, true, $only_image, @@ -1094,10 +1102,10 @@ function visual_map_print_item($mode = "read", $layoutData, else { if ($width == 0 || $height == 0) { if ($layoutData['label_position']=='left') { - $img = '
    ' .graph_graphic_moduleevents ($layoutData['id_agent'], $layoutData['id_agente_modulo'], 500, 50, $layoutData['period'], '', true).'
    '; + $img = '
    ' .graph_graphic_moduleevents ($layoutData['id_agent'], $layoutData['id_agente_modulo'], 500, 50, $layoutData['period'], '', true).'
    '; } elseif ($layoutData['label_position']=='right') { - $img = '
    ' . graph_graphic_moduleevents ($layoutData['id_agent'], $layoutData['id_agente_modulo'], 500, 50, $layoutData['period'], '', true).'
    '; + $img = '
    ' . graph_graphic_moduleevents ($layoutData['id_agent'], $layoutData['id_agente_modulo'], 500, 50, $layoutData['period'], '', true).'
    '; } else { $img = graph_graphic_moduleevents ($layoutData['id_agent'], $layoutData['id_agente_modulo'], 500, 50, $layoutData['period'], '', true); @@ -1105,10 +1113,10 @@ function visual_map_print_item($mode = "read", $layoutData, } else{ if ($layoutData['label_position']=='left') { - $img = '
    ' . graph_graphic_moduleevents ($layoutData['id_agent'], $layoutData['id_agente_modulo'], $width, $height, $layoutData['period'], '', true).'
    '; + $img = '
    ' . graph_graphic_moduleevents ($layoutData['id_agent'], $layoutData['id_agente_modulo'], $width, $height, $layoutData['period'], '', true).'
    '; } elseif ($layoutData['label_position']=='right') { - $img = '
    ' .graph_graphic_moduleevents ($layoutData['id_agent'], $layoutData['id_agente_modulo'], $width, $height, $layoutData['period'], '', true).'
    '; + $img = '
    ' .graph_graphic_moduleevents ($layoutData['id_agent'], $layoutData['id_agente_modulo'], $width, $height, $layoutData['period'], '', true).'
    '; } else { $img = graph_graphic_moduleevents ($layoutData['id_agent'], $layoutData['id_agente_modulo'], $width, $height, $layoutData['period'], '', true); @@ -1165,6 +1173,10 @@ function visual_map_print_item($mode = "read", $layoutData, break; } + if($show_on_top){ + $z_index = 10; + } + echo '
    "; + echo "
    "; } else { if (!empty($proportion)) { @@ -1197,7 +1209,7 @@ function visual_map_print_item($mode = "read", $layoutData, $style .= "border-width: " . $border_width . "px; "; $style .= "border-color: " . $border_color . "; "; $style .= "background-color: " . $fill_color . "; "; - echo "
    "; + echo "
    "; } else { $style = ""; @@ -1207,7 +1219,7 @@ function visual_map_print_item($mode = "read", $layoutData, $style .= "border-width: " . $border_width . "px; "; $style .= "border-color: " . $border_color . "; "; $style .= "background-color: " . $fill_color . "; "; - echo "
    "; + echo "
    "; } } break; diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index 10732896ec..5df9927835 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -459,7 +459,13 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { '' . __('Show statistics') . ' ' . html_print_checkbox('show_statistics', 1, '', true) . ''; - + + $form_items['show_on_top_row'] = array(); + $form_items['show_on_top_row']['items'] = array('group_item'); + $form_items['show_on_top_row']['html'] = + '' . __('Always show on top') . ' + ' . + html_print_checkbox('show_on_top', 1, '', true) . ''; $form_items['module_graph_size_row'] = array(); $form_items['module_graph_size_row']['items'] = array('module_graph', 'datos'); diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 0d749db694..7e2c6bf223 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1356,6 +1356,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_data` ( `border_color` varchar(200) DEFAULT "", `fill_color` varchar(200) DEFAULT "", `show_statistics` tinyint(2) NOT NULL default '0', + `show_on_top` tinyint(1) NOT NULL default '0', PRIMARY KEY(`id`) ) ENGINE = InnoDB DEFAULT CHARSET=utf8; From 5ef2b24a56ca01bcd2e43f9075c68da52f732291 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Mon, 23 Oct 2017 19:11:58 +0200 Subject: [PATCH 102/311] Fix translation - #1066 --- pandora_console/include/languages/en_GB.mo | Bin 459100 -> 353419 bytes pandora_console/include/languages/en_GB.po | 57859 ++++++++---------- pandora_console/include/languages/es.mo | Bin 523845 -> 378796 bytes pandora_console/include/languages/es.po | 59215 ++++++++----------- 4 files changed, 50950 insertions(+), 66124 deletions(-) diff --git a/pandora_console/include/languages/en_GB.mo b/pandora_console/include/languages/en_GB.mo index 26fb564370a3501571db39de4fd07b4744e06a86..3cc7f18f9d231d06e4aded4032919310ca4c54e5 100644 GIT binary patch delta 102501 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

    UDxYMt2e&DE=p{I=%6e7NSp% z6z*zhdcHguSe<`=d6B2ov}}pPIn!~d#4*u$RcTMlyNXDv&`mVeH^j)n_x@e0K;2_S zS6Uh?e$#KoiD0gex~2_KXh9ubT3^shysA*EM6r*WC5deSPsBR?bZ_xU(2xB9pA73S zVkz;FR-S(7FE-GO0itBosbW3$hHRn6rQmqa-VX1DGkhG9Srm&WwEklj6Jms1* z^bM~F>`vzg0)+M)Bzh?{d$6dX?-?xGDqi8iVNFe8%_Ew$Y8VmCk)H`TvkiK>64_Q4Ew<`;S0*5lH^)t0Lezklg;C@$rSD#Pj%g4AB^1w z@6z^hqFR~WID8a4?D{xiDT2v+u2jACx#I!DK7+}t(&amf2mN+OX-(HAiX#=VgP3sU zkcW5);7dfnK^-RnP0g4jT0aM%w;*-07%x%u_AUTjFPI`UESQH%1^u(BV(?!u`VTKe z&?`?DYv_lkinoN(Yg6+X*l=b}7w-C-GlaXM15h8t$a{{+)~C;r!+-dec-aM@69DvW zlsZooP|X6-{~3s0h02pi){hYG*&-x832^#fNcw^KVw93YofiO^2B2PzW-h>H2~@ot zU0r}RGjgHupzaHSV3%ElO(A;`KuSRCb%`$)TPomy;1(%y2Klm{iMN<+2l*`#TdCVp z5vc=ipZ)@n{nJ$B~-u>x{lTjWzI} zf%E!jajz~vE1FTmb7El$;C$$LEcIgG9AT}W#i#m)Uqm$*W*$h@ena>Gz|R4N#H!Z2s3~AmWWhn-EG_zFT~6n(bGF( zhQ9Q!Fai0#FU}PK=kGiegDL!x9KlogzB|L)_$yDaef;@EsQT(B;!F{GPC(E5>NS`e zz;%nN-e9z?6cCBgrPMZb$^$6H;r5ybMR}-A^&dS{oHSl910jK~Yv64Ex1i;?B9DvHlRn^%# zP<9`@Sk=Y5c6f6Dn|*!NSLn1aAl&`6)GB({8tO`Al~+xuY3+x1=0Sll*9Eoj3RFE5 zx>z5WU+*9_K?l^{Mk|4>cW44f09zNdJp=}b<+Fa~ai(RX5PtSoP5JX#DQ(0IL3m#@D38 zc(t_)lD`y>u|5yUv!3exRldDc{tS`#rIaLff(w?{0m~<{N-jj+tqZWBY#=@c;zqM~ zF&z0MIA6A}YA*rKf8Q5K!!vN60M2)#Tm9501c1K09y~y8^cPCM_7$}%FM-nIwZ)9p z_aC78`N>!#E~ws|qQ=m*RID{`3t(Y@^S4~My!Z3CJiRjn;Am)?>Uf616EOIb`igWl zS0Ob+y+**`>*xbBRmOFn;p#L4h`;Vof75?+s--pcB}`o!&HtIzEaNJgo`LeAI`DWq zz>_g*sD$EM(Zw+cbO4X9LiVxha;iH{jeZ8okCu4+{{I<@w-v)^#V1?|#s|I-iyvXd zGxZrD{~|ozErx1NP)|uH{(wZ`zoW8~fH>PGsV(X7B!E=`lhp(Xz{md`dk?40Q`CkY zuD4iItR-KkscNP|p3^W9{imtEUN!@OPX=;3tOWQz>`nDw!1uCNtRlBKdzz^akaY`f zo2k|*3B%iI-Ym6)#NvBV!`X=20Fd{io^w>M7oqZDq|ZV8OhWTIpm|>dl|M8WA|xtL zK;>)G$Me)*X+r^wm&m*hWZqZMrTOZ;B2d2dB5VmY7OQn>%VGr0UI5B(DFMY#cu%!Z zt4|RqEr#M7P_yM~gvT>Hp2{5&l_|C(_T~M{v0)~xQ1?*Xm2mu}j#%$2R;mH|Z!6UU zE_D9zYHWQ#=j-WF@2ep$h#ouK2iWlLe4sicDBrwHQJA>s9KU0Yir2}t0IC7d&!WET zu;&A%uZ~!sS|FkNI9j(J5uswd-a?l*s7e3C>jA49uTXy>_P~ZSa`28-46*(Luh0J* zTJPd_;gm&ay)_dbN#x3g=K=dhtz8)IKM?!>0k7ZqA=a!5ub;3{o&0yazJngSS#7HP z9jgz-!b}{+YoaBM!$@zf1>6{oPP5&i2m$$ z^_D`XKU4eR+|ptPHYthJ6Oj70dhSlOmLS0ON9flt)ZD)y`(VWd(MQt#FST;zn}mkC zVrsw+a25uPpGRZ&;i(DK{>#4r`xLr-Kppn4fPHnkeOR6OJValeb{tU$J&)5jrq7P5 z?f)}aU*SvjkpAPbcb>uczbzf#jgzd-rD#B-RvE3Wh3q4u`Gzk&887G4Ow^qsn1 zBK8fb<4HW>0NeMZ*G}QsuB8QT7Mc* zH5ZB>az-6RpPs=3pcut>ya>SWt!JK9qg09AS0`I}&7DTHLr8E?EN`Uu_)T5uLh-}t z$RFxEB>?>HSMkjG_L{nhmP^<^>ju^bVEb0I_NKaAPrii*w*lT)eIa;nGSGVhdS6a& zaaW!57ldD)M%`DB>p<`EZ4;3D0Lpu$t|>z9b04cM4dkAH-0z~RPu0@;+^6aaR)pd2 zR{-BPVOqx`4F3_+;+fuG)ygYHnEekLV9H|5z7=hA*FG%)+@C9@eJz3effQC+>mK8Rk;?t3aq{b71q+W{=WhHb~LOGkgvizh^UOKqnU_F z)IQW-t1Y4XU?P7&NyYg6f+FbNy`J`xKCYg&Mxg=qwRj2LH>8F^T9bd^_v4;H_g5rp ze@+7SlS*Lqml|u|(C?vI^xv`iR#ZA%^Z6IRo&eap>r2D6w++;Oc1sPPj})W!`4X_7 zPy(j^q%}-+!Srp~Xq%tG^wp^2Uc?zzw*``TzO5EW@5X3eH1mCc&DT0>-t?raR*D9+ z(;}%&dn}=)?X~7)?yObRJv(SI3Z3hyHKvG8;Cro;){C~T;1wj2U*0ReD2ytLj-xmEoX11iw+p7~ zFX-P9qq(4eZ#onM7_vqj3`Y>4BDL;@W%ky3l%96eD%0&~{Pc{)I6jMotN-kVP(^5* zrc(P22==Xr!^n@vX@1Wl0}EY2f!XmIUK|k=2q@?Yiv61q2AkCrA)_ZfweWul2}HR! zHoYJmz?j~mkG9W)It&Ili=aSx+A$b+I3fd^baS#6ugUPh4H+3YMrVe>-FX?9)9$qM z1R@;>2GrEYXKIaI5rO&&&Dz5?y|zP}&#JgSq>!&G@?#IzgGu7BuaP}h>q+sa5K0Lg zp|vRr8jQ))BJ|67+BY(25JUbWwU#t#q;^0?4t#0TYg#?3H44DLbh%{tOYSzcT@||&m7fKp9?RPCGEIYwctK9&lEx3>@}Z5MlLst&1y&pvxeF8v4>d0|>70it9s{q7VYUf_irNZBK_TXp#D| zi`o)AF@MJ6x23&F+SePRRL4Tjq)!(2d7hWxehbtxZupfDjL;rGNAk^?CK(YZUf#XUhKp#9|lV literal 459100 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

    ^Hu6_39 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�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ν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\n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2017-05-18 15:29+0000\n" -"X-Generator: Launchpad (build 18386)\n" +"X-Launchpad-Export-Date: 2017-10-23 14:56+0000\n" +"X-Generator: Launchpad (build 18484)\n" -#: ../../extensions/agents_alerts.php:55 -#: ../../extensions/agents_modules.php:57 -#: ../../operation/agentes/group_view.php:61 -#: ../../operation/agentes/tactical.php:46 -#: ../../enterprise/extensions/ipam/ipam_list.php:188 -#: ../../enterprise/operation/services/services.list.php:345 -#: ../../enterprise/operation/services/services.service.php:144 -msgid "Last update" -msgstr "Latest update" +#: ../../operation/search_alerts.php:27 ../../operation/search_reports.php:29 +#: ../../operation/search_users.php:26 ../../operation/search_graphs.php:24 +#: ../../operation/search_maps.php:22 ../../operation/search_modules.php:26 +#: ../../operation/search_agents.php:33 +msgid "Zero results found" +msgstr "Zero results found" -#: ../../extensions/agents_alerts.php:74 -#: ../../extensions/agents_modules.php:113 ../../general/ui/agents_list.php:69 -#: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/agentes/agent_manager.php:270 -#: ../../godmode/agentes/configurar_agente.php:363 -#: ../../godmode/agentes/modificar_agente.php:145 -#: ../../godmode/agentes/modificar_agente.php:489 -#: ../../godmode/agentes/planned_downtime.editor.php:480 -#: ../../godmode/agentes/planned_downtime.editor.php:754 -#: ../../godmode/agentes/planned_downtime.list.php:393 -#: ../../godmode/alerts/alert_actions.php:341 -#: ../../godmode/alerts/alert_special_days.php:246 -#: ../../godmode/alerts/alert_templates.php:299 -#: ../../godmode/alerts/configure_alert_action.php:116 -#: ../../godmode/alerts/configure_alert_special_days.php:69 -#: ../../godmode/alerts/configure_alert_template.php:751 -#: ../../godmode/events/custom_events.php:80 -#: ../../godmode/events/custom_events.php:156 -#: ../../godmode/events/event_edit_filter.php:226 -#: ../../godmode/events/event_filter.php:109 -#: ../../godmode/events/event_responses.editor.php:81 -#: ../../godmode/events/event_responses.list.php:56 -#: ../../godmode/gis_maps/configure_gis_map.php:366 -#: ../../godmode/massive/massive_add_action_alerts.php:151 -#: ../../godmode/massive/massive_add_alerts.php:151 -#: ../../godmode/massive/massive_add_profiles.php:89 -#: ../../godmode/massive/massive_add_tags.php:124 -#: ../../godmode/massive/massive_copy_modules.php:71 -#: ../../godmode/massive/massive_copy_modules.php:182 -#: ../../godmode/massive/massive_delete_action_alerts.php:151 -#: ../../godmode/massive/massive_delete_agents.php:105 -#: ../../godmode/massive/massive_delete_alerts.php:212 -#: ../../godmode/massive/massive_delete_profiles.php:103 -#: ../../godmode/massive/massive_edit_agents.php:207 -#: ../../godmode/massive/massive_edit_agents.php:298 -#: ../../godmode/massive/massive_enable_disable_alerts.php:136 -#: ../../godmode/massive/massive_standby_alerts.php:136 -#: ../../godmode/modules/manage_network_components.php:479 -#: ../../godmode/modules/manage_network_components.php:568 -#: ../../godmode/modules/manage_network_components_form_common.php:101 -#: ../../godmode/modules/manage_network_templates_form.php:202 -#: ../../godmode/modules/manage_network_templates_form.php:269 -#: ../../godmode/modules/manage_network_templates_form.php:302 -#: ../../godmode/netflow/nf_edit.php:119 -#: ../../godmode/netflow/nf_edit_form.php:193 -#: ../../godmode/reporting/graph_builder.main.php:116 -#: ../../godmode/reporting/graphs.php:155 -#: ../../godmode/reporting/map_builder.php:208 -#: ../../godmode/reporting/reporting_builder.item_editor.php:868 -#: ../../godmode/reporting/reporting_builder.main.php:69 -#: ../../godmode/reporting/reporting_builder.php:431 -#: ../../godmode/reporting/reporting_builder.php:561 +#: ../../operation/search_alerts.php:39 +#: ../../operation/events/events.build_table.php:36 +#: ../../operation/events/sound_events.php:80 +#: ../../operation/gis_maps/ajax.php:216 ../../operation/gis_maps/ajax.php:247 +#: ../../operation/search_modules.php:42 ../../operation/search_agents.php:44 +#: ../../operation/search_agents.php:50 +#: ../../operation/agentes/status_monitor.php:948 +#: ../../operation/agentes/exportdata.php:96 +#: ../../operation/agentes/exportdata.excel.php:76 +#: ../../operation/agentes/estado_monitores.php:95 +#: ../../operation/agentes/alerts_status.php:427 +#: ../../operation/agentes/alerts_status.php:502 +#: ../../operation/agentes/ver_agente.php:818 +#: ../../operation/agentes/exportdata.csv.php:77 +#: ../../operation/agentes/estado_agente.php:490 +#: ../../operation/incidents/incident_detail.php:349 +#: ../../extensions/module_groups.php:41 ../../extensions/insert_data.php:158 +#: ../../extensions/agents_alerts.php:345 ../../mobile/operation/home.php:72 +#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/agents.php:69 +#: ../../mobile/operation/agents.php:310 ../../mobile/operation/events.php:510 +#: ../../mobile/operation/modules.php:496 +#: ../../include/functions_pandora_networkmap.php:1369 +#: ../../include/functions_pandora_networkmap.php:1532 +#: ../../include/ajax/alert_list.ajax.php:130 +#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/functions_graph.php:5333 +#: ../../include/functions_reporting_html.php:396 +#: ../../include/functions_reporting_html.php:730 +#: ../../include/functions_reporting_html.php:810 +#: ../../include/functions_reporting_html.php:819 +#: ../../include/functions_reporting_html.php:1479 +#: ../../include/functions_reporting_html.php:1883 +#: ../../include/functions_reporting_html.php:1890 +#: ../../include/functions_reporting_html.php:1949 +#: ../../include/functions_reporting_html.php:2245 +#: ../../include/functions_reporting_html.php:2288 +#: ../../include/functions_reporting_html.php:2579 +#: ../../include/functions_reporting_html.php:2627 +#: ../../include/functions_reporting_html.php:2870 +#: ../../include/functions_reporting_html.php:3024 +#: ../../include/functions_reporting_html.php:3235 +#: ../../godmode/alerts/alert_view.php:66 +#: ../../godmode/alerts/alert_list.list.php:379 +#: ../../godmode/alerts/alert_list.list.php:590 +#: ../../godmode/alerts/alert_list.builder.php:59 +#: ../../godmode/massive/massive_enable_disable_alerts.php:154 +#: ../../godmode/massive/massive_enable_disable_alerts.php:171 +#: ../../godmode/massive/massive_standby_alerts.php:154 +#: ../../godmode/massive/massive_standby_alerts.php:171 +#: ../../godmode/massive/massive_copy_modules.php:86 +#: ../../godmode/massive/massive_copy_modules.php:200 +#: ../../godmode/reporting/graph_builder.graph_editor.php:84 +#: ../../godmode/reporting/visual_console_builder.wizard.php:303 +#: ../../godmode/reporting/visual_console_builder.wizard.php:577 +#: ../../godmode/reporting/visual_console_builder.wizard.php:600 #: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.elements.php:193 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:312 -#: ../../godmode/setup/gis.php:63 ../../godmode/setup/gis_step_2.php:153 -#: ../../godmode/setup/news.php:164 -#: ../../godmode/snmpconsole/snmp_alert.php:657 -#: ../../godmode/users/configure_user.php:624 -#: ../../godmode/users/user_list.php:227 -#: ../../include/functions_visual_map.php:2761 -#: ../../include/functions_events.php:38 -#: ../../include/functions_events.php:2437 -#: ../../include/functions_events.php:3557 -#: ../../include/functions_visual_map_editor.php:61 -#: ../../include/functions_visual_map_editor.php:336 -#: ../../include/functions_visual_map_editor.php:656 -#: ../../include/functions_graph.php:5546 -#: ../../include/functions_groups.php:745 -#: ../../include/functions_networkmap.php:1721 -#: ../../include/functions_pandora_networkmap.php:1389 -#: ../../include/functions_pandora_networkmap.php:1575 -#: ../../include/functions_reporting_html.php:2079 -#: ../../include/functions_reporting_html.php:2114 -#: ../../mobile/operation/agents.php:75 ../../mobile/operation/agents.php:120 -#: ../../mobile/operation/agents.php:124 ../../mobile/operation/agents.php:175 -#: ../../mobile/operation/agents.php:176 ../../mobile/operation/agents.php:317 -#: ../../mobile/operation/alerts.php:84 ../../mobile/operation/alerts.php:88 -#: ../../mobile/operation/alerts.php:178 ../../mobile/operation/alerts.php:179 -#: ../../mobile/operation/events.php:361 ../../mobile/operation/events.php:365 -#: ../../mobile/operation/events.php:501 ../../mobile/operation/events.php:604 -#: ../../mobile/operation/events.php:605 -#: ../../mobile/operation/modules.php:128 -#: ../../mobile/operation/modules.php:132 -#: ../../mobile/operation/modules.php:203 -#: ../../mobile/operation/modules.php:204 -#: ../../mobile/operation/networkmaps.php:65 -#: ../../mobile/operation/networkmaps.php:69 -#: ../../mobile/operation/networkmaps.php:129 -#: ../../mobile/operation/networkmaps.php:130 -#: ../../mobile/operation/networkmaps.php:197 -#: ../../mobile/operation/visualmaps.php:49 -#: ../../mobile/operation/visualmaps.php:53 -#: ../../mobile/operation/visualmaps.php:141 -#: ../../operation/agentes/alerts_status.functions.php:68 -#: ../../operation/agentes/estado_agente.php:167 -#: ../../operation/agentes/estado_agente.php:517 -#: ../../operation/agentes/estado_generalagente.php:245 -#: ../../operation/agentes/exportdata.php:235 -#: ../../operation/agentes/group_view.php:164 -#: ../../operation/agentes/pandora_networkmap.editor.php:183 -#: ../../operation/agentes/pandora_networkmap.editor.php:196 -#: ../../operation/agentes/status_monitor.php:292 -#: ../../operation/agentes/ver_agente.php:687 -#: ../../operation/events/events.build_table.php:185 -#: ../../operation/events/events_list.php:550 -#: ../../operation/events/sound_events.php:78 -#: ../../operation/gis_maps/ajax.php:309 -#: ../../operation/gis_maps/gis_map.php:90 -#: ../../operation/incidents/incident.php:339 -#: ../../operation/incidents/incident_detail.php:308 -#: ../../operation/netflow/nf_live_view.php:309 -#: ../../operation/search_agents.php:47 ../../operation/search_agents.php:59 -#: ../../operation/search_maps.php:32 ../../operation/users/user_edit.php:505 -#: ../../enterprise/dashboard/dashboards.php:84 -#: ../../enterprise/dashboard/main_dashboard.php:303 -#: ../../enterprise/dashboard/main_dashboard.php:332 -#: ../../enterprise/dashboard/widgets/agent_module.php:41 -#: ../../enterprise/dashboard/widgets/alerts_fired.php:28 -#: ../../enterprise/dashboard/widgets/top_n.php:306 -#: ../../enterprise/dashboard/widgets/tree_view.php:44 -#: ../../enterprise/extensions/cron/functions.php:40 -#: ../../enterprise/extensions/cron/main.php:248 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:168 -#: ../../enterprise/godmode/agentes/collections.php:232 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:88 -#: ../../enterprise/godmode/alerts/alert_events.php:491 -#: ../../enterprise/godmode/alerts/alert_events_list.php:361 -#: ../../enterprise/godmode/alerts/alert_events_list.php:423 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:409 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:155 -#: ../../enterprise/godmode/modules/configure_local_component.php:217 -#: ../../enterprise/godmode/modules/local_components.php:401 -#: ../../enterprise/godmode/modules/local_components.php:483 -#: ../../enterprise/godmode/policies/configure_policy.php:68 -#: ../../enterprise/godmode/policies/policies.php:229 -#: ../../enterprise/godmode/policies/policies.php:258 -#: ../../enterprise/godmode/policies/policy_agents.php:359 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:158 -#: ../../enterprise/godmode/reporting/graph_template_list.php:126 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:288 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:114 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1416 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:307 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:83 -#: ../../enterprise/godmode/services/services.service.php:250 -#: ../../enterprise/include/functions_alert_event.php:926 -#: ../../enterprise/include/functions_events.php:76 -#: ../../enterprise/include/functions_reporting_pdf.php:2315 -#: ../../enterprise/include/functions_reporting_pdf.php:2365 -#: ../../enterprise/meta/advanced/synchronizing.user.php:562 -#: ../../enterprise/meta/agentsearch.php:96 -#: ../../enterprise/meta/include/functions_events_meta.php:67 -#: ../../enterprise/meta/include/functions_wizard_meta.php:153 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1633 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:239 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:329 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:398 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:506 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:587 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:271 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:360 -#: ../../enterprise/operation/agentes/transactional_map.php:150 -#: ../../enterprise/operation/agentes/ver_agente.php:50 -#: ../../enterprise/operation/agentes/ver_agente.php:71 -#: ../../enterprise/operation/inventory/inventory.php:164 -#: ../../enterprise/operation/log/log_viewer.php:197 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:196 -#: ../../enterprise/operation/services/services.list.php:183 -#: ../../enterprise/operation/services/services.list.php:335 -#: ../../enterprise/operation/services/services.service.php:132 -#: ../../enterprise/operation/services/services.table_services.php:152 -msgid "Group" -msgstr "Group" - -#: ../../extensions/agents_alerts.php:79 -#: ../../extensions/agents_modules.php:186 ../../general/login_page.php:53 -#: ../../general/login_page.php:204 ../../include/ajax/module.php:807 -#: ../../include/functions_pandora_networkmap.php:765 -#: ../../operation/events/events.php:464 -#: ../../operation/reporting/graph_viewer.php:257 -#: ../../operation/servers/recon_view.php:49 -#: ../../operation/visual_console/public_console.php:112 -#: ../../operation/visual_console/render_view.php:176 -#: ../../enterprise/dashboard/main_dashboard.php:187 -#: ../../enterprise/dashboard/widgets/top_n.php:286 -#: ../../enterprise/extensions/ipam/ipam_network.php:159 -#: ../../enterprise/godmode/policies/policy_queue.php:470 -#: ../../enterprise/meta/advanced/policymanager.queue.php:236 -msgid "Refresh" -msgstr "Refresh" - -#: ../../extensions/agents_alerts.php:81 -#: ../../godmode/alerts/alert_list.builder.php:136 -#: ../../godmode/alerts/configure_alert_action.php:144 -#: ../../godmode/setup/setup_visuals.php:737 -#: ../../godmode/snmpconsole/snmp_alert.php:938 -#: ../../include/functions.php:430 ../../include/functions.php:564 -#: ../../include/functions_html.php:728 -#: ../../include/functions_netflow.php:1134 -#: ../../include/functions_netflow.php:1144 -#: ../../include/functions_netflow.php:1161 -#: ../../include/functions_netflow.php:1169 -#: ../../include/functions_netflow.php:1193 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:275 -#: ../../enterprise/meta/advanced/metasetup.visual.php:140 -msgid "seconds" -msgstr "seconds" - -#: ../../extensions/agents_alerts.php:82 ../../include/functions.php:2587 -#: ../../operation/gis_maps/render_view.php:138 -msgid "1 minute" -msgstr "1 minute" - -#: ../../extensions/agents_alerts.php:83 ../../include/functions.php:2588 -#: ../../operation/gis_maps/render_view.php:139 -msgid "2 minutes" -msgstr "2 minutes" - -#: ../../extensions/agents_alerts.php:84 ../../include/ajax/module.php:132 -#: ../../include/functions.php:2589 -#: ../../operation/gis_maps/render_view.php:140 -msgid "5 minutes" -msgstr "5 minutes" - -#: ../../extensions/agents_alerts.php:85 -#: ../../operation/gis_maps/render_view.php:141 -msgid "10 minutes" -msgstr "10 minutes" - -#: ../../extensions/agents_alerts.php:91 -#: ../../extensions/agents_modules.php:103 -#: ../../extensions/disabled/matrix_events.php:31 -#: ../../operation/gis_maps/render_view.php:111 -#: ../../operation/reporting/graph_viewer.php:164 -#: ../../operation/reporting/reporting_viewer.php:103 -#: ../../operation/visual_console/pure_ajax.php:136 -#: ../../operation/visual_console/render_view.php:139 -#: ../../enterprise/dashboard/main_dashboard.php:143 -#: ../../enterprise/operation/agentes/manage_transmap.php:92 -msgid "Full screen mode" -msgstr "Full screen mode" - -#: ../../extensions/agents_alerts.php:96 -#: ../../extensions/agents_modules.php:177 -#: ../../operation/events/events.php:455 -#: ../../operation/gis_maps/render_view.php:115 -#: ../../operation/reporting/graph_viewer.php:169 -#: ../../operation/reporting/reporting_viewer.php:108 -#: ../../operation/visual_console/render_view.php:167 -#: ../../enterprise/dashboard/main_dashboard.php:157 -msgid "Back to normal mode" -msgstr "Return to windowed mode" - -#: ../../extensions/agents_alerts.php:109 -msgid "Agents/Alerts" -msgstr "Agents / Alerts" - -#: ../../extensions/agents_alerts.php:118 -#: ../../operation/agentes/pandora_networkmap.view.php:741 -#: ../../operation/events/events.php:329 -#: ../../operation/snmpconsole/snmp_browser.php:90 -#: ../../operation/snmpconsole/snmp_statistics.php:49 -#: ../../operation/snmpconsole/snmp_view.php:82 -msgid "Full screen" -msgstr "Full screen" - -#: ../../extensions/agents_alerts.php:156 -msgid "There are no agents with alerts" -msgstr "There are no agents with alerts." - -#: ../../extensions/agents_alerts.php:177 -#: ../../extensions/agents_modules.php:135 -#: ../../extensions/agents_modules.php:329 -#: ../../godmode/alerts/alert_list.list.php:71 -#: ../../godmode/massive/massive_add_alerts.php:157 -#: ../../godmode/massive/massive_add_tags.php:129 -#: ../../godmode/massive/massive_delete_agents.php:127 -#: ../../godmode/massive/massive_delete_alerts.php:218 -#: ../../godmode/massive/massive_delete_modules.php:496 -#: ../../godmode/massive/massive_delete_tags.php:192 -#: ../../godmode/massive/massive_edit_agents.php:228 -#: ../../godmode/massive/massive_edit_modules.php:342 -#: ../../godmode/massive/massive_edit_plugins.php:299 -#: ../../godmode/massive/massive_enable_disable_alerts.php:141 -#: ../../godmode/massive/massive_standby_alerts.php:142 -#: ../../godmode/reporting/graph_builder.graph_editor.php:146 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1020 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1083 -#: ../../godmode/reporting/reporting_builder.list_items.php:165 -#: ../../godmode/reporting/reporting_builder.list_items.php:190 -#: ../../godmode/reporting/visual_console_builder.wizard.php:283 -#: ../../include/functions_groups.php:46 -#: ../../include/functions_groups.php:784 -#: ../../include/functions_groups.php:786 -#: ../../include/functions_groups.php:788 -#: ../../include/functions_groups.php:789 -#: ../../include/functions_groups.php:790 -#: ../../include/functions_pandora_networkmap.php:1584 -#: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:1562 -#: ../../mobile/include/functions_web.php:22 -#: ../../mobile/operation/agents.php:158 ../../mobile/operation/home.php:58 -#: ../../operation/agentes/group_view.php:120 -#: ../../operation/agentes/group_view.php:158 -#: ../../operation/search_results.php:74 -#: ../../enterprise/dashboard/widgets/agent_module.php:256 -#: ../../enterprise/dashboard/widgets/groups_status.php:88 -#: ../../enterprise/dashboard/widgets/service_map.php:93 -#: ../../enterprise/extensions/cron/functions.php:33 -#: ../../enterprise/extensions/cron/main.php:247 -#: ../../enterprise/godmode/agentes/collections.agents.php:56 -#: ../../enterprise/godmode/agentes/collections.data.php:107 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:92 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:221 -#: ../../enterprise/godmode/policies/policies.php:257 -#: ../../enterprise/godmode/policies/policies.php:409 -#: ../../enterprise/godmode/policies/policy.php:50 -#: ../../enterprise/godmode/policies/policy_agents.php:283 -#: ../../enterprise/godmode/policies/policy_agents.php:341 -#: ../../enterprise/godmode/policies/policy_queue.php:375 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:170 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:135 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:155 -#: ../../enterprise/include/functions_policies.php:3307 -#: ../../enterprise/include/functions_reporting.php:5415 -#: ../../enterprise/include/functions_reporting_pdf.php:562 -#: ../../enterprise/include/functions_reporting_pdf.php:695 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:161 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:163 -#: ../../enterprise/meta/advanced/policymanager.queue.php:257 -#: ../../enterprise/meta/monitoring/group_view.php:98 -#: ../../enterprise/meta/monitoring/group_view.php:136 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:228 -#: ../../enterprise/operation/services/services.service_map.php:135 -msgid "Agents" -msgstr "Agents" - -#: ../../extensions/agents_alerts.php:177 -#: ../../godmode/alerts/alert_templates.php:132 -#: ../../godmode/alerts/alert_templates.php:175 -#: ../../godmode/alerts/alert_templates.php:194 -#: ../../godmode/alerts/alert_templates.php:210 -#: ../../godmode/massive/massive_add_action_alerts.php:163 -#: ../../godmode/massive/massive_delete_action_alerts.php:167 -msgid "Alert templates" -msgstr "Alert templates" - -#: ../../extensions/agents_alerts.php:184 -msgid "Previous templates" -msgstr "Previous templates" - -#: ../../extensions/agents_alerts.php:222 -msgid "More templates" -msgstr "More templates" - -#: ../../extensions/agents_alerts.php:254 -#: ../../godmode/agentes/configurar_agente.php:312 -#: ../../godmode/agentes/modificar_agente.php:578 -#: ../../godmode/alerts/alert_actions.php:66 -#: ../../godmode/alerts/alert_actions.php:92 -#: ../../godmode/alerts/alert_actions.php:110 -#: ../../godmode/alerts/alert_actions.php:127 -#: ../../godmode/alerts/alert_actions.php:207 -#: ../../godmode/alerts/alert_actions.php:218 -#: ../../godmode/alerts/alert_actions.php:287 -#: ../../godmode/alerts/alert_actions.php:306 -#: ../../godmode/alerts/alert_actions.php:319 -#: ../../godmode/alerts/alert_commands.php:249 -#: ../../godmode/alerts/alert_list.php:326 -#: ../../godmode/alerts/alert_list.php:329 -#: ../../godmode/alerts/alert_special_days.php:44 -#: ../../godmode/alerts/alert_templates.php:132 -#: ../../godmode/alerts/alert_templates.php:175 -#: ../../godmode/alerts/alert_templates.php:194 -#: ../../godmode/alerts/alert_templates.php:210 -#: ../../godmode/alerts/configure_alert_action.php:56 -#: ../../godmode/alerts/configure_alert_action.php:65 -#: ../../godmode/alerts/configure_alert_command.php:41 -#: ../../godmode/alerts/configure_alert_special_days.php:55 -#: ../../godmode/alerts/configure_alert_template.php:62 -#: ../../godmode/alerts/configure_alert_template.php:82 -#: ../../godmode/alerts/configure_alert_template.php:100 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/group_list.php:339 -#: ../../godmode/massive/massive_copy_modules.php:153 -#: ../../godmode/menu.php:140 ../../include/functions_reports.php:609 -#: ../../include/functions_reports.php:611 -#: ../../include/functions_reports.php:614 -#: ../../include/functions_graph.php:748 -#: ../../include/functions_graph.php:3942 -#: ../../include/functions_graph.php:4668 -#: ../../include/functions_reporting_html.php:1608 -#: ../../include/functions_reporting_html.php:3255 -#: ../../include/functions_treeview.php:374 -#: ../../mobile/include/functions_web.php:25 -#: ../../mobile/operation/agent.php:250 ../../mobile/operation/agents.php:83 -#: ../../mobile/operation/agents.php:324 ../../mobile/operation/alerts.php:154 -#: ../../operation/agentes/estado_agente.php:528 -#: ../../operation/agentes/ver_agente.php:973 -#: ../../operation/search_agents.php:65 ../../operation/search_results.php:94 -#: ../../enterprise/godmode/alerts/alert_events.php:71 -#: ../../enterprise/godmode/alerts/alert_events_list.php:67 -#: ../../enterprise/godmode/alerts/alert_events_list.php:114 -#: ../../enterprise/godmode/alerts/alert_events_list.php:129 -#: ../../enterprise/godmode/alerts/alert_events_list.php:144 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:91 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:69 -#: ../../enterprise/godmode/policies/policies.php:397 -#: ../../enterprise/godmode/policies/policy_alerts.php:32 -#: ../../enterprise/godmode/services/services.service.php:323 -#: ../../enterprise/include/functions_policies.php:3260 -#: ../../enterprise/include/functions_reporting_pdf.php:737 -#: ../../enterprise/meta/agentsearch.php:99 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1374 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1464 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1584 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:599 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:85 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:103 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:73 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:226 -msgid "Alerts" -msgstr "Alerts" +#: ../../godmode/reporting/reporting_builder.item_editor.php:920 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1540 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1739 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1746 +#: ../../godmode/reporting/reporting_builder.list_items.php:291 +#: ../../godmode/gis_maps/configure_gis_map.php:420 +#: ../../godmode/servers/plugin.php:66 +#: ../../godmode/agentes/module_manager_editor_common.php:689 +#: ../../godmode/agentes/module_manager_editor_common.php:717 +#: ../../godmode/agentes/module_manager_editor_prediction.php:110 +#: ../../godmode/agentes/planned_downtime.list.php:171 +msgid "Agent" +msgstr "Agent" +#: ../../operation/search_alerts.php:42 ../../operation/search_modules.php:35 +#: ../../operation/agentes/exportdata.php:97 +#: ../../operation/agentes/exportdata.excel.php:76 +#: ../../operation/agentes/estado_monitores.php:97 +#: ../../operation/agentes/alerts_status.php:428 +#: ../../operation/agentes/alerts_status.php:469 +#: ../../operation/agentes/alerts_status.php:503 +#: ../../operation/agentes/alerts_status.php:537 +#: ../../operation/agentes/exportdata.csv.php:77 +#: ../../extensions/module_groups.php:43 ../../extensions/insert_data.php:173 +#: ../../extensions/agents_modules.php:161 #: ../../extensions/agents_alerts.php:280 -#: ../../extensions/agents_modules.php:146 -#: ../../extensions/insert_data.php:173 ../../extensions/module_groups.php:43 -#: ../../godmode/agentes/agent_manager.php:268 -#: ../../godmode/agentes/module_manager_editor_common.php:699 -#: ../../godmode/agentes/module_manager_editor_common.php:718 -#: ../../godmode/agentes/module_manager_editor_prediction.php:135 -#: ../../godmode/agentes/planned_downtime.editor.php:839 -#: ../../godmode/agentes/planned_downtime.list.php:175 -#: ../../godmode/alerts/alert_list.builder.php:71 +#: ../../mobile/operation/alerts.php:268 +#: ../../include/ajax/alert_list.ajax.php:139 +#: ../../include/functions_visual_map_editor.php:311 +#: ../../include/functions_graph.php:5449 +#: ../../include/functions_treeview.php:66 +#: ../../include/functions_reporting_html.php:397 +#: ../../include/functions_reporting_html.php:731 +#: ../../include/functions_reporting_html.php:1480 +#: ../../include/functions_reporting_html.php:1950 +#: ../../include/functions_reporting_html.php:2252 +#: ../../include/functions_reporting_html.php:2295 +#: ../../include/functions_reporting_html.php:2580 +#: ../../godmode/alerts/alert_view.php:71 #: ../../godmode/alerts/alert_list.list.php:393 #: ../../godmode/alerts/alert_list.list.php:599 -#: ../../godmode/alerts/alert_view.php:71 +#: ../../godmode/alerts/alert_list.builder.php:71 #: ../../godmode/massive/massive_edit_agents.php:296 #: ../../godmode/massive/massive_enable_disable_alerts.php:154 #: ../../godmode/massive/massive_enable_disable_alerts.php:171 #: ../../godmode/massive/massive_standby_alerts.php:154 #: ../../godmode/massive/massive_standby_alerts.php:171 #: ../../godmode/reporting/graph_builder.graph_editor.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:974 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1546 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1745 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1752 -#: ../../godmode/reporting/reporting_builder.list_items.php:299 -#: ../../godmode/reporting/visual_console_builder.elements.php:78 #: ../../godmode/reporting/visual_console_builder.wizard.php:302 #: ../../godmode/reporting/visual_console_builder.wizard.php:609 +#: ../../godmode/reporting/visual_console_builder.elements.php:78 +#: ../../godmode/reporting/reporting_builder.item_editor.php:974 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1541 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1740 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1747 +#: ../../godmode/reporting/reporting_builder.list_items.php:296 #: ../../godmode/servers/plugin.php:67 -#: ../../include/ajax/alert_list.ajax.php:139 -#: ../../include/functions_visual_map_editor.php:311 -#: ../../include/functions_graph.php:5451 -#: ../../include/functions_reporting_html.php:397 -#: ../../include/functions_reporting_html.php:731 -#: ../../include/functions_reporting_html.php:1486 -#: ../../include/functions_reporting_html.php:1956 -#: ../../include/functions_reporting_html.php:2258 -#: ../../include/functions_reporting_html.php:2301 -#: ../../include/functions_reporting_html.php:2590 -#: ../../include/functions_treeview.php:66 -#: ../../mobile/operation/alerts.php:268 -#: ../../operation/agentes/alerts_status.php:428 -#: ../../operation/agentes/alerts_status.php:469 -#: ../../operation/agentes/alerts_status.php:503 -#: ../../operation/agentes/alerts_status.php:537 -#: ../../operation/agentes/estado_monitores.php:97 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/exportdata.php:97 -#: ../../operation/search_alerts.php:42 ../../operation/search_modules.php:35 -#: ../../enterprise/dashboard/widgets/agent_module.php:90 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:54 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:60 -#: ../../enterprise/dashboard/widgets/module_icon.php:63 -#: ../../enterprise/dashboard/widgets/module_icon.php:69 -#: ../../enterprise/dashboard/widgets/module_status.php:63 -#: ../../enterprise/dashboard/widgets/module_status.php:69 -#: ../../enterprise/dashboard/widgets/module_table_value.php:60 -#: ../../enterprise/dashboard/widgets/module_table_value.php:66 -#: ../../enterprise/dashboard/widgets/module_value.php:63 -#: ../../enterprise/dashboard/widgets/module_value.php:69 -#: ../../enterprise/dashboard/widgets/single_graph.php:61 -#: ../../enterprise/dashboard/widgets/single_graph.php:67 -#: ../../enterprise/dashboard/widgets/sla_percent.php:51 -#: ../../enterprise/dashboard/widgets/sla_percent.php:57 -#: ../../enterprise/dashboard/widgets/top_n.php:127 -#: ../../enterprise/dashboard/widgets/top_n.php:310 -#: ../../enterprise/extensions/disabled/check_acls.php:121 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:174 -#: ../../enterprise/godmode/agentes/inventory_manager.php:149 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:19 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:408 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 -#: ../../enterprise/godmode/policies/policy_alerts.php:240 -#: ../../enterprise/godmode/policies/policy_alerts.php:447 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 -#: ../../enterprise/godmode/policies/policy_linking.php:121 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:145 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1476 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1948 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2098 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2105 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:241 -#: ../../enterprise/godmode/services/services.elements.php:334 -#: ../../enterprise/godmode/services/services.elements.php:360 -#: ../../enterprise/include/functions_alert_event.php:924 -#: ../../enterprise/include/functions_events.php:120 -#: ../../enterprise/include/functions_inventory.php:507 -#: ../../enterprise/include/functions_inventory.php:563 -#: ../../enterprise/include/functions_reporting.php:1263 -#: ../../enterprise/include/functions_reporting.php:2055 -#: ../../enterprise/include/functions_reporting.php:2832 -#: ../../enterprise/include/functions_reporting_csv.php:323 -#: ../../enterprise/include/functions_reporting_csv.php:347 -#: ../../enterprise/include/functions_reporting_csv.php:404 -#: ../../enterprise/include/functions_reporting_csv.php:430 -#: ../../enterprise/include/functions_reporting_csv.php:496 -#: ../../enterprise/include/functions_reporting_csv.php:523 -#: ../../enterprise/include/functions_reporting_csv.php:558 -#: ../../enterprise/include/functions_reporting_csv.php:594 -#: ../../enterprise/include/functions_reporting_csv.php:631 -#: ../../enterprise/include/functions_reporting_csv.php:699 -#: ../../enterprise/include/functions_reporting_csv.php:735 -#: ../../enterprise/include/functions_reporting_csv.php:771 -#: ../../enterprise/include/functions_reporting_csv.php:807 -#: ../../enterprise/include/functions_reporting_csv.php:843 -#: ../../enterprise/include/functions_reporting_csv.php:879 -#: ../../enterprise/include/functions_reporting_csv.php:928 -#: ../../enterprise/include/functions_reporting_csv.php:975 -#: ../../enterprise/include/functions_reporting_csv.php:1047 -#: ../../enterprise/include/functions_reporting_csv.php:1163 -#: ../../enterprise/include/functions_reporting_csv.php:1305 -#: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../enterprise/include/functions_reporting_pdf.php:775 -#: ../../enterprise/include/functions_reporting_pdf.php:833 -#: ../../enterprise/include/functions_reporting_pdf.php:927 -#: ../../enterprise/include/functions_reporting_pdf.php:1265 -#: ../../enterprise/include/functions_reporting_pdf.php:1609 -#: ../../enterprise/include/functions_reporting_pdf.php:1847 -#: ../../enterprise/include/functions_reporting_pdf.php:1866 -#: ../../enterprise/include/functions_services.php:1492 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3255 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 -#: ../../enterprise/operation/agentes/agent_inventory.php:64 -#: ../../enterprise/operation/agentes/policy_view.php:194 -#: ../../enterprise/operation/inventory/inventory.php:169 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:191 +#: ../../godmode/agentes/module_manager_editor_common.php:699 +#: ../../godmode/agentes/module_manager_editor_common.php:718 +#: ../../godmode/agentes/planned_downtime.editor.php:839 +#: ../../godmode/agentes/agent_manager.php:268 +#: ../../godmode/agentes/module_manager_editor_prediction.php:135 +#: ../../godmode/agentes/planned_downtime.list.php:175 msgid "Module" msgstr "Module" -#: ../../extensions/agents_alerts.php:281 ../../general/logon_ok.php:225 -#: ../../general/logon_ok.php:422 ../../godmode/admin_access_logs.php:61 -#: ../../godmode/admin_access_logs.php:189 -#: ../../godmode/agentes/agent_template.php:231 -#: ../../godmode/agentes/module_manager.php:568 -#: ../../godmode/agentes/planned_downtime.editor.php:840 -#: ../../godmode/alerts/alert_list.list.php:607 +#: ../../operation/search_alerts.php:45 +#: ../../operation/servers/recon_view.php:101 +#: ../../operation/agentes/alerts_status.php:429 +#: ../../operation/agentes/alerts_status.php:470 +#: ../../operation/agentes/alerts_status.php:504 +#: ../../operation/agentes/alerts_status.php:538 +#: ../../extensions/agents_alerts.php:345 +#: ../../mobile/operation/alerts.php:270 +#: ../../include/functions_treeview.php:381 +#: ../../include/functions_treeview.php:422 +#: ../../include/functions_reporting_html.php:1951 +#: ../../include/functions_reporting_html.php:1954 +#: ../../godmode/alerts/alert_view.php:75 +#: ../../godmode/alerts/alert_list.list.php:407 +#: ../../godmode/alerts/alert_list.builder.php:113 +msgid "Template" +msgstr "Template" + +#: ../../operation/search_alerts.php:48 +#: ../../operation/snmpconsole/snmp_view.php:540 +#: ../../operation/snmpconsole/snmp_view.php:838 +#: ../../operation/events/events.build_table.php:253 +#: ../../operation/agentes/alerts_status.php:430 +#: ../../operation/agentes/alerts_status.php:471 +#: ../../operation/agentes/alerts_status.php:505 +#: ../../operation/agentes/alerts_status.php:539 +#: ../../operation/agentes/alerts_status.functions.php:106 +#: ../../operation/incidents/incident.php:343 +#: ../../extensions/agents_alerts.php:281 +#: ../../mobile/operation/tactical.php:308 ../../general/logon_ok.php:225 +#: ../../general/logon_ok.php:422 ../../include/ajax/alert_list.ajax.php:147 +#: ../../include/functions_ui_renders.php:97 +#: ../../include/functions_reporting_html.php:1953 +#: ../../include/functions_reporting_html.php:3587 +#: ../../include/functions_events.php:3614 ../../include/functions.php:2313 +#: ../../godmode/snmpconsole/snmp_alert.php:1172 +#: ../../godmode/snmpconsole/snmp_alert.php:1264 +#: ../../godmode/snmpconsole/snmp_filters.php:133 #: ../../godmode/alerts/alert_view.php:417 +#: ../../godmode/alerts/alert_list.list.php:607 #: ../../godmode/events/event_filter.php:113 #: ../../godmode/massive/massive_add_action_alerts.php:179 #: ../../godmode/massive/massive_delete_action_alerts.php:181 #: ../../godmode/massive/massive_enable_disable_alerts.php:163 #: ../../godmode/massive/massive_operations.php:271 #: ../../godmode/massive/massive_standby_alerts.php:163 +#: ../../godmode/users/configure_user.php:626 +#: ../../godmode/reporting/visual_console_builder.elements.php:85 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1546 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1741 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1750 +#: ../../godmode/netflow/nf_item_list.php:152 +#: ../../godmode/netflow/nf_edit.php:120 +#: ../../godmode/servers/manage_recontask.php:291 +#: ../../godmode/admin_access_logs.php:61 +#: ../../godmode/admin_access_logs.php:189 #: ../../godmode/modules/manage_nc_groups.php:195 #: ../../godmode/modules/manage_network_components.php:570 #: ../../godmode/modules/manage_network_templates.php:192 -#: ../../godmode/netflow/nf_edit.php:120 -#: ../../godmode/netflow/nf_item_list.php:152 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1551 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1746 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1755 -#: ../../godmode/reporting/visual_console_builder.elements.php:85 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/snmpconsole/snmp_alert.php:1172 -#: ../../godmode/snmpconsole/snmp_alert.php:1264 -#: ../../godmode/snmpconsole/snmp_filters.php:133 -#: ../../godmode/users/configure_user.php:626 -#: ../../include/ajax/alert_list.ajax.php:147 ../../include/functions.php:2313 -#: ../../include/functions_ui_renders.php:97 -#: ../../include/functions_events.php:3614 -#: ../../include/functions_reporting_html.php:1959 -#: ../../include/functions_reporting_html.php:3597 -#: ../../mobile/operation/tactical.php:308 -#: ../../operation/agentes/alerts_status.functions.php:106 -#: ../../operation/agentes/alerts_status.php:430 -#: ../../operation/agentes/alerts_status.php:471 -#: ../../operation/agentes/alerts_status.php:505 -#: ../../operation/agentes/alerts_status.php:539 -#: ../../operation/events/events.build_table.php:253 -#: ../../operation/incidents/incident.php:343 -#: ../../operation/search_alerts.php:48 -#: ../../operation/snmpconsole/snmp_view.php:631 -#: ../../operation/snmpconsole/snmp_view.php:929 -#: ../../enterprise/dashboard/widgets/top_n.php:129 -#: ../../enterprise/extensions/ipam/ipam_list.php:200 -#: ../../enterprise/godmode/admin_access_logs.php:25 -#: ../../enterprise/godmode/alerts/alert_events.php:510 -#: ../../enterprise/godmode/alerts/alert_events.php:522 -#: ../../enterprise/godmode/alerts/alert_events_list.php:424 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:158 -#: ../../enterprise/godmode/policies/policy_alerts.php:455 -#: ../../enterprise/godmode/policies/policy_modules.php:1205 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:151 -#: ../../enterprise/godmode/reporting/graph_template_list.php:130 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1952 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2099 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2107 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/include/functions_services.php:1432 -#: ../../enterprise/operation/agentes/policy_view.php:196 +#: ../../godmode/agentes/planned_downtime.editor.php:840 +#: ../../godmode/agentes/module_manager.php:568 +#: ../../godmode/agentes/agent_template.php:231 msgid "Action" msgstr "Action" -#: ../../extensions/agents_alerts.php:282 -#: ../../godmode/alerts/alert_view.php:79 -#: ../../godmode/snmpconsole/snmp_alert.php:1169 -#: ../../include/functions_reporting_html.php:3109 -#: ../../include/functions_treeview.php:424 -#: ../../operation/agentes/alerts_status.php:431 -#: ../../operation/agentes/alerts_status.php:472 -#: ../../operation/agentes/alerts_status.php:506 -#: ../../operation/agentes/alerts_status.php:540 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1528 -#: ../../enterprise/operation/agentes/policy_view.php:197 -msgid "Last fired" -msgstr "Last fired" +#: ../../operation/snmpconsole/snmp_mib_uploader.php:30 +#: ../../operation/menu.php:89 +msgid "MIB uploader" +msgstr "MIB uploader" -#: ../../extensions/agents_alerts.php:283 ../../extensions/net_tools.php:239 -#: ../../godmode/agentes/agent_incidents.php:86 -#: ../../godmode/agentes/agent_manager.php:340 -#: ../../godmode/agentes/module_manager.php:564 -#: ../../godmode/alerts/alert_list.list.php:411 -#: ../../godmode/alerts/alert_view.php:96 -#: ../../godmode/events/custom_events.php:83 -#: ../../godmode/events/custom_events.php:157 -#: ../../godmode/massive/massive_copy_modules.php:83 -#: ../../godmode/massive/massive_copy_modules.php:196 -#: ../../godmode/massive/massive_delete_agents.php:119 -#: ../../godmode/massive/massive_delete_modules.php:450 -#: ../../godmode/massive/massive_edit_agents.php:222 -#: ../../godmode/massive/massive_edit_agents.php:362 -#: ../../godmode/servers/servers.build_table.php:65 -#: ../../include/ajax/module.php:745 ../../include/functions_events.php:39 -#: ../../include/functions_events.php:2415 -#: ../../include/functions_events.php:3520 -#: ../../include/functions_pandora_networkmap.php:1400 -#: ../../include/functions_reporting_html.php:401 -#: ../../include/functions_reporting_html.php:806 -#: ../../include/functions_reporting_html.php:816 -#: ../../include/functions_reporting_html.php:1021 -#: ../../include/functions_reporting_html.php:1031 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:66 +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 "" +"MIB files will be installed on the system. Please note that an MIB file " +"might depend on another MIB. In order to customize trap definitions, use the " +"SNMP trap editor." + +#: ../../operation/snmpconsole/snmp_statistics.php:45 +#: ../../operation/snmpconsole/snmp_view.php:77 +#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/agentes/pandora_networkmap.view.php:731 +msgid "Normal screen" +msgstr "Normal screen" + +#: ../../operation/snmpconsole/snmp_statistics.php:49 +#: ../../operation/snmpconsole/snmp_view.php:81 +#: ../../operation/snmpconsole/snmp_browser.php:90 +#: ../../operation/events/events.php:329 +#: ../../operation/agentes/pandora_networkmap.view.php:741 +#: ../../extensions/agents_alerts.php:118 +msgid "Full screen" +msgstr "Full screen" + +#: ../../operation/snmpconsole/snmp_statistics.php:55 +#: ../../operation/snmpconsole/snmp_view.php:73 +#: ../../operation/events/events.php:405 ../../include/functions_html.php:659 +#: ../../include/functions_html.php:660 ../../include/functions_html.php:785 +#: ../../include/functions_html.php:786 +#: ../../godmode/alerts/alert_list.php:326 +#: ../../godmode/category/category.php:58 +#: ../../godmode/agentes/planned_downtime.editor.php:38 +msgid "List" +msgstr "list" + +#: ../../operation/snmpconsole/snmp_statistics.php:61 +#: ../../operation/snmpconsole/snmp_view.php:71 ../../operation/menu.php:278 +#: ../../operation/menu.php:365 ../../operation/events/event_statistics.php:32 +#: ../../operation/incidents/incident_statistics.php:30 +msgid "Statistics" +msgstr "Statistics" + +#: ../../operation/snmpconsole/snmp_statistics.php:64 +#: ../../operation/snmpconsole/snmp_view.php:85 +#: ../../godmode/snmpconsole/snmp_alert.php:78 +#: ../../godmode/snmpconsole/snmp_alert.php:82 +#: ../../godmode/snmpconsole/snmp_alert.php:86 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../godmode/snmpconsole/snmp_filters.php:38 +#: ../../godmode/snmpconsole/snmp_filters.php:42 +msgid "SNMP Console" +msgstr "SNMP Console" + +#: ../../operation/snmpconsole/snmp_statistics.php:116 +#: ../../operation/snmpconsole/snmp_view.php:467 +msgid "There are no SNMP traps in database" +msgstr "There are no SNMP traps on the database" + +#: ../../operation/snmpconsole/snmp_statistics.php:127 +msgid "Traps received by source" +msgstr "Traps received by source" + +#: ../../operation/snmpconsole/snmp_statistics.php:127 +#: ../../operation/snmpconsole/snmp_statistics.php:185 +#: ../../include/functions_reporting.php:959 +#, php-format +msgid "Top %d" +msgstr "Top %d" + +#: ../../operation/snmpconsole/snmp_statistics.php:140 +#: ../../mobile/operation/tactical.php:311 ../../general/logon_ok.php:227 +#: ../../general/logon_ok.php:424 +#: ../../include/functions_reporting_html.php:3589 +#: ../../godmode/admin_access_logs.php:191 +msgid "Source IP" +msgstr "Source IP" + +#: ../../operation/snmpconsole/snmp_statistics.php:141 +#: ../../operation/snmpconsole/snmp_statistics.php:199 +msgid "Number" +msgstr "Number" + +#: ../../operation/snmpconsole/snmp_statistics.php:151 +#: ../../operation/snmpconsole/snmp_view.php:583 +#: ../../operation/agentes/estado_agente.php:626 +#: ../../operation/agentes/estado_agente.php:646 +#: ../../godmode/agentes/modificar_agente.php:654 +msgid "Create agent" +msgstr "Create agent" + +#: ../../operation/snmpconsole/snmp_statistics.php:156 +#: ../../operation/snmpconsole/snmp_view.php:589 +msgid "View agent details" +msgstr "View agent details" + +#: ../../operation/snmpconsole/snmp_statistics.php:172 +#: ../../operation/snmpconsole/snmp_statistics.php:219 +#: ../../operation/snmpconsole/snmp_view.php:429 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:741 +#: ../../operation/users/user_edit.php:282 +#: ../../operation/gis_maps/render_view.php:152 +#: ../../extensions/api_checker.php:152 ../../include/functions_graph.php:2594 +#: ../../include/functions_graph.php:2744 +#: ../../include/functions_graph.php:2785 +#: ../../include/functions_graph.php:2826 +#: ../../include/functions_graph.php:2882 +#: ../../include/functions_graph.php:2938 +#: ../../include/functions_graph.php:2992 +#: ../../include/functions_graph.php:3170 +#: ../../include/functions_graph.php:3315 +#: ../../include/functions_graph.php:3365 +#: ../../include/functions_graph.php:4364 +#: ../../godmode/snmpconsole/snmp_alert.php:33 +#: ../../godmode/groups/configure_group.php:190 +msgid "Other" +msgstr "Other" + +#: ../../operation/snmpconsole/snmp_statistics.php:185 +msgid "Traps received by Enterprise String" +msgstr "Traps received by the Enterprise String" + +#: ../../operation/snmpconsole/snmp_statistics.php:198 +msgid "Trap Enterprise String" +msgstr "Trap Enterprise String" + +#: ../../operation/snmpconsole/snmp_view.php:97 +#: ../../operation/events/events.php:508 +#: ../../operation/reporting/graph_viewer.php:34 +#: ../../operation/reporting/graph_viewer.php:41 +#: ../../operation/gis_maps/gis_map.php:74 +#: ../../operation/messages/message_list.php:56 +#: ../../operation/messages/message_list.php:73 +#: ../../operation/incidents/incident_detail.php:85 +#: ../../operation/incidents/incident_detail.php:114 +#: ../../operation/incidents/incident.php:66 +#: ../../extensions/files_repo.php:166 +#: ../../godmode/snmpconsole/snmp_alert.php:560 +#: ../../godmode/snmpconsole/snmp_filters.php:76 +#: ../../godmode/alerts/alert_special_days.php:223 +#: ../../godmode/alerts/alert_actions.php:332 +#: ../../godmode/alerts/alert_commands.php:319 +#: ../../godmode/alerts/alert_list.php:145 +#: ../../godmode/alerts/alert_list.php:213 +#: ../../godmode/alerts/alert_templates.php:224 +#: ../../godmode/setup/news.php:97 ../../godmode/setup/gis.php:57 +#: ../../godmode/setup/links.php:69 ../../godmode/events/event_filter.php:56 +#: ../../godmode/events/event_filter.php:77 +#: ../../godmode/massive/massive_delete_action_alerts.php:114 +#: ../../godmode/massive/massive_delete_modules.php:236 +#: ../../godmode/massive/massive_delete_tags.php:151 +#: ../../godmode/massive/massive_delete_alerts.php:156 +#: ../../godmode/users/configure_user.php:415 +#: ../../godmode/users/profile_list.php:94 +#: ../../godmode/users/user_list.php:147 ../../godmode/users/user_list.php:188 +#: ../../godmode/reporting/map_builder.php:87 +#: ../../godmode/reporting/reporting_builder.php:412 +#: ../../godmode/reporting/graphs.php:86 ../../godmode/reporting/graphs.php:94 +#: ../../godmode/reporting/graphs.php:136 +#: ../../godmode/netflow/nf_item_list.php:105 +#: ../../godmode/netflow/nf_item_list.php:126 +#: ../../godmode/netflow/nf_edit.php:76 ../../godmode/netflow/nf_edit.php:100 +#: ../../godmode/modules/manage_nc_groups.php:122 +#: ../../godmode/modules/manage_network_components.php:372 +#: ../../godmode/agentes/planned_downtime.list.php:107 +msgid "Successfully deleted" +msgstr "Successfully deleted" + +#: ../../operation/snmpconsole/snmp_view.php:98 +#: ../../operation/events/events.php:509 +#: ../../operation/gis_maps/gis_map.php:75 +#: ../../operation/messages/message_list.php:57 +#: ../../operation/agentes/pandora_networkmap.php:269 +#: ../../operation/incidents/incident_detail.php:86 +#: ../../operation/incidents/incident_detail.php:115 +#: ../../operation/incidents/incident.php:67 +#: ../../extensions/files_repo.php:166 +#: ../../godmode/alerts/alert_special_days.php:224 +#: ../../godmode/alerts/alert_actions.php:333 +#: ../../godmode/alerts/alert_commands.php:320 +#: ../../godmode/alerts/alert_list.php:145 +#: ../../godmode/alerts/alert_list.php:213 +#: ../../godmode/alerts/alert_templates.php:225 +#: ../../godmode/setup/news.php:98 ../../godmode/setup/gis.php:55 +#: ../../godmode/massive/massive_delete_action_alerts.php:115 +#: ../../godmode/massive/massive_delete_tags.php:152 +#: ../../godmode/massive/massive_delete_alerts.php:157 +#: ../../godmode/users/configure_user.php:416 +#: ../../godmode/reporting/reporting_builder.php:413 +#: ../../godmode/modules/manage_network_components.php:373 +msgid "Could not be deleted" +msgstr "Could not be deleted" + +#: ../../operation/snmpconsole/snmp_view.php:116 +#: ../../operation/incidents/incident.php:110 +#: ../../include/functions_planned_downtimes.php:125 +#: ../../godmode/snmpconsole/snmp_alert.php:318 +#: ../../godmode/snmpconsole/snmp_filters.php:54 +#: ../../godmode/alerts/alert_special_days.php:206 +#: ../../godmode/alerts/alert_actions.php:262 +#: ../../godmode/alerts/configure_alert_command.php:93 +#: ../../godmode/alerts/configure_alert_template.php:444 +#: ../../godmode/alerts/alert_list.php:196 +#: ../../godmode/alerts/alert_templates.php:151 +#: ../../godmode/setup/news.php:87 ../../godmode/setup/gis.php:39 +#: ../../godmode/setup/links.php:58 +#: ../../godmode/events/event_edit_filter.php:173 +#: ../../godmode/massive/massive_edit_modules.php:152 +#: ../../godmode/users/profile_list.php:223 +#: ../../godmode/netflow/nf_edit_form.php:131 +#: ../../godmode/modules/manage_nc_groups.php:98 +#: ../../godmode/agentes/configurar_agente.php:804 +#: ../../godmode/agentes/planned_downtime.editor.php:368 +msgid "Successfully updated" +msgstr "Successfully updated" + +#: ../../operation/snmpconsole/snmp_view.php:117 +#: ../../operation/agentes/pandora_networkmap.php:247 +#: ../../operation/incidents/incident.php:111 +#: ../../include/functions_planned_downtimes.php:122 +#: ../../godmode/alerts/alert_special_days.php:207 +#: ../../godmode/alerts/alert_actions.php:263 +#: ../../godmode/alerts/configure_alert_command.php:94 +#: ../../godmode/alerts/configure_alert_template.php:445 +#: ../../godmode/alerts/alert_list.php:196 +#: ../../godmode/alerts/alert_templates.php:152 ../../godmode/setup/gis.php:41 +#: ../../godmode/massive/massive_edit_modules.php:153 +#: ../../godmode/modules/manage_network_components.php:346 +#: ../../godmode/agentes/planned_downtime.editor.php:359 +msgid "Could not be updated" +msgstr "Could not be updated" + +#: ../../operation/snmpconsole/snmp_view.php:164 +#: ../../operation/snmpconsole/snmp_view.php:835 +#: ../../operation/agentes/alerts_status.functions.php:75 +#: ../../mobile/operation/alerts.php:39 +msgid "Not fired" +msgstr "Not triggered" + +#: ../../operation/snmpconsole/snmp_view.php:164 +#: ../../operation/snmpconsole/snmp_view.php:832 +#: ../../operation/agentes/alerts_status.functions.php:74 +#: ../../mobile/operation/alerts.php:38 +#: ../../include/functions_reporting_html.php:1598 +#: ../../include/functions_reporting_html.php:1953 +#: ../../include/functions_reporting_html.php:1954 +msgid "Fired" +msgstr "Triggered" + +#: ../../operation/snmpconsole/snmp_view.php:382 +#: ../../operation/snmpconsole/snmp_view.php:536 +#: ../../operation/snmpconsole/snmp_view.php:830 +#: ../../operation/events/events_rss.php:185 +#: ../../operation/events/events.build_table.php:204 +#: ../../operation/agentes/estado_monitores.php:449 +#: ../../include/functions_events.php:43 +#: ../../include/functions_events.php:991 +#: ../../include/functions_events.php:3573 +#: ../../godmode/events/custom_events.php:95 +#: ../../godmode/events/custom_events.php:161 +#: ../../godmode/agentes/configurar_agente.php:538 +msgid "Alert" +msgstr "Alert" + +#: ../../operation/snmpconsole/snmp_view.php:384 +#: ../../operation/snmpconsole/snmp_view.php:401 +#: ../../operation/snmpconsole/snmp_view.php:406 +#: ../../operation/snmpconsole/snmp_view.php:546 +#: ../../operation/events/export_csv.php:54 +#: ../../operation/events/events_list.php:450 +#: ../../operation/events/events_list.php:454 +#: ../../operation/events/events_list.php:463 +#: ../../operation/events/events_list.php:566 +#: ../../operation/events/events_list.php:570 +#: ../../operation/events/events_rss.php:110 +#: ../../operation/events/events.build_table.php:506 +#: ../../operation/tree.php:130 ../../operation/tree.php:155 +#: ../../operation/gis_maps/render_view.php:148 +#: ../../operation/agentes/status_monitor.php:307 +#: ../../operation/agentes/status_monitor.php:324 +#: ../../operation/agentes/status_monitor.php:334 +#: ../../operation/agentes/status_monitor.php:353 +#: ../../operation/agentes/status_monitor.php:396 +#: ../../operation/agentes/status_monitor.php:398 +#: ../../operation/agentes/status_monitor.php:463 +#: ../../operation/agentes/estado_monitores.php:447 +#: ../../operation/agentes/estado_monitores.php:466 +#: ../../operation/agentes/alerts_status.functions.php:73 +#: ../../operation/agentes/alerts_status.functions.php:79 +#: ../../operation/agentes/alerts_status.functions.php:94 +#: ../../operation/agentes/alerts_status.functions.php:111 +#: ../../operation/agentes/alerts_status.functions.php:113 +#: ../../operation/agentes/estado_agente.php:194 +#: ../../extensions/agents_modules.php:134 +#: ../../extensions/files_repo/files_repo_form.php:50 +#: ../../mobile/operation/networkmaps.php:137 +#: ../../mobile/operation/networkmaps.php:227 +#: ../../mobile/operation/alerts.php:37 ../../mobile/operation/alerts.php:43 +#: ../../mobile/operation/agents.php:32 ../../mobile/operation/events.php:624 +#: ../../mobile/operation/events.php:634 +#: ../../mobile/operation/events.php:1082 +#: ../../mobile/operation/events.php:1101 +#: ../../mobile/operation/modules.php:38 +#: ../../mobile/operation/modules.php:225 +#: ../../mobile/operation/modules.php:240 +#: ../../general/subselect_data_module.php:42 +#: ../../include/functions_modules.php:2497 +#: ../../include/functions_modules.php:2498 +#: ../../include/functions_groups.php:616 +#: ../../include/functions_groups.php:2359 +#: ../../include/functions_graph.php:2872 +#: ../../include/functions_users.php:187 ../../include/functions_users.php:192 +#: ../../include/functions_users.php:886 +#: ../../include/functions_events.php:3339 +#: ../../include/functions_events.php:3852 +#: ../../include/functions_reporting.php:1657 ../../include/functions.php:906 +#: ../../include/functions.php:1129 +#: ../../godmode/alerts/alert_list.list.php:122 +#: ../../godmode/alerts/alert_list.list.php:128 +#: ../../godmode/alerts/alert_list.list.php:137 +#: ../../godmode/alerts/alert_list.list.php:142 +#: ../../godmode/alerts/alert_list.php:291 +#: ../../godmode/alerts/alert_list.php:345 +#: ../../godmode/alerts/alert_list.php:358 +#: ../../godmode/alerts/alert_templates.php:255 +#: ../../godmode/setup/gis_step_2.php:154 +#: ../../godmode/events/event_edit_filter.php:237 +#: ../../godmode/events/event_edit_filter.php:241 +#: ../../godmode/events/event_edit_filter.php:382 +#: ../../godmode/massive/massive_edit_agents.php:224 +#: ../../godmode/massive/massive_edit_agents.php:226 +#: ../../godmode/massive/massive_delete_agents.php:121 +#: ../../godmode/massive/massive_delete_agents.php:124 +#: ../../godmode/massive/massive_delete_modules.php:409 +#: ../../godmode/massive/massive_delete_modules.php:437 +#: ../../godmode/massive/massive_delete_modules.php:460 +#: ../../godmode/massive/massive_delete_modules.php:474 +#: ../../godmode/massive/massive_copy_modules.php:85 +#: ../../godmode/massive/massive_copy_modules.php:198 +#: ../../godmode/massive/massive_edit_modules.php:253 +#: ../../godmode/massive/massive_edit_modules.php:281 +#: ../../godmode/massive/massive_edit_modules.php:303 +#: ../../godmode/massive/massive_edit_modules.php:334 +#: ../../godmode/reporting/visual_console_builder.wizard.php:249 +#: ../../godmode/reporting/visual_console_builder.wizard.php:254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:904 +#: ../../godmode/reporting/reporting_builder.item_editor.php:914 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1091 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1401 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1413 +#: ../../godmode/reporting/reporting_builder.list_items.php:163 +#: ../../godmode/reporting/reporting_builder.list_items.php:165 +#: ../../godmode/reporting/reporting_builder.list_items.php:167 +#: ../../godmode/reporting/reporting_builder.list_items.php:189 +#: ../../godmode/reporting/reporting_builder.list_items.php:192 +#: ../../godmode/reporting/reporting_builder.list_items.php:195 +#: ../../godmode/admin_access_logs.php:62 +#: ../../godmode/admin_access_logs.php:64 +#: ../../godmode/modules/manage_network_components.php:515 +#: ../../godmode/modules/manage_network_templates_form.php:267 +msgid "All" +msgstr "All" + +#: ../../operation/snmpconsole/snmp_view.php:388 +#: ../../operation/events/events_list.php:468 +#: ../../operation/users/user_edit.php:238 +#: ../../include/functions_config.php:457 +#: ../../godmode/setup/setup_visuals.php:62 +#: ../../godmode/events/event_edit_filter.php:276 +#: ../../godmode/users/configure_user.php:519 +msgid "Block size for pagination" +msgstr "Block size for pagination" + +#: ../../operation/snmpconsole/snmp_view.php:395 +#: ../../operation/events/events_list.php:474 +#: ../../operation/users/user_edit.php:247 +#: ../../operation/users/user_edit.php:249 +#: ../../operation/users/user_edit.php:257 +#: ../../operation/users/user_edit.php:276 +#: ../../operation/gis_maps/gis_map.php:93 +#: ../../extensions/agents_alerts.php:313 ../../include/functions_ui.php:908 +#: ../../godmode/alerts/alert_special_days.php:275 +#: ../../godmode/alerts/alert_special_days.php:287 +#: ../../godmode/alerts/alert_view.php:43 +#: ../../godmode/alerts/alert_list.list.php:504 +#: ../../godmode/setup/gis_step_2.php:367 +#: ../../godmode/setup/gis_step_2.php:451 +#: ../../godmode/setup/setup_visuals.php:182 +#: ../../godmode/setup/setup_visuals.php:570 +#: ../../godmode/setup/setup_visuals.php:582 +#: ../../godmode/events/event_edit_filter.php:278 +#: ../../godmode/massive/massive_edit_agents.php:404 +#: ../../godmode/users/configure_user.php:451 +#: ../../godmode/agentes/module_manager_editor_common.php:394 +msgid "Default" +msgstr "Default" + +#: ../../operation/snmpconsole/snmp_view.php:399 +#: ../../operation/events/events_list.php:568 +#: ../../operation/events/events.build_table.php:211 +#: ../../mobile/operation/events.php:373 ../../mobile/operation/events.php:374 +#: ../../mobile/operation/events.php:489 ../../mobile/operation/events.php:632 +#: ../../mobile/operation/events.php:633 +#: ../../include/functions_reporting_html.php:811 +#: ../../include/functions_reporting_html.php:820 +#: ../../include/functions_reporting_html.php:1024 +#: ../../include/functions_reporting_html.php:1034 #: ../../include/functions_reporting_html.php:1642 -#: ../../include/functions_reporting_html.php:2083 -#: ../../include/functions_reporting_html.php:2118 -#: ../../include/functions_reporting_html.php:2824 -#: ../../include/functions_snmp_browser.php:435 -#: ../../mobile/operation/agents.php:81 ../../mobile/operation/agents.php:111 -#: ../../mobile/operation/agents.php:112 ../../mobile/operation/agents.php:184 -#: ../../mobile/operation/agents.php:185 ../../mobile/operation/agents.php:322 +#: ../../include/functions_events.php:44 +#: ../../include/functions_events.php:898 +#: ../../include/functions_events.php:2387 +#: ../../include/functions_events.php:3579 +#: ../../godmode/events/event_filter.php:112 +#: ../../godmode/events/custom_events.php:98 +#: ../../godmode/events/custom_events.php:162 +#: ../../godmode/events/event_edit_filter.php:239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1396 +msgid "Severity" +msgstr "Severity" + +#: ../../operation/snmpconsole/snmp_view.php:404 +#: ../../operation/snmpconsole/snmp_view.php:506 +#: ../../operation/snmpconsole/snmp_view.php:822 +#: ../../operation/events/events.build_table.php:144 +#: ../../operation/messages/message_list.php:121 +#: ../../operation/servers/recon_view.php:98 +#: ../../operation/search_modules.php:51 ../../operation/search_agents.php:64 +#: ../../operation/agentes/status_monitor.php:971 +#: ../../operation/agentes/alerts_status.php:432 +#: ../../operation/agentes/alerts_status.php:473 +#: ../../operation/agentes/alerts_status.php:507 +#: ../../operation/agentes/alerts_status.php:541 +#: ../../operation/agentes/alerts_status.functions.php:83 +#: ../../operation/agentes/estado_agente.php:193 +#: ../../operation/agentes/estado_agente.php:525 +#: ../../operation/incidents/incident_detail.php:276 +#: ../../operation/incidents/incident.php:240 +#: ../../operation/incidents/incident.php:336 +#: ../../extensions/net_tools.php:239 ../../extensions/agents_alerts.php:283 #: ../../mobile/operation/alerts.php:75 ../../mobile/operation/alerts.php:76 #: ../../mobile/operation/alerts.php:194 ../../mobile/operation/alerts.php:195 -#: ../../mobile/operation/alerts.php:274 ../../mobile/operation/events.php:342 +#: ../../mobile/operation/alerts.php:274 ../../mobile/operation/agents.php:81 +#: ../../mobile/operation/agents.php:111 ../../mobile/operation/agents.php:112 +#: ../../mobile/operation/agents.php:184 ../../mobile/operation/agents.php:185 +#: ../../mobile/operation/agents.php:322 ../../mobile/operation/events.php:342 #: ../../mobile/operation/events.php:343 ../../mobile/operation/events.php:493 #: ../../mobile/operation/events.php:613 ../../mobile/operation/events.php:614 #: ../../mobile/operation/modules.php:119 @@ -711,596 +677,2817 @@ msgstr "Last fired" #: ../../mobile/operation/modules.php:533 #: ../../mobile/operation/modules.php:623 #: ../../mobile/operation/modules.php:754 -#: ../../operation/agentes/alerts_status.functions.php:83 -#: ../../operation/agentes/alerts_status.php:432 -#: ../../operation/agentes/alerts_status.php:473 -#: ../../operation/agentes/alerts_status.php:507 -#: ../../operation/agentes/alerts_status.php:541 -#: ../../operation/agentes/estado_agente.php:193 -#: ../../operation/agentes/estado_agente.php:525 -#: ../../operation/agentes/status_monitor.php:971 -#: ../../operation/events/events.build_table.php:144 -#: ../../operation/incidents/incident.php:240 -#: ../../operation/incidents/incident.php:336 -#: ../../operation/incidents/incident_detail.php:276 -#: ../../operation/messages/message_list.php:121 -#: ../../operation/search_agents.php:64 ../../operation/search_modules.php:51 -#: ../../operation/servers/recon_view.php:98 -#: ../../operation/snmpconsole/snmp_view.php:404 -#: ../../operation/snmpconsole/snmp_view.php:597 -#: ../../operation/snmpconsole/snmp_view.php:913 -#: ../../enterprise/dashboard/widgets/tactical.php:32 -#: ../../enterprise/extensions/backup/main.php:101 -#: ../../enterprise/extensions/vmware/vmware_view.php:1002 -#: ../../enterprise/godmode/admin_access_logs.php:22 -#: ../../enterprise/godmode/agentes/collection_manager.php:108 -#: ../../enterprise/godmode/agentes/collection_manager.php:166 -#: ../../enterprise/godmode/alerts/alert_events_list.php:425 -#: ../../enterprise/godmode/policies/policies.php:253 -#: ../../enterprise/godmode/policies/policy_agents.php:379 -#: ../../enterprise/godmode/policies/policy_collections.php:124 -#: ../../enterprise/godmode/policies/policy_collections.php:195 -#: ../../enterprise/godmode/policies/policy_queue.php:348 -#: ../../enterprise/godmode/servers/list_satellite.php:36 -#: ../../enterprise/include/functions_reporting.php:1264 -#: ../../enterprise/include/functions_reporting.php:2056 -#: ../../enterprise/include/functions_reporting.php:2833 -#: ../../enterprise/include/functions_reporting.php:4428 -#: ../../enterprise/include/functions_reporting.php:4729 -#: ../../enterprise/include/functions_reporting_csv.php:1322 -#: ../../enterprise/include/functions_reporting_pdf.php:1269 -#: ../../enterprise/include/functions_reporting_pdf.php:1610 -#: ../../enterprise/include/functions_reporting_pdf.php:2042 -#: ../../enterprise/include/functions_reporting_pdf.php:2319 -#: ../../enterprise/include/functions_reporting_pdf.php:2369 -#: ../../enterprise/include/functions_services.php:1429 -#: ../../enterprise/meta/advanced/policymanager.queue.php:222 -#: ../../enterprise/meta/advanced/servers.build_table.php:60 -#: ../../enterprise/meta/agentsearch.php:98 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1552 -#: ../../enterprise/meta/include/functions_events_meta.php:70 -#: ../../enterprise/operation/agentes/collection_view.php:66 -#: ../../enterprise/operation/agentes/policy_view.php:47 -#: ../../enterprise/operation/agentes/policy_view.php:134 -#: ../../enterprise/operation/agentes/policy_view.php:198 -#: ../../enterprise/operation/agentes/policy_view.php:307 -#: ../../enterprise/operation/services/services.list.php:175 -#: ../../enterprise/operation/services/services.list.php:342 -#: ../../enterprise/operation/services/services.service.php:140 -#: ../../enterprise/operation/services/services.table_services.php:144 +#: ../../include/functions_snmp_browser.php:435 +#: ../../include/functions_pandora_networkmap.php:1386 +#: ../../include/ajax/module.php:745 +#: ../../include/functions_reporting_html.php:401 +#: ../../include/functions_reporting_html.php:806 +#: ../../include/functions_reporting_html.php:816 +#: ../../include/functions_reporting_html.php:1021 +#: ../../include/functions_reporting_html.php:1031 +#: ../../include/functions_reporting_html.php:1636 +#: ../../include/functions_reporting_html.php:2077 +#: ../../include/functions_reporting_html.php:2112 +#: ../../include/functions_reporting_html.php:2814 +#: ../../include/functions_events.php:39 +#: ../../include/functions_events.php:2415 +#: ../../include/functions_events.php:3520 +#: ../../godmode/alerts/alert_view.php:96 +#: ../../godmode/alerts/alert_list.list.php:411 +#: ../../godmode/events/custom_events.php:83 +#: ../../godmode/events/custom_events.php:157 +#: ../../godmode/massive/massive_edit_agents.php:222 +#: ../../godmode/massive/massive_edit_agents.php:362 +#: ../../godmode/massive/massive_delete_agents.php:119 +#: ../../godmode/massive/massive_delete_modules.php:450 +#: ../../godmode/massive/massive_copy_modules.php:83 +#: ../../godmode/massive/massive_copy_modules.php:196 +#: ../../godmode/servers/servers.build_table.php:65 +#: ../../godmode/agentes/agent_manager.php:340 +#: ../../godmode/agentes/agent_incidents.php:86 +#: ../../godmode/agentes/module_manager.php:564 msgid "Status" msgstr "Status" -#: ../../extensions/agents_alerts.php:313 -#: ../../godmode/agentes/module_manager_editor_common.php:394 -#: ../../godmode/alerts/alert_list.list.php:504 -#: ../../godmode/alerts/alert_special_days.php:275 -#: ../../godmode/alerts/alert_special_days.php:287 -#: ../../godmode/alerts/alert_view.php:43 -#: ../../godmode/events/event_edit_filter.php:278 -#: ../../godmode/massive/massive_edit_agents.php:404 -#: ../../godmode/setup/gis_step_2.php:367 -#: ../../godmode/setup/gis_step_2.php:451 -#: ../../godmode/setup/setup_visuals.php:182 -#: ../../godmode/setup/setup_visuals.php:596 -#: ../../godmode/setup/setup_visuals.php:608 -#: ../../godmode/users/configure_user.php:451 -#: ../../include/functions_ui.php:908 -#: ../../operation/events/events_list.php:475 -#: ../../operation/gis_maps/gis_map.php:93 -#: ../../operation/snmpconsole/snmp_view.php:395 -#: ../../operation/users/user_edit.php:247 -#: ../../operation/users/user_edit.php:249 -#: ../../operation/users/user_edit.php:257 -#: ../../operation/users/user_edit.php:276 -#: ../../enterprise/dashboard/main_dashboard.php:66 -#: ../../enterprise/godmode/policies/policy_alerts.php:304 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:199 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:88 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:117 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:78 -#: ../../enterprise/meta/advanced/metasetup.visual.php:215 -#: ../../enterprise/meta/advanced/metasetup.visual.php:251 -#: ../../enterprise/meta/advanced/metasetup.visual.php:256 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1520 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:99 -#: ../../enterprise/operation/agentes/policy_view.php:253 -msgid "Default" -msgstr "Default" +#: ../../operation/snmpconsole/snmp_view.php:407 +#: ../../operation/snmpconsole/snmp_view.php:569 +#: ../../operation/snmpconsole/snmp_view.php:827 +#: ../../include/functions_events.php:3154 +#: ../../include/functions_events.php:3159 +msgid "Not validated" +msgstr "Unvalidated" +#: ../../operation/snmpconsole/snmp_view.php:408 +#: ../../operation/snmpconsole/snmp_view.php:573 +#: ../../operation/snmpconsole/snmp_view.php:824 +#: ../../include/functions_graph.php:3022 +#: ../../include/functions_events.php:895 +#: ../../include/functions_events.php:1505 +#: ../../include/functions_events.php:1719 +#: ../../include/functions_events.php:1725 +#: ../../include/functions_events.php:1729 +#: ../../include/functions_events.php:1734 +#: ../../include/functions_events.php:3151 +#: ../../include/functions_events.php:3159 +msgid "Validated" +msgstr "Validated" + +#: ../../operation/snmpconsole/snmp_view.php:413 +#: ../../operation/events/events_list.php:408 +#: ../../mobile/operation/alerts.php:188 ../../mobile/operation/agents.php:194 +#: ../../mobile/operation/events.php:642 +#: ../../mobile/operation/modules.php:254 +#: ../../godmode/snmpconsole/snmp_alert.php:999 +#: ../../godmode/events/event_edit_filter.php:249 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1494 +msgid "Free search" +msgstr "Free search" + +#: ../../operation/snmpconsole/snmp_view.php:414 +msgid "" +"Search by any alphanumeric field in the trap.\n" +"\t\tREMEMBER trap sources need to be searched by IP Address" +msgstr "" +"Search by any alphanumeric field in the trap.\n" +"\t\tREMEMBER trap sources need to be searched by IP Address" + +#: ../../operation/snmpconsole/snmp_view.php:420 +#: ../../godmode/snmpconsole/snmp_alert.php:664 +#: ../../godmode/snmpconsole/snmp_alert.php:1003 +msgid "Trap type" +msgstr "Trap type" + +#: ../../operation/snmpconsole/snmp_view.php:421 +msgid "Search by trap type" +msgstr "Search by trap type" + +#: ../../operation/snmpconsole/snmp_view.php:423 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:723 +#: ../../operation/events/events_list.php:281 +#: ../../operation/events/events_list.php:881 +#: ../../operation/users/user_edit.php:323 +#: ../../operation/users/user_edit.php:347 +#: ../../operation/users/user_edit.php:387 +#: ../../operation/users/user_edit.php:401 +#: ../../operation/users/user_edit.php:554 +#: ../../operation/users/user_edit.php:561 +#: ../../operation/users/user_edit.php:570 +#: ../../operation/users/user_edit.php:577 +#: ../../operation/netflow/nf_live_view.php:399 +#: ../../operation/agentes/ver_agente.php:813 +#: ../../operation/agentes/ver_agente.php:856 +#: ../../operation/agentes/ver_agente.php:866 +#: ../../operation/agentes/pandora_networkmap.editor.php:204 +#: ../../mobile/operation/events.php:587 +#: ../../include/functions_pandora_networkmap.php:263 +#: ../../include/functions_pandora_networkmap.php:739 +#: ../../include/functions_pandora_networkmap.php:1450 +#: ../../include/functions_pandora_networkmap.php:1453 +#: ../../include/functions_pandora_networkmap.php:1504 +#: ../../include/functions_pandora_networkmap.php:1508 +#: ../../include/functions_pandora_networkmap.php:1560 +#: ../../include/functions_pandora_networkmap.php:1565 +#: ../../include/ajax/planned_downtime.ajax.php:85 +#: ../../include/ajax/alert_list.ajax.php:150 +#: ../../include/functions_visual_map_editor.php:268 +#: ../../include/functions_visual_map_editor.php:353 +#: ../../include/functions_visual_map_editor.php:528 +#: ../../include/functions_events.php:1698 +#: ../../include/functions_events.php:1705 +#: ../../include/functions_html.php:316 ../../include/functions_html.php:479 +#: ../../include/functions.php:909 ../../godmode/snmpconsole/snmp_alert.php:27 +#: ../../godmode/snmpconsole/snmp_alert.php:1008 +#: ../../godmode/alerts/configure_alert_action.php:131 +#: ../../godmode/alerts/alert_list.list.php:610 +#: ../../godmode/alerts/configure_alert_template.php:585 +#: ../../godmode/setup/setup_visuals.php:289 +#: ../../godmode/setup/os.builder.php:40 +#: ../../godmode/events/custom_events.php:213 +#: ../../godmode/events/custom_events.php:224 +#: ../../godmode/events/event_edit_filter.php:422 +#: ../../godmode/massive/massive_add_action_alerts.php:288 +#: ../../godmode/massive/massive_add_alerts.php:193 +#: ../../godmode/massive/massive_edit_agents.php:315 +#: ../../godmode/massive/massive_edit_plugins.php:284 +#: ../../godmode/massive/massive_delete_modules.php:490 +#: ../../godmode/massive/massive_delete_modules.php:564 +#: ../../godmode/massive/massive_delete_modules.php:609 +#: ../../godmode/massive/massive_delete_modules.php:610 +#: ../../godmode/massive/massive_delete_modules.php:611 +#: ../../godmode/massive/massive_delete_modules.php:612 +#: ../../godmode/massive/massive_delete_modules.php:679 +#: ../../godmode/massive/massive_edit_modules.php:319 +#: ../../godmode/massive/massive_edit_modules.php:536 +#: ../../godmode/massive/massive_edit_modules.php:564 +#: ../../godmode/massive/massive_edit_modules.php:625 +#: ../../godmode/massive/massive_edit_modules.php:684 +#: ../../godmode/massive/massive_edit_modules.php:769 +#: ../../godmode/massive/massive_edit_modules.php:770 +#: ../../godmode/massive/massive_edit_modules.php:771 +#: ../../godmode/massive/massive_edit_modules.php:772 +#: ../../godmode/massive/massive_edit_modules.php:967 +#: ../../godmode/massive/massive_delete_tags.php:226 +#: ../../godmode/massive/massive_delete_tags.php:253 +#: ../../godmode/massive/massive_delete_tags.php:289 +#: ../../godmode/massive/massive_add_tags.php:169 +#: ../../godmode/massive/massive_delete_alerts.php:243 +#: ../../godmode/users/configure_user.php:510 +#: ../../godmode/users/configure_user.php:682 +#: ../../godmode/users/configure_user.php:686 +#: ../../godmode/users/configure_user.php:691 +#: ../../godmode/reporting/graph_builder.graph_editor.php:135 +#: ../../godmode/reporting/graph_builder.graph_editor.php:194 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/visual_console_builder.wizard.php:199 +#: ../../godmode/reporting/visual_console_builder.wizard.php:296 +#: ../../godmode/reporting/visual_console_builder.wizard.php:304 +#: ../../godmode/reporting/visual_console_builder.wizard.php:326 +#: ../../godmode/reporting/visual_console_builder.wizard.php:335 +#: ../../godmode/reporting/visual_console_builder.wizard.php:374 +#: ../../godmode/reporting/visual_console_builder.wizard.php:571 +#: ../../godmode/reporting/visual_console_builder.wizard.php:581 +#: ../../godmode/reporting/visual_console_builder.wizard.php:613 +#: ../../godmode/reporting/visual_console_builder.elements.php:288 +#: ../../godmode/reporting/visual_console_builder.elements.php:429 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1072 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1100 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1151 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1176 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1469 +#: ../../godmode/netflow/nf_edit_form.php:226 +#: ../../godmode/gis_maps/configure_gis_map.php:414 +#: ../../godmode/servers/manage_recontask_form.php:270 +#: ../../godmode/groups/configure_group.php:197 +#: ../../godmode/modules/manage_nc_groups_form.php:72 +#: ../../godmode/modules/manage_network_components_form.php:455 +#: ../../godmode/modules/manage_network_components_form.php:461 +#: ../../godmode/modules/manage_network_components_form.php:470 +#: ../../godmode/modules/manage_network_components_form.php:476 +#: ../../godmode/modules/manage_network_components_form_common.php:191 +#: ../../godmode/modules/manage_network_components_form_plugin.php:24 +#: ../../godmode/agentes/module_manager_editor_common.php:429 +#: ../../godmode/agentes/module_manager_editor_common.php:631 +#: ../../godmode/agentes/module_manager_editor_common.php:791 +#: ../../godmode/agentes/module_manager_editor_common.php:797 +#: ../../godmode/agentes/module_manager_editor_common.php:806 +#: ../../godmode/agentes/module_manager_editor_common.php:812 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:331 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:409 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:246 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:286 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:416 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:432 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:448 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:464 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:479 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:485 +#: ../../godmode/agentes/agent_manager.php:302 +#: ../../godmode/agentes/agent_manager.php:401 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:692 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:771 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:933 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:949 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:965 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:981 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:997 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1012 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1018 +#: ../../godmode/agentes/module_manager_editor_plugin.php:52 +msgid "None" +msgstr "None" + +#: ../../operation/snmpconsole/snmp_view.php:424 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:726 +#: ../../godmode/snmpconsole/snmp_alert.php:28 +msgid "Cold start (0)" +msgstr "Cold start (0)" + +#: ../../operation/snmpconsole/snmp_view.php:425 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:729 +#: ../../godmode/snmpconsole/snmp_alert.php:29 +msgid "Warm start (1)" +msgstr "Warm start (1)" + +#: ../../operation/snmpconsole/snmp_view.php:426 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:732 +#: ../../godmode/snmpconsole/snmp_alert.php:30 +msgid "Link down (2)" +msgstr "Link down (2)" + +#: ../../operation/snmpconsole/snmp_view.php:427 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:735 +#: ../../godmode/snmpconsole/snmp_alert.php:31 +msgid "Link up (3)" +msgstr "Link up (3)" + +#: ../../operation/snmpconsole/snmp_view.php:428 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:738 +#: ../../godmode/snmpconsole/snmp_alert.php:32 +msgid "Authentication failure (4)" +msgstr "Authentication failure (4)" + +#: ../../operation/snmpconsole/snmp_view.php:435 +msgid "Group by Enterprise String/IP" +msgstr "Group by Enterprise String/IP" + +#: ../../operation/snmpconsole/snmp_view.php:436 +#: ../../operation/users/user_edit.php:249 +#: ../../operation/netflow/nf_live_view.php:276 +#: ../../general/login_identification_wizard.php:188 +#: ../../godmode/alerts/alert_view.php:107 +#: ../../godmode/alerts/alert_view.php:301 +#: ../../godmode/setup/performance.php:118 +#: ../../godmode/setup/performance.php:125 +#: ../../godmode/setup/performance.php:132 +#: ../../godmode/setup/setup_ehorus.php:55 +#: ../../godmode/setup/setup_general.php:71 +#: ../../godmode/setup/setup_general.php:75 +#: ../../godmode/setup/setup_general.php:79 +#: ../../godmode/setup/setup_general.php:103 +#: ../../godmode/setup/setup_general.php:112 +#: ../../godmode/setup/setup_general.php:167 +#: ../../godmode/setup/setup_general.php:175 +#: ../../godmode/setup/setup_general.php:184 +#: ../../godmode/setup/setup_general.php:205 +#: ../../godmode/setup/setup_general.php:214 +#: ../../godmode/setup/setup_netflow.php:63 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../godmode/setup/setup_visuals.php:86 +#: ../../godmode/setup/setup_visuals.php:106 +#: ../../godmode/setup/setup_visuals.php:128 +#: ../../godmode/setup/setup_visuals.php:225 +#: ../../godmode/setup/setup_visuals.php:239 +#: ../../godmode/setup/setup_visuals.php:247 +#: ../../godmode/setup/setup_visuals.php:276 +#: ../../godmode/setup/setup_visuals.php:369 +#: ../../godmode/setup/setup_visuals.php:455 +#: ../../godmode/setup/setup_visuals.php:461 +#: ../../godmode/setup/setup_visuals.php:471 +#: ../../godmode/setup/setup_visuals.php:500 +#: ../../godmode/setup/setup_visuals.php:615 +#: ../../godmode/setup/setup_visuals.php:642 +#: ../../godmode/setup/setup_auth.php:51 ../../godmode/setup/setup_auth.php:58 +#: ../../godmode/setup/setup_auth.php:94 +#: ../../godmode/setup/setup_auth.php:130 +#: ../../godmode/massive/massive_edit_agents.php:293 +#: ../../godmode/massive/massive_edit_agents.php:412 +#: ../../godmode/massive/massive_edit_agents.php:419 +#: ../../godmode/massive/massive_edit_modules.php:407 +#: ../../godmode/massive/massive_edit_modules.php:452 +#: ../../godmode/massive/massive_edit_modules.php:471 +#: ../../godmode/massive/massive_edit_modules.php:558 +#: ../../godmode/massive/massive_edit_modules.php:585 +#: ../../godmode/massive/massive_edit_modules.php:604 +#: ../../godmode/users/configure_user.php:516 +#: ../../godmode/reporting/reporting_builder.main.php:111 +#: ../../godmode/reporting/visual_console_builder.wizard.php:269 +#: ../../godmode/reporting/visual_console_builder.wizard.php:312 +#: ../../godmode/reporting/reporting_builder.php:637 +#: ../../godmode/servers/manage_recontask_form.php:310 +#: ../../godmode/servers/manage_recontask.php:335 +#: ../../godmode/update_manager/update_manager.setup.php:124 +#: ../../godmode/agentes/agent_conf_gis.php:79 +#: ../../godmode/agentes/agent_manager.php:411 +msgid "Yes" +msgstr "Yes" + +#: ../../operation/snmpconsole/snmp_view.php:439 +#: ../../operation/users/user_edit.php:249 +#: ../../operation/netflow/nf_live_view.php:280 +#: ../../mobile/operation/events.php:186 ../../mobile/operation/events.php:193 +#: ../../general/login_identification_wizard.php:185 +#: ../../include/functions_events.php:2375 +#: ../../include/functions_events.php:2382 +#: ../../godmode/alerts/alert_view.php:107 +#: ../../godmode/alerts/alert_view.php:303 +#: ../../godmode/alerts/alert_view.php:385 +#: ../../godmode/setup/performance.php:119 +#: ../../godmode/setup/performance.php:126 +#: ../../godmode/setup/performance.php:133 ../../godmode/setup/news.php:264 +#: ../../godmode/setup/setup_ehorus.php:56 +#: ../../godmode/setup/setup_general.php:72 +#: ../../godmode/setup/setup_general.php:76 +#: ../../godmode/setup/setup_general.php:80 +#: ../../godmode/setup/setup_general.php:104 +#: ../../godmode/setup/setup_general.php:113 +#: ../../godmode/setup/setup_general.php:170 +#: ../../godmode/setup/setup_general.php:178 +#: ../../godmode/setup/setup_general.php:185 +#: ../../godmode/setup/setup_general.php:206 +#: ../../godmode/setup/setup_general.php:215 +#: ../../godmode/setup/setup_netflow.php:64 +#: ../../godmode/setup/setup_netflow.php:72 +#: ../../godmode/setup/setup_visuals.php:90 +#: ../../godmode/setup/setup_visuals.php:110 +#: ../../godmode/setup/setup_visuals.php:132 +#: ../../godmode/setup/setup_visuals.php:233 +#: ../../godmode/setup/setup_visuals.php:242 +#: ../../godmode/setup/setup_visuals.php:250 +#: ../../godmode/setup/setup_visuals.php:278 +#: ../../godmode/setup/setup_visuals.php:371 +#: ../../godmode/setup/setup_visuals.php:456 +#: ../../godmode/setup/setup_visuals.php:463 +#: ../../godmode/setup/setup_visuals.php:475 +#: ../../godmode/setup/setup_visuals.php:502 +#: ../../godmode/setup/setup_visuals.php:619 +#: ../../godmode/setup/setup_visuals.php:646 +#: ../../godmode/setup/setup_auth.php:52 ../../godmode/setup/setup_auth.php:59 +#: ../../godmode/setup/setup_auth.php:95 +#: ../../godmode/setup/setup_auth.php:133 +#: ../../godmode/massive/massive_edit_agents.php:293 +#: ../../godmode/massive/massive_edit_agents.php:413 +#: ../../godmode/massive/massive_edit_agents.php:419 +#: ../../godmode/massive/massive_edit_modules.php:408 +#: ../../godmode/massive/massive_edit_modules.php:453 +#: ../../godmode/massive/massive_edit_modules.php:472 +#: ../../godmode/massive/massive_edit_modules.php:558 +#: ../../godmode/massive/massive_edit_modules.php:586 +#: ../../godmode/massive/massive_edit_modules.php:604 +#: ../../godmode/users/configure_user.php:516 +#: ../../godmode/reporting/reporting_builder.main.php:115 +#: ../../godmode/reporting/visual_console_builder.wizard.php:274 +#: ../../godmode/reporting/visual_console_builder.wizard.php:315 +#: ../../godmode/reporting/reporting_builder.php:639 +#: ../../godmode/servers/manage_recontask_form.php:310 +#: ../../godmode/servers/manage_recontask.php:335 +#: ../../godmode/update_manager/update_manager.setup.php:125 +#: ../../godmode/agentes/agent_conf_gis.php:80 +#: ../../godmode/agentes/agent_manager.php:414 +msgid "No" +msgstr "No" + +#: ../../operation/snmpconsole/snmp_view.php:450 +#: ../../operation/events/events_list.php:627 +#: ../../operation/users/user_edit.php:472 +#: ../../operation/reporting/reporting_viewer.php:201 +#: ../../operation/agentes/datos_agente.php:209 +#: ../../extensions/net_tools.php:338 +#: ../../extensions/files_repo/files_repo_form.php:88 +#: ../../include/functions_pandora_networkmap.php:1465 +#: ../../include/ajax/alert_list.ajax.php:172 +#: ../../include/functions_visual_map_editor.php:462 +#: ../../include/functions_events.php:1706 +#: ../../include/functions_events.php:1744 +#: ../../godmode/snmpconsole/snmp_alert.php:977 +#: ../../godmode/snmpconsole/snmp_alert.php:1232 +#: ../../godmode/snmpconsole/snmp_filters.php:105 +#: ../../godmode/snmpconsole/snmp_filters.php:142 +#: ../../godmode/alerts/configure_alert_special_days.php:102 +#: ../../godmode/alerts/configure_alert_command.php:198 +#: ../../godmode/alerts/configure_alert_action.php:216 +#: ../../godmode/alerts/configure_alert_action.php:222 +#: ../../godmode/alerts/alert_list.list.php:147 +#: ../../godmode/alerts/alert_list.list.php:155 +#: ../../godmode/setup/performance.php:154 ../../godmode/setup/news.php:207 +#: ../../godmode/setup/snmp_wizard.php:106 ../../godmode/setup/os.php:57 +#: ../../godmode/setup/os.php:110 ../../godmode/setup/setup_ehorus.php:57 +#: ../../godmode/setup/setup_ehorus.php:158 ../../godmode/setup/links.php:120 +#: ../../godmode/setup/setup_general.php:232 +#: ../../godmode/setup/setup_netflow.php:81 +#: ../../godmode/setup/setup_visuals.php:740 +#: ../../godmode/setup/setup_auth.php:202 +#: ../../godmode/events/custom_events.php:201 +#: ../../godmode/events/event_edit_filter.php:401 +#: ../../godmode/events/event_responses.editor.php:145 +#: ../../godmode/massive/massive_edit_agents.php:473 +#: ../../godmode/massive/massive_edit_plugins.php:321 +#: ../../godmode/massive/massive_edit_modules.php:619 +#: ../../godmode/users/configure_profile.php:381 +#: ../../godmode/users/configure_user.php:594 +#: ../../godmode/reporting/reporting_builder.main.php:38 +#: ../../godmode/reporting/visual_console_builder.elements.php:516 +#: ../../godmode/reporting/visual_console_builder.data.php:185 +#: ../../godmode/reporting/graph_builder.main.php:183 +#: ../../godmode/netflow/nf_edit_form.php:240 +#: ../../godmode/servers/manage_recontask_form.php:391 +#: ../../godmode/servers/recon_script.php:223 +#: ../../godmode/servers/modificar_server.php:53 +#: ../../godmode/servers/plugin.php:173 ../../godmode/servers/plugin.php:546 +#: ../../godmode/update_manager/update_manager.setup.php:132 +#: ../../godmode/category/edit_category.php:169 +#: ../../godmode/groups/configure_modu_group.php:83 +#: ../../godmode/groups/configure_group.php:221 +#: ../../godmode/modules/manage_nc_groups_form.php:80 +#: ../../godmode/modules/manage_network_components_form.php:274 +#: ../../godmode/modules/manage_network_templates_form.php:154 +#: ../../godmode/agentes/module_manager_editor.php:525 +#: ../../godmode/agentes/agent_conf_gis.php:88 +#: ../../godmode/agentes/configure_field.php:61 +#: ../../godmode/agentes/planned_downtime.editor.php:624 +#: ../../godmode/agentes/agent_manager.php:489 +#: ../../godmode/agentes/planned_downtime.list.php:466 +#: ../../godmode/agentes/planned_downtime.list.php:475 +#: ../../godmode/agentes/agent_template.php:253 +#: ../../godmode/tag/edit_tag.php:224 +msgid "Update" +msgstr "Update" + +#: ../../operation/snmpconsole/snmp_view.php:454 +#: ../../operation/agentes/alerts_status.php:396 +#: ../../operation/agentes/graphs.php:163 +#: ../../godmode/snmpconsole/snmp_alert.php:1019 +#: ../../godmode/alerts/alert_list.list.php:163 +#: ../../godmode/users/user_list.php:249 +msgid "Toggle filter(s)" +msgstr "Toggle filter(s)" + +#: ../../operation/snmpconsole/snmp_view.php:510 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:78 +#: ../../godmode/snmpconsole/snmp_alert.php:652 +#: ../../godmode/snmpconsole/snmp_alert.php:1153 +msgid "SNMP Agent" +msgstr "SNMP Agent" + +#: ../../operation/snmpconsole/snmp_view.php:514 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:72 +#: ../../godmode/snmpconsole/snmp_alert.php:637 +#: ../../godmode/snmpconsole/snmp_alert.php:1157 +msgid "Enterprise String" +msgstr "Enterprise String" + +#: ../../operation/snmpconsole/snmp_view.php:519 +#: ../../include/functions_reporting_html.php:807 +#: ../../include/functions_reporting_html.php:1025 +#: ../../include/functions_reporting_html.php:1638 +msgid "Count" +msgstr "Count" + +#: ../../operation/snmpconsole/snmp_view.php:524 +msgid "Trap subtype" +msgstr "Trap subtype" + +#: ../../operation/snmpconsole/snmp_view.php:528 +#: ../../operation/users/user_edit.php:184 ../../operation/search_users.php:38 +#: ../../include/functions_reporting_html.php:2816 +#: ../../godmode/users/configure_user.php:441 +#: ../../godmode/users/user_list.php:266 +msgid "User ID" +msgstr "User ID" + +#: ../../operation/snmpconsole/snmp_view.php:532 +#: ../../operation/events/events.build_table.php:167 +#: ../../operation/events/events.php:87 +#: ../../operation/messages/message_list.php:127 +#: ../../operation/search_modules.php:54 +#: ../../operation/agentes/status_monitor.php:990 +#: ../../operation/agentes/exportdata.php:99 +#: ../../operation/agentes/exportdata.excel.php:76 +#: ../../operation/agentes/exportdata.csv.php:77 +#: ../../operation/agentes/estado_generalagente.php:402 +#: ../../mobile/operation/events.php:473 +#: ../../mobile/operation/modules.php:548 +#: ../../mobile/operation/modules.php:756 ../../include/ajax/events.php:466 +#: ../../include/functions_reporting_html.php:813 +#: ../../include/functions_reporting_html.php:822 +#: ../../include/functions_reporting_html.php:1026 +#: ../../include/functions_reporting_html.php:1035 +#: ../../include/functions_reporting_html.php:1644 +#: ../../include/functions_reporting_html.php:2817 +#: ../../include/functions_events.php:40 +#: ../../include/functions_events.php:912 +#: ../../include/functions_events.php:2343 +#: ../../include/functions_events.php:3542 +#: ../../include/functions_netflow.php:287 ../../godmode/setup/news.php:223 +#: ../../godmode/events/custom_events.php:86 +#: ../../godmode/events/custom_events.php:158 +msgid "Timestamp" +msgstr "Timestamp" + +#: ../../operation/snmpconsole/snmp_view.php:600 +#: ../../operation/snmpconsole/snmp_view.php:619 +#: ../../operation/agentes/estado_generalagente.php:151 +#: ../../operation/agentes/estado_generalagente.php:163 +#: ../../operation/agentes/estado_generalagente.php:176 +#: ../../operation/agentes/estado_generalagente.php:280 +#: ../../operation/agentes/estado_generalagente.php:359 +#: ../../mobile/operation/events.php:148 ../../mobile/operation/events.php:159 +#: ../../mobile/operation/events.php:167 ../../mobile/operation/events.php:240 +#: ../../mobile/operation/events.php:267 ../../mobile/operation/events.php:275 +#: ../../mobile/operation/agent.php:153 ../../mobile/operation/agent.php:167 +#: ../../include/functions_db.php:156 ../../include/functions_ui.php:2007 +#: ../../include/functions_ui.php:2017 +#: ../../include/functions_treeview.php:158 +#: ../../include/functions_treeview.php:392 +#: ../../include/functions_reporting_html.php:488 +#: ../../include/functions_reporting_html.php:567 +#: ../../include/functions_reporting_html.php:3163 +#: ../../include/functions_reporting_html.php:3201 +#: ../../include/functions_events.php:1778 +#: ../../include/functions_events.php:1946 +#: ../../include/functions_events.php:2013 +#: ../../include/functions_events.php:2029 +#: ../../include/functions_events.php:2039 +#: ../../include/functions_events.php:2044 +#: ../../include/functions_events.php:2062 +#: ../../include/functions_events.php:2141 +#: ../../include/functions_events.php:2195 +#: ../../include/functions_events.php:2207 +#: ../../include/functions_events.php:2219 +#: ../../include/functions_events.php:2241 +#: ../../include/functions_events.php:2256 +#: ../../include/functions_events.php:2266 +#: ../../include/functions_events.php:2355 +#: ../../include/functions_events.php:2432 +#: ../../include/functions_events.php:2454 +#: ../../include/functions_events.php:2464 ../../include/functions.php:946 +#: ../../include/functions.php:952 ../../include/functions.php:955 +#: ../../godmode/alerts/alert_view.php:113 ../../godmode/extensions.php:193 +#: ../../godmode/extensions.php:209 +#: ../../godmode/modules/manage_network_components.php:583 +#: ../../godmode/agentes/planned_downtime.list.php:477 +msgid "N/A" +msgstr "N/A" + +#: ../../operation/snmpconsole/snmp_view.php:644 +#: ../../operation/events/sound_events.php:83 +#: ../../operation/agentes/group_view.php:174 #: ../../extensions/agents_alerts.php:324 -#: ../../godmode/alerts/alert_list.list.php:642 -#: ../../godmode/alerts/alert_view.php:85 ../../include/functions.php:1035 -#: ../../include/functions_agents.php:2179 -#: ../../include/functions_agents.php:2191 +#: ../../mobile/operation/alerts.php:253 +#: ../../include/functions_agents.php:2161 +#: ../../include/functions_agents.php:2173 ../../include/functions_ui.php:921 #: ../../include/functions_events.php:1158 #: ../../include/functions_events.php:1404 -#: ../../include/functions_reporting.php:7998 -#: ../../include/functions_ui.php:921 ../../mobile/operation/alerts.php:253 -#: ../../operation/agentes/group_view.php:174 -#: ../../operation/events/sound_events.php:83 -#: ../../operation/snmpconsole/snmp_view.php:735 -#: ../../enterprise/godmode/alerts/alert_events_list.php:617 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:637 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:872 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1540 -#: ../../enterprise/meta/monitoring/group_view.php:155 -#: ../../enterprise/operation/agentes/policy_view.php:265 +#: ../../include/functions_reporting.php:7966 ../../include/functions.php:1035 +#: ../../godmode/alerts/alert_view.php:85 +#: ../../godmode/alerts/alert_list.list.php:642 msgid "Alert fired" msgstr "Alert fired" -#: ../../extensions/agents_alerts.php:324 -#: ../../godmode/alerts/alert_list.list.php:642 -#: ../../godmode/alerts/alert_view.php:85 ../../include/functions_ui.php:921 -#: ../../mobile/operation/alerts.php:253 -#: ../../enterprise/godmode/alerts/alert_events_list.php:618 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:872 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1540 -#: ../../enterprise/operation/agentes/policy_view.php:265 -msgid "times" -msgstr "amount of times alert was fired" - -#: ../../extensions/agents_alerts.php:328 -#: ../../godmode/alerts/alert_list.list.php:646 -#: ../../godmode/alerts/alert_view.php:89 -#: ../../include/functions_reporting.php:8004 -#: ../../include/functions_ui.php:925 ../../mobile/operation/alerts.php:257 -#: ../../enterprise/godmode/alerts/alert_events_list.php:622 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:876 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1544 -#: ../../enterprise/operation/agentes/policy_view.php:269 -msgid "Alert disabled" -msgstr "Alert disabled" - +#: ../../operation/snmpconsole/snmp_view.php:647 #: ../../extensions/agents_alerts.php:332 -#: ../../godmode/alerts/alert_list.list.php:650 +#: ../../mobile/operation/alerts.php:261 +#: ../../include/functions_agents.php:2164 +#: ../../include/functions_agents.php:2176 ../../include/functions_ui.php:929 +#: ../../include/functions_reporting.php:7911 #: ../../godmode/alerts/alert_view.php:93 -#: ../../include/functions_agents.php:2182 -#: ../../include/functions_agents.php:2194 -#: ../../include/functions_reporting.php:7943 -#: ../../include/functions_ui.php:929 ../../mobile/operation/alerts.php:261 -#: ../../operation/snmpconsole/snmp_view.php:738 -#: ../../enterprise/godmode/alerts/alert_events_list.php:626 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:639 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:880 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1548 -#: ../../enterprise/operation/agentes/policy_view.php:273 +#: ../../godmode/alerts/alert_list.list.php:650 msgid "Alert not fired" msgstr "Alert not fired" -#: ../../extensions/agents_alerts.php:345 ../../extensions/insert_data.php:158 -#: ../../extensions/module_groups.php:41 -#: ../../godmode/agentes/module_manager_editor_common.php:689 -#: ../../godmode/agentes/module_manager_editor_common.php:717 -#: ../../godmode/agentes/module_manager_editor_prediction.php:110 -#: ../../godmode/agentes/planned_downtime.list.php:171 -#: ../../godmode/alerts/alert_list.builder.php:59 -#: ../../godmode/alerts/alert_list.list.php:379 -#: ../../godmode/alerts/alert_list.list.php:590 -#: ../../godmode/alerts/alert_view.php:66 -#: ../../godmode/gis_maps/configure_gis_map.php:420 -#: ../../godmode/massive/massive_copy_modules.php:86 -#: ../../godmode/massive/massive_copy_modules.php:200 -#: ../../godmode/massive/massive_enable_disable_alerts.php:154 -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -#: ../../godmode/massive/massive_standby_alerts.php:154 -#: ../../godmode/massive/massive_standby_alerts.php:171 -#: ../../godmode/reporting/graph_builder.graph_editor.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:920 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1744 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1751 -#: ../../godmode/reporting/reporting_builder.list_items.php:294 -#: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.wizard.php:303 -#: ../../godmode/reporting/visual_console_builder.wizard.php:577 -#: ../../godmode/reporting/visual_console_builder.wizard.php:600 -#: ../../godmode/servers/plugin.php:66 -#: ../../include/ajax/alert_list.ajax.php:130 -#: ../../include/functions_visual_map_editor.php:277 -#: ../../include/functions_graph.php:5335 -#: ../../include/functions_pandora_networkmap.php:1383 -#: ../../include/functions_pandora_networkmap.php:1553 -#: ../../include/functions_reporting_html.php:396 -#: ../../include/functions_reporting_html.php:730 -#: ../../include/functions_reporting_html.php:810 -#: ../../include/functions_reporting_html.php:819 -#: ../../include/functions_reporting_html.php:1485 -#: ../../include/functions_reporting_html.php:1889 -#: ../../include/functions_reporting_html.php:1896 -#: ../../include/functions_reporting_html.php:1955 -#: ../../include/functions_reporting_html.php:2251 -#: ../../include/functions_reporting_html.php:2294 -#: ../../include/functions_reporting_html.php:2589 -#: ../../include/functions_reporting_html.php:2637 -#: ../../include/functions_reporting_html.php:2880 -#: ../../include/functions_reporting_html.php:3034 -#: ../../include/functions_reporting_html.php:3245 -#: ../../mobile/operation/agents.php:69 ../../mobile/operation/agents.php:310 -#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:510 -#: ../../mobile/operation/home.php:72 ../../mobile/operation/modules.php:496 -#: ../../operation/agentes/alerts_status.php:427 -#: ../../operation/agentes/alerts_status.php:502 -#: ../../operation/agentes/estado_agente.php:490 -#: ../../operation/agentes/estado_monitores.php:95 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/exportdata.php:96 -#: ../../operation/agentes/status_monitor.php:948 -#: ../../operation/agentes/ver_agente.php:818 -#: ../../operation/events/events.build_table.php:36 -#: ../../operation/events/sound_events.php:80 -#: ../../operation/gis_maps/ajax.php:216 ../../operation/gis_maps/ajax.php:247 -#: ../../operation/incidents/incident_detail.php:349 -#: ../../operation/search_agents.php:44 ../../operation/search_agents.php:50 -#: ../../operation/search_alerts.php:39 ../../operation/search_modules.php:42 -#: ../../enterprise/dashboard/widgets/agent_module.php:80 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:43 -#: ../../enterprise/dashboard/widgets/module_icon.php:52 -#: ../../enterprise/dashboard/widgets/module_status.php:52 -#: ../../enterprise/dashboard/widgets/module_table_value.php:49 -#: ../../enterprise/dashboard/widgets/module_value.php:52 -#: ../../enterprise/dashboard/widgets/single_graph.php:50 -#: ../../enterprise/dashboard/widgets/sla_percent.php:40 -#: ../../enterprise/dashboard/widgets/top_n.php:126 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:172 -#: ../../enterprise/extensions/ipam/ipam_network.php:537 -#: ../../enterprise/godmode/agentes/collections.agents.php:102 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:77 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:213 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:84 -#: ../../enterprise/godmode/policies/policy_linking.php:120 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1464 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1947 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2097 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2104 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:231 -#: ../../enterprise/godmode/services/services.elements.php:335 -#: ../../enterprise/godmode/services/services.elements.php:344 -#: ../../enterprise/include/functions_alert_event.php:923 -#: ../../enterprise/include/functions_events.php:111 -#: ../../enterprise/include/functions_inventory.php:234 -#: ../../enterprise/include/functions_inventory.php:506 -#: ../../enterprise/include/functions_inventory.php:562 -#: ../../enterprise/include/functions_log.php:346 -#: ../../enterprise/include/functions_reporting.php:1263 -#: ../../enterprise/include/functions_reporting.php:1471 -#: ../../enterprise/include/functions_reporting.php:1594 -#: ../../enterprise/include/functions_reporting.php:1597 -#: ../../enterprise/include/functions_reporting.php:2055 -#: ../../enterprise/include/functions_reporting.php:2832 -#: ../../enterprise/include/functions_reporting_csv.php:323 -#: ../../enterprise/include/functions_reporting_csv.php:346 -#: ../../enterprise/include/functions_reporting_csv.php:404 -#: ../../enterprise/include/functions_reporting_csv.php:430 -#: ../../enterprise/include/functions_reporting_csv.php:496 -#: ../../enterprise/include/functions_reporting_csv.php:523 -#: ../../enterprise/include/functions_reporting_csv.php:558 -#: ../../enterprise/include/functions_reporting_csv.php:594 -#: ../../enterprise/include/functions_reporting_csv.php:631 -#: ../../enterprise/include/functions_reporting_csv.php:699 -#: ../../enterprise/include/functions_reporting_csv.php:735 -#: ../../enterprise/include/functions_reporting_csv.php:771 -#: ../../enterprise/include/functions_reporting_csv.php:807 -#: ../../enterprise/include/functions_reporting_csv.php:843 -#: ../../enterprise/include/functions_reporting_csv.php:879 -#: ../../enterprise/include/functions_reporting_csv.php:927 -#: ../../enterprise/include/functions_reporting_csv.php:974 -#: ../../enterprise/include/functions_reporting_csv.php:1046 -#: ../../enterprise/include/functions_reporting_csv.php:1162 -#: ../../enterprise/include/functions_reporting_csv.php:1304 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -#: ../../enterprise/include/functions_reporting_pdf.php:366 -#: ../../enterprise/include/functions_reporting_pdf.php:375 -#: ../../enterprise/include/functions_reporting_pdf.php:774 -#: ../../enterprise/include/functions_reporting_pdf.php:832 -#: ../../enterprise/include/functions_reporting_pdf.php:860 -#: ../../enterprise/include/functions_reporting_pdf.php:926 -#: ../../enterprise/include/functions_reporting_pdf.php:1264 -#: ../../enterprise/include/functions_reporting_pdf.php:1609 -#: ../../enterprise/include/functions_reporting_pdf.php:1842 -#: ../../enterprise/include/functions_reporting_pdf.php:1860 -#: ../../enterprise/include/functions_services.php:1442 -#: ../../enterprise/meta/agentsearch.php:93 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3248 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:245 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:333 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:404 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:512 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:593 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:119 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:270 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:359 -#: ../../enterprise/operation/inventory/inventory.php:206 -#: ../../enterprise/operation/log/log_viewer.php:193 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:186 -msgid "Agent" -msgstr "Agent" +#: ../../operation/snmpconsole/snmp_view.php:654 +#: ../../operation/snmpconsole/snmp_view.php:811 +#: ../../operation/snmpconsole/snmp_view.php:839 +#: ../../operation/agentes/alerts_status.php:436 +#: ../../operation/agentes/alerts_status.php:477 +#: ../../operation/agentes/alerts_status.php:511 +#: ../../operation/agentes/alerts_status.php:545 +#: ../../operation/agentes/alerts_status.php:590 +#: ../../mobile/operation/events.php:528 ../../godmode/setup/license.php:98 +msgid "Validate" +msgstr "Validate" -#: ../../extensions/agents_alerts.php:345 -#: ../../godmode/alerts/alert_list.builder.php:113 -#: ../../godmode/alerts/alert_list.list.php:407 -#: ../../godmode/alerts/alert_view.php:75 -#: ../../include/functions_reporting_html.php:1957 -#: ../../include/functions_reporting_html.php:1960 -#: ../../include/functions_treeview.php:381 -#: ../../include/functions_treeview.php:422 -#: ../../mobile/operation/alerts.php:270 -#: ../../operation/agentes/alerts_status.php:429 -#: ../../operation/agentes/alerts_status.php:470 -#: ../../operation/agentes/alerts_status.php:504 -#: ../../operation/agentes/alerts_status.php:538 -#: ../../operation/search_alerts.php:45 -#: ../../operation/servers/recon_view.php:101 -#: ../../enterprise/extensions/cron/main.php:246 -#: ../../enterprise/godmode/policies/policy_alerts.php:239 -#: ../../enterprise/godmode/policies/policy_alerts.php:438 -#: ../../enterprise/operation/agentes/policy_view.php:195 -msgid "Template" -msgstr "Template" +#: ../../operation/snmpconsole/snmp_view.php:659 +#: ../../operation/snmpconsole/snmp_view.php:665 +#: ../../operation/snmpconsole/snmp_view.php:816 +#: ../../operation/events/events.build_table.php:774 +#: ../../operation/events/events.php:777 +#: ../../operation/users/user_edit.php:799 +#: ../../operation/messages/message_list.php:193 +#: ../../operation/messages/message_list.php:199 +#: ../../operation/agentes/pandora_networkmap.php:492 +#: ../../operation/incidents/incident_detail.php:425 +#: ../../operation/incidents/incident_detail.php:472 +#: ../../extensions/files_repo/files_repo_list.php:105 +#: ../../include/functions_filemanager.php:740 +#: ../../include/functions_groups.php:2173 +#: ../../include/functions_events.php:1761 +#: ../../godmode/snmpconsole/snmp_alert.php:1200 +#: ../../godmode/snmpconsole/snmp_alert.php:1236 +#: ../../godmode/snmpconsole/snmp_alert.php:1455 +#: ../../godmode/snmpconsole/snmp_filters.php:143 +#: ../../godmode/alerts/alert_special_days.php:451 +#: ../../godmode/alerts/alert_actions.php:385 +#: ../../godmode/alerts/alert_actions.php:388 +#: ../../godmode/alerts/alert_commands.php:361 +#: ../../godmode/alerts/alert_list.list.php:825 +#: ../../godmode/alerts/alert_templates.php:341 +#: ../../godmode/setup/news.php:267 ../../godmode/setup/links.php:150 +#: ../../godmode/events/event_filter.php:146 +#: ../../godmode/massive/massive_add_action_alerts.php:203 +#: ../../godmode/massive/massive_add_alerts.php:183 +#: ../../godmode/massive/massive_delete_action_alerts.php:202 +#: ../../godmode/massive/massive_enable_disable_alerts.php:167 +#: ../../godmode/massive/massive_operations.php:247 +#: ../../godmode/massive/massive_operations.php:256 +#: ../../godmode/massive/massive_edit_plugins.php:533 +#: ../../godmode/massive/massive_delete_agents.php:138 +#: ../../godmode/massive/massive_standby_alerts.php:167 +#: ../../godmode/massive/massive_delete_modules.php:511 +#: ../../godmode/massive/massive_delete_profiles.php:129 +#: ../../godmode/massive/massive_delete_tags.php:215 +#: ../../godmode/massive/massive_add_tags.php:158 +#: ../../godmode/massive/massive_add_profiles.php:115 +#: ../../godmode/users/configure_user.php:667 +#: ../../godmode/users/profile_list.php:390 +#: ../../godmode/users/user_list.php:470 ../../godmode/users/user_list.php:472 +#: ../../godmode/reporting/visual_console_builder.elements.php:318 +#: ../../godmode/reporting/reporting_builder.php:703 +#: ../../godmode/reporting/graphs.php:190 +#: ../../godmode/netflow/nf_item_list.php:237 +#: ../../godmode/netflow/nf_edit.php:143 ../../godmode/db/db_audit.php:107 +#: ../../godmode/db/db_event.php:92 ../../godmode/db/db_refine.php:119 +#: ../../godmode/servers/plugin.php:782 +#: ../../godmode/category/category.php:126 +#: ../../godmode/category/category.php:131 +#: ../../godmode/groups/modu_group_list.php:198 +#: ../../godmode/groups/modu_group_list.php:200 +#: ../../godmode/modules/manage_nc_groups.php:220 +#: ../../godmode/modules/manage_network_components.php:616 +#: ../../godmode/modules/manage_network_templates.php:209 +#: ../../godmode/modules/manage_network_templates.php:214 +#: ../../godmode/agentes/module_manager_editor_common.php:159 +#: ../../godmode/agentes/planned_downtime.editor.php:848 +#: ../../godmode/agentes/agent_manager.php:203 +#: ../../godmode/agentes/modificar_agente.php:635 +#: ../../godmode/agentes/fields_manager.php:127 +#: ../../godmode/agentes/module_manager.php:759 +#: ../../godmode/agentes/module_manager.php:767 +#: ../../godmode/agentes/module_manager.php:782 +#: ../../godmode/agentes/module_manager.php:797 +#: ../../godmode/agentes/module_manager.php:808 +#: ../../godmode/agentes/agent_template.php:251 ../../godmode/tag/tag.php:273 +msgid "Are you sure?" +msgstr "Are you sure?" -#: ../../extensions/agents_alerts.php:348 -msgid "Agents/Alerts view" -msgstr "Agent/Alert view" +#: ../../operation/snmpconsole/snmp_view.php:659 +#: ../../operation/snmpconsole/snmp_view.php:665 +#: ../../operation/snmpconsole/snmp_view.php:816 +#: ../../operation/snmpconsole/snmp_view.php:841 +#: ../../operation/gis_maps/gis_map.php:165 +#: ../../operation/messages/message_edit.php:109 +#: ../../operation/messages/message_list.php:128 +#: ../../operation/messages/message_list.php:194 +#: ../../operation/messages/message_list.php:200 +#: ../../operation/messages/message_list.php:218 +#: ../../operation/agentes/pandora_networkmap.php:404 +#: ../../operation/agentes/pandora_networkmap.php:492 +#: ../../operation/incidents/incident_detail.php:456 +#: ../../extensions/files_repo/files_repo_list.php:106 +#: ../../include/functions_pandora_networkmap.php:748 +#: ../../include/functions_groups.php:2173 +#: ../../godmode/snmpconsole/snmp_alert.php:1201 +#: ../../godmode/snmpconsole/snmp_alert.php:1237 +#: ../../godmode/snmpconsole/snmp_filters.php:144 +#: ../../godmode/alerts/alert_actions.php:343 +#: ../../godmode/alerts/alert_commands.php:333 +#: ../../godmode/alerts/alert_list.list.php:710 +#: ../../godmode/alerts/alert_templates.php:344 +#: ../../godmode/extensions.php:272 ../../godmode/extensions.php:276 +#: ../../godmode/setup/news.php:225 ../../godmode/setup/snmp_wizard.php:122 +#: ../../godmode/setup/gis.php:64 ../../godmode/setup/links.php:137 +#: ../../godmode/setup/setup_visuals.php:694 +#: ../../godmode/setup/setup_visuals.php:725 +#: ../../godmode/events/event_filter.php:148 +#: ../../godmode/events/event_filter.php:162 +#: ../../godmode/events/event_responses.list.php:66 +#: ../../godmode/massive/massive_delete_action_alerts.php:204 +#: ../../godmode/massive/massive_delete_agents.php:140 +#: ../../godmode/massive/massive_delete_modules.php:513 +#: ../../godmode/massive/massive_delete_profiles.php:131 +#: ../../godmode/massive/massive_delete_tags.php:218 +#: ../../godmode/massive/massive_delete_alerts.php:238 +#: ../../godmode/users/user_list.php:470 +#: ../../godmode/reporting/graph_builder.graph_editor.php:88 +#: ../../godmode/reporting/graph_builder.graph_editor.php:127 +#: ../../godmode/reporting/map_builder.php:215 +#: ../../godmode/reporting/visual_console_builder.elements.php:518 +#: ../../godmode/reporting/reporting_builder.php:707 +#: ../../godmode/reporting/reporting_builder.list_items.php:432 +#: ../../godmode/reporting/reporting_builder.list_items.php:459 +#: ../../godmode/reporting/reporting_builder.list_items.php:478 +#: ../../godmode/reporting/reporting_builder.list_items.php:538 +#: ../../godmode/reporting/graphs.php:191 +#: ../../godmode/reporting/graphs.php:204 +#: ../../godmode/netflow/nf_item_list.php:239 +#: ../../godmode/netflow/nf_item_list.php:250 +#: ../../godmode/netflow/nf_edit.php:145 ../../godmode/netflow/nf_edit.php:157 +#: ../../godmode/db/db_refine.php:119 +#: ../../godmode/servers/recon_script.php:350 +#: ../../godmode/servers/servers.build_table.php:167 +#: ../../godmode/update_manager/update_manager.messages.php:91 +#: ../../godmode/update_manager/update_manager.messages.php:165 +#: ../../godmode/groups/modu_group_list.php:184 +#: ../../godmode/modules/manage_nc_groups.php:222 +#: ../../godmode/modules/manage_nc_groups.php:233 +#: ../../godmode/modules/manage_network_components.php:617 +#: ../../godmode/modules/manage_network_components.php:629 +#: ../../godmode/modules/manage_network_templates_form.php:219 +#: ../../godmode/modules/manage_network_templates.php:214 +#: ../../godmode/modules/manage_network_templates.php:227 +#: ../../godmode/agentes/module_manager_editor_common.php:720 +#: ../../godmode/agentes/planned_downtime.editor.php:798 +#: ../../godmode/agentes/planned_downtime.editor.php:803 +#: ../../godmode/agentes/planned_downtime.editor.php:851 +#: ../../godmode/agentes/fields_manager.php:127 +#: ../../godmode/agentes/module_manager.php:569 +#: ../../godmode/agentes/module_manager.php:799 +#: ../../godmode/agentes/module_manager.php:816 +#: ../../godmode/agentes/planned_downtime.list.php:402 +#: ../../godmode/agentes/planned_downtime.list.php:470 +#: ../../godmode/agentes/agent_template.php:251 +msgid "Delete" +msgstr "Delete" -#: ../../extensions/agents_modules.php:117 -#: ../../godmode/agentes/module_manager_editor_common.php:174 -#: ../../godmode/massive/massive_edit_modules.php:518 -#: ../../godmode/modules/manage_network_components_form_common.php:95 -#: ../../godmode/reporting/reporting_builder.item_editor.php:909 -#: ../../include/functions_events.php:2075 -#: ../../include/functions_graph.php:5357 -#: ../../include/functions_treeview.php:123 -#: ../../mobile/operation/modules.php:140 -#: ../../mobile/operation/modules.php:141 -#: ../../mobile/operation/modules.php:229 -#: ../../mobile/operation/modules.php:230 -#: ../../operation/agentes/estado_monitores.php:463 -#: ../../operation/agentes/status_monitor.php:311 -#: ../../operation/agentes/ver_agente.php:810 -#: ../../enterprise/godmode/modules/configure_local_component.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1453 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1377 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:157 -#: ../../enterprise/operation/agentes/ver_agente.php:33 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:206 -msgid "Module group" -msgstr "Module group" +#: ../../operation/snmpconsole/snmp_view.php:669 +#: ../../operation/events/events.build_table.php:700 +#: ../../include/functions_events.php:4046 +msgid "Show more" +msgstr "Show more" + +#: ../../operation/snmpconsole/snmp_view.php:681 +msgid "Variable bindings:" +msgstr "Variable bindings:" + +#: ../../operation/snmpconsole/snmp_view.php:694 +msgid "See more details" +msgstr "View more details" + +#: ../../operation/snmpconsole/snmp_view.php:707 +msgid "Enterprise String:" +msgstr "Enterprise String:" + +#: ../../operation/snmpconsole/snmp_view.php:713 +msgid "Description:" +msgstr "Description:" + +#: ../../operation/snmpconsole/snmp_view.php:745 +msgid "Trap type:" +msgstr "Trap type:" + +#: ../../operation/snmpconsole/snmp_view.php:773 +msgid "Count:" +msgstr "Count:" + +#: ../../operation/snmpconsole/snmp_view.php:777 +msgid "First trap:" +msgstr "First trap:" + +#: ../../operation/snmpconsole/snmp_view.php:781 +msgid "Last trap:" +msgstr "Last trap:" + +#: ../../operation/snmpconsole/snmp_view.php:801 +msgid "No matching traps found" +msgstr "No matching traps found" + +#: ../../operation/snmpconsole/snmp_view.php:844 +#: ../../extensions/module_groups.php:296 +#: ../../extensions/agents_modules.php:490 +#: ../../include/functions_reporting_html.php:1438 +#: ../../godmode/snmpconsole/snmp_alert.php:1343 +msgid "Legend" +msgstr "Graph Key" + +#: ../../operation/snmpconsole/snmp_browser.php:92 +msgid "SNMP Browser" +msgstr "SNMP Browser" + +#: ../../operation/search_main.php:52 +msgid "Agents found" +msgstr "Agents found" + +#: ../../operation/search_main.php:54 ../../operation/search_main.php:57 +#: ../../operation/search_main.php:68 ../../operation/search_main.php:71 +#: ../../operation/search_main.php:74 ../../operation/search_main.php:77 +#: ../../operation/search_main.php:80 +#, php-format +msgid "%s Found" +msgstr "%s Found" + +#: ../../operation/search_main.php:55 +msgid "Modules found" +msgstr "Modules found" + +#: ../../operation/search_main.php:66 +msgid "Users found" +msgstr "Users found" + +#: ../../operation/search_main.php:69 +msgid "Graphs found" +msgstr "Graphs found" + +#: ../../operation/search_main.php:72 +msgid "Reports found" +msgstr "Reports found" + +#: ../../operation/search_main.php:75 +msgid "Maps found" +msgstr "Maps found" + +#: ../../operation/search_main.php:78 +msgid "Helps found" +msgstr "Help found" + +#: ../../operation/search_main.php:88 +#, php-format +msgid "Show %s of %s. View all matches" +msgstr "Show %s of %s. Show all matching entities." + +#: ../../operation/menu.php:31 ../../operation/menu.php:106 +msgid "Monitoring" +msgstr "Monitoring" + +#: ../../operation/menu.php:37 +msgid "Views" +msgstr "Views" + +#: ../../operation/menu.php:45 ../../operation/users/user_edit.php:280 +#: ../../operation/agentes/tactical.php:55 ../../mobile/operation/home.php:38 +#: ../../mobile/operation/tactical.php:84 +msgid "Tactical view" +msgstr "Tactical view" + +#: ../../operation/menu.php:48 ../../operation/users/user_edit.php:279 +#: ../../operation/agentes/group_view.php:70 +msgid "Group view" +msgstr "Group view" + +#: ../../operation/menu.php:51 ../../operation/tree.php:87 +msgid "Tree view" +msgstr "Tree view" + +#: ../../operation/menu.php:54 ../../operation/agentes/estado_agente.php:145 +#: ../../godmode/agentes/agent_manager.php:166 +msgid "Agent detail" +msgstr "Agent detail" + +#: ../../operation/menu.php:59 ../../operation/agentes/status_monitor.php:40 +msgid "Monitor detail" +msgstr "Monitor detail" + +#: ../../operation/menu.php:62 ../../operation/users/user_edit.php:281 +#: ../../operation/agentes/alerts_status.php:132 +msgid "Alert detail" +msgstr "Alert details" + +#: ../../operation/menu.php:70 +msgid "Netflow Live View" +msgstr "Netflow Live View" + +#: ../../operation/menu.php:84 ../../include/functions_menu.php:517 +msgid "SNMP console" +msgstr "SNMP console" + +#: ../../operation/menu.php:85 +msgid "SNMP browser" +msgstr "SNMP browser" + +#: ../../operation/menu.php:92 ../../include/functions_menu.php:513 +msgid "SNMP filters" +msgstr "SNMP filters" + +#: ../../operation/menu.php:93 ../../include/functions_menu.php:515 +msgid "SNMP trap generator" +msgstr "SNMP trap generator" + +#: ../../operation/menu.php:98 ../../operation/events/events_rss.php:185 +msgid "SNMP" +msgstr "SNMP" + +#: ../../operation/menu.php:117 +msgid "Network map" +msgstr "Network map" + +#: ../../operation/menu.php:128 ../../operation/users/user_edit.php:277 +#: ../../extensions/resource_exportation.php:355 +msgid "Visual console" +msgstr "Visual console" + +#: ../../operation/menu.php:185 ../../operation/gis_maps/gis_map.php:31 +msgid "GIS Maps" +msgstr "GIS Maps" + +#: ../../operation/menu.php:190 +msgid "List of Gis maps" +msgstr "List of Gis maps" + +#: ../../operation/menu.php:224 +msgid "Topology maps" +msgstr "Topology maps" + +#: ../../operation/menu.php:235 +#: ../../operation/reporting/custom_reporting.php:27 +#: ../../operation/reporting/graph_viewer.php:317 +#: ../../operation/reporting/reporting_viewer.php:119 +#: ../../operation/reporting/reporting_viewer.php:124 +#: ../../godmode/reporting/map_builder.php:39 +#: ../../godmode/reporting/reporting_builder.php:359 +#: ../../godmode/reporting/reporting_builder.php:364 +#: ../../godmode/reporting/reporting_builder.php:1924 +#: ../../godmode/reporting/reporting_builder.php:1929 +#: ../../godmode/reporting/reporting_builder.php:1995 +#: ../../godmode/reporting/reporting_builder.php:2000 +#: ../../godmode/reporting/graphs.php:75 +msgid "Reporting" +msgstr "Reporting" + +#: ../../operation/menu.php:242 +#: ../../operation/reporting/custom_reporting.php:27 +#: ../../godmode/reporting/reporting_builder.php:346 +#: ../../godmode/reporting/reporting_builder.php:368 +#: ../../godmode/reporting/reporting_builder.php:1911 +msgid "Custom reporting" +msgstr "Custom reports" + +#: ../../operation/menu.php:249 ../../godmode/reporting/graphs.php:75 +msgid "Custom graphs" +msgstr "Custom graphs" + +#: ../../operation/menu.php:268 ../../operation/events/events.php:420 +#: ../../operation/events/events.php:429 ../../operation/events/events.php:446 +#: ../../mobile/operation/home.php:44 ../../mobile/operation/events.php:564 +#: ../../mobile/include/functions_web.php:24 +#: ../../include/functions_reports.php:620 +#: ../../include/functions_reports.php:622 +#: ../../include/functions_reports.php:624 +#: ../../include/functions_graph.php:744 +#: ../../include/functions_graph.php:3936 +#: ../../include/functions_graph.php:4662 +#: ../../include/functions_reporting_html.php:1615 ../../godmode/menu.php:192 +msgid "Events" +msgstr "Events" + +#: ../../operation/menu.php:274 ../../godmode/users/configure_profile.php:275 +msgid "View events" +msgstr "View events" + +#: ../../operation/menu.php:288 +msgid "RSS" +msgstr "RSS" + +#: ../../operation/menu.php:293 +msgid "Marquee" +msgstr "Marquee" + +#: ../../operation/menu.php:299 +msgid "CSV File" +msgstr "CSV File" + +#: ../../operation/menu.php:307 ../../operation/events/sound_events.php:51 +msgid "Sound Events" +msgstr "Sound Events" + +#: ../../operation/menu.php:319 ../../operation/events/events.php:439 +msgid "Sound Alerts" +msgstr "Sound Alerts" + +#: ../../operation/menu.php:329 +msgid "Workspace" +msgstr "Workspace" + +#: ../../operation/menu.php:336 ../../general/header.php:294 +#: ../../general/header.php:296 +msgid "Edit my user" +msgstr "Edit my user" + +#: ../../operation/menu.php:342 +msgid "WebChat" +msgstr "WebChat" + +#: ../../operation/menu.php:354 ../../operation/agentes/ver_agente.php:1022 +#: ../../operation/incidents/incident_statistics.php:30 +#: ../../general/firts_task/incidents.php:32 +#: ../../godmode/agentes/configurar_agente.php:418 +#: ../../godmode/agentes/configurar_agente.php:550 +msgid "Incidents" +msgstr "Incidents" + +#: ../../operation/menu.php:364 +msgid "List of Incidents" +msgstr "List of Incidents" + +#: ../../operation/menu.php:373 ../../operation/messages/message_edit.php:46 +#: ../../operation/messages/message_list.php:43 ../../godmode/menu.php:457 +msgid "Messages" +msgstr "Messages" + +#: ../../operation/menu.php:379 +msgid "Messages List" +msgstr "Message list" + +#: ../../operation/menu.php:380 +msgid "New message" +msgstr "New message" + +#: ../../operation/menu.php:399 ../../operation/agentes/exportdata.php:36 +msgid "Export data" +msgstr "Export data" + +#: ../../operation/menu.php:405 +msgid "Scheduled downtime" +msgstr "Scheduled downtime" + +#: ../../operation/menu.php:410 +msgid "Recon view" +msgstr "Recon view" + +#: ../../operation/menu.php:485 +msgid "Tools" +msgstr "Tools" + +#: ../../operation/search_reports.php:38 +#: ../../operation/reporting/custom_reporting.php:38 +#: ../../godmode/reporting/reporting_builder.php:532 +msgid "Report name" +msgstr "Report name" + +#: ../../operation/search_reports.php:39 ../../operation/events/events.php:91 +#: ../../operation/reporting/custom_reporting.php:39 +#: ../../operation/reporting/graph_viewer.php:329 +#: ../../operation/search_users.php:53 ../../operation/gis_maps/ajax.php:302 +#: ../../operation/search_graphs.php:34 +#: ../../operation/agentes/custom_fields.php:64 +#: ../../operation/agentes/pandora_networkmap.editor.php:191 +#: ../../operation/agentes/estado_generalagente.php:171 +#: ../../operation/agentes/estado_agente.php:495 +#: ../../operation/agentes/gis_view.php:183 +#: ../../operation/incidents/incident_detail.php:454 +#: ../../operation/incidents/incident_detail.php:506 +#: ../../extensions/files_repo/files_repo_form.php:72 +#: ../../extensions/files_repo/files_repo_list.php:59 +#: ../../mobile/operation/tactical.php:312 +#: ../../include/functions_snmp_browser.php:415 +#: ../../include/ajax/module.php:744 ../../include/functions_treeview.php:129 +#: ../../include/functions_treeview.php:587 +#: ../../include/functions_reporting_html.php:123 +#: ../../include/functions_reporting_html.php:2076 +#: ../../include/functions_reporting_html.php:2109 +#: ../../include/functions_reporting_html.php:3096 +#: ../../include/functions_reporting_html.php:3810 +#: ../../include/functions_events.php:1810 +#: ../../godmode/snmpconsole/snmp_alert.php:627 +#: ../../godmode/snmpconsole/snmp_alert.php:1163 +#: ../../godmode/snmpconsole/snmp_filters.php:94 +#: ../../godmode/snmpconsole/snmp_filters.php:131 +#: ../../godmode/alerts/configure_alert_special_days.php:90 +#: ../../godmode/alerts/alert_commands.php:332 +#: ../../godmode/alerts/configure_alert_command.php:155 +#: ../../godmode/alerts/configure_alert_template.php:763 +#: ../../godmode/alerts/alert_templates.php:47 +#: ../../godmode/setup/snmp_wizard.php:40 ../../godmode/setup/os.list.php:35 +#: ../../godmode/setup/os.builder.php:36 +#: ../../godmode/events/event_responses.editor.php:87 +#: ../../godmode/events/event_responses.list.php:55 +#: ../../godmode/massive/massive_edit_agents.php:321 +#: ../../godmode/massive/massive_edit_plugins.php:451 +#: ../../godmode/massive/massive_edit_modules.php:459 +#: ../../godmode/users/user_list.php:277 +#: ../../godmode/reporting/reporting_builder.main.php:121 +#: ../../godmode/reporting/reporting_builder.item_editor.php:684 +#: ../../godmode/reporting/reporting_builder.php:533 +#: ../../godmode/reporting/reporting_builder.list_items.php:303 +#: ../../godmode/reporting/graph_builder.main.php:123 +#: ../../godmode/reporting/graphs.php:153 +#: ../../godmode/netflow/nf_item_list.php:149 +#: ../../godmode/servers/recon_script.php:107 +#: ../../godmode/servers/recon_script.php:154 +#: ../../godmode/servers/recon_script.php:349 +#: ../../godmode/servers/modificar_server.php:48 +#: ../../godmode/servers/plugin.php:312 ../../godmode/servers/plugin.php:444 +#: ../../godmode/groups/group_list.php:340 +#: ../../godmode/groups/configure_group.php:182 +#: ../../godmode/modules/module_list.php:60 +#: ../../godmode/modules/manage_network_components.php:567 +#: ../../godmode/modules/manage_network_components_form.php:263 +#: ../../godmode/modules/manage_network_templates_form.php:148 +#: ../../godmode/modules/manage_network_templates_form.php:199 +#: ../../godmode/modules/manage_network_templates.php:191 +#: ../../godmode/agentes/module_manager_editor_common.php:356 +#: ../../godmode/agentes/planned_downtime.editor.php:482 +#: ../../godmode/agentes/agent_manager.php:305 +#: ../../godmode/agentes/modificar_agente.php:493 +#: ../../godmode/agentes/module_manager.php:563 +#: ../../godmode/agentes/planned_downtime.list.php:392 +#: ../../godmode/agentes/agent_template.php:230 ../../godmode/tag/tag.php:156 +#: ../../godmode/tag/tag.php:200 ../../godmode/tag/edit_tag.php:177 +msgid "Description" +msgstr "Description" + +#: ../../operation/search_reports.php:40 +#: ../../operation/reporting/custom_reporting.php:40 +#: ../../godmode/reporting/reporting_builder.php:534 +msgid "HTML" +msgstr "HTML" + +#: ../../operation/search_reports.php:41 +#: ../../operation/reporting/custom_reporting.php:41 +#: ../../godmode/reporting/reporting_builder.php:535 +msgid "XML" +msgstr "XML" + +#: ../../operation/search_reports.php:52 +#: ../../operation/gis_maps/gis_map.php:163 +#: ../../operation/servers/recon_view.php:110 +#: ../../operation/agentes/status_monitor.php:1118 +#: ../../operation/agentes/pandora_networkmap.php:403 +#: ../../operation/agentes/estado_agente.php:580 +#: ../../extensions/files_repo/files_repo_list.php:101 +#: ../../include/functions_pandora_networkmap.php:1443 +#: ../../include/ajax/module.php:866 ../../include/functions_groups.php:2166 +#: ../../godmode/alerts/alert_special_days.php:449 +#: ../../godmode/setup/snmp_wizard.php:119 +#: ../../godmode/events/event_responses.list.php:67 +#: ../../godmode/users/profile_list.php:389 +#: ../../godmode/users/user_list.php:468 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1189 +#: ../../godmode/reporting/reporting_builder.php:698 +#: ../../godmode/reporting/reporting_builder.list_items.php:430 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../godmode/servers/plugin.php:157 ../../godmode/servers/plugin.php:781 +#: ../../godmode/agentes/modificar_agente.php:569 +#: ../../godmode/agentes/fields_manager.php:126 +#: ../../godmode/agentes/planned_downtime.list.php:401 +msgid "Edit" +msgstr "Edit" + +#: ../../operation/events/events_list.php:190 +#: ../../operation/events/events_list.php:714 +msgid "No filter loaded" +msgstr "No filter loaded" + +#: ../../operation/events/events_list.php:192 +#: ../../operation/events/events_list.php:715 +msgid "Filter loaded" +msgstr "Filter loaded" + +#: ../../operation/events/events_list.php:194 +#: ../../operation/events/events_list.php:257 +#: ../../operation/events/events_list.php:607 +msgid "Save filter" +msgstr "Save filter" + +#: ../../operation/events/events_list.php:196 +#: ../../operation/events/events_list.php:280 +#: ../../operation/events/events_list.php:282 +#: ../../operation/events/events_list.php:611 +#: ../../operation/netflow/nf_live_view.php:329 +msgid "Load filter" +msgstr "Load filter" + +#: ../../operation/events/events_list.php:217 +msgid "New filter" +msgstr "New filter" + +#: ../../operation/events/events_list.php:218 +#: ../../operation/events/events_list.php:249 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../godmode/netflow/nf_edit_form.php:180 +msgid "Update filter" +msgstr "Update filter" + +#: ../../operation/events/events_list.php:224 +#: ../../godmode/events/event_edit_filter.php:215 +msgid "Filter name" +msgstr "Filter name" + +#: ../../operation/events/events_list.php:227 +msgid "Save in Group" +msgstr "Save in Group" + +#: ../../operation/events/events_list.php:229 +#: ../../godmode/reporting/graph_builder.graph_editor.php:140 +msgid "Filter group" +msgstr "Filter group" + +#: ../../operation/events/events_list.php:244 +msgid "Overwrite filter" +msgstr "Overwrite filter" + +#: ../../operation/events/events_list.php:335 +#: ../../operation/events/events_list.php:362 +#: ../../operation/incidents/incident_detail.php:404 +#: ../../extensions/files_repo/files_repo_form.php:94 +#: ../../godmode/snmpconsole/snmp_alert.php:1317 +#: ../../godmode/alerts/alert_list.list.php:632 +#: ../../godmode/setup/news.php:275 ../../godmode/setup/links.php:158 +#: ../../godmode/setup/setup_visuals.php:684 +#: ../../godmode/setup/setup_visuals.php:720 +#: ../../godmode/events/event_edit_filter.php:353 +#: ../../godmode/events/event_edit_filter.php:368 +#: ../../godmode/massive/massive_add_action_alerts.php:205 +#: ../../godmode/massive/massive_add_alerts.php:185 +#: ../../godmode/massive/massive_add_tags.php:161 +#: ../../godmode/users/configure_profile.php:375 +#: ../../godmode/reporting/graph_builder.graph_editor.php:163 +#: ../../godmode/reporting/visual_console_builder.wizard.php:367 +#: ../../godmode/servers/manage_recontask_form.php:395 +#: ../../godmode/servers/recon_script.php:383 +#: ../../godmode/servers/plugin.php:796 +#: ../../godmode/modules/manage_network_templates_form.php:308 +#: ../../godmode/agentes/planned_downtime.editor.php:628 +#: ../../godmode/agentes/planned_downtime.editor.php:724 +#: ../../godmode/agentes/planned_downtime.editor.php:864 +msgid "Add" +msgstr "Add" + +#: ../../operation/events/events_list.php:337 +#: ../../operation/events/events_list.php:364 +#: ../../godmode/alerts/alert_special_days.php:452 +#: ../../godmode/events/event_edit_filter.php:361 +#: ../../godmode/events/event_edit_filter.php:376 +msgid "Remove" +msgstr "Remove" + +#: ../../operation/events/events_list.php:410 +#: ../../godmode/events/event_edit_filter.php:253 +msgid "Agent search" +msgstr "Agent search" + +#: ../../operation/events/events_list.php:430 +#: ../../godmode/events/event_edit_filter.php:285 +msgid "User ack." +msgstr "User ack." + +#: ../../operation/events/events_list.php:440 +#: ../../include/ajax/visual_console_builder.ajax.php:693 +#: ../../include/functions_visual_map_editor.php:313 +#: ../../include/functions_visual_map_editor.php:652 +#: ../../include/functions_html.php:867 ../../include/functions_html.php:868 +#: ../../include/functions_html.php:869 ../../include/functions_html.php:870 +#: ../../include/functions_html.php:871 ../../include/functions_html.php:874 +#: ../../include/functions_html.php:875 ../../include/functions_html.php:876 +#: ../../include/functions_html.php:877 ../../include/functions_html.php:878 +#: ../../godmode/events/event_edit_filter.php:297 +#: ../../godmode/massive/massive_add_action_alerts.php:161 +#: ../../godmode/massive/massive_edit_agents.php:275 +#: ../../godmode/users/configure_user.php:696 +#: ../../godmode/reporting/visual_console_builder.wizard.php:372 +#: ../../godmode/servers/manage_recontask_form.php:296 +#: ../../godmode/servers/manage_recontask.php:339 +#: ../../godmode/agentes/planned_downtime.editor.php:713 +#: ../../godmode/agentes/agent_manager.php:250 +#: ../../godmode/agentes/planned_downtime.list.php:154 +msgid "Any" +msgstr "Any" + +#: ../../operation/events/events_list.php:442 +#: ../../godmode/events/event_edit_filter.php:388 +msgid "Module search" +msgstr "Module search" + +#: ../../operation/events/events_list.php:447 +#: ../../operation/events/events.build_table.php:139 +#: ../../operation/servers/recon_view.php:173 +#: ../../include/functions_events.php:3515 +#: ../../godmode/massive/massive_edit_agents.php:316 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1221 +#: ../../godmode/agentes/agent_manager.php:294 +#: ../../godmode/agentes/module_manager.php:554 +msgid "Server" +msgstr "Server" + +#: ../../operation/events/events_list.php:461 +#: ../../godmode/events/event_edit_filter.php:379 +msgid "Alert events" +msgstr "Alert events" -#: ../../extensions/agents_modules.php:119 -#: ../../extensions/files_repo/files_repo_form.php:50 -#: ../../general/subselect_data_module.php:42 -#: ../../godmode/admin_access_logs.php:62 -#: ../../godmode/admin_access_logs.php:64 -#: ../../godmode/alerts/alert_list.list.php:122 -#: ../../godmode/alerts/alert_list.list.php:128 -#: ../../godmode/alerts/alert_list.list.php:137 -#: ../../godmode/alerts/alert_list.list.php:142 -#: ../../godmode/alerts/alert_list.php:291 -#: ../../godmode/alerts/alert_list.php:345 -#: ../../godmode/alerts/alert_list.php:358 -#: ../../godmode/alerts/alert_templates.php:255 -#: ../../godmode/events/event_edit_filter.php:237 -#: ../../godmode/events/event_edit_filter.php:241 -#: ../../godmode/events/event_edit_filter.php:382 -#: ../../godmode/massive/massive_copy_modules.php:85 -#: ../../godmode/massive/massive_copy_modules.php:198 -#: ../../godmode/massive/massive_delete_agents.php:121 -#: ../../godmode/massive/massive_delete_agents.php:124 -#: ../../godmode/massive/massive_delete_modules.php:409 -#: ../../godmode/massive/massive_delete_modules.php:437 -#: ../../godmode/massive/massive_delete_modules.php:460 -#: ../../godmode/massive/massive_delete_modules.php:474 -#: ../../godmode/massive/massive_edit_agents.php:224 -#: ../../godmode/massive/massive_edit_agents.php:226 -#: ../../godmode/massive/massive_edit_modules.php:253 -#: ../../godmode/massive/massive_edit_modules.php:281 -#: ../../godmode/massive/massive_edit_modules.php:303 -#: ../../godmode/massive/massive_edit_modules.php:334 -#: ../../godmode/modules/manage_network_components.php:515 -#: ../../godmode/modules/manage_network_templates_form.php:269 -#: ../../godmode/reporting/reporting_builder.item_editor.php:904 -#: ../../godmode/reporting/reporting_builder.item_editor.php:914 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1096 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1406 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1418 -#: ../../godmode/reporting/reporting_builder.list_items.php:166 -#: ../../godmode/reporting/reporting_builder.list_items.php:168 -#: ../../godmode/reporting/reporting_builder.list_items.php:170 -#: ../../godmode/reporting/reporting_builder.list_items.php:192 -#: ../../godmode/reporting/reporting_builder.list_items.php:195 -#: ../../godmode/reporting/reporting_builder.list_items.php:198 -#: ../../godmode/reporting/visual_console_builder.wizard.php:249 -#: ../../godmode/reporting/visual_console_builder.wizard.php:254 -#: ../../godmode/setup/gis_step_2.php:154 ../../include/functions.php:906 -#: ../../include/functions.php:1129 ../../include/functions_users.php:187 -#: ../../include/functions_users.php:192 ../../include/functions_users.php:886 -#: ../../include/functions_events.php:3339 -#: ../../include/functions_events.php:3852 -#: ../../include/functions_graph.php:2874 -#: ../../include/functions_groups.php:616 -#: ../../include/functions_groups.php:2359 -#: ../../include/functions_modules.php:2497 -#: ../../include/functions_modules.php:2498 -#: ../../include/functions_reporting.php:1662 -#: ../../mobile/operation/agents.php:32 ../../mobile/operation/alerts.php:37 -#: ../../mobile/operation/alerts.php:43 ../../mobile/operation/events.php:624 -#: ../../mobile/operation/events.php:634 -#: ../../mobile/operation/events.php:1082 -#: ../../mobile/operation/events.php:1101 -#: ../../mobile/operation/modules.php:38 -#: ../../mobile/operation/modules.php:225 -#: ../../mobile/operation/modules.php:240 -#: ../../mobile/operation/networkmaps.php:137 -#: ../../mobile/operation/networkmaps.php:227 -#: ../../operation/agentes/alerts_status.functions.php:73 -#: ../../operation/agentes/alerts_status.functions.php:79 -#: ../../operation/agentes/alerts_status.functions.php:94 -#: ../../operation/agentes/alerts_status.functions.php:111 -#: ../../operation/agentes/alerts_status.functions.php:113 -#: ../../operation/agentes/estado_agente.php:194 -#: ../../operation/agentes/estado_monitores.php:447 -#: ../../operation/agentes/estado_monitores.php:466 -#: ../../operation/agentes/status_monitor.php:307 -#: ../../operation/agentes/status_monitor.php:324 -#: ../../operation/agentes/status_monitor.php:334 -#: ../../operation/agentes/status_monitor.php:353 -#: ../../operation/agentes/status_monitor.php:396 -#: ../../operation/agentes/status_monitor.php:398 -#: ../../operation/agentes/status_monitor.php:463 -#: ../../operation/events/events.build_table.php:506 -#: ../../operation/events/events_list.php:451 -#: ../../operation/events/events_list.php:455 #: ../../operation/events/events_list.php:464 -#: ../../operation/events/events_list.php:567 -#: ../../operation/events/events_list.php:571 -#: ../../operation/events/events_rss.php:110 -#: ../../operation/events/export_csv.php:54 -#: ../../operation/gis_maps/render_view.php:148 -#: ../../operation/snmpconsole/snmp_view.php:384 -#: ../../operation/snmpconsole/snmp_view.php:401 -#: ../../operation/snmpconsole/snmp_view.php:406 -#: ../../operation/snmpconsole/snmp_view.php:637 ../../operation/tree.php:130 -#: ../../operation/tree.php:155 -#: ../../enterprise/dashboard/widgets/events_list.php:52 -#: ../../enterprise/dashboard/widgets/tree_view.php:52 -#: ../../enterprise/dashboard/widgets/tree_view.php:65 -#: ../../enterprise/extensions/backup/main.php:85 -#: ../../enterprise/extensions/ipam/ipam_network.php:305 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:204 -#: ../../enterprise/godmode/modules/local_components.php:438 -#: ../../enterprise/godmode/modules/local_components.php:448 -#: ../../enterprise/godmode/modules/local_components.php:462 -#: ../../enterprise/godmode/policies/policy_agents.php:370 -#: ../../enterprise/godmode/policies/policy_queue.php:340 -#: ../../enterprise/godmode/policies/policy_queue.php:344 -#: ../../enterprise/godmode/policies/policy_queue.php:350 -#: ../../enterprise/godmode/policies/policy_queue.php:407 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:153 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:121 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1441 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1443 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1458 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1676 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1688 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:236 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:290 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:301 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:127 -#: ../../enterprise/godmode/setup/setup_acl.php:158 -#: ../../enterprise/godmode/setup/setup_acl.php:163 -#: ../../enterprise/godmode/setup/setup_acl.php:168 -#: ../../enterprise/godmode/setup/setup_acl.php:374 -#: ../../enterprise/godmode/setup/setup_acl.php:384 -#: ../../enterprise/godmode/setup/setup_acl.php:396 -#: ../../enterprise/godmode/setup/setup_acl.php:441 -#: ../../enterprise/godmode/setup/setup_acl.php:470 -#: ../../enterprise/include/functions_metaconsole.php:663 -#: ../../enterprise/include/functions_metaconsole.php:664 -#: ../../enterprise/include/functions_metaconsole.php:1268 -#: ../../enterprise/meta/advanced/policymanager.queue.php:214 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -#: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:226 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:265 -#: ../../enterprise/meta/include/functions_agents_meta.php:1053 -#: ../../enterprise/meta/include/functions_html_meta.php:51 -#: ../../enterprise/meta/include/functions_users_meta.php:79 -#: ../../enterprise/meta/include/functions_users_meta.php:89 -#: ../../enterprise/meta/include/functions_wizard_meta.php:251 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:105 -#: ../../enterprise/operation/agentes/agent_inventory.php:69 -#: ../../enterprise/operation/inventory/inventory.php:55 -#: ../../enterprise/operation/inventory/inventory.php:57 -#: ../../enterprise/operation/inventory/inventory.php:120 -#: ../../enterprise/operation/inventory/inventory.php:122 -#: ../../enterprise/operation/inventory/inventory.php:176 -#: ../../enterprise/operation/log/log_viewer.php:194 -#: ../../enterprise/operation/log/log_viewer.php:212 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:32 -msgid "All" -msgstr "All" +#: ../../godmode/events/event_edit_filter.php:383 +msgid "Filter alert events" +msgstr "Filter alert events" -#: ../../extensions/agents_modules.php:139 -#: ../../extensions/agents_modules.php:141 -#: ../../godmode/massive/massive_add_action_alerts.php:171 -#: ../../godmode/massive/massive_add_alerts.php:169 -#: ../../godmode/massive/massive_delete_action_alerts.php:172 -#: ../../godmode/massive/massive_delete_alerts.php:229 -#: ../../godmode/massive/massive_delete_modules.php:501 -#: ../../godmode/massive/massive_edit_modules.php:349 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1045 -#: ../../enterprise/dashboard/widgets/agent_module.php:84 -#: ../../enterprise/dashboard/widgets/agent_module.php:86 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:228 -msgid "Show common modules" -msgstr "Show common modules" +#: ../../operation/events/events_list.php:465 +#: ../../godmode/events/event_edit_filter.php:384 +msgid "Only alert events" +msgstr "Only alert events" -#: ../../extensions/agents_modules.php:140 -#: ../../godmode/massive/massive_add_action_alerts.php:172 -#: ../../godmode/massive/massive_add_alerts.php:169 -#: ../../godmode/massive/massive_delete_action_alerts.php:173 -#: ../../godmode/massive/massive_delete_alerts.php:229 -#: ../../godmode/massive/massive_delete_modules.php:501 -#: ../../godmode/massive/massive_edit_modules.php:350 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1046 -#: ../../enterprise/dashboard/widgets/agent_module.php:87 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:229 -msgid "Show all modules" -msgstr "Show all modules" +#: ../../operation/events/events_list.php:479 +#: ../../godmode/events/event_edit_filter.php:305 +msgid "Date from" +msgstr "From (date)" -#: ../../extensions/agents_modules.php:150 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1517 -#: ../../include/functions_visual_map_editor.php:673 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1915 -msgid "Update item" -msgstr "Update item" +#: ../../operation/events/events_list.php:485 +#: ../../godmode/events/event_edit_filter.php:308 +msgid "Date to" +msgstr "To (date)" -#: ../../extensions/agents_modules.php:160 -#: ../../include/functions_reports.php:588 -#: ../../include/graphs/functions_pchart.php:1190 -msgid "Agents/Modules" -msgstr "Agents/Modules" +#: ../../operation/events/events_list.php:491 +#: ../../operation/agentes/datos_agente.php:189 +#: ../../include/ajax/module.php:162 +msgid "Timestamp from:" +msgstr "Timestamp from:" -#: ../../extensions/agents_modules.php:194 -msgid "Agent/module view" -msgstr "" +#: ../../operation/events/events_list.php:494 +#: ../../operation/agentes/datos_agente.php:195 +#: ../../include/ajax/module.php:170 +msgid "Timestamp to:" +msgstr "Timestamp to:" -#: ../../extensions/agents_modules.php:321 -#: ../../include/functions_reporting.php:1684 -msgid "There are no agents with modules" -msgstr "There are no agents with modules" +#: ../../operation/events/events_list.php:505 +#: ../../operation/events/events_list.php:519 +#: ../../godmode/events/event_edit_filter.php:350 +msgid "Events with following tags" +msgstr "Events with following tags" -#: ../../extensions/agents_modules.php:329 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:804 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:437 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:311 -#: ../../godmode/agentes/configurar_agente.php:302 -#: ../../godmode/agentes/configurar_agente.php:535 -#: ../../godmode/agentes/modificar_agente.php:574 -#: ../../godmode/agentes/planned_downtime.editor.php:757 -#: ../../godmode/agentes/planned_downtime.editor.php:831 -#: ../../godmode/db/db_refine.php:95 -#: ../../godmode/massive/massive_add_tags.php:139 -#: ../../godmode/massive/massive_copy_modules.php:144 -#: ../../godmode/massive/massive_delete_modules.php:479 -#: ../../godmode/massive/massive_delete_tags.php:199 -#: ../../godmode/massive/massive_edit_modules.php:308 -#: ../../godmode/massive/massive_edit_plugins.php:308 -#: ../../godmode/reporting/graph_builder.graph_editor.php:148 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1053 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1102 -#: ../../godmode/reporting/reporting_builder.list_items.php:167 +#: ../../operation/events/events_list.php:511 +#: ../../operation/events/events_list.php:525 +#: ../../godmode/events/event_edit_filter.php:365 +msgid "Events without following tags" +msgstr "Events without follow-up tags" + +#: ../../operation/events/events_list.php:549 +#: ../../operation/events/events.build_table.php:185 +#: ../../operation/events/sound_events.php:78 +#: ../../operation/users/user_edit.php:505 +#: ../../operation/netflow/nf_live_view.php:309 +#: ../../operation/gis_maps/gis_map.php:90 +#: ../../operation/gis_maps/ajax.php:309 ../../operation/search_maps.php:32 +#: ../../operation/search_agents.php:47 ../../operation/search_agents.php:59 +#: ../../operation/agentes/status_monitor.php:292 +#: ../../operation/agentes/exportdata.php:235 +#: ../../operation/agentes/alerts_status.functions.php:68 +#: ../../operation/agentes/ver_agente.php:687 +#: ../../operation/agentes/pandora_networkmap.editor.php:183 +#: ../../operation/agentes/pandora_networkmap.editor.php:196 +#: ../../operation/agentes/group_view.php:164 +#: ../../operation/agentes/estado_generalagente.php:245 +#: ../../operation/agentes/estado_agente.php:167 +#: ../../operation/agentes/estado_agente.php:517 +#: ../../operation/incidents/incident_detail.php:308 +#: ../../operation/incidents/incident.php:339 +#: ../../extensions/agents_modules.php:128 +#: ../../extensions/agents_alerts.php:74 +#: ../../mobile/operation/networkmaps.php:65 +#: ../../mobile/operation/networkmaps.php:69 +#: ../../mobile/operation/networkmaps.php:129 +#: ../../mobile/operation/networkmaps.php:130 +#: ../../mobile/operation/networkmaps.php:197 +#: ../../mobile/operation/visualmaps.php:49 +#: ../../mobile/operation/visualmaps.php:53 +#: ../../mobile/operation/visualmaps.php:141 +#: ../../mobile/operation/alerts.php:84 ../../mobile/operation/alerts.php:88 +#: ../../mobile/operation/alerts.php:178 ../../mobile/operation/alerts.php:179 +#: ../../mobile/operation/agents.php:75 ../../mobile/operation/agents.php:120 +#: ../../mobile/operation/agents.php:124 ../../mobile/operation/agents.php:175 +#: ../../mobile/operation/agents.php:176 ../../mobile/operation/agents.php:317 +#: ../../mobile/operation/events.php:361 ../../mobile/operation/events.php:365 +#: ../../mobile/operation/events.php:501 ../../mobile/operation/events.php:604 +#: ../../mobile/operation/events.php:605 +#: ../../mobile/operation/modules.php:128 +#: ../../mobile/operation/modules.php:132 +#: ../../mobile/operation/modules.php:203 +#: ../../mobile/operation/modules.php:204 ../../general/ui/agents_list.php:69 +#: ../../include/functions_pandora_networkmap.php:1375 +#: ../../include/functions_pandora_networkmap.php:1554 +#: ../../include/functions_visual_map.php:2765 +#: ../../include/functions_groups.php:745 +#: ../../include/functions_visual_map_editor.php:61 +#: ../../include/functions_visual_map_editor.php:336 +#: ../../include/functions_visual_map_editor.php:610 +#: ../../include/functions_graph.php:5544 +#: ../../include/functions_reporting_html.php:2073 +#: ../../include/functions_reporting_html.php:2108 +#: ../../include/functions_events.php:38 +#: ../../include/functions_events.php:2437 +#: ../../include/functions_events.php:3557 +#: ../../include/functions_networkmap.php:1721 +#: ../../godmode/snmpconsole/snmp_alert.php:657 +#: ../../godmode/alerts/configure_alert_special_days.php:69 +#: ../../godmode/alerts/alert_special_days.php:246 +#: ../../godmode/alerts/alert_actions.php:341 +#: ../../godmode/alerts/configure_alert_action.php:116 +#: ../../godmode/alerts/configure_alert_template.php:751 +#: ../../godmode/alerts/alert_templates.php:299 +#: ../../godmode/setup/news.php:164 ../../godmode/setup/gis.php:63 +#: ../../godmode/setup/gis_step_2.php:153 +#: ../../godmode/events/event_filter.php:109 +#: ../../godmode/events/custom_events.php:80 +#: ../../godmode/events/custom_events.php:156 +#: ../../godmode/events/event_edit_filter.php:226 +#: ../../godmode/events/event_responses.editor.php:81 +#: ../../godmode/events/event_responses.list.php:56 +#: ../../godmode/massive/massive_add_action_alerts.php:151 +#: ../../godmode/massive/massive_add_alerts.php:151 +#: ../../godmode/massive/massive_edit_agents.php:207 +#: ../../godmode/massive/massive_edit_agents.php:298 +#: ../../godmode/massive/massive_delete_action_alerts.php:151 +#: ../../godmode/massive/massive_enable_disable_alerts.php:136 +#: ../../godmode/massive/massive_delete_agents.php:105 +#: ../../godmode/massive/massive_standby_alerts.php:136 +#: ../../godmode/massive/massive_copy_modules.php:71 +#: ../../godmode/massive/massive_copy_modules.php:182 +#: ../../godmode/massive/massive_delete_profiles.php:103 +#: ../../godmode/massive/massive_add_tags.php:124 +#: ../../godmode/massive/massive_delete_alerts.php:212 +#: ../../godmode/massive/massive_add_profiles.php:89 +#: ../../godmode/users/configure_user.php:624 +#: ../../godmode/users/user_list.php:227 +#: ../../godmode/reporting/reporting_builder.main.php:69 +#: ../../godmode/reporting/map_builder.php:208 +#: ../../godmode/reporting/visual_console_builder.elements.php:77 +#: ../../godmode/reporting/visual_console_builder.elements.php:193 +#: ../../godmode/reporting/reporting_builder.item_editor.php:868 +#: ../../godmode/reporting/reporting_builder.php:431 +#: ../../godmode/reporting/reporting_builder.php:561 +#: ../../godmode/reporting/graph_builder.main.php:116 +#: ../../godmode/reporting/graphs.php:155 +#: ../../godmode/netflow/nf_edit_form.php:193 +#: ../../godmode/netflow/nf_edit.php:119 +#: ../../godmode/gis_maps/configure_gis_map.php:366 +#: ../../godmode/servers/manage_recontask_form.php:305 +#: ../../godmode/servers/manage_recontask.php:291 +#: ../../godmode/modules/manage_network_components.php:479 +#: ../../godmode/modules/manage_network_components.php:568 +#: ../../godmode/modules/manage_network_templates_form.php:200 +#: ../../godmode/modules/manage_network_templates_form.php:267 +#: ../../godmode/modules/manage_network_templates_form.php:300 +#: ../../godmode/modules/manage_network_components_form_common.php:101 +#: ../../godmode/agentes/configurar_agente.php:363 +#: ../../godmode/agentes/planned_downtime.editor.php:480 +#: ../../godmode/agentes/planned_downtime.editor.php:754 +#: ../../godmode/agentes/agent_manager.php:270 +#: ../../godmode/agentes/modificar_agente.php:145 +#: ../../godmode/agentes/modificar_agente.php:489 +#: ../../godmode/agentes/agent_incidents.php:89 +#: ../../godmode/agentes/planned_downtime.list.php:393 +msgid "Group" +msgstr "Group" + +#: ../../operation/events/events_list.php:562 +#: ../../operation/events/events.build_table.php:191 +#: ../../include/functions_events.php:41 +#: ../../include/functions_events.php:3562 +#: ../../godmode/events/event_filter.php:110 +#: ../../godmode/events/custom_events.php:89 +#: ../../godmode/events/custom_events.php:159 +#: ../../godmode/events/event_edit_filter.php:235 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1408 +msgid "Event type" +msgstr "Event type" + +#: ../../operation/events/events_list.php:565 +#: ../../operation/agentes/status_monitor.php:303 +#: ../../operation/agentes/estado_agente.php:190 +#: ../../mobile/operation/modules.php:43 +#: ../../include/functions_events.php:1428 ../../include/functions.php:1083 +#: ../../godmode/events/event_edit_filter.php:233 +#: ../../godmode/massive/massive_edit_agents.php:220 +#: ../../godmode/massive/massive_delete_agents.php:117 +#: ../../godmode/massive/massive_delete_modules.php:457 +#: ../../godmode/massive/massive_delete_modules.php:471 +#: ../../godmode/massive/massive_copy_modules.php:81 +#: ../../godmode/massive/massive_copy_modules.php:194 +#: ../../godmode/massive/massive_edit_modules.php:300 +#: ../../godmode/massive/massive_edit_modules.php:331 +msgid "Not normal" +msgstr "Not normal" + +#: ../../operation/events/events_list.php:575 +#: ../../godmode/events/event_filter.php:111 +#: ../../godmode/events/event_edit_filter.php:245 +msgid "Event status" +msgstr "Event status" + +#: ../../operation/events/events_list.php:578 +#: ../../mobile/operation/events.php:647 +#: ../../godmode/events/event_edit_filter.php:281 +#: ../../godmode/admin_access_logs.php:67 +#: ../../godmode/admin_access_logs.php:68 +msgid "Max. hours old" +msgstr "Max. hours old" + +#: ../../operation/events/events_list.php:580 +#: ../../mobile/operation/events.php:485 +#: ../../include/functions_events.php:2372 +#: ../../godmode/events/event_edit_filter.php:301 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:421 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:437 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:453 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:469 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:938 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:954 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:970 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:986 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1002 +msgid "Repeated" +msgstr "Duplicate" + +#: ../../operation/events/events_list.php:581 +#: ../../godmode/events/event_edit_filter.php:299 +msgid "All events" +msgstr "All events" + +#: ../../operation/events/events_list.php:582 +#: ../../godmode/events/event_edit_filter.php:300 +msgid "Group events" +msgstr "Group events" + +#: ../../operation/events/events_list.php:583 +msgid "Group agents" +msgstr "Group agents" + +#: ../../operation/events/events_list.php:590 +#: ../../include/functions_visual_map_editor.php:483 +#: ../../godmode/massive/massive_add_action_alerts.php:181 +#: ../../godmode/massive/massive_edit_agents.php:422 +#: ../../godmode/agentes/module_manager_editor.php:515 +#: ../../godmode/agentes/agent_manager.php:428 +msgid "Advanced options" +msgstr "Advanced options" + +#: ../../operation/events/events_list.php:613 +msgid "Show events graph" +msgstr "Show the events graph" + +#: ../../operation/events/events_list.php:635 ../../operation/tree.php:184 +#: ../../operation/agentes/status_monitor.php:533 +#: ../../operation/agentes/alerts_status.php:390 +#: ../../godmode/alerts/alert_templates.php:268 +#: ../../godmode/users/user_list.php:243 +#: ../../godmode/reporting/reporting_builder.list_items.php:206 +#: ../../godmode/modules/manage_network_components.php:532 +#: ../../godmode/tag/tag.php:176 ../../godmode/tag/tag.php:281 +msgid "Show Options" +msgstr "Show Options" + +#: ../../operation/events/events_list.php:637 +msgid "Event control filter" +msgstr "Event control filter" + +#: ../../operation/events/events_list.php:641 +msgid "Error creating filter." +msgstr "Error creating filter." + +#: ../../operation/events/events_list.php:642 +msgid "Error creating filter is duplicated." +msgstr "Cannot create filter: duplicate filter" + +#: ../../operation/events/events_list.php:643 +msgid "Filter created." +msgstr "Filter created." + +#: ../../operation/events/events_list.php:645 +msgid "Filter updated." +msgstr "Filter updated." + +#: ../../operation/events/events_list.php:646 +msgid "Error updating filter." +msgstr "Error updating filter." + +#: ../../operation/events/events_list.php:1081 +msgid "Filter name cannot be left blank" +msgstr "The filter's name cannot be left blank" + +#: ../../operation/events/events_list.php:1150 +#: ../../operation/events/events_list.php:1236 +msgid "none" +msgstr "none" + +#: ../../operation/events/events_list.php:1558 +msgid "Events generated -by agent-" +msgstr "Events generated -by agent-" + +#: ../../operation/events/events_list.php:1577 +#: ../../operation/reporting/graph_viewer.php:267 +#: ../../operation/reporting/reporting_viewer.php:254 +#: ../../operation/reporting/reporting_viewer.php:274 +#: ../../operation/tree.php:391 ../../operation/netflow/nf_live_view.php:659 +#: ../../operation/agentes/estado_monitores.php:401 +#: ../../operation/agentes/datos_agente.php:304 +#: ../../operation/agentes/stat_win.php:506 +#: ../../extensions/insert_data.php:210 +#: ../../godmode/alerts/configure_alert_template.php:1074 +#: ../../godmode/setup/news.php:297 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2023 +#: ../../godmode/agentes/planned_downtime.editor.php:1169 +msgid "Choose time" +msgstr "Choose time" + +#: ../../operation/events/events_list.php:1578 +#: ../../operation/reporting/graph_viewer.php:268 +#: ../../operation/reporting/reporting_viewer.php:255 +#: ../../operation/reporting/reporting_viewer.php:275 +#: ../../operation/tree.php:392 ../../operation/netflow/nf_live_view.php:660 +#: ../../operation/agentes/estado_monitores.php:402 +#: ../../operation/agentes/datos_agente.php:305 +#: ../../operation/agentes/stat_win.php:507 +#: ../../extensions/insert_data.php:211 +#: ../../godmode/alerts/configure_alert_template.php:1075 +#: ../../godmode/setup/news.php:298 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2024 +#: ../../godmode/agentes/planned_downtime.editor.php:1170 +msgid "Time" +msgstr "Time" + +#: ../../operation/events/events_list.php:1579 +#: ../../operation/reporting/graph_viewer.php:269 +#: ../../operation/reporting/reporting_viewer.php:256 +#: ../../operation/reporting/reporting_viewer.php:276 +#: ../../operation/tree.php:393 ../../operation/netflow/nf_live_view.php:661 +#: ../../operation/agentes/estado_monitores.php:403 +#: ../../operation/agentes/datos_agente.php:306 +#: ../../operation/agentes/stat_win.php:508 +#: ../../extensions/insert_data.php:212 ../../include/functions_html.php:860 +#: ../../godmode/alerts/configure_alert_template.php:1076 +#: ../../godmode/setup/news.php:299 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2025 +#: ../../godmode/agentes/planned_downtime.editor.php:1171 +msgid "Hour" +msgstr "Hour" + +#: ../../operation/events/events_list.php:1580 +#: ../../operation/reporting/graph_viewer.php:270 +#: ../../operation/reporting/reporting_viewer.php:257 +#: ../../operation/reporting/reporting_viewer.php:277 +#: ../../operation/tree.php:394 ../../operation/netflow/nf_live_view.php:662 +#: ../../operation/agentes/estado_monitores.php:404 +#: ../../operation/agentes/datos_agente.php:307 +#: ../../operation/agentes/stat_win.php:509 +#: ../../extensions/insert_data.php:213 ../../include/functions_html.php:861 +#: ../../godmode/alerts/configure_alert_template.php:1077 +#: ../../godmode/setup/news.php:300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2026 +#: ../../godmode/agentes/planned_downtime.editor.php:1172 +msgid "Minute" +msgstr "Minute" + +#: ../../operation/events/events_list.php:1581 +#: ../../operation/reporting/graph_viewer.php:271 +#: ../../operation/reporting/reporting_viewer.php:258 +#: ../../operation/reporting/reporting_viewer.php:278 +#: ../../operation/tree.php:395 ../../operation/netflow/nf_live_view.php:663 +#: ../../operation/agentes/estado_monitores.php:405 +#: ../../operation/agentes/datos_agente.php:308 +#: ../../operation/agentes/stat_win.php:510 +#: ../../extensions/insert_data.php:214 +#: ../../godmode/alerts/configure_alert_template.php:1078 +#: ../../godmode/setup/news.php:301 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2027 +#: ../../godmode/agentes/planned_downtime.editor.php:1173 +msgid "Second" +msgstr "Second" + +#: ../../operation/events/events_list.php:1582 +#: ../../operation/reporting/graph_viewer.php:272 +#: ../../operation/reporting/reporting_viewer.php:259 +#: ../../operation/reporting/reporting_viewer.php:279 +#: ../../operation/tree.php:396 ../../operation/netflow/nf_live_view.php:664 +#: ../../operation/agentes/estado_monitores.php:406 +#: ../../operation/agentes/datos_agente.php:309 +#: ../../operation/agentes/stat_win.php:511 +#: ../../extensions/insert_data.php:215 ../../include/functions.php:436 +#: ../../include/functions.php:570 +#: ../../godmode/alerts/configure_alert_template.php:1079 +#: ../../godmode/setup/news.php:302 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2028 +#: ../../godmode/agentes/planned_downtime.editor.php:1174 +msgid "Now" +msgstr "Now" + +#: ../../operation/events/events_list.php:1583 +#: ../../operation/reporting/graph_viewer.php:273 +#: ../../operation/reporting/reporting_viewer.php:260 +#: ../../operation/reporting/reporting_viewer.php:280 +#: ../../operation/tree.php:397 ../../operation/netflow/nf_live_view.php:665 +#: ../../operation/agentes/estado_monitores.php:407 +#: ../../operation/agentes/datos_agente.php:310 +#: ../../operation/agentes/stat_win.php:512 +#: ../../extensions/insert_data.php:216 ../../mobile/include/ui.class.php:571 +#: ../../mobile/include/ui.class.php:610 +#: ../../include/functions_snmp_browser.php:441 +#: ../../include/functions_filemanager.php:619 +#: ../../include/functions_filemanager.php:640 +#: ../../include/functions_filemanager.php:656 +#: ../../godmode/alerts/configure_alert_template.php:1080 +#: ../../godmode/setup/news.php:303 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2029 +#: ../../godmode/agentes/planned_downtime.editor.php:1175 +msgid "Close" +msgstr "Close" + +#: ../../operation/events/events_rss.php:32 +msgid "Your IP is not into the IP list with API access." +msgstr "Your IP is not on the list of IPs with API access." + +#: ../../operation/events/events_rss.php:46 +msgid "The URL of your feed has bad hash." +msgstr "Your feed's URL has a bad hash" + +#: ../../operation/events/events_rss.php:178 +#: ../../operation/events/events.php:77 ../../mobile/operation/events.php:111 +#: ../../include/functions_graph.php:2256 +#: ../../include/functions_graph.php:2922 +#: ../../include/functions_graph.php:3350 +#: ../../include/functions_graph.php:3353 +#: ../../include/functions_reporting_html.php:878 +#: ../../include/functions_reporting_html.php:1695 +#: ../../include/functions_events.php:988 +#: ../../include/functions_events.php:1419 +#: ../../include/functions_reporting.php:6365 ../../include/functions.php:1042 +#: ../../godmode/setup/setup_general.php:66 +msgid "System" +msgstr "System" + +#: ../../operation/events/event_statistics.php:37 +#: ../../operation/agentes/tactical.php:203 +#: ../../include/functions_events.php:1025 +msgid "Event graph" +msgstr "Event graph" + +#: ../../operation/events/event_statistics.php:41 +msgid "Event graph by user" +msgstr "Event graph by user" + +#: ../../operation/events/event_statistics.php:57 +#: ../../operation/agentes/tactical.php:209 +#: ../../include/functions_events.php:1030 +msgid "Event graph by agent" +msgstr "Event graph by agent" + +#: ../../operation/events/event_statistics.php:61 +#: ../../include/functions_reporting_html.php:1769 +msgid "Amount events validated" +msgstr "Amount of events validated" + +#: ../../operation/events/events.build_table.php:37 +msgid "More detail" +msgstr "More detail" + +#: ../../operation/events/events.build_table.php:85 +#: ../../operation/events/events.build_table.php:89 +msgid "The Agent: " +msgstr "The Agent: " + +#: ../../operation/events/events.build_table.php:86 +#: ../../operation/events/events.build_table.php:90 +msgid " has " +msgstr " has " + +#: ../../operation/events/events.build_table.php:87 +#: ../../operation/events/events.build_table.php:91 +msgid " events." +msgstr " events." + +#: ../../operation/events/events.build_table.php:118 +#: ../../operation/events/events.build_table.php:787 +#: ../../mobile/operation/events.php:790 +#: ../../include/functions_reporting_html.php:3769 +#: ../../include/functions_events.php:865 +#: ../../include/functions_events.php:869 +#: ../../include/functions_reporting.php:1327 +#: ../../include/functions_reporting.php:1495 +msgid "No events" +msgstr "No events" + +#: ../../operation/events/events.build_table.php:133 +#: ../../operation/incidents/incident.php:335 +#: ../../extensions/api_checker.php:137 +#: ../../include/functions_events.php:3511 +#: ../../godmode/alerts/alert_commands.php:331 +#: ../../godmode/setup/os.list.php:33 ../../godmode/groups/group_list.php:337 +#: ../../godmode/groups/modu_group_list.php:182 +#: ../../godmode/modules/module_list.php:58 +#: ../../godmode/agentes/module_manager_editor_common.php:156 +#: ../../godmode/agentes/agent_manager.php:163 +#: ../../godmode/agentes/fields_manager.php:94 +#: ../../godmode/agentes/agent_incidents.php:85 +msgid "ID" +msgstr "ID" + +#: ../../operation/events/events.build_table.php:149 +#: ../../mobile/operation/events.php:469 +#: ../../include/functions_events.php:2333 +#: ../../include/functions_events.php:3525 +msgid "Event ID" +msgstr "Event ID" + +#: ../../operation/events/events.build_table.php:155 +#: ../../mobile/operation/events.php:108 +#: ../../include/functions_events.php:3530 +msgid "Event Name" +msgstr "Event Name" + +#: ../../operation/events/events.build_table.php:161 +#: ../../mobile/operation/modules.php:495 +#: ../../mobile/operation/modules.php:753 +#: ../../include/functions_treeview.php:555 +#: ../../include/functions_reporting_html.php:2072 +#: ../../include/functions_events.php:36 +#: ../../include/functions_events.php:908 +#: ../../include/functions_events.php:3536 +#: ../../godmode/events/custom_events.php:74 +#: ../../godmode/events/custom_events.php:154 +#: ../../godmode/agentes/agent_manager.php:155 +#: ../../godmode/agentes/modificar_agente.php:477 +msgid "Agent name" +msgstr "Agent name" + +#: ../../operation/events/events.build_table.php:173 +#: ../../operation/events/events.build_table.php:582 +#: ../../operation/search_users.php:68 +#: ../../extensions/disabled/ssh_gateway.php:59 +#: ../../extensions/api_checker.php:114 +#: ../../extensions/users_connected.php:77 +#: ../../mobile/operation/tactical.php:309 +#: ../../mobile/include/user.class.php:245 ../../general/logon_ok.php:224 +#: ../../general/logon_ok.php:420 ../../general/login_page.php:135 +#: ../../general/login_page.php:160 +#: ../../include/functions_reporting_html.php:3585 +#: ../../include/functions_events.php:37 +#: ../../include/functions_events.php:3547 +#: ../../include/functions_events.php:3928 +#: ../../include/functions_config.php:332 +#: ../../include/functions_config.php:343 +#: ../../include/functions_config.php:353 ../../include/functions.php:2312 +#: ../../godmode/setup/setup_ehorus.php:73 +#: ../../godmode/events/custom_events.php:77 +#: ../../godmode/events/custom_events.php:155 +#: ../../godmode/admin_access_logs.php:63 +#: ../../godmode/admin_access_logs.php:188 +msgid "User" +msgstr "User" + +#: ../../operation/events/events.build_table.php:179 +#: ../../operation/incidents/incident_detail.php:266 +#: ../../operation/incidents/incident.php:342 +#: ../../mobile/operation/events.php:477 ../../include/functions_events.php:49 +#: ../../include/functions_events.php:2353 +#: ../../include/functions_events.php:3552 +#: ../../godmode/events/custom_events.php:113 +#: ../../godmode/events/custom_events.php:167 +#: ../../godmode/agentes/agent_incidents.php:92 +msgid "Owner" +msgstr "Owner" + +#: ../../operation/events/events.build_table.php:198 +#: ../../include/functions_events.php:3568 +msgid "Agent Module" +msgstr "Agent Module" + +#: ../../operation/events/events.build_table.php:217 +#: ../../operation/events/events.build_table.php:583 +#: ../../include/functions_events.php:45 +#: ../../include/functions_events.php:1751 +#: ../../include/functions_events.php:3584 +#: ../../include/functions_events.php:3929 +#: ../../godmode/events/custom_events.php:101 +#: ../../godmode/events/custom_events.php:163 +msgid "Comment" +msgstr "Comment" + +#: ../../operation/events/events.build_table.php:223 +#: ../../operation/users/user_edit.php:506 ../../operation/tree.php:49 +#: ../../operation/agentes/status_monitor.php:340 +#: ../../operation/agentes/status_monitor.php:343 +#: ../../operation/agentes/alerts_status.functions.php:86 +#: ../../operation/agentes/group_view.php:164 +#: ../../mobile/operation/events.php:514 ../../general/firts_task/tags.php:25 +#: ../../include/functions_treeview.php:165 +#: ../../include/functions_reporting_html.php:2113 +#: ../../include/functions_events.php:46 +#: ../../include/functions_events.php:2446 +#: ../../include/functions_events.php:3589 +#: ../../godmode/events/custom_events.php:104 +#: ../../godmode/events/custom_events.php:164 +#: ../../godmode/massive/massive_edit_modules.php:562 +#: ../../godmode/massive/massive_delete_tags.php:187 +#: ../../godmode/massive/massive_add_tags.php:147 +#: ../../godmode/users/configure_user.php:625 +#: ../../godmode/modules/manage_network_components_form_common.php:200 +#: ../../godmode/tag/edit_tag.php:57 +msgid "Tags" +msgstr "Tags" + +#: ../../operation/events/events.build_table.php:229 +#: ../../operation/agentes/pandora_networkmap.editor.php:194 +#: ../../operation/incidents/incident_detail.php:289 +#: ../../operation/incidents/incident.php:341 +#: ../../include/functions_events.php:47 +#: ../../include/functions_events.php:2146 +#: ../../include/functions_events.php:2261 +#: ../../include/functions_events.php:3594 +#: ../../godmode/events/custom_events.php:107 +#: ../../godmode/events/custom_events.php:165 +#: ../../godmode/massive/massive_copy_modules.php:108 +#: ../../godmode/reporting/reporting_builder.item_editor.php:881 +#: ../../godmode/agentes/agent_incidents.php:91 +msgid "Source" +msgstr "Source" + +#: ../../operation/events/events.build_table.php:235 +#: ../../include/functions_events.php:3599 +msgid "Extra ID" +msgstr "Extra ID" + +#: ../../operation/events/events.build_table.php:241 +#: ../../include/functions_events.php:50 +#: ../../include/functions_events.php:3604 +#: ../../godmode/events/custom_events.php:116 +#: ../../godmode/events/custom_events.php:168 +msgid "ACK Timestamp" +msgstr "ACK Timestamp" + +#: ../../operation/events/events.build_table.php:247 +#: ../../include/functions_events.php:51 +#: ../../include/functions_events.php:2190 +#: ../../include/functions_events.php:2202 +#: ../../include/functions_events.php:2214 +#: ../../include/functions_events.php:2226 +#: ../../include/functions_events.php:2231 +#: ../../include/functions_events.php:2236 +#: ../../include/functions_events.php:2240 +#: ../../include/functions_events.php:3609 +#: ../../godmode/events/custom_events.php:119 +#: ../../godmode/events/custom_events.php:169 +msgid "Instructions" +msgstr "Instructions" + +#: ../../operation/events/events.build_table.php:304 +#: ../../mobile/operation/events.php:247 ../../include/ajax/events.php:447 +#: ../../include/functions_reporting_html.php:845 +#: ../../include/functions_reporting_html.php:1061 +#: ../../include/functions_reporting_html.php:1667 +#: ../../include/functions_events.php:928 +#: ../../include/functions_events.php:2402 +#: ../../include/functions_events.php:3657 +#: ../../include/functions_reporting.php:6339 +msgid "New event" +msgstr "New event" + +#: ../../operation/events/events.build_table.php:308 +#: ../../operation/events/events.php:614 ../../operation/events/events.php:643 +#: ../../operation/events/events.php:644 ../../operation/events/events.php:864 +#: ../../operation/events/events.php:869 ../../operation/events/events.php:870 +#: ../../mobile/operation/events.php:251 ../../include/ajax/events.php:451 +#: ../../include/functions_reporting_html.php:849 +#: ../../include/functions_reporting_html.php:1065 +#: ../../include/functions_reporting_html.php:1671 +#: ../../include/functions_events.php:932 +#: ../../include/functions_events.php:2406 +#: ../../include/functions_events.php:3661 +#: ../../include/functions_reporting.php:6343 +msgid "Event validated" +msgstr "Event validated" + +#: ../../operation/events/events.build_table.php:312 +#: ../../operation/events/events.php:676 ../../operation/events/events.php:714 +#: ../../operation/events/events.php:715 ../../operation/events/events.php:874 +#: ../../operation/events/events.php:888 ../../operation/events/events.php:889 +#: ../../mobile/operation/events.php:255 ../../include/ajax/events.php:455 +#: ../../include/functions_reporting_html.php:853 +#: ../../include/functions_reporting_html.php:1069 +#: ../../include/functions_reporting_html.php:1675 +#: ../../include/functions_events.php:936 +#: ../../include/functions_events.php:2410 +#: ../../include/functions_events.php:3665 +#: ../../include/functions_reporting.php:6347 +msgid "Event in process" +msgstr "Event in process" + +#: ../../operation/events/events.build_table.php:581 +#: ../../operation/reporting/graph_viewer.php:195 +#: ../../operation/netflow/nf_live_view.php:234 +#: ../../extensions/insert_data.php:182 +#: ../../extensions/users_connected.php:79 +#: ../../mobile/operation/tactical.php:310 ../../general/logon_ok.php:226 +#: ../../general/logon_ok.php:423 +#: ../../include/functions_reporting_html.php:1806 +#: ../../include/functions_reporting_html.php:1810 +#: ../../include/functions_reporting_html.php:1813 +#: ../../include/functions_reporting_html.php:1828 +#: ../../include/functions_reporting_html.php:3588 +#: ../../include/functions_events.php:3927 +#: ../../include/functions_reporting.php:2349 +#: ../../include/functions_reporting.php:2382 ../../include/functions.php:2314 +#: ../../godmode/alerts/configure_alert_special_days.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1116 +#: ../../godmode/admin_access_logs.php:190 +msgid "Date" +msgstr "Date" + +#: ../../operation/events/events.build_table.php:677 +#: ../../include/functions_events.php:4023 +msgid "Validate event" +msgstr "Validate event" + +#: ../../operation/events/events.build_table.php:687 +#: ../../include/functions_events.php:1759 +#: ../../include/functions_events.php:1761 +#: ../../include/functions_events.php:4033 +msgid "Delete event" +msgstr "Delete event" + +#: ../../operation/events/events.build_table.php:692 +#: ../../operation/events/events.php:705 ../../operation/events/events.php:709 +#: ../../operation/events/events.php:879 ../../operation/events/events.php:883 +#: ../../include/functions_events.php:4038 +msgid "Is not allowed delete events in process" +msgstr "You cannot delete events in process." + +#: ../../operation/events/events.build_table.php:754 +msgid "Validate selected" +msgstr "Validate selected" + +#: ../../operation/events/events.build_table.php:770 +#: ../../godmode/snmpconsole/snmp_alert.php:1331 +#: ../../godmode/agentes/agent_manager.php:220 +msgid "Delete selected" +msgstr "Delete selected items" + +#: ../../operation/events/sound_events.php:68 +msgid "Sound console" +msgstr "Sound console" + +#: ../../operation/events/sound_events.php:82 +#: ../../operation/events/events.php:72 +#: ../../operation/netflow/nf_live_view.php:254 +#: ../../operation/search_modules.php:49 +#: ../../operation/agentes/ver_agente.php:806 +#: ../../mobile/operation/networkmaps.php:77 +#: ../../mobile/operation/networkmaps.php:78 +#: ../../mobile/operation/networkmaps.php:140 +#: ../../mobile/operation/networkmaps.php:141 +#: ../../mobile/operation/networkmaps.php:196 +#: ../../mobile/operation/visualmaps.php:61 +#: ../../mobile/operation/visualmaps.php:62 +#: ../../mobile/operation/events.php:352 ../../mobile/operation/events.php:353 +#: ../../mobile/operation/events.php:481 ../../mobile/operation/events.php:622 +#: ../../mobile/operation/events.php:623 +#: ../../include/functions_snmp_browser.php:410 +#: ../../include/ajax/module.php:738 +#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:419 +#: ../../include/functions_reporting_html.php:809 +#: ../../include/functions_reporting_html.php:818 +#: ../../include/functions_reporting_html.php:1023 +#: ../../include/functions_reporting_html.php:1033 +#: ../../include/functions_reporting_html.php:1641 +#: ../../include/functions_reporting_html.php:2105 +#: ../../include/functions_reporting_html.php:3095 +#: ../../include/functions_events.php:901 +#: ../../include/functions_events.php:2367 +#: ../../godmode/alerts/alert_templates.php:38 +#: ../../godmode/alerts/alert_templates.php:253 +#: ../../godmode/alerts/alert_templates.php:301 +#: ../../godmode/setup/news.php:221 ../../godmode/setup/gis_step_2.php:171 +#: ../../godmode/events/event_responses.editor.php:115 +#: ../../godmode/reporting/visual_console_builder.wizard.php:111 +#: ../../godmode/reporting/visual_console_builder.wizard.php:216 +#: ../../godmode/reporting/reporting_builder.item_editor.php:620 +#: ../../godmode/reporting/reporting_builder.list_items.php:166 #: ../../godmode/reporting/reporting_builder.list_items.php:193 -#: ../../godmode/reporting/visual_console_builder.wizard.php:294 -#: ../../godmode/servers/servers.build_table.php:68 +#: ../../godmode/reporting/reporting_builder.list_items.php:286 +#: ../../godmode/servers/servers.build_table.php:66 +#: ../../godmode/servers/plugin.php:736 +#: ../../godmode/modules/manage_network_components.php:566 +#: ../../godmode/modules/manage_network_templates_form.php:197 +#: ../../godmode/modules/manage_network_components_form_common.php:69 +#: ../../godmode/agentes/module_manager_editor_common.php:186 +#: ../../godmode/agentes/planned_downtime.editor.php:485 +#: ../../godmode/agentes/module_manager.php:131 +#: ../../godmode/agentes/module_manager.php:557 +#: ../../godmode/agentes/planned_downtime.list.php:394 +#: ../../godmode/agentes/agent_template.php:229 +msgid "Type" +msgstr "Type" + +#: ../../operation/events/sound_events.php:84 +#: ../../include/functions_reporting.php:7125 +msgid "Monitor critical" +msgstr "Monitor in critical status" + +#: ../../operation/events/sound_events.php:85 +#: ../../include/functions_reporting.php:7140 +msgid "Monitor unknown" +msgstr "Monitor in unknown status" + +#: ../../operation/events/sound_events.php:86 +#: ../../include/functions_reporting.php:7129 +msgid "Monitor warning" +msgstr "Monitor in warning status" + +#: ../../operation/events/events.php:71 +msgid "Event" +msgstr "Event" + +#: ../../operation/events/events.php:195 +msgid "" +"Event viewer is disabled due event replication. For more information, please " +"contact with the administrator" +msgstr "" +"Event viewer is disabled due to event replication. For more information, " +"please contact the administrator." + +#: ../../operation/events/events.php:334 +#: ../../operation/users/user_edit.php:278 ../../godmode/events/events.php:37 +msgid "Event list" +msgstr "Event list" + +#: ../../operation/events/events.php:339 +msgid "History event list" +msgstr "History event list" + +#: ../../operation/events/events.php:344 +msgid "RSS Events" +msgstr "RSS Events" + +#: ../../operation/events/events.php:349 +msgid "Marquee display" +msgstr "Marquee display" + +#: ../../operation/events/events.php:354 +msgid "Export to CSV file" +msgstr "Export to CSV file" + +#: ../../operation/events/events.php:358 ../../operation/events/events.php:397 +msgid "Sound events" +msgstr "Sound events" + +#: ../../operation/events/events.php:365 ../../godmode/events/events.php:85 +#: ../../godmode/events/events.php:88 +#: ../../godmode/users/configure_profile.php:283 +msgid "Manage events" +msgstr "Manage events" + +#: ../../operation/events/events.php:401 +msgid "History" +msgstr "History" + +#: ../../operation/events/events.php:446 +msgid "Main event view" +msgstr "Main event view" + +#: ../../operation/events/events.php:452 +#: ../../operation/reporting/graph_viewer.php:159 +#: ../../operation/reporting/reporting_viewer.php:108 +#: ../../operation/visual_console/render_view.php:167 +#: ../../operation/gis_maps/render_view.php:115 +#: ../../extensions/agents_modules.php:120 +#: ../../extensions/agents_alerts.php:96 +msgid "Back to normal mode" +msgstr "Return to windowed mode" + +#: ../../operation/events/events.php:464 +msgid "No events selected" +msgstr "No events selected" + +#: ../../operation/events/events.php:490 +msgid "Successfully validated" +msgstr "Successfully validated" + +#: ../../operation/events/events.php:491 ../../operation/events/events.php:768 +#: ../../operation/events/events.php:920 +msgid "Could not be validated" +msgstr "Could not be validated" + +#: ../../operation/events/events.php:495 +msgid "Successfully set in process" +msgstr "Set in process successfully" + +#: ../../operation/events/events.php:496 +msgid "Could not be set in process" +msgstr "Could not be set in process" + +#: ../../operation/events/events.php:800 +msgid "Successfully delete" +msgstr "Successfully deleted" + +#: ../../operation/events/events.php:803 +msgid "Error deleting event" +msgstr "Error deleting event" + +#: ../../operation/users/webchat.php:71 +msgid "Webchat" +msgstr "Webchat" + +#: ../../operation/users/webchat.php:82 +msgid "Users Online" +msgstr "Users Online" + +#: ../../operation/users/webchat.php:86 +#: ../../operation/messages/message_edit.php:92 +#: ../../operation/messages/message_edit.php:210 +msgid "Message" +msgstr "Message" + +#: ../../operation/users/webchat.php:90 +#: ../../operation/messages/message_edit.php:217 +msgid "Send message" +msgstr "Send message" + +#: ../../operation/users/webchat.php:157 +msgid "Connection established...get last 24h messages..." +msgstr "Connection established - retrieving messages from the past 24hs." + +#: ../../operation/users/webchat.php:168 +msgid "Error in connection." +msgstr "Error in connection." + +#: ../../operation/users/webchat.php:249 +msgid "Error sendding message." +msgstr "Error sending message." + +#: ../../operation/users/webchat.php:277 +msgid "Error login." +msgstr "Login error." + +#: ../../operation/users/user_edit.php:62 +#: ../../godmode/users/configure_user.php:90 +msgid "User detail editor" +msgstr "User detail editor" + +#: ../../operation/users/user_edit.php:130 +#: ../../operation/users/user_edit.php:137 +msgid "Password successfully updated" +msgstr "Password successfully updated" + +#: ../../operation/users/user_edit.php:131 +#: ../../operation/users/user_edit.php:138 +#, php-format +msgid "Error updating passwords: %s" +msgstr "Error updating passwords: %s" + +#: ../../operation/users/user_edit.php:143 +msgid "" +"Passwords didn't match or other problem encountered while updating passwords" +msgstr "" +"The passwords didn't match or another problem occurred during password " +"update." + +#: ../../operation/users/user_edit.php:154 +#: ../../operation/users/user_edit.php:164 +#: ../../godmode/users/configure_user.php:303 +#: ../../godmode/users/configure_user.php:313 +#: ../../godmode/users/configure_user.php:341 +#: ../../godmode/users/configure_user.php:347 +#: ../../godmode/users/configure_user.php:375 +msgid "User info successfully updated" +msgstr "User info successfully updated" + +#: ../../operation/users/user_edit.php:155 +#: ../../operation/users/user_edit.php:165 +msgid "Error updating user info" +msgstr "Error updating user info" + +#: ../../operation/users/user_edit.php:175 +msgid "Edit my User" +msgstr "Edit my User" + +#: ../../operation/users/user_edit.php:186 +#: ../../godmode/users/configure_user.php:445 +msgid "Full (display) name" +msgstr "Full (display) name" + +#: ../../operation/users/user_edit.php:208 +#: ../../godmode/users/configure_user.php:477 +#: ../../godmode/users/user_list.php:407 +msgid "E-mail" +msgstr "E-mail" + +#: ../../operation/users/user_edit.php:210 +#: ../../godmode/users/configure_user.php:481 +msgid "Phone number" +msgstr "Phone number" + +#: ../../operation/users/user_edit.php:219 +msgid "New Password" +msgstr "New Password" + +#: ../../operation/users/user_edit.php:221 +#: ../../godmode/users/configure_user.php:457 +msgid "Password confirmation" +msgstr "Password confirmation" + +#: ../../operation/users/user_edit.php:229 +msgid "" +"You can not change your password from Pandora FMS under the current " +"authentication scheme" +msgstr "" +"You can not change your password from Pandora FMS under the current " +"authentication scheme" + +#: ../../operation/users/user_edit.php:238 +msgid "If checkbox is clicked then block size global configuration is used" +msgstr "If checkbox is clicked then block size global configuration is used" + +#: ../../operation/users/user_edit.php:251 +#: ../../include/functions_config.php:469 +#: ../../godmode/setup/setup_visuals.php:459 +#: ../../godmode/users/configure_user.php:515 +msgid "Interactive charts" +msgstr "Interactive charts" + +#: ../../operation/users/user_edit.php:251 +#: ../../godmode/setup/setup_visuals.php:460 +#: ../../godmode/users/configure_user.php:515 +msgid "Whether to use Javascript or static PNG graphs" +msgstr "Whether to use Javascript or static PNG graphs" + +#: ../../operation/users/user_edit.php:255 +#: ../../godmode/users/configure_user.php:449 +msgid "Language" +msgstr "Language" + +#: ../../operation/users/user_edit.php:274 +msgid "Home screen" +msgstr "Home screen" + +#: ../../operation/users/user_edit.php:274 +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" +msgstr "" +"User can customise the home page. By default, it will display 'Agent " +"Detail'. Example: Select 'Other' and type " +"sec=estado&sec2=operation/agentes/estado_agente to show agent detail view" + +#: ../../operation/users/user_edit.php:284 +#: ../../mobile/include/functions_web.php:21 +msgid "Dashboard" +msgstr "Dashboard" + +#: ../../operation/users/user_edit.php:322 +#: ../../godmode/users/configure_user.php:509 +#: ../../godmode/groups/configure_group.php:196 +msgid "Skin" +msgstr "Skin" + +#: ../../operation/users/user_edit.php:334 +#: ../../include/functions_config.php:359 +#: ../../godmode/setup/setup_auth.php:128 +msgid "Double authentication" +msgstr "Double authentication" + +#: ../../operation/users/user_edit.php:339 +msgid "Show information" +msgstr "Show information" + +#: ../../operation/users/user_edit.php:345 +msgid "Event filter" +msgstr "Event filter" + +#: ../../operation/users/user_edit.php:350 +msgid "Newsletter Subscribed" +msgstr "Newsletter Subscribed" + +#: ../../operation/users/user_edit.php:352 +msgid "Already subscribed to Pandora FMS newsletter" +msgstr "Already subscribed to Pandora FMS newsletter" + +#: ../../operation/users/user_edit.php:355 +#: ../../general/login_identification_wizard.php:167 +msgid "Subscribe to our newsletter" +msgstr "Subscribe to our newsletter" + +#: ../../operation/users/user_edit.php:358 +msgid "Newsletter Reminder" +msgstr "Newsletter Reminder" + +#: ../../operation/users/user_edit.php:414 +msgid "Autorefresh" +msgstr "Autorefresh" + +#: ../../operation/users/user_edit.php:414 +msgid "This will activate autorefresh in selected pages" +msgstr "This will activate autorefresh in selected pages" + +#: ../../operation/users/user_edit.php:421 +msgid "Full list of pages" +msgstr "Full list of pages" + +#: ../../operation/users/user_edit.php:423 +msgid "List of pages with autorefresh" +msgstr "List of pages with autorefresh" + +#: ../../operation/users/user_edit.php:429 +msgid "Push selected pages into autorefresh list" +msgstr "Push selected pages into autorefresh list" + +#: ../../operation/users/user_edit.php:433 +msgid "Pop selected pages out of autorefresh list" +msgstr "Pop selected pages out of autorefresh list" + +#: ../../operation/users/user_edit.php:448 +#: ../../mobile/operation/events.php:518 ../../general/logon_ok.php:228 +#: ../../general/logon_ok.php:425 ../../include/ajax/events.php:302 +#: ../../include/functions_reporting_html.php:3590 +#: ../../include/functions.php:2316 ../../godmode/users/configure_user.php:485 +#: ../../godmode/servers/manage_recontask_form.php:359 +#: ../../godmode/admin_access_logs.php:192 +msgid "Comments" +msgstr "Comments" + +#: ../../operation/users/user_edit.php:469 +msgid "" +"You can not change your user info from Pandora FMS under the current " +"authentication scheme" +msgstr "" +"You can not change your user info from Pandora FMS under the current " +"authentication scheme" + +#: ../../operation/users/user_edit.php:479 +#: ../../operation/users/user_edit.php:487 +#: ../../godmode/users/configure_user.php:604 +#: ../../godmode/users/configure_user.php:613 +msgid "Profiles/Groups assigned to this user" +msgstr "Profiles/Groups assigned to this user" + +#: ../../operation/users/user_edit.php:504 +#: ../../godmode/massive/massive_delete_profiles.php:102 +#: ../../godmode/massive/massive_add_profiles.php:88 +#: ../../godmode/users/configure_profile.php:242 +#: ../../godmode/users/configure_user.php:623 +msgid "Profile name" +msgstr "Profile name" + +#: ../../operation/users/user_edit.php:541 +msgid "This user doesn't have any assigned profile/group." +msgstr "This user doesn't have any profile/group assigned" + +#: ../../operation/users/user_edit.php:693 +#: ../../operation/users/user_edit.php:758 +#: ../../operation/users/user_edit.php:829 ../../general/logon_failed.php:21 +#: ../../include/ajax/double_auth.ajax.php:247 +#: ../../include/ajax/double_auth.ajax.php:342 +#: ../../include/ajax/double_auth.ajax.php:387 +#: ../../include/ajax/double_auth.ajax.php:501 +msgid "Authentication error" +msgstr "Authentication error" + +#: ../../operation/users/user_edit.php:696 +#: ../../operation/users/user_edit.php:761 +#: ../../extensions/system_info.php:533 ../../extensions/system_info.php:594 +#: ../../include/ajax/double_auth.ajax.php:250 +#: ../../include/ajax/double_auth.ajax.php:345 +#: ../../include/ajax/double_auth.ajax.php:390 +#: ../../include/ajax/double_auth.ajax.php:505 +#: ../../include/functions_ui.php:228 ../../include/functions_events.php:1176 +#: ../../include/functions_events.php:1422 ../../include/functions.php:1043 +#: ../../godmode/massive/massive_edit_plugins.php:813 +#: ../../godmode/massive/massive_edit_plugins.php:814 +#: ../../godmode/db/db_refine.php:42 ../../godmode/db/db_refine.php:47 +msgid "Error" +msgstr "Error" + +#: ../../operation/users/user_edit.php:700 +#: ../../operation/users/user_edit.php:765 +#: ../../include/ajax/double_auth.ajax.php:254 +#: ../../include/ajax/double_auth.ajax.php:349 +#: ../../include/ajax/double_auth.ajax.php:394 +#: ../../include/ajax/double_auth.ajax.php:509 +msgid "There was an error loading the data" +msgstr "There was an error sending the data" + +#: ../../operation/users/user_edit.php:710 +msgid "Double autentication information" +msgstr "Double autentication information" + +#: ../../operation/users/user_edit.php:773 +#: ../../operation/users/user_edit.php:849 +msgid "Double autentication activation" +msgstr "Double autentication activation" + +#: ../../operation/users/user_edit.php:799 +msgid "The double authentication will be deactivated" +msgstr "Double authentication will be deactivated" + +#: ../../operation/users/user_edit.php:800 +msgid "Deactivate" +msgstr "Deactivate" + +#: ../../operation/users/user_edit.php:832 +msgid "The double autentication was deactivated successfully" +msgstr "Double authentication was deactivated successfully" + +#: ../../operation/users/user_edit.php:835 +#: ../../operation/users/user_edit.php:839 +msgid "There was an error deactivating the double autentication" +msgstr "There was an error deactivating the double autentication" + +#: ../../operation/reporting/custom_reporting.php:32 +#: ../../operation/reporting/graph_viewer.php:344 +msgid "There are no defined reportings" +msgstr "There are no defined reportings" + +#: ../../operation/reporting/graph_viewer.php:36 +#: ../../operation/reporting/graph_viewer.php:43 +#: ../../godmode/events/event_filter.php:57 +#: ../../godmode/events/event_filter.php:78 +#: ../../godmode/reporting/map_builder.php:94 +#: ../../godmode/reporting/graphs.php:88 ../../godmode/reporting/graphs.php:98 +#: ../../godmode/reporting/graphs.php:137 +#: ../../godmode/netflow/nf_item_list.php:106 +#: ../../godmode/netflow/nf_item_list.php:127 +#: ../../godmode/netflow/nf_edit.php:77 ../../godmode/netflow/nf_edit.php:101 +#: ../../godmode/modules/manage_nc_groups.php:123 +#: ../../godmode/agentes/planned_downtime.list.php:108 +msgid "Not deleted. Error deleting data" +msgstr "Could not be deleted. Error deleting data." + +#: ../../operation/reporting/graph_viewer.php:137 +#: ../../godmode/reporting/graph_builder.php:203 +#: ../../godmode/reporting/graphs.php:43 ../../godmode/reporting/graphs.php:53 +msgid "Graph list" +msgstr "Graph list" + +#: ../../operation/reporting/graph_viewer.php:140 +#: ../../operation/reporting/reporting_viewer.php:82 +#: ../../operation/visual_console/pure_ajax.php:110 +#: ../../operation/visual_console/render_view.php:113 +#: ../../godmode/reporting/reporting_builder.main.php:51 +#: ../../godmode/reporting/graph_builder.php:206 +#: ../../godmode/reporting/reporting_builder.php:1957 +#: ../../godmode/reporting/reporting_builder.php:1985 +#: ../../godmode/reporting/visual_console_builder.php:668 +msgid "Main data" +msgstr "Main data" + +#: ../../operation/reporting/graph_viewer.php:143 +#: ../../godmode/reporting/graph_builder.php:209 +msgid "Graph editor" +msgstr "Graph editor" + +#: ../../operation/reporting/graph_viewer.php:149 +#: ../../godmode/reporting/graph_builder.php:212 +msgid "View graph" +msgstr "View graph" + +#: ../../operation/reporting/graph_viewer.php:154 +#: ../../operation/reporting/reporting_viewer.php:103 +#: ../../operation/visual_console/pure_ajax.php:136 +#: ../../operation/visual_console/render_view.php:139 +#: ../../operation/gis_maps/render_view.php:111 +#: ../../extensions/disabled/matrix_events.php:31 +#: ../../extensions/agents_modules.php:115 +#: ../../extensions/agents_alerts.php:91 +msgid "Full screen mode" +msgstr "Full screen mode" + +#: ../../operation/reporting/graph_viewer.php:184 +msgid "No data." +msgstr "No data." + +#: ../../operation/reporting/graph_viewer.php:207 +#: ../../operation/agentes/interface_traffic_graph_win.php:233 +#: ../../operation/agentes/stat_win.php:338 +#: ../../operation/agentes/graphs.php:136 +msgid "Time range" +msgstr "Time range" + +#: ../../operation/reporting/graph_viewer.php:216 +#: ../../operation/reporting/graph_viewer.php:239 +msgid "Graph defined" +msgstr "Graph defined" + +#: ../../operation/reporting/graph_viewer.php:217 +#: ../../include/functions_visual_map_editor.php:325 +#: ../../godmode/setup/setup_visuals.php:481 +#: ../../godmode/setup/setup_visuals.php:490 +#: ../../godmode/reporting/graph_builder.main.php:157 +msgid "Area" +msgstr "Area" + +#: ../../operation/reporting/graph_viewer.php:218 +#: ../../godmode/reporting/graph_builder.main.php:158 +msgid "Stacked area" +msgstr "Stacked area" + +#: ../../operation/reporting/graph_viewer.php:219 +#: ../../include/functions_visual_map_editor.php:63 +#: ../../include/functions_visual_map_editor.php:324 +#: ../../include/functions_visual_map_editor.php:612 +#: ../../godmode/setup/setup_visuals.php:484 +#: ../../godmode/setup/setup_visuals.php:493 +#: ../../godmode/reporting/visual_console_builder.elements.php:198 +#: ../../godmode/reporting/graph_builder.main.php:159 +msgid "Line" +msgstr "Line" + +#: ../../operation/reporting/graph_viewer.php:220 +#: ../../godmode/reporting/graph_builder.main.php:160 +msgid "Stacked line" +msgstr "Stacked line" + +#: ../../operation/reporting/graph_viewer.php:221 +#: ../../godmode/reporting/graph_builder.main.php:161 +msgid "Bullet chart" +msgstr "Bullet chart" + +#: ../../operation/reporting/graph_viewer.php:222 +#: ../../godmode/reporting/graph_builder.main.php:162 +msgid "Gauge" +msgstr "Gauge" + +#: ../../operation/reporting/graph_viewer.php:223 +msgid "Horizontal Bars" +msgstr "Horizontal Bars" + +#: ../../operation/reporting/graph_viewer.php:224 +msgid "Vertical Bars" +msgstr "Vertical Bars" + +#: ../../operation/reporting/graph_viewer.php:225 +#: ../../godmode/reporting/graph_builder.main.php:165 +msgid "Pie" +msgstr "Pie chart" + +#: ../../operation/reporting/graph_viewer.php:230 +#: ../../godmode/reporting/graph_builder.main.php:169 +msgid "Equalize maximum thresholds" +msgstr "Equalize maximum thresholds" + +#: ../../operation/reporting/graph_viewer.php:231 +#: ../../godmode/reporting/graph_builder.main.php:170 +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 "" +"If an option is selected, all graphs will have the highest value from all " +"modules included in the graph as a maximum threshold" + +#: ../../operation/reporting/graph_viewer.php:240 +msgid "Zoom x1" +msgstr "Zoom x1" + +#: ../../operation/reporting/graph_viewer.php:241 +msgid "Zoom x2" +msgstr "Zoom x2" + +#: ../../operation/reporting/graph_viewer.php:242 +msgid "Zoom x3" +msgstr "Zoom x3" + +#: ../../operation/reporting/graph_viewer.php:247 +#: ../../operation/visual_console/render_view.php:176 +#: ../../operation/visual_console/public_console.php:112 +#: ../../operation/servers/recon_view.php:49 +#: ../../extensions/agents_modules.php:101 +#: ../../extensions/agents_alerts.php:79 ../../general/login_page.php:46 +#: ../../general/login_page.php:199 +#: ../../include/functions_pandora_networkmap.php:751 +#: ../../include/ajax/module.php:807 +msgid "Refresh" +msgstr "Refresh" + +#: ../../operation/reporting/graph_viewer.php:310 +#: ../../operation/reporting/reporting_viewer.php:314 +msgid "Invalid date selected" +msgstr "Invalid date selected" + +#: ../../operation/reporting/graph_viewer.php:317 +msgid "Custom graph viewer" +msgstr "Custom graph viewer" + +#: ../../operation/reporting/graph_viewer.php:328 +#: ../../operation/search_graphs.php:33 ../../godmode/reporting/graphs.php:152 +msgid "Graph name" +msgstr "Graph name" + +#: ../../operation/reporting/reporting_viewer.php:77 +#: ../../godmode/netflow/nf_item_list.php:39 +msgid "Report list" +msgstr "Report list" + +#: ../../operation/reporting/reporting_viewer.php:86 +#: ../../godmode/reporting/reporting_builder.php:1960 +msgid "List items" +msgstr "List items" + +#: ../../operation/reporting/reporting_viewer.php:90 +#: ../../godmode/reporting/reporting_builder.php:1963 +msgid "Item editor" +msgstr "Item editor" + +#: ../../operation/reporting/reporting_viewer.php:98 +#: ../../godmode/reporting/reporting_builder.php:1972 +msgid "View report" +msgstr "View report" + +#: ../../operation/reporting/reporting_viewer.php:147 +msgid "View Report" +msgstr "View Report" + +#: ../../operation/reporting/reporting_viewer.php:186 +msgid "Set initial date" +msgstr "Set initial date" + +#: ../../operation/reporting/reporting_viewer.php:194 +#: ../../operation/agentes/gis_view.php:181 +#: ../../godmode/alerts/alert_list.list.php:532 +#: ../../godmode/alerts/alert_list.list.php:536 +#: ../../godmode/alerts/alert_templates.php:94 +#: ../../godmode/agentes/planned_downtime.list.php:143 +msgid "From" +msgstr "From" + +#: ../../operation/reporting/reporting_viewer.php:197 +#: ../../include/functions_reporting_html.php:119 +msgid "Items period before" +msgstr "Items period before" + +#: ../../operation/reporting/reporting_viewer.php:198 +#: ../../include/ajax/alert_list.ajax.php:159 +#: ../../include/functions_reporting.php:9962 +#: ../../godmode/alerts/alert_list.list.php:533 +#: ../../godmode/alerts/alert_list.list.php:619 +#: ../../godmode/alerts/alert_list.builder.php:99 +#: ../../godmode/alerts/alert_templates.php:96 +#: ../../godmode/massive/massive_add_action_alerts.php:185 +msgid "to" +msgstr "to" + +#: ../../operation/reporting/reporting_viewer.php:212 +msgid "Invalid date selected. Initial date must be before end date." +msgstr "Invalid date selected. Initial date must be before end date." + +#: ../../operation/reporting/reporting_viewer.php:234 +#: ../../extensions/system_info.php:496 ../../general/ui/agents_list.php:121 +#: ../../godmode/massive/massive_copy_modules.php:164 +msgid "Loading" +msgstr "Loading" + +#: ../../operation/tree.php:55 ../../operation/tree.php:94 +#: ../../operation/gis_maps/ajax.php:276 ../../operation/search_agents.php:45 +#: ../../operation/search_agents.php:53 +#: ../../operation/agentes/estado_generalagente.php:127 +#: ../../operation/agentes/estado_agente.php:507 +#: ../../mobile/operation/agents.php:73 ../../mobile/operation/agents.php:316 +#: ../../include/functions_reporting_html.php:2074 +#: ../../include/functions_events.php:2033 +#: ../../godmode/massive/massive_edit_agents.php:305 +#: ../../godmode/servers/manage_recontask_form.php:291 +#: ../../godmode/servers/manage_recontask.php:291 +#: ../../godmode/agentes/planned_downtime.editor.php:755 +#: ../../godmode/agentes/agent_manager.php:282 +#: ../../godmode/agentes/modificar_agente.php:485 +msgid "OS" +msgstr "OS" + +#: ../../operation/tree.php:61 +#: ../../operation/agentes/pandora_networkmap.php:400 +#: ../../extensions/files_repo/files_repo_form.php:65 +#: ../../mobile/operation/home.php:50 ../../mobile/operation/groups.php:66 +#: ../../mobile/include/functions_web.php:26 +#: ../../include/functions_maps.php:40 +#: ../../include/functions_networkmap.php:1632 +#: ../../godmode/reporting/visual_console_builder.wizard.php:260 +msgid "Groups" +msgstr "Groups" + +#: ../../operation/tree.php:67 ../../extensions/module_groups.php:325 +#: ../../godmode/menu.php:49 +msgid "Module groups" +msgstr "Module groups" + +#: ../../operation/tree.php:73 ../../operation/search_results.php:134 +#: ../../operation/search_agents.php:63 +#: ../../operation/agentes/exportdata.php:275 +#: ../../operation/agentes/group_view.php:121 +#: ../../operation/agentes/group_view.php:159 +#: ../../operation/agentes/estado_agente.php:522 +#: ../../operation/agentes/graphs.php:123 +#: ../../extensions/agents_modules.php:313 ../../mobile/operation/home.php:64 +#: ../../mobile/operation/agents.php:79 ../../mobile/operation/agents.php:327 +#: ../../mobile/operation/agents.php:328 ../../mobile/operation/agent.php:233 +#: ../../mobile/operation/modules.php:186 #: ../../include/functions_reports.php:563 #: ../../include/functions_reports.php:565 #: ../../include/functions_reports.php:567 @@ -1309,124 +3496,3521 @@ msgstr "There are no agents with modules" #: ../../include/functions_reports.php:573 #: ../../include/functions_reports.php:575 #: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:3246 -#: ../../mobile/operation/agent.php:233 ../../mobile/operation/agents.php:79 -#: ../../mobile/operation/agents.php:327 ../../mobile/operation/agents.php:328 -#: ../../mobile/operation/home.php:64 ../../mobile/operation/modules.php:186 -#: ../../operation/agentes/estado_agente.php:522 -#: ../../operation/agentes/exportdata.php:275 -#: ../../operation/agentes/graphs.php:123 -#: ../../operation/agentes/group_view.php:121 -#: ../../operation/agentes/group_view.php:159 -#: ../../operation/search_agents.php:63 ../../operation/search_results.php:134 -#: ../../operation/tree.php:73 -#: ../../enterprise/dashboard/widgets/agent_module.php:256 -#: ../../enterprise/dashboard/widgets/groups_status.php:160 -#: ../../enterprise/dashboard/widgets/service_map.php:98 -#: ../../enterprise/dashboard/widgets/top_n.php:332 -#: ../../enterprise/dashboard/widgets/tree_view.php:37 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:104 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93 -#: ../../enterprise/godmode/policies/policies.php:389 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:788 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:430 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:309 -#: ../../enterprise/godmode/policies/policy_modules.php:389 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:172 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:138 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:161 -#: ../../enterprise/include/functions_policies.php:3212 -#: ../../enterprise/include/functions_reporting_pdf.php:562 -#: ../../enterprise/include/functions_reporting_pdf.php:714 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 -#: ../../enterprise/meta/agentsearch.php:97 -#: ../../enterprise/meta/include/functions_wizard_meta.php:305 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1649 -#: ../../enterprise/meta/monitoring/group_view.php:99 -#: ../../enterprise/meta/monitoring/group_view.php:137 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:407 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:515 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:596 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:225 -#: ../../enterprise/operation/services/services.service_map.php:140 +#: ../../include/functions_reporting_html.php:3236 +#: ../../godmode/massive/massive_edit_plugins.php:308 +#: ../../godmode/massive/massive_delete_modules.php:479 +#: ../../godmode/massive/massive_copy_modules.php:144 +#: ../../godmode/massive/massive_edit_modules.php:308 +#: ../../godmode/massive/massive_delete_tags.php:199 +#: ../../godmode/massive/massive_add_tags.php:139 +#: ../../godmode/reporting/graph_builder.graph_editor.php:148 +#: ../../godmode/reporting/visual_console_builder.wizard.php:294 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1053 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1097 +#: ../../godmode/reporting/reporting_builder.list_items.php:164 +#: ../../godmode/reporting/reporting_builder.list_items.php:190 +#: ../../godmode/db/db_refine.php:95 +#: ../../godmode/servers/servers.build_table.php:68 +#: ../../godmode/agentes/configurar_agente.php:302 +#: ../../godmode/agentes/configurar_agente.php:535 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:437 +#: ../../godmode/agentes/planned_downtime.editor.php:757 +#: ../../godmode/agentes/planned_downtime.editor.php:831 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:311 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:804 +#: ../../godmode/agentes/modificar_agente.php:574 msgid "Modules" msgstr "Modules" -#: ../../extensions/agents_modules.php:347 -msgid "Previous modules" -msgstr "Previous modules" +#: ../../operation/tree.php:80 ../../include/functions_maps.php:37 +#: ../../include/functions_networkmap.php:1635 +msgid "Policies" +msgstr "Policies" -#: ../../extensions/agents_modules.php:386 -msgid "More modules" -msgstr "More modules" +#: ../../operation/tree.php:88 +#, php-format +msgid "Sort the agents by %s" +msgstr "Sort the agents by %s" -#: ../../extensions/agents_modules.php:506 -#: ../../extensions/module_groups.php:296 -#: ../../godmode/snmpconsole/snmp_alert.php:1343 -#: ../../include/functions_reporting_html.php:1444 -#: ../../operation/snmpconsole/snmp_view.php:935 -#: ../../enterprise/dashboard/widgets/service_map.php:49 -#: ../../enterprise/dashboard/widgets/service_map.php:74 -#: ../../enterprise/operation/services/services.service_map.php:116 -msgid "Legend" -msgstr "Graph Key" +#: ../../operation/tree.php:91 +msgid "tags" +msgstr "tags" -#: ../../extensions/agents_modules.php:507 -#: ../../include/functions_reporting_html.php:1445 -msgid "Orange cell when the module has fired alerts" -msgstr "Cell turns orange when there are alerts for that module" +#: ../../operation/tree.php:97 +msgid "groups" +msgstr "groups" -#: ../../extensions/agents_modules.php:508 -#: ../../include/functions_reporting_html.php:1446 -msgid "Red cell when the module has a critical status" -msgstr "Cell turns red when a module is in 'critical' status" +#: ../../operation/tree.php:100 +msgid "module groups" +msgstr "module groups" -#: ../../extensions/agents_modules.php:509 -#: ../../include/functions_reporting_html.php:1447 -msgid "Yellow cell when the module has a warning status" -msgstr "Cell turns yellow when a module is in 'warning' status" +#: ../../operation/tree.php:103 ../../godmode/setup/license.php:71 +#: ../../godmode/setup/license.php:74 ../../godmode/setup/license.php:77 +#: ../../godmode/setup/license.php:80 +msgid "modules" +msgstr "modules" -#: ../../extensions/agents_modules.php:510 -#: ../../include/functions_reporting_html.php:1448 -msgid "Green cell when the module has a normal status" -msgstr "Cell turns green when a module is in 'normal' status" +#: ../../operation/tree.php:107 +msgid "policies" +msgstr "policies" -#: ../../extensions/agents_modules.php:511 -#: ../../include/functions_reporting_html.php:1449 -msgid "Grey cell when the module has an unknown status" -msgstr "Cell turns grey when the module is in 'unknown' status" +#: ../../operation/tree.php:131 ../../operation/tree.php:156 +#: ../../operation/tree.php:303 ../../operation/netflow/nf_live_view.php:322 +#: ../../operation/agentes/status_monitor.php:299 +#: ../../operation/agentes/estado_monitores.php:450 +#: ../../operation/agentes/tactical.php:152 +#: ../../operation/agentes/group_view.php:171 +#: ../../operation/agentes/estado_agente.php:186 +#: ../../mobile/operation/agents.php:34 ../../mobile/operation/modules.php:39 +#: ../../include/functions_groups.php:821 +#: ../../include/functions_groups.php:823 +#: ../../include/functions_groups.php:825 +#: ../../include/functions_groups.php:826 +#: ../../include/functions_groups.php:827 +#: ../../include/functions_groups.php:835 +#: ../../include/functions_graph.php:2186 +#: ../../include/functions_graph.php:3284 +#: ../../include/functions_graph.php:3285 +#: ../../include/functions_graph.php:5231 +#: ../../include/functions_reporting_html.php:1567 +#: ../../include/functions_events.php:1465 ../../include/functions.php:873 +#: ../../include/functions.php:1077 ../../include/functions.php:1084 +#: ../../include/functions.php:1114 +#: ../../godmode/massive/massive_edit_agents.php:216 +#: ../../godmode/massive/massive_delete_agents.php:113 +#: ../../godmode/massive/massive_delete_modules.php:453 +#: ../../godmode/massive/massive_delete_modules.php:467 +#: ../../godmode/massive/massive_copy_modules.php:77 +#: ../../godmode/massive/massive_copy_modules.php:190 +#: ../../godmode/massive/massive_edit_modules.php:296 +#: ../../godmode/massive/massive_edit_modules.php:327 +#: ../../godmode/netflow/nf_edit_form.php:207 +msgid "Normal" +msgstr "Normal" -#: ../../extensions/agents_modules.php:512 -#: ../../include/functions_reporting_html.php:1450 -msgid "Cell turns grey when the module is in 'not initialize' status" -msgstr "Cell turns grey when the module is in 'not initialize' status" +#: ../../operation/tree.php:132 ../../operation/tree.php:157 +#: ../../operation/tree.php:288 ../../operation/netflow/nf_live_view.php:273 +#: ../../operation/gis_maps/render_view.php:150 +#: ../../operation/agentes/status_monitor.php:300 +#: ../../operation/agentes/estado_monitores.php:452 +#: ../../operation/agentes/tactical.php:151 +#: ../../operation/agentes/group_view.php:172 +#: ../../operation/agentes/estado_agente.php:187 +#: ../../mobile/operation/agents.php:35 ../../mobile/operation/modules.php:40 +#: ../../include/functions_groups.php:830 +#: ../../include/functions_groups.php:832 +#: ../../include/functions_groups.php:834 +#: ../../include/functions_groups.php:835 +#: ../../include/functions_groups.php:836 ../../include/functions_ui.php:234 +#: ../../include/functions_ui.php:2001 ../../include/functions_graph.php:2185 +#: ../../include/functions_graph.php:3292 +#: ../../include/functions_graph.php:3293 +#: ../../include/functions_graph.php:5234 +#: ../../include/functions_reporting_html.php:1571 +#: ../../include/functions_events.php:1468 ../../include/functions.php:876 +#: ../../include/functions.php:1079 ../../include/functions.php:1082 +#: ../../include/functions.php:1117 ../../godmode/setup/setup_netflow.php:70 +#: ../../godmode/massive/massive_edit_agents.php:217 +#: ../../godmode/massive/massive_edit_agents.php:407 +#: ../../godmode/massive/massive_delete_agents.php:114 +#: ../../godmode/massive/massive_delete_modules.php:454 +#: ../../godmode/massive/massive_delete_modules.php:468 +#: ../../godmode/massive/massive_copy_modules.php:78 +#: ../../godmode/massive/massive_copy_modules.php:191 +#: ../../godmode/massive/massive_edit_modules.php:297 +#: ../../godmode/massive/massive_edit_modules.php:328 +#: ../../godmode/servers/manage_recontask_form.php:189 +msgid "Warning" +msgstr "Warning" -#: ../../extensions/agents_modules.php:554 -msgid "Agents/Modules view" -msgstr "Agent/Module view" +#: ../../operation/tree.php:133 ../../operation/tree.php:158 +#: ../../operation/tree.php:283 ../../operation/gis_maps/render_view.php:149 +#: ../../operation/agentes/status_monitor.php:301 +#: ../../operation/agentes/estado_monitores.php:448 +#: ../../operation/agentes/tactical.php:150 +#: ../../operation/agentes/group_view.php:168 +#: ../../operation/agentes/group_view.php:173 +#: ../../operation/agentes/estado_agente.php:188 +#: ../../mobile/operation/agents.php:33 ../../mobile/operation/modules.php:41 +#: ../../include/functions_groups.php:839 +#: ../../include/functions_groups.php:841 +#: ../../include/functions_groups.php:843 +#: ../../include/functions_groups.php:844 +#: ../../include/functions_groups.php:845 ../../include/functions_ui.php:2001 +#: ../../include/functions_graph.php:2184 +#: ../../include/functions_graph.php:3300 +#: ../../include/functions_graph.php:3301 +#: ../../include/functions_graph.php:5237 +#: ../../include/functions_reporting_html.php:680 +#: ../../include/functions_reporting_html.php:1569 +#: ../../include/functions_reporting_html.php:2528 +#: ../../include/functions_events.php:1471 ../../include/functions.php:879 +#: ../../include/functions.php:1081 ../../include/functions.php:1082 +#: ../../include/functions.php:1084 ../../include/functions.php:1120 +#: ../../godmode/massive/massive_edit_agents.php:218 +#: ../../godmode/massive/massive_delete_agents.php:115 +#: ../../godmode/massive/massive_delete_modules.php:455 +#: ../../godmode/massive/massive_delete_modules.php:469 +#: ../../godmode/massive/massive_copy_modules.php:79 +#: ../../godmode/massive/massive_copy_modules.php:192 +#: ../../godmode/massive/massive_edit_modules.php:298 +#: ../../godmode/massive/massive_edit_modules.php:329 +msgid "Critical" +msgstr "Critical" + +#: ../../operation/tree.php:134 ../../operation/tree.php:159 +#: ../../operation/tree.php:293 ../../operation/agentes/status_monitor.php:302 +#: ../../operation/agentes/pandora_networkmap.view.php:245 +#: ../../operation/agentes/estado_monitores.php:453 +#: ../../operation/agentes/tactical.php:153 +#: ../../operation/agentes/group_view.php:166 +#: ../../operation/agentes/group_view.php:169 +#: ../../operation/agentes/estado_agente.php:189 +#: ../../mobile/operation/agents.php:36 ../../mobile/operation/modules.php:42 +#: ../../include/ajax/module.php:824 +#: ../../include/functions_visual_map.php:1580 +#: ../../include/functions_visual_map.php:1601 +#: ../../include/functions_visual_map.php:1617 +#: ../../include/functions_visual_map.php:1633 +#: ../../include/functions_filemanager.php:706 +#: ../../include/functions_groups.php:803 +#: ../../include/functions_groups.php:805 +#: ../../include/functions_groups.php:807 +#: ../../include/functions_groups.php:808 +#: ../../include/functions_groups.php:809 ../../include/functions_ui.php:449 +#: ../../include/functions_ui.php:450 ../../include/functions_reports.php:426 +#: ../../include/functions_graph.php:773 +#: ../../include/functions_graph.php:2187 +#: ../../include/functions_graph.php:3957 ../../include/functions_maps.php:46 +#: ../../include/graphs/functions_flot.php:459 +#: ../../include/functions_reporting_html.php:490 +#: ../../include/functions_reporting_html.php:569 +#: ../../include/functions_reporting_html.php:1552 +#: ../../include/functions_reporting_html.php:1573 +#: ../../include/functions_reporting_html.php:2036 +#: ../../include/functions_reporting_html.php:2198 +#: ../../include/functions_alerts.php:584 +#: ../../include/functions_events.php:1392 +#: ../../include/functions_events.php:2855 +#: ../../include/functions_reporting.php:3410 ../../include/functions.php:1032 +#: ../../godmode/alerts/alert_list.builder.php:209 +#: ../../godmode/massive/massive_edit_agents.php:219 +#: ../../godmode/massive/massive_delete_agents.php:116 +#: ../../godmode/massive/massive_delete_modules.php:456 +#: ../../godmode/massive/massive_delete_modules.php:470 +#: ../../godmode/massive/massive_copy_modules.php:80 +#: ../../godmode/massive/massive_copy_modules.php:193 +#: ../../godmode/massive/massive_edit_modules.php:299 +#: ../../godmode/massive/massive_edit_modules.php:330 +msgid "Unknown" +msgstr "Unknown" + +#: ../../operation/tree.php:135 ../../operation/tree.php:160 +#: ../../operation/tree.php:298 ../../operation/agentes/status_monitor.php:304 +#: ../../operation/agentes/tactical.php:154 +#: ../../operation/agentes/group_view.php:167 +#: ../../operation/agentes/estado_agente.php:191 +#: ../../mobile/operation/modules.php:44 +#: ../../include/functions_groups.php:812 +#: ../../include/functions_groups.php:814 +#: ../../include/functions_groups.php:816 +#: ../../include/functions_groups.php:817 +#: ../../include/functions_groups.php:818 +#: ../../include/functions_graph.php:2190 +#: ../../include/functions_reporting_html.php:1575 +#: ../../godmode/massive/massive_edit_agents.php:221 +#: ../../godmode/massive/massive_delete_agents.php:118 +#: ../../godmode/massive/massive_delete_modules.php:458 +#: ../../godmode/massive/massive_delete_modules.php:472 +#: ../../godmode/massive/massive_copy_modules.php:82 +#: ../../godmode/massive/massive_copy_modules.php:195 +#: ../../godmode/massive/massive_edit_modules.php:301 +#: ../../godmode/massive/massive_edit_modules.php:332 +msgid "Not init" +msgstr "Not initialised" + +#: ../../operation/tree.php:138 +msgid "Agent status" +msgstr "Agent status" + +#: ../../operation/tree.php:140 +msgid "Search agent" +msgstr "Search agent" + +#: ../../operation/tree.php:147 ../../operation/netflow/nf_live_view.php:320 +#: ../../operation/agentes/estado_monitores.php:474 +#: ../../operation/agentes/alerts_status.functions.php:116 +#: ../../operation/agentes/alerts_status.functions.php:126 +#: ../../operation/agentes/graphs.php:159 +#: ../../operation/incidents/incident.php:230 +#: ../../godmode/snmpconsole/snmp_alert.php:1014 +#: ../../godmode/snmpconsole/snmp_filters.php:96 +#: ../../godmode/snmpconsole/snmp_filters.php:132 +#: ../../godmode/reporting/reporting_builder.item_editor.php:663 +#: ../../godmode/reporting/reporting_builder.list_items.php:174 +#: ../../godmode/reporting/reporting_builder.list_items.php:197 +#: ../../godmode/netflow/nf_item_list.php:148 +#: ../../godmode/admin_access_logs.php:45 +#: ../../godmode/admin_access_logs.php:72 +#: ../../godmode/modules/manage_network_templates_form.php:242 +#: ../../godmode/modules/manage_network_templates_form.php:298 +#: ../../godmode/agentes/module_manager.php:49 ../../godmode/tag/tag.php:161 +msgid "Filter" +msgstr "Filter" + +#: ../../operation/tree.php:163 +#: ../../include/functions_reporting_html.php:2751 +msgid "Module status" +msgstr "Module status" + +#: ../../operation/tree.php:165 +msgid "Search module" +msgstr "Search module" + +#: ../../operation/tree.php:189 +msgid "Tree search" +msgstr "Tree search" + +#: ../../operation/tree.php:264 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 +msgid "No data found" +msgstr "No data found" + +#: ../../operation/tree.php:271 ../../mobile/operation/groups.php:125 +#: ../../include/functions_reporting_html.php:3459 +#: ../../include/functions_reporting.php:7216 ../../godmode/db/db_main.php:99 +msgid "Total agents" +msgstr "Total amount of agents" + +#: ../../operation/tree.php:272 +msgid "Total modules" +msgstr "Total modules" + +#: ../../operation/tree.php:273 ../../operation/agentes/group_view.php:165 +#: ../../operation/agentes/gis_view.php:194 +#: ../../include/functions_reporting_html.php:1550 +#: ../../include/functions_reporting_html.php:1565 +#: ../../godmode/db/db_audit.php:80 ../../godmode/db/db_event.php:61 +msgid "Total" +msgstr "Total" + +#: ../../operation/tree.php:276 ../../operation/tree.php:277 +#: ../../operation/tree.php:278 ../../include/functions_graph.php:2109 +#: ../../include/functions_reporting.php:7061 +#: ../../include/functions_reporting.php:7082 +msgid "Fired alerts" +msgstr "Triggered alerts" + +#: ../../operation/tree.php:281 +msgid "Critical agents" +msgstr "Critical agents" + +#: ../../operation/tree.php:282 ../../mobile/operation/groups.php:157 +msgid "Critical modules" +msgstr "Modules in critical status" + +#: ../../operation/tree.php:286 +msgid "Warning agents" +msgstr "Agents in 'Warning' status" + +#: ../../operation/tree.php:287 ../../mobile/operation/groups.php:153 +msgid "Warning modules" +msgstr "Modules in warning status" + +#: ../../operation/tree.php:291 +msgid "Unknown agents" +msgstr "Agents in 'Unknown' status" + +#: ../../operation/tree.php:292 ../../mobile/operation/groups.php:141 +msgid "Unknown modules" +msgstr "Unknown modules" + +#: ../../operation/tree.php:296 +msgid "Not init agents" +msgstr "Uninitialised agents" + +#: ../../operation/tree.php:297 ../../mobile/operation/groups.php:145 +msgid "Not init modules" +msgstr "Modules in uninitialised status" + +#: ../../operation/tree.php:301 +msgid "Normal agents" +msgstr "Agents in 'Normal' status" + +#: ../../operation/tree.php:302 ../../mobile/operation/groups.php:149 +msgid "Normal modules" +msgstr "Modules in normal status" + +#: ../../operation/tree.php:357 +#: ../../operation/agentes/status_monitor.php:1530 +#: ../../operation/agentes/estado_monitores.php:367 +msgid "Module: " +msgstr "Module: " + +#: ../../operation/netflow/nf_live_view.php:108 +#: ../../operation/netflow/nf_live_view.php:133 +#: ../../operation/netflow/nf_live_view.php:137 +msgid "Netflow live view" +msgstr "Netflow live view" + +#: ../../operation/netflow/nf_live_view.php:113 +#: ../../godmode/setup/setup_general.php:110 +#: ../../godmode/netflow/nf_edit.php:43 +msgid "Not supported in Windows systems" +msgstr "Not supported for Windows systems" + +#: ../../operation/netflow/nf_live_view.php:122 +#, php-format +msgid "nfdump binary (%s) not found!" +msgstr "nfdump binary (%s) not found!" + +#: ../../operation/netflow/nf_live_view.php:127 +msgid "Make sure nfdump version 1.6.8 or newer is installed!" +msgstr "Make sure that nfdump version 1.6.8 or newer is installed !" + +#: ../../operation/netflow/nf_live_view.php:132 +#: ../../operation/agentes/ver_agente.php:961 +#: ../../godmode/netflow/nf_item_list.php:57 +#: ../../godmode/netflow/nf_edit_form.php:65 +#: ../../godmode/netflow/nf_edit.php:47 +msgid "Main" +msgstr "Main" + +#: ../../operation/netflow/nf_live_view.php:149 +msgid "Error creating filter" +msgstr "Error creating filter" + +#: ../../operation/netflow/nf_live_view.php:152 +msgid "Filter created successfully" +msgstr "Filter created successfully" + +#: ../../operation/netflow/nf_live_view.php:167 +msgid "Filter updated successfully" +msgstr "Filter updated successfully" + +#: ../../operation/netflow/nf_live_view.php:168 +msgid "Error updating filter" +msgstr "Error updating filter" + +#: ../../operation/netflow/nf_live_view.php:193 +msgid "Draw live filter" +msgstr "Draw live filter" + +#: ../../operation/netflow/nf_live_view.php:224 +msgid "Connection" +msgstr "Connection" + +#: ../../operation/netflow/nf_live_view.php:240 +#: ../../godmode/agentes/planned_downtime.editor.php:510 +#: ../../godmode/agentes/planned_downtime.editor.php:521 +msgid "Date format in Pandora is year/month/day" +msgstr "Date format for Pandora FMS is YY/MM/DD" + +#: ../../operation/netflow/nf_live_view.php:242 +#: ../../godmode/alerts/configure_alert_template.php:540 +#: ../../godmode/alerts/configure_alert_template.php:544 +#: ../../godmode/reporting/reporting_builder.item_editor.php:848 +#: ../../godmode/reporting/reporting_builder.item_editor.php:857 +#: ../../godmode/agentes/planned_downtime.editor.php:512 +#: ../../godmode/agentes/planned_downtime.editor.php:523 +#: ../../godmode/agentes/planned_downtime.editor.php:591 +#: ../../godmode/agentes/planned_downtime.editor.php:599 +msgid "Time format in Pandora is hours(24h):minutes:seconds" +msgstr "Watch format in Pandora FMS is hours (24h):minutes:seconds" + +#: ../../operation/netflow/nf_live_view.php:245 +#: ../../operation/servers/recon_view.php:92 +#: ../../operation/search_modules.php:50 ../../operation/search_agents.php:46 +#: ../../operation/search_agents.php:56 +#: ../../operation/agentes/status_monitor.php:966 +#: ../../operation/agentes/estado_generalagente.php:200 +#: ../../operation/agentes/estado_agente.php:512 +#: ../../mobile/operation/modules.php:540 +#: ../../mobile/operation/modules.php:543 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:755 +#: ../../include/functions_treeview.php:85 +#: ../../include/functions_treeview.php:581 +#: ../../include/functions_reporting_html.php:2110 +#: ../../godmode/massive/massive_edit_agents.php:301 +#: ../../godmode/massive/massive_edit_modules.php:464 +#: ../../godmode/servers/manage_recontask_form.php:252 +#: ../../godmode/servers/manage_recontask.php:291 +#: ../../godmode/modules/manage_network_components_form_common.php:104 +#: ../../godmode/agentes/module_manager_editor_common.php:379 +#: ../../godmode/agentes/module_manager_editor_common.php:405 +#: ../../godmode/agentes/agent_manager.php:276 +#: ../../godmode/agentes/module_manager.php:560 +msgid "Interval" +msgstr "Interval" + +#: ../../operation/netflow/nf_live_view.php:248 +#: ../../include/functions_netflow.php:1134 +#: ../../include/functions_netflow.php:1144 +#: ../../include/functions_netflow.php:1161 +#: ../../include/functions_netflow.php:1169 +#: ../../include/functions_netflow.php:1193 +#: ../../godmode/reporting/reporting_builder.item_editor.php:735 +msgid "Resolution" +msgstr "Resolution" + +#: ../../operation/netflow/nf_live_view.php:248 +msgid "The interval will be divided in chunks the length of the resolution." +msgstr "The interval will be divided in chunks the length of the resolution." + +#: ../../operation/netflow/nf_live_view.php:258 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1276 +#: ../../godmode/netflow/nf_item_list.php:150 +msgid "Max. values" +msgstr "Max. values" + +#: ../../operation/netflow/nf_live_view.php:274 +#: ../../godmode/setup/setup_netflow.php:70 +msgid "IP address resolution can take a lot of time" +msgstr "This process can take a long time" + +#: ../../operation/netflow/nf_live_view.php:283 +msgid "IP address resolution" +msgstr "IP Address Resolution" + +#: ../../operation/netflow/nf_live_view.php:284 +#: ../../godmode/setup/setup_netflow.php:69 +msgid "Resolve the IP addresses to get their hostnames." +msgstr "Resolves IP addresses in order to obtain the hostname" + +#: ../../operation/netflow/nf_live_view.php:305 +#: ../../operation/search_users.php:41 ../../operation/gis_maps/gis_map.php:89 +#: ../../operation/search_helps.php:36 ../../operation/search_maps.php:31 +#: ../../operation/agentes/pandora_networkmap.php:398 +#: ../../operation/agentes/pandora_networkmap.editor.php:180 +#: ../../extensions/files_repo/files_repo_list.php:58 +#: ../../mobile/operation/networkmaps.php:195 +#: ../../mobile/operation/visualmaps.php:139 +#: ../../include/functions_pandora_networkmap.php:1385 +#: ../../include/functions_pandora_networkmap.php:1418 +#: ../../include/functions_pandora_networkmap.php:1579 +#: ../../include/functions_filemanager.php:580 +#: ../../include/functions_treeview.php:79 +#: ../../include/functions_reporting_html.php:808 +#: ../../include/functions_reporting_html.php:817 +#: ../../include/functions_reporting_html.php:1640 +#: ../../include/functions_reporting_html.php:2104 +#: ../../include/functions_reporting_html.php:3809 +#: ../../include/functions_events.php:2018 +#: ../../include/functions_events.php:2068 +#: ../../godmode/alerts/alert_actions.php:340 +#: ../../godmode/alerts/alert_commands.php:330 +#: ../../godmode/alerts/configure_alert_command.php:146 +#: ../../godmode/alerts/configure_alert_action.php:112 +#: ../../godmode/alerts/configure_alert_template.php:747 +#: ../../godmode/alerts/alert_templates.php:298 +#: ../../godmode/setup/os.list.php:34 ../../godmode/setup/os.builder.php:35 +#: ../../godmode/events/event_filter.php:108 +#: ../../godmode/events/event_responses.editor.php:76 +#: ../../godmode/events/event_responses.list.php:54 +#: ../../godmode/users/user_list.php:269 ../../godmode/users/user_list.php:403 +#: ../../godmode/reporting/reporting_builder.main.php:65 +#: ../../godmode/reporting/reporting_builder.main.php:67 +#: ../../godmode/reporting/reporting_builder.item_editor.php:653 +#: ../../godmode/reporting/reporting_builder.list_items.php:303 +#: ../../godmode/reporting/graph_builder.main.php:103 +#: ../../godmode/netflow/nf_edit_form.php:189 +#: ../../godmode/netflow/nf_edit.php:118 +#: ../../godmode/servers/manage_recontask.php:291 +#: ../../godmode/servers/recon_script.php:95 +#: ../../godmode/servers/recon_script.php:348 +#: ../../godmode/servers/servers.build_table.php:64 +#: ../../godmode/servers/modificar_server.php:46 +#: ../../godmode/servers/plugin.php:293 ../../godmode/servers/plugin.php:735 +#: ../../godmode/category/edit_category.php:155 +#: ../../godmode/groups/configure_modu_group.php:69 +#: ../../godmode/groups/group_list.php:336 +#: ../../godmode/groups/configure_group.php:116 +#: ../../godmode/groups/modu_group_list.php:183 +#: ../../godmode/modules/module_list.php:59 +#: ../../godmode/modules/manage_nc_groups.php:194 +#: ../../godmode/modules/manage_nc_groups_form.php:67 +#: ../../godmode/modules/manage_network_templates_form.php:144 +#: ../../godmode/modules/manage_network_components_form_common.php:54 +#: ../../godmode/modules/manage_network_templates.php:190 +#: ../../godmode/agentes/module_manager_editor_common.php:149 +#: ../../godmode/agentes/module_manager_editor_common.php:655 +#: ../../godmode/agentes/configure_field.php:48 +#: ../../godmode/agentes/planned_downtime.editor.php:478 +#: ../../godmode/agentes/planned_downtime.editor.php:753 +#: ../../godmode/agentes/module_manager.php:545 ../../godmode/tag/tag.php:156 +#: ../../godmode/tag/edit_tag.php:169 +msgid "Name" +msgstr "Name" + +#: ../../operation/netflow/nf_live_view.php:323 +#: ../../godmode/alerts/alert_commands.php:152 +#: ../../godmode/alerts/alert_commands.php:162 +#: ../../godmode/alerts/configure_alert_template.php:693 +#: ../../godmode/alerts/configure_alert_template.php:707 +#: ../../godmode/alerts/configure_alert_template.php:776 +#: ../../godmode/users/configure_user.php:533 +#: ../../godmode/netflow/nf_edit_form.php:208 +#: ../../godmode/modules/manage_network_components_form_common.php:60 +msgid "Advanced" +msgstr "Advanced" + +#: ../../operation/netflow/nf_live_view.php:335 +msgid "Select a filter" +msgstr "Select a filter" + +#: ../../operation/netflow/nf_live_view.php:349 +#: ../../godmode/netflow/nf_edit_form.php:210 +msgid "Dst Ip" +msgstr "DST IP" + +#: ../../operation/netflow/nf_live_view.php:349 +#: ../../godmode/netflow/nf_edit_form.php:210 +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 "" +"Destination IP: a list of destined IPs separated by commas. Leaving this " +"field blank will show all IPs. Example: filter by IP number: " +"
    25.46.157.214,160.253.135.249" + +#: ../../operation/netflow/nf_live_view.php:358 +#: ../../godmode/netflow/nf_edit_form.php:213 +msgid "Src Ip" +msgstr "SRC IP" + +#: ../../operation/netflow/nf_live_view.php:358 +#: ../../godmode/netflow/nf_edit_form.php:213 +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 "" +"Source IP: a list of source IPs separated by commas. Leaving this field " +"blank will show all IPs. Example: filter by IP " +"number:
    25.46.157.214,160.253.135.249" + +#: ../../operation/netflow/nf_live_view.php:370 +#: ../../operation/netflow/nf_live_view.php:399 +#: ../../godmode/netflow/nf_edit_form.php:216 +#: ../../godmode/netflow/nf_edit_form.php:226 +msgid "Dst Port" +msgstr "DST port" + +#: ../../operation/netflow/nf_live_view.php:370 +#: ../../godmode/netflow/nf_edit_form.php:216 +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 "" +"Destination port: a list of possible destination ports, separated by commas. " +"If we leave this field blank, all ports will be shown. Example: filtering by " +"ports 80 and 22:
    80,22" + +#: ../../operation/netflow/nf_live_view.php:379 +#: ../../operation/netflow/nf_live_view.php:399 +#: ../../godmode/netflow/nf_edit_form.php:219 +#: ../../godmode/netflow/nf_edit_form.php:226 +msgid "Src Port" +msgstr "SRC Port" + +#: ../../operation/netflow/nf_live_view.php:379 +#: ../../godmode/netflow/nf_edit_form.php:219 +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 "" +"Source Port: a list of possible source ports, separated by commas. If we " +"leave this field blank, all ports will be shown. Example: filter by ports 80 " +"and 22:
    80,22" + +#: ../../operation/netflow/nf_live_view.php:397 +#: ../../godmode/netflow/nf_edit_form.php:225 +msgid "Aggregate by" +msgstr "Aggregate by" + +#: ../../operation/netflow/nf_live_view.php:399 +#: ../../include/functions_netflow.php:1660 +#: ../../godmode/netflow/nf_edit_form.php:226 +msgid "Protocol" +msgstr "Protocol" + +#: ../../operation/netflow/nf_live_view.php:399 +#: ../../godmode/netflow/nf_edit_form.php:226 +msgid "Src Ip Address" +msgstr "SRC IP address" + +#: ../../operation/netflow/nf_live_view.php:399 +#: ../../godmode/netflow/nf_edit_form.php:226 +msgid "Dst Ip Address" +msgstr "DST IP address" + +#: ../../operation/netflow/nf_live_view.php:402 +msgid "Router ip" +msgstr "Router IP" + +#: ../../operation/netflow/nf_live_view.php:405 +#: ../../godmode/netflow/nf_edit_form.php:230 +msgid "Output format" +msgstr "Output format" + +#: ../../operation/netflow/nf_live_view.php:406 +#: ../../include/functions_netflow.php:1640 +#: ../../include/functions_config.php:447 +#: ../../include/functions_config.php:1494 +msgid "Bytes" +msgstr "Bytes" + +#: ../../operation/netflow/nf_live_view.php:406 +msgid "Bytes per second" +msgstr "Bytes per second" + +#: ../../operation/netflow/nf_live_view.php:406 +#: ../../godmode/netflow/nf_edit_form.php:231 +msgid "Kilobytes" +msgstr "Kilobytes" + +#: ../../operation/netflow/nf_live_view.php:406 +#: ../../godmode/netflow/nf_edit_form.php:231 +msgid "Megabytes" +msgstr "Megabytes" + +#: ../../operation/netflow/nf_live_view.php:406 +#: ../../godmode/netflow/nf_edit_form.php:231 +msgid "Kilobytes per second" +msgstr "Kilobytes per second" + +#: ../../operation/netflow/nf_live_view.php:406 +#: ../../godmode/netflow/nf_edit_form.php:231 +msgid "Megabytes per second" +msgstr "Megabytes per second" + +#: ../../operation/netflow/nf_live_view.php:417 +msgid "Draw" +msgstr "Draw" + +#: ../../operation/netflow/nf_live_view.php:421 +msgid "Save as new filter" +msgstr "Save as a new filter" + +#: ../../operation/netflow/nf_live_view.php:422 +msgid "Update current filter" +msgstr "Update current filter" + +#: ../../operation/netflow/nf_live_view.php:436 +msgid "No filter selected" +msgstr "No filter selected" + +#: ../../operation/visual_console/pure_ajax.php:96 +#: ../../operation/visual_console/render_view.php:96 +#: ../../godmode/reporting/visual_console_builder.php:662 +msgid "Visual consoles list" +msgstr "Visual consoles list" + +#: ../../operation/visual_console/pure_ajax.php:105 +#: ../../operation/visual_console/render_view.php:108 +#: ../../operation/gis_maps/render_view.php:128 +#: ../../godmode/reporting/visual_console_builder.php:665 +msgid "Show link to public Visual Console" +msgstr "Show link to public Visual Console" + +#: ../../operation/visual_console/pure_ajax.php:113 +#: ../../operation/visual_console/render_view.php:116 +#: ../../godmode/reporting/visual_console_builder.php:671 +msgid "List elements" +msgstr "List elements" + +#: ../../operation/visual_console/pure_ajax.php:118 +#: ../../operation/visual_console/render_view.php:121 +#: ../../godmode/reporting/visual_console_builder.php:676 +msgid "Services wizard" +msgstr "Services wizard" + +#: ../../operation/visual_console/pure_ajax.php:123 +#: ../../operation/visual_console/render_view.php:126 +#: ../../godmode/reporting/visual_console_builder.wizard.php:354 +#: ../../godmode/reporting/visual_console_builder.php:681 +msgid "Wizard" +msgstr "Wizard" + +#: ../../operation/visual_console/pure_ajax.php:126 +#: ../../operation/visual_console/render_view.php:129 +#: ../../godmode/reporting/visual_console_builder.php:684 +msgid "Builder" +msgstr "Builder" + +#: ../../operation/visual_console/pure_ajax.php:130 +#: ../../operation/visual_console/render_view.php:133 +#: ../../operation/agentes/estado_agente.php:577 +#: ../../godmode/setup/setup_visuals.php:165 +#: ../../godmode/setup/setup_visuals.php:185 +#: ../../godmode/setup/setup_visuals.php:204 +#: ../../godmode/setup/setup_visuals.php:220 +#: ../../godmode/setup/setup_visuals.php:292 +#: ../../godmode/reporting/visual_console_builder.php:687 +#: ../../godmode/servers/manage_recontask.php:32 +#: ../../godmode/agentes/configurar_agente.php:281 +#: ../../godmode/agentes/modificar_agente.php:52 +#: ../../godmode/agentes/modificar_agente.php:582 +msgid "View" +msgstr "View" -#: ../../extensions/agents_modules.php:574 -#: ../../operation/events/events.php:579 -#: ../../operation/visual_console/public_console.php:153 #: ../../operation/visual_console/render_view.php:232 +#: ../../operation/visual_console/public_console.php:153 msgid "Until refresh" msgstr "Until refresh" +#: ../../operation/visual_console/public_console.php:130 +#: ../../general/header.php:147 +msgid "QR code of the page" +msgstr "Page QR Code" + +#: ../../operation/search_users.php:44 +#: ../../general/login_identification_wizard.php:170 +#: ../../general/login_identification_wizard.php:171 +#: ../../godmode/tag/tag.php:203 ../../godmode/tag/edit_tag.php:195 +msgid "Email" +msgstr "E-mail" + +#: ../../operation/search_users.php:47 ../../operation/gis_maps/ajax.php:219 +#: ../../operation/gis_maps/ajax.php:321 ../../operation/search_agents.php:66 +#: ../../operation/agentes/ver_agente.php:696 +#: ../../operation/agentes/estado_generalagente.php:205 +#: ../../operation/agentes/estado_agente.php:531 +#: ../../mobile/operation/agents.php:85 ../../mobile/operation/agents.php:337 +#: ../../mobile/operation/agents.php:339 ../../mobile/operation/agents.php:341 +#: ../../mobile/operation/agents.php:342 ../../mobile/operation/agent.php:161 +#: ../../include/ajax/module.php:751 ../../include/functions_treeview.php:602 +#: ../../include/functions_events.php:2038 +#: ../../godmode/users/user_list.php:272 +#: ../../godmode/agentes/planned_downtime.editor.php:756 +msgid "Last contact" +msgstr "Last contact" + +#: ../../operation/search_users.php:50 +msgid "Profile" +msgstr "Profile" + +#: ../../operation/search_users.php:63 ../../godmode/users/user_list.php:275 +#: ../../godmode/users/user_list.php:413 +msgid "Admin" +msgstr "Admin" + +#: ../../operation/search_users.php:64 +#: ../../godmode/users/configure_user.php:468 +#: ../../godmode/users/user_list.php:414 +msgid "Administrator" +msgstr "Administrator" + +#: ../../operation/search_users.php:69 +#: ../../godmode/users/configure_user.php:473 +msgid "Standard User" +msgstr "Standard User" + +#: ../../operation/search_users.php:82 ../../godmode/users/user_list.php:457 +msgid "The user doesn't have any assigned profile/group" +msgstr "The user doesn't have any assigned profile/group" + +#: ../../operation/gis_maps/gis_map.php:29 +#: ../../godmode/gis_maps/configure_gis_map.php:214 +msgid "GIS Maps list" +msgstr "List of GIS maps" + +#: ../../operation/gis_maps/gis_map.php:94 +#: ../../godmode/alerts/alert_list.list.php:412 +#: ../../godmode/alerts/alert_templates.php:302 +#: ../../godmode/users/profile_list.php:327 +#: ../../godmode/users/user_list.php:278 +#: ../../godmode/reporting/reporting_builder.php:567 +#: ../../godmode/reporting/reporting_builder.php:687 +#: ../../godmode/reporting/reporting_builder.list_items.php:305 +#: ../../godmode/reporting/graphs.php:163 +#: ../../godmode/servers/servers.build_table.php:76 +#: ../../godmode/servers/plugin.php:739 +msgid "Op." +msgstr "Op." + +#: ../../operation/gis_maps/gis_map.php:175 +msgid "No maps found" +msgstr "No maps found" + +#: ../../operation/gis_maps/gis_map.php:182 +#: ../../operation/incidents/incident_detail.php:379 +#: ../../include/functions_filemanager.php:617 +#: ../../include/functions_filemanager.php:654 +#: ../../include/functions_visual_map_editor.php:470 +#: ../../godmode/snmpconsole/snmp_alert.php:980 +#: ../../godmode/snmpconsole/snmp_alert.php:1339 +#: ../../godmode/snmpconsole/snmp_filters.php:108 +#: ../../godmode/snmpconsole/snmp_filters.php:156 +#: ../../godmode/alerts/configure_alert_special_days.php:106 +#: ../../godmode/alerts/alert_special_days.php:464 +#: ../../godmode/alerts/alert_special_days.php:482 +#: ../../godmode/alerts/alert_actions.php:403 +#: ../../godmode/alerts/alert_commands.php:377 +#: ../../godmode/alerts/configure_alert_command.php:202 +#: ../../godmode/alerts/configure_alert_action.php:227 +#: ../../godmode/alerts/alert_list.list.php:742 +#: ../../godmode/alerts/alert_list.php:329 +#: ../../godmode/alerts/alert_templates.php:363 +#: ../../godmode/setup/news.php:204 ../../godmode/setup/gis.php:93 +#: ../../godmode/setup/os.php:52 ../../godmode/setup/os.php:76 +#: ../../godmode/setup/links.php:117 +#: ../../godmode/events/event_edit_filter.php:405 +#: ../../godmode/events/event_responses.editor.php:134 +#: ../../godmode/massive/massive_add_profiles.php:117 +#: ../../godmode/users/configure_user.php:588 +#: ../../godmode/users/profile_list.php:404 +#: ../../godmode/reporting/map_builder.php:312 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1186 +#: ../../godmode/reporting/graph_builder.main.php:186 +#: ../../godmode/netflow/nf_edit_form.php:244 +#: ../../godmode/servers/manage_recontask.php:392 +#: ../../godmode/servers/recon_script.php:220 +#: ../../godmode/servers/plugin.php:542 +#: ../../godmode/category/edit_category.php:174 +#: ../../godmode/groups/configure_modu_group.php:87 +#: ../../godmode/groups/configure_group.php:225 +#: ../../godmode/modules/manage_nc_groups.php:245 +#: ../../godmode/modules/manage_nc_groups_form.php:84 +#: ../../godmode/modules/manage_network_components.php:645 +#: ../../godmode/modules/manage_network_components_form.php:279 +#: ../../godmode/modules/manage_network_templates_form.php:157 +#: ../../godmode/modules/manage_network_templates.php:237 +#: ../../godmode/agentes/module_manager_editor.php:540 +#: ../../godmode/agentes/configure_field.php:65 +#: ../../godmode/agentes/agent_manager.php:495 +#: ../../godmode/agentes/module_manager.php:136 +#: ../../godmode/agentes/planned_downtime.list.php:366 +#: ../../godmode/agentes/planned_downtime.list.php:516 +#: ../../godmode/tag/edit_tag.php:232 +msgid "Create" +msgstr "Create" + +#: ../../operation/gis_maps/gis_map.php:194 +msgid "Caution: Do you want delete the map?" +msgstr "Caution: Do you want delete the map?" + +#: ../../operation/gis_maps/gis_map.php:201 +msgid "Do you want to set default the map?" +msgstr "Do you wish to set this map as default?" + +#: ../../operation/gis_maps/gis_map.php:209 +msgid "There was error on setup the default map." +msgstr "There was an error setting up the default map" + +#: ../../operation/gis_maps/ajax.php:217 ../../operation/gis_maps/ajax.php:254 +msgid "Position (Lat, Long, Alt)" +msgstr "Position (Lat, Long, Alt)" + +#: ../../operation/gis_maps/ajax.php:218 +msgid "Start contact" +msgstr "Start contact" + +#: ../../operation/gis_maps/ajax.php:220 +msgid "Num reports" +msgstr "Num reports" + +#: ../../operation/gis_maps/ajax.php:222 +#: ../../operation/agentes/gis_view.php:186 +msgid "Manual placement" +msgstr "Manual placement" + +#: ../../operation/gis_maps/ajax.php:258 +msgid "Default position of map." +msgstr "Default map position" + +#: ../../operation/gis_maps/ajax.php:269 +#: ../../include/functions_treeview.php:575 +#: ../../include/functions_reporting_html.php:2249 +#: ../../include/functions_reporting_html.php:2292 +#: ../../include/functions_events.php:2028 +#: ../../godmode/servers/modificar_server.php:47 +#: ../../godmode/agentes/agent_manager.php:211 +msgid "IP Address" +msgstr "IP Address" + +#: ../../operation/gis_maps/ajax.php:293 ../../extensions/api_checker.php:201 +#: ../../godmode/events/event_responses.editor.php:114 +#: ../../godmode/events/event_responses.editor.php:121 +#: ../../godmode/events/event_responses.editor.php:124 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1238 +msgid "URL" +msgstr "URL" + +#: ../../operation/gis_maps/ajax.php:315 +#: ../../operation/agentes/estado_generalagente.php:159 +#: ../../include/functions_treeview.php:642 +msgid "Agent Version" +msgstr "Agent Version" + +#: ../../operation/gis_maps/ajax.php:323 ../../operation/gis_maps/ajax.php:334 +#: ../../operation/agentes/estado_generalagente.php:210 +#: ../../include/functions_ui.php:449 ../../include/functions_treeview.php:595 +#: ../../godmode/snmpconsole/snmp_alert.php:1217 +#: ../../godmode/db/db_main.php:183 +msgid "Never" +msgstr "Never" + +#: ../../operation/gis_maps/ajax.php:332 +#: ../../operation/agentes/estado_generalagente.php:205 +#: ../../operation/agentes/estado_agente.php:501 +#: ../../include/functions_treeview.php:602 +msgid "Remote" +msgstr "Remote" + +#: ../../operation/gis_maps/render_view.php:119 +#: ../../operation/agentes/estado_agente.php:135 ../../godmode/menu.php:231 +#: ../../godmode/menu.php:238 ../../godmode/agentes/configurar_agente.php:293 +#: ../../godmode/agentes/configurar_agente.php:520 +msgid "Setup" +msgstr "Setup" + +#: ../../operation/gis_maps/render_view.php:135 +#: ../../include/functions.php:2583 +msgid "5 seconds" +msgstr "5 seconds" + +#: ../../operation/gis_maps/render_view.php:136 +#: ../../include/functions.php:2584 +msgid "10 seconds" +msgstr "10 seconds" + +#: ../../operation/gis_maps/render_view.php:137 +#: ../../include/functions.php:2586 +msgid "30 seconds" +msgstr "30 seconds" + +#: ../../operation/gis_maps/render_view.php:138 +#: ../../extensions/agents_modules.php:104 +#: ../../extensions/agents_alerts.php:82 ../../include/functions.php:2587 +msgid "1 minute" +msgstr "1 minute" + +#: ../../operation/gis_maps/render_view.php:139 +#: ../../extensions/agents_modules.php:105 +#: ../../extensions/agents_alerts.php:83 ../../include/functions.php:2588 +msgid "2 minutes" +msgstr "2 minutes" + +#: ../../operation/gis_maps/render_view.php:140 +#: ../../extensions/agents_modules.php:106 +#: ../../extensions/agents_alerts.php:84 ../../include/ajax/module.php:132 +#: ../../include/functions.php:2589 +msgid "5 minutes" +msgstr "5 minutes" + +#: ../../operation/gis_maps/render_view.php:141 +#: ../../extensions/agents_modules.php:107 +#: ../../extensions/agents_alerts.php:85 +msgid "10 minutes" +msgstr "10 minutes" + +#: ../../operation/gis_maps/render_view.php:142 +#: ../../include/ajax/module.php:134 ../../include/functions_netflow.php:1052 +#: ../../include/functions_netflow.php:1085 ../../include/functions.php:2022 +#: ../../include/functions.php:2592 ../../godmode/setup/performance.php:105 +msgid "1 hour" +msgstr "1 hour" + +#: ../../operation/gis_maps/render_view.php:143 +#: ../../include/functions_netflow.php:1053 +#: ../../include/functions_netflow.php:1086 +msgid "2 hours" +msgstr "2 hours" + +#: ../../operation/gis_maps/render_view.php:145 +msgid "Refresh: " +msgstr "Refresh: " + +#: ../../operation/gis_maps/render_view.php:151 +#: ../../include/functions_config.php:531 +#: ../../include/functions_config.php:1551 +#: ../../godmode/massive/massive_edit_agents.php:405 +msgid "Ok" +msgstr "Ok" + +#: ../../operation/gis_maps/render_view.php:154 +msgid "Show agents by state: " +msgstr "Show agents according to status: " + +#: ../../operation/gis_maps/render_view.php:157 +msgid "Map" +msgstr "Map" + +#: ../../operation/messages/message_edit.php:35 +#: ../../operation/messages/message_list.php:32 +msgid "Received messages" +msgstr "Received messages" + +#: ../../operation/messages/message_edit.php:39 +#: ../../operation/messages/message_list.php:36 +msgid "Sent messages" +msgstr "Sent messages" + +#: ../../operation/messages/message_edit.php:43 +#: ../../operation/messages/message_list.php:40 +#: ../../operation/messages/message_list.php:226 +msgid "Create message" +msgstr "Create message" + +#: ../../operation/messages/message_edit.php:60 +msgid "This message does not exist in the system" +msgstr "This message doesn't exist on the system." + +#: ../../operation/messages/message_edit.php:79 +#: ../../operation/messages/message_edit.php:160 +#: ../../operation/messages/message_list.php:125 +msgid "Sender" +msgstr "Sender" + +#: ../../operation/messages/message_edit.php:80 +msgid "at" +msgstr "at" + +#: ../../operation/messages/message_edit.php:82 +#: ../../operation/messages/message_edit.php:169 +#: ../../operation/messages/message_list.php:123 +msgid "Destination" +msgstr "Destination" + +#: ../../operation/messages/message_edit.php:85 +#: ../../operation/messages/message_edit.php:207 +#: ../../operation/messages/message_list.php:126 +#: ../../godmode/setup/news.php:161 ../../godmode/setup/news.php:220 +#: ../../godmode/update_manager/update_manager.messages.php:136 +msgid "Subject" +msgstr "Subject" + +#: ../../operation/messages/message_edit.php:104 +msgid "wrote" +msgstr "wrote" + +#: ../../operation/messages/message_edit.php:119 +msgid "Reply" +msgstr "Reply" + +#: ../../operation/messages/message_edit.php:136 +#, php-format +msgid "Message successfully sent to user %s" +msgstr "Message successfully sent to user %s" + +#: ../../operation/messages/message_edit.php:137 +#, php-format +msgid "Error sending message to user %s" +msgstr "Error sending message to user %s" + +#: ../../operation/messages/message_edit.php:145 +msgid "Message successfully sent" +msgstr "Message successfully sent" + +#: ../../operation/messages/message_edit.php:146 +#, php-format +msgid "Error sending message to group %s" +msgstr "Error sending message to group %s" + +#: ../../operation/messages/message_edit.php:203 +msgid "Select user" +msgstr "Select user" + +#: ../../operation/messages/message_edit.php:204 +msgid "OR" +msgstr "OR" + +#: ../../operation/messages/message_edit.php:205 +msgid "Select group" +msgstr "Select group" + +#: ../../operation/messages/message_list.php:74 +msgid "Not deleted. Error deleting messages" +msgstr "Not deleted: error deleting the message(s)." + +#: ../../operation/messages/message_list.php:80 +#: ../../operation/messages/message_list.php:88 +msgid "You have" +msgstr "You have" + +#: ../../operation/messages/message_list.php:81 +msgid "sent message(s)" +msgstr "message(s) sent" + +#: ../../operation/messages/message_list.php:89 +msgid "unread message(s)" +msgstr "unread message(s)" + +#: ../../operation/messages/message_list.php:97 +msgid "There are no messages." +msgstr "There are no messages." + +#: ../../operation/messages/message_list.php:136 +msgid "Click to read" +msgstr "Click to read" + +#: ../../operation/messages/message_list.php:141 +msgid "Mark as unread" +msgstr "Mark as unread" + +#: ../../operation/messages/message_list.php:148 +#: ../../operation/messages/message_list.php:153 +msgid "Message unread - click to read" +msgstr "Message unread - click to read" + +#: ../../operation/messages/message_list.php:180 +msgid "No Subject" +msgstr "No Subject" + +#: ../../operation/search_helps.php:22 +msgid "Zero results found." +msgstr "Zero results found." + +#: ../../operation/search_helps.php:23 +#, php-format +msgid "" +"You can find more help in the
    Pandora's wiki" +msgstr "" +"You can find more help on the Pandora wiki" + +#: ../../operation/search_helps.php:37 +msgid "Matches" +msgstr "Matches" + +#: ../../operation/servers/recon_view.php:36 +#: ../../operation/servers/recon_view.php:51 +msgid "Recon View" +msgstr "Recon View" + +#: ../../operation/servers/recon_view.php:46 +#: ../../operation/search_agents.php:111 +#: ../../operation/agentes/ver_agente.php:947 +msgid "Manage" +msgstr "Manage" + +#: ../../operation/servers/recon_view.php:86 +#: ../../operation/servers/recon_view.php:118 +#: ../../operation/agentes/group_view.php:163 +#: ../../operation/agentes/group_view.php:216 +#: ../../include/ajax/module.php:804 ../../include/functions_groups.php:771 +#: ../../include/functions_groups.php:964 ../../include/functions_ui.php:834 +msgid "Force" +msgstr "Force" + +#: ../../operation/servers/recon_view.php:89 +#: ../../godmode/servers/manage_recontask_form.php:218 +msgid "Task name" +msgstr "Task name" + +#: ../../operation/servers/recon_view.php:95 +#: ../../godmode/servers/manage_recontask_form.php:242 +#: ../../godmode/servers/manage_recontask.php:291 +msgid "Network" +msgstr "Network" + +#: ../../operation/servers/recon_view.php:104 +#: ../../operation/servers/recon_view.php:158 +msgid "Progress" +msgstr "Progress" + +#: ../../operation/servers/recon_view.php:107 +#: ../../operation/incidents/incident_detail.php:261 +msgid "Updated at" +msgstr "Updated at" + +#: ../../operation/servers/recon_view.php:137 +#: ../../include/help/clippy/operation_agentes_ver_agente.php:42 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:126 +msgid "Done" +msgstr "Done" + +#: ../../operation/servers/recon_view.php:140 +msgid "Pending" +msgstr "Pending" + +#: ../../operation/servers/recon_view.php:145 +#: ../../godmode/servers/manage_recontask.php:314 +msgid "Network recon task" +msgstr "Network recon task" + +#: ../../operation/servers/recon_view.php:173 +msgid "has no recon tasks assigned" +msgstr "has no recon tasks assigned" + +#: ../../operation/search_maps.php:33 +msgid "Elements" +msgstr "Elements" + +#: ../../operation/search_modules.php:52 +#: ../../operation/agentes/status_monitor.php:977 +#: ../../extensions/realtime_graphs.php:72 +#: ../../include/functions_pandora_networkmap.php:1387 +#: ../../include/ajax/module.php:750 +#: ../../include/functions_visual_map_editor.php:56 +#: ../../include/functions_events.php:2103 +msgid "Graph" +msgstr "Graph" + +#: ../../operation/search_modules.php:53 +#: ../../operation/agentes/status_monitor.php:983 +#: ../../operation/agentes/exportdata.php:98 +#: ../../operation/agentes/exportdata.excel.php:76 +#: ../../operation/agentes/exportdata.csv.php:77 +#: ../../operation/agentes/gis_view.php:194 +#: ../../extensions/insert_data.php:180 ../../extensions/insert_data.php:181 +#: ../../mobile/operation/modules.php:606 +#: ../../mobile/operation/modules.php:613 +#: ../../mobile/operation/modules.php:621 +#: ../../mobile/operation/modules.php:757 ../../include/ajax/module.php:749 +#: ../../include/functions_graph.php:3433 +#: ../../include/functions_reporting_html.php:1806 +#: ../../include/functions_reporting_html.php:1809 +#: ../../include/functions_reporting_html.php:1810 +#: ../../include/functions_reporting_html.php:1813 +#: ../../include/functions_netflow.php:311 +#: ../../include/functions_reporting.php:2349 +#: ../../include/functions_reporting.php:2383 +msgid "Data" +msgstr "Data" + +#: ../../operation/search_modules.php:104 +#: ../../operation/agentes/status_monitor.php:1143 +#: ../../mobile/operation/modules.php:451 +#: ../../mobile/operation/modules.php:504 +#: ../../include/functions_modules.php:1871 +msgid "NOT INIT" +msgstr "Not initialised" + +#: ../../operation/search_modules.php:108 +#: ../../operation/search_modules.php:125 +#: ../../operation/agentes/status_monitor.php:1148 +#: ../../operation/agentes/status_monitor.php:1152 +#: ../../operation/agentes/status_monitor.php:1183 +#: ../../operation/agentes/status_monitor.php:1188 +#: ../../operation/agentes/pandora_networkmap.view.php:293 +#: ../../operation/agentes/pandora_networkmap.view.php:302 +#: ../../mobile/operation/modules.php:455 +#: ../../mobile/operation/modules.php:472 +#: ../../mobile/operation/modules.php:508 +#: ../../mobile/operation/modules.php:525 +#: ../../include/class/Tree.class.php:1500 +#: ../../include/functions_modules.php:1883 +#: ../../include/functions_modules.php:1891 +msgid "NORMAL" +msgstr "NORMAL" + +#: ../../operation/search_modules.php:112 +#: ../../operation/search_modules.php:132 +#: ../../operation/agentes/status_monitor.php:1158 +#: ../../operation/agentes/status_monitor.php:1162 +#: ../../operation/agentes/status_monitor.php:1195 +#: ../../operation/agentes/status_monitor.php:1200 +#: ../../operation/agentes/pandora_networkmap.view.php:285 +#: ../../operation/agentes/pandora_networkmap.view.php:307 +#: ../../mobile/operation/modules.php:459 +#: ../../mobile/operation/modules.php:477 +#: ../../mobile/operation/modules.php:512 +#: ../../mobile/operation/modules.php:530 +#: ../../include/class/Tree.class.php:1474 +#: ../../include/functions_modules.php:1875 +#: ../../include/functions_modules.php:1895 +msgid "CRITICAL" +msgstr "CRITICAL" + +#: ../../operation/search_modules.php:116 +#: ../../operation/search_modules.php:139 +#: ../../operation/agentes/status_monitor.php:1168 +#: ../../operation/agentes/status_monitor.php:1172 +#: ../../operation/agentes/status_monitor.php:1207 +#: ../../operation/agentes/status_monitor.php:1212 +#: ../../operation/agentes/pandora_networkmap.view.php:289 +#: ../../operation/agentes/pandora_networkmap.view.php:312 +#: ../../mobile/operation/modules.php:463 +#: ../../mobile/operation/modules.php:482 +#: ../../mobile/operation/modules.php:516 +#: ../../mobile/operation/modules.php:535 +#: ../../include/class/Tree.class.php:1481 +#: ../../include/functions_modules.php:1879 +#: ../../include/functions_modules.php:1899 +msgid "WARNING" +msgstr "WARNING" + +#: ../../operation/search_modules.php:124 +#: ../../operation/search_modules.php:131 +#: ../../operation/search_modules.php:138 +#: ../../operation/agentes/status_monitor.php:1182 +#: ../../operation/agentes/status_monitor.php:1187 +#: ../../operation/agentes/status_monitor.php:1194 +#: ../../operation/agentes/status_monitor.php:1199 +#: ../../operation/agentes/status_monitor.php:1206 +#: ../../operation/agentes/status_monitor.php:1211 +#: ../../operation/agentes/pandora_networkmap.view.php:301 +#: ../../operation/agentes/pandora_networkmap.view.php:306 +#: ../../operation/agentes/pandora_networkmap.view.php:311 +#: ../../mobile/operation/modules.php:471 +#: ../../mobile/operation/modules.php:476 +#: ../../mobile/operation/modules.php:481 +#: ../../mobile/operation/modules.php:524 +#: ../../mobile/operation/modules.php:529 +#: ../../mobile/operation/modules.php:534 +#: ../../include/class/Tree.class.php:1486 +#: ../../include/functions_modules.php:1890 +#: ../../include/functions_modules.php:1894 +#: ../../include/functions_modules.php:1898 +msgid "UNKNOWN" +msgstr "UNKNOWN" + +#: ../../operation/search_modules.php:124 +#: ../../operation/search_modules.php:131 +#: ../../operation/search_modules.php:138 +#: ../../operation/agentes/status_monitor.php:1182 +#: ../../operation/agentes/status_monitor.php:1187 +#: ../../operation/agentes/status_monitor.php:1194 +#: ../../operation/agentes/status_monitor.php:1199 +#: ../../operation/agentes/status_monitor.php:1206 +#: ../../operation/agentes/status_monitor.php:1211 +#: ../../operation/agentes/pandora_networkmap.view.php:301 +#: ../../operation/agentes/pandora_networkmap.view.php:306 +#: ../../operation/agentes/pandora_networkmap.view.php:311 +#: ../../mobile/operation/modules.php:471 +#: ../../mobile/operation/modules.php:476 +#: ../../mobile/operation/modules.php:481 +#: ../../mobile/operation/modules.php:524 +#: ../../mobile/operation/modules.php:529 +#: ../../mobile/operation/modules.php:534 +#: ../../include/functions_modules.php:1890 +#: ../../include/functions_modules.php:1894 +#: ../../include/functions_modules.php:1898 +msgid "Last status" +msgstr "Last status" + +#: ../../operation/search_results.php:64 ../../mobile/operation/home.php:135 +msgid "Global search" +msgstr "Global search" + +#: ../../operation/search_results.php:74 +#: ../../operation/agentes/group_view.php:120 +#: ../../operation/agentes/group_view.php:158 +#: ../../extensions/agents_modules.php:150 +#: ../../extensions/agents_modules.php:313 +#: ../../extensions/agents_alerts.php:177 ../../mobile/operation/home.php:58 +#: ../../mobile/operation/agents.php:158 +#: ../../mobile/include/functions_web.php:22 +#: ../../include/functions_pandora_networkmap.php:1563 +#: ../../include/functions_groups.php:46 +#: ../../include/functions_groups.php:784 +#: ../../include/functions_groups.php:786 +#: ../../include/functions_groups.php:788 +#: ../../include/functions_groups.php:789 +#: ../../include/functions_groups.php:790 +#: ../../include/functions_reporting_html.php:1322 +#: ../../include/functions_reporting_html.php:1556 +#: ../../godmode/alerts/alert_list.list.php:71 +#: ../../godmode/massive/massive_add_alerts.php:157 +#: ../../godmode/massive/massive_edit_agents.php:228 +#: ../../godmode/massive/massive_enable_disable_alerts.php:141 +#: ../../godmode/massive/massive_edit_plugins.php:299 +#: ../../godmode/massive/massive_delete_agents.php:127 +#: ../../godmode/massive/massive_standby_alerts.php:142 +#: ../../godmode/massive/massive_delete_modules.php:496 +#: ../../godmode/massive/massive_edit_modules.php:342 +#: ../../godmode/massive/massive_delete_tags.php:192 +#: ../../godmode/massive/massive_add_tags.php:129 +#: ../../godmode/massive/massive_delete_alerts.php:218 +#: ../../godmode/reporting/graph_builder.graph_editor.php:146 +#: ../../godmode/reporting/visual_console_builder.wizard.php:283 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1020 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1078 +#: ../../godmode/reporting/reporting_builder.list_items.php:162 +#: ../../godmode/reporting/reporting_builder.list_items.php:187 +msgid "Agents" +msgstr "Agents" + +#: ../../operation/search_results.php:84 +#: ../../include/functions_reporting.php:7280 +#: ../../godmode/massive/massive_delete_profiles.php:104 +#: ../../godmode/massive/massive_add_profiles.php:90 +msgid "Users" +msgstr "Users" + +#: ../../operation/search_results.php:94 ../../operation/search_agents.php:65 +#: ../../operation/agentes/ver_agente.php:973 +#: ../../operation/agentes/estado_agente.php:528 +#: ../../extensions/agents_alerts.php:254 +#: ../../mobile/operation/alerts.php:154 ../../mobile/operation/agents.php:83 +#: ../../mobile/operation/agents.php:324 ../../mobile/operation/agent.php:250 +#: ../../mobile/include/functions_web.php:25 +#: ../../include/functions_reports.php:609 +#: ../../include/functions_reports.php:611 +#: ../../include/functions_reports.php:614 +#: ../../include/functions_graph.php:748 +#: ../../include/functions_graph.php:3940 +#: ../../include/functions_graph.php:4666 +#: ../../include/functions_treeview.php:374 +#: ../../include/functions_reporting_html.php:1602 +#: ../../include/functions_reporting_html.php:3245 +#: ../../godmode/alerts/configure_alert_special_days.php:55 +#: ../../godmode/alerts/alert_special_days.php:44 +#: ../../godmode/alerts/alert_actions.php:66 +#: ../../godmode/alerts/alert_actions.php:92 +#: ../../godmode/alerts/alert_actions.php:110 +#: ../../godmode/alerts/alert_actions.php:127 +#: ../../godmode/alerts/alert_actions.php:207 +#: ../../godmode/alerts/alert_actions.php:218 +#: ../../godmode/alerts/alert_actions.php:287 +#: ../../godmode/alerts/alert_actions.php:306 +#: ../../godmode/alerts/alert_actions.php:319 +#: ../../godmode/alerts/alert_commands.php:249 +#: ../../godmode/alerts/configure_alert_command.php:41 +#: ../../godmode/alerts/configure_alert_action.php:56 +#: ../../godmode/alerts/configure_alert_action.php:65 +#: ../../godmode/alerts/configure_alert_template.php:62 +#: ../../godmode/alerts/configure_alert_template.php:82 +#: ../../godmode/alerts/configure_alert_template.php:100 +#: ../../godmode/alerts/alert_list.php:326 +#: ../../godmode/alerts/alert_list.php:329 +#: ../../godmode/alerts/alert_templates.php:132 +#: ../../godmode/alerts/alert_templates.php:175 +#: ../../godmode/alerts/alert_templates.php:194 +#: ../../godmode/alerts/alert_templates.php:210 ../../godmode/menu.php:140 +#: ../../godmode/massive/massive_copy_modules.php:153 +#: ../../godmode/groups/group_list.php:339 +#: ../../godmode/groups/configure_group.php:170 +#: ../../godmode/agentes/configurar_agente.php:312 +#: ../../godmode/agentes/modificar_agente.php:578 +msgid "Alerts" +msgstr "Alerts" + +#: ../../operation/search_results.php:104 +#: ../../operation/agentes/ver_agente.php:1058 +#: ../../include/functions_groups.php:106 +#: ../../include/functions_groups.php:163 +#: ../../include/functions_reports.php:498 +#: ../../include/functions_reports.php:500 +#: ../../include/functions_reports.php:504 +#: ../../include/functions_reports.php:506 +#: ../../include/functions_reports.php:510 +#: ../../include/functions_reports.php:512 +#: ../../include/functions_reports.php:514 +#: ../../include/functions_reports.php:518 +#: ../../include/functions_reports.php:522 +#: ../../include/functions_reports.php:525 +msgid "Graphs" +msgstr "Graphs" + +#: ../../operation/search_results.php:114 +#: ../../include/functions_groups.php:120 +msgid "Reports" +msgstr "Reports" + +#: ../../operation/search_results.php:124 +msgid "Maps" +msgstr "Maps" + +#: ../../operation/search_results.php:144 +msgid "Helps" +msgstr "Help" + +#: ../../operation/search_results.php:161 +#: ../../operation/agentes/status_monitor.php:336 +#: ../../operation/agentes/estado_agente.php:180 +#: ../../operation/agentes/estado_agente.php:198 +#: ../../operation/incidents/incident.php:294 +#: ../../general/ui/agents_list.php:80 ../../general/ui/agents_list.php:91 +#: ../../include/functions_snmp_browser.php:556 +#: ../../godmode/alerts/alert_templates.php:256 +#: ../../godmode/alerts/alert_templates.php:260 +#: ../../godmode/users/user_list.php:230 ../../godmode/users/user_list.php:234 +#: ../../godmode/reporting/reporting_builder.php:439 +#: ../../godmode/modules/manage_network_components.php:524 +#: ../../godmode/agentes/modificar_agente.php:169 +#: ../../godmode/agentes/modificar_agente.php:173 +#: ../../godmode/agentes/module_manager.php:45 +#: ../../godmode/agentes/planned_downtime.list.php:141 +#: ../../godmode/agentes/planned_downtime.list.php:177 +msgid "Search" +msgstr "Search" + +#: ../../operation/search_agents.php:91 +#: ../../operation/agentes/alerts_status.functions.php:76 +#: ../../operation/agentes/estado_generalagente.php:79 +#: ../../operation/agentes/estado_generalagente.php:294 +#: ../../mobile/operation/alerts.php:40 ../../mobile/operation/agent.php:124 +#: ../../include/functions_groups.php:2158 +#: ../../include/functions_treeview.php:74 +#: ../../include/functions_treeview.php:551 +#: ../../include/functions_reporting_html.php:2089 +#: ../../include/functions_reporting.php:3572 +#: ../../godmode/alerts/alert_view.php:516 +#: ../../godmode/alerts/configure_alert_template.php:663 +#: ../../godmode/massive/massive_edit_agents.php:364 +#: ../../godmode/massive/massive_edit_modules.php:467 +#: ../../godmode/agentes/module_manager_editor_common.php:172 +#: ../../godmode/agentes/module_manager_editor_common.php:471 +#: ../../godmode/agentes/agent_manager.php:341 +#: ../../godmode/agentes/modificar_agente.php:562 +msgid "Disabled" +msgstr "Disabled" + +#: ../../operation/agentes/status_monitor.php:45 +msgid "Monitor view" +msgstr "Monitor view" + +#: ../../operation/agentes/status_monitor.php:306 +msgid "Monitor status" +msgstr "Monitor status" + +#: ../../operation/agentes/status_monitor.php:311 +#: ../../operation/agentes/estado_monitores.php:463 +#: ../../operation/agentes/ver_agente.php:810 +#: ../../extensions/agents_modules.php:132 +#: ../../mobile/operation/modules.php:140 +#: ../../mobile/operation/modules.php:141 +#: ../../mobile/operation/modules.php:229 +#: ../../mobile/operation/modules.php:230 +#: ../../include/functions_graph.php:5355 +#: ../../include/functions_treeview.php:123 +#: ../../include/functions_events.php:2075 +#: ../../godmode/massive/massive_edit_modules.php:518 +#: ../../godmode/reporting/reporting_builder.item_editor.php:909 +#: ../../godmode/modules/manage_network_components_form_common.php:95 +#: ../../godmode/agentes/module_manager_editor_common.php:174 +msgid "Module group" +msgstr "Module group" + +#: ../../operation/agentes/status_monitor.php:312 +#: ../../include/functions_graph.php:5308 +#: ../../include/functions_treeview.php:118 +#: ../../godmode/massive/massive_edit_modules.php:521 +#: ../../godmode/agentes/module_manager_editor_common.php:176 +#: ../../godmode/agentes/module_manager_editor_common.php:182 +msgid "Not assigned" +msgstr "Not assigned" + +#: ../../operation/agentes/status_monitor.php:327 +#: ../../operation/incidents/incident.php:238 +msgid "Show" +msgstr "Show" + +#: ../../operation/agentes/status_monitor.php:332 +#: ../../operation/agentes/status_monitor.php:958 +#: ../../mobile/operation/modules.php:489 +#: ../../mobile/operation/modules.php:752 ../../include/ajax/module.php:741 +#: ../../godmode/alerts/alert_list.list.php:86 +#: ../../godmode/modules/manage_network_components.php:565 +#: ../../godmode/modules/manage_network_templates_form.php:196 +#: ../../godmode/agentes/agent_template.php:228 +msgid "Module name" +msgstr "Module name" + +#: ../../operation/agentes/status_monitor.php:341 +#: ../../operation/agentes/status_monitor.php:344 +#: ../../operation/agentes/alerts_status.functions.php:86 +msgid "Only it is show tags in use." +msgstr "Show only tags in use" + +#: ../../operation/agentes/status_monitor.php:349 +#: ../../operation/agentes/alerts_status.functions.php:91 +msgid "No tags" +msgstr "No tags" + +#: ../../operation/agentes/status_monitor.php:380 +#: ../../godmode/agentes/module_manager_editor_data.php:17 +msgid "Data server module" +msgstr "Data server module" + +#: ../../operation/agentes/status_monitor.php:382 +#: ../../godmode/agentes/module_manager_editor_network.php:64 +msgid "Network server module" +msgstr "Network server module" + +#: ../../operation/agentes/status_monitor.php:384 +#: ../../godmode/agentes/module_manager_editor_plugin.php:47 +msgid "Plugin server module" +msgstr "Plug-in server module" + +#: ../../operation/agentes/status_monitor.php:386 +#: ../../godmode/agentes/module_manager_editor_wmi.php:32 +msgid "WMI server module" +msgstr "WMI server module" + +#: ../../operation/agentes/status_monitor.php:388 +#: ../../godmode/agentes/module_manager_editor_prediction.php:88 +msgid "Prediction server module" +msgstr "Prediction server module" + +#: ../../operation/agentes/status_monitor.php:390 +msgid "Web server module" +msgstr "Web server module" + +#: ../../operation/agentes/status_monitor.php:394 +#: ../../operation/agentes/status_monitor.php:962 +msgid "Server type" +msgstr "Server type" + +#: ../../operation/agentes/status_monitor.php:398 +#: ../../godmode/agentes/modificar_agente.php:158 +msgid "Only enabled" +msgstr "Only enabled" + +#: ../../operation/agentes/status_monitor.php:398 +#: ../../godmode/agentes/modificar_agente.php:157 +msgid "Only disabled" +msgstr "Only disabled" + +#: ../../operation/agentes/status_monitor.php:400 +msgid "Show monitors..." +msgstr "Show monitors..." + +#: ../../operation/agentes/status_monitor.php:410 +msgid "Data type" +msgstr "Data type" + +#: ../../operation/agentes/status_monitor.php:529 +msgid "Advanced Options" +msgstr "Advanced Options" + +#: ../../operation/agentes/status_monitor.php:539 +#: ../../operation/agentes/agent_fields.php:38 +msgid "Agent custom fields" +msgstr "Agent custom fields" + +#: ../../operation/agentes/status_monitor.php:946 +#: ../../operation/agentes/alerts_status.php:412 +#: ../../operation/agentes/alerts_status.php:459 +#: ../../include/ajax/module.php:735 ../../godmode/alerts/alert_view.php:123 +#: ../../godmode/agentes/module_manager.php:551 +msgid "Policy" +msgstr "Policy" + +#: ../../operation/agentes/status_monitor.php:946 +#: ../../operation/agentes/alerts_status.php:413 +#: ../../operation/agentes/alerts_status.php:459 +#: ../../include/ajax/module.php:735 +#: ../../godmode/snmpconsole/snmp_alert.php:1148 +#: ../../godmode/reporting/reporting_builder.list_items.php:285 +#: ../../godmode/agentes/module_manager.php:551 +msgid "P." +msgstr "P." + +#: ../../operation/agentes/status_monitor.php:952 +msgid "Data Type" +msgstr "Data Type" + +#: ../../operation/agentes/status_monitor.php:980 +#: ../../include/ajax/module.php:748 +#: ../../godmode/agentes/module_manager.php:565 +msgid "Warn" +msgstr "Warn" + +#: ../../operation/agentes/status_monitor.php:1035 +#: ../../operation/agentes/pandora_networkmap.view.php:258 +msgid "(Adopt) " +msgstr "(Adopted) " + +#: ../../operation/agentes/status_monitor.php:1045 +#: ../../operation/agentes/pandora_networkmap.view.php:268 +msgid "(Unlinked) (Adopt) " +msgstr "(Unlinked) (Adopted) " + +#: ../../operation/agentes/status_monitor.php:1049 +#: ../../operation/agentes/pandora_networkmap.view.php:272 +msgid "(Unlinked) " +msgstr "(Unlinked) " + +#: ../../operation/agentes/status_monitor.php:1362 +#: ../../operation/agentes/status_monitor.php:1369 +#: ../../mobile/operation/modules.php:610 +#: ../../mobile/operation/modules.php:617 ../../include/functions_ui.php:3684 +#: ../../include/functions_ui.php:3691 +#: ../../include/functions_treeview.php:279 +#: ../../include/functions_treeview.php:286 +msgid "Snapshot view" +msgstr "Command Snapshot view" + +#: ../../operation/agentes/status_monitor.php:1443 +msgid "This group doesn't have any monitor" +msgstr "This group doesn't have any monitor" + +#: ../../operation/agentes/pandora_networkmap.php:153 +msgid "Succesfully created" +msgstr "Successfully created." + +#: ../../operation/agentes/pandora_networkmap.php:153 +#: ../../include/functions_planned_downtimes.php:110 +#: ../../include/functions_planned_downtimes.php:727 +#: ../../godmode/alerts/alert_special_days.php:149 +#: ../../godmode/alerts/alert_actions.php:185 +#: ../../godmode/alerts/alert_commands.php:294 +#: ../../godmode/alerts/configure_alert_template.php:119 +#: ../../godmode/alerts/configure_alert_template.php:432 +#: ../../godmode/alerts/alert_list.php:104 ../../godmode/setup/news.php:57 +#: ../../godmode/setup/gis.php:47 ../../godmode/users/configure_user.php:237 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2431 +#: ../../godmode/modules/manage_nc_groups.php:74 +#: ../../godmode/modules/manage_network_components.php:162 +#: ../../godmode/modules/manage_network_components.php:256 +#: ../../godmode/agentes/configurar_agente.php:266 +#: ../../godmode/agentes/configurar_agente.php:617 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:290 +#: ../../godmode/agentes/planned_downtime.editor.php:356 +msgid "Could not be created" +msgstr "Could not be created" + +#: ../../operation/agentes/pandora_networkmap.php:247 +msgid "Succesfully updated" +msgstr "Successfully updated" + +#: ../../operation/agentes/pandora_networkmap.php:260 +msgid "Succesfully duplicate" +msgstr "Successfully duplicated" + +#: ../../operation/agentes/pandora_networkmap.php:260 +msgid "Could not be duplicated" +msgstr "Could not be duplicated" + +#: ../../operation/agentes/pandora_networkmap.php:269 +msgid "Succesfully deleted" +msgstr "Successfully deleted" + +#: ../../operation/agentes/pandora_networkmap.php:365 +#: ../../operation/agentes/pandora_networkmap.view.php:701 +#: ../../operation/agentes/pandora_networkmap.editor.php:133 +msgid "Networkmap" +msgstr "Network map" + +#: ../../operation/agentes/pandora_networkmap.php:399 +#: ../../include/functions_reporting_html.php:3479 +msgid "Nodes" +msgstr "Nodes" + +#: ../../operation/agentes/pandora_networkmap.php:402 +#: ../../operation/agentes/pandora_networkmap.php:479 +#: ../../godmode/alerts/alert_actions.php:342 +#: ../../godmode/massive/massive_copy_modules.php:224 +#: ../../godmode/reporting/map_builder.php:214 +msgid "Copy" +msgstr "Copy" + +#: ../../operation/agentes/pandora_networkmap.php:466 +msgid "Pending to generate" +msgstr "Pending to generate" + +#: ../../operation/agentes/pandora_networkmap.php:486 +msgid "Config" +msgstr "Config" + +#: ../../operation/agentes/pandora_networkmap.php:502 +msgid "There are no maps defined." +msgstr "There are no maps defined." + +#: ../../operation/agentes/pandora_networkmap.php:509 +msgid "Create networkmap" +msgstr "Create networkmap" + +#: ../../operation/agentes/agent_fields.php:28 +#: ../../operation/agentes/custom_fields.php:28 +#: ../../operation/agentes/estado_generalagente.php:46 +#: ../../include/functions_treeview.php:506 +msgid "There was a problem loading agent" +msgstr "There was a problem loading agent" + +#: ../../operation/agentes/agent_fields.php:45 +#: ../../operation/agentes/estado_generalagente.php:354 +#: ../../include/functions_treeview.php:691 +msgid "Custom field" +msgstr "Custom field" + +#: ../../operation/agentes/agent_fields.php:48 +#: ../../operation/agentes/custom_fields.php:87 +msgid "empty" +msgstr "empty" + +#: ../../operation/agentes/pandora_networkmap.view.php:111 +msgid "Success be updated." +msgstr "Updating successful." + +#: ../../operation/agentes/pandora_networkmap.view.php:114 +msgid "Could not be updated." +msgstr "Could not be updated." + +#: ../../operation/agentes/pandora_networkmap.view.php:227 +msgid "Name: " +msgstr "Name : " + +#: ../../operation/agentes/pandora_networkmap.view.php:277 +msgid "Policy: " +msgstr "Policy : " + +#: ../../operation/agentes/pandora_networkmap.view.php:326 +msgid "Status: " +msgstr "Status : " + +#: ../../operation/agentes/pandora_networkmap.view.php:370 +msgid "Data: " +msgstr "Data : " + +#: ../../operation/agentes/pandora_networkmap.view.php:373 +#: ../../operation/agentes/estado_generalagente.php:552 +msgid "Last contact: " +msgstr "Last contact : " + +#: ../../operation/agentes/pandora_networkmap.view.php:703 +#: ../../operation/agentes/pandora_networkmap.editor.php:162 +msgid "Not found networkmap." +msgstr "Network map not found." + +#: ../../operation/agentes/pandora_networkmap.view.php:747 +msgid "List of networkmap" +msgstr "List of networkmap" + +#: ../../operation/agentes/exportdata.php:82 +#: ../../operation/agentes/exportdata.excel.php:67 +#: ../../operation/agentes/exportdata.csv.php:68 +msgid "Invalid time specified" +msgstr "Invalid time specified" + +#: ../../operation/agentes/exportdata.php:218 +#: ../../operation/agentes/exportdata.excel.php:165 +#: ../../operation/agentes/exportdata.csv.php:182 +msgid "No modules specified" +msgstr "No modules specified" + +#: ../../operation/agentes/exportdata.php:244 +#: ../../godmode/db/db_refine.php:83 +msgid "Source agent" +msgstr "Source agent" + +#: ../../operation/agentes/exportdata.php:276 +msgid "No modules of type string. You can not calculate their average" +msgstr "No string type modules. You cannot calculate their average." + +#: ../../operation/agentes/exportdata.php:310 +#: ../../operation/agentes/interface_traffic_graph_win.php:226 +#: ../../operation/agentes/stat_win.php:314 +#: ../../operation/agentes/graphs.php:132 +#: ../../mobile/operation/module_graph.php:452 +msgid "Begin date" +msgstr "Begin date" + +#: ../../operation/agentes/exportdata.php:319 +msgid "End date" +msgstr "End date" + +#: ../../operation/agentes/exportdata.php:327 +msgid "Export type" +msgstr "Export type" + +#: ../../operation/agentes/exportdata.php:330 +#: ../../include/functions_netflow.php:1034 +msgid "Data table" +msgstr "Data table" + +#: ../../operation/agentes/exportdata.php:331 +#: ../../extensions/insert_data.php:185 +msgid "CSV" +msgstr "CSV" + +#: ../../operation/agentes/exportdata.php:332 +msgid "MS Excel" +msgstr "MS Excel" + +#: ../../operation/agentes/exportdata.php:333 +msgid "Average per hour/day" +msgstr "Average per hour/day" + +#: ../../operation/agentes/exportdata.php:341 +#: ../../extensions/resource_exportation.php:354 +#: ../../extensions/resource_exportation.php:357 +msgid "Export" +msgstr "Export" + +#: ../../operation/agentes/custom_fields.php:52 +msgid "No fields defined" +msgstr "No fields defined" + +#: ../../operation/agentes/custom_fields.php:59 +#: ../../godmode/alerts/alert_view.php:441 +#: ../../godmode/alerts/alert_view.php:531 +#: ../../godmode/agentes/fields_manager.php:95 +msgid "Field" +msgstr "Field" + +#: ../../operation/agentes/custom_fields.php:61 +#: ../../godmode/agentes/configure_field.php:51 +#: ../../godmode/agentes/fields_manager.php:96 +msgid "Display on front" +msgstr "Display up front" + +#: ../../operation/agentes/custom_fields.php:62 +#: ../../godmode/agentes/configure_field.php:51 +#: ../../godmode/agentes/fields_manager.php:96 +msgid "" +"The fields with display on front enabled will be displayed into the agent " +"details" +msgstr "" +"The fields with up front display enabled will be shown on the agent's details" + +#: ../../operation/agentes/estado_monitores.php:35 +msgid "Tag's information" +msgstr "Tag's information" + +#: ../../operation/agentes/estado_monitores.php:81 +msgid "Relationship information" +msgstr "Relationship information" + +#: ../../operation/agentes/estado_monitores.php:128 +msgid "" +"To see the list of modules paginated, enable this option in the Styles " +"Configuration." +msgstr "" +"To see the list of modules paginated, enable this option in the Styles " +"Configuration." + +#: ../../operation/agentes/estado_monitores.php:129 +msgid "Full list of monitors" +msgstr "Full list of monitors" + +#: ../../operation/agentes/estado_monitores.php:154 +msgid "List of modules" +msgstr "List of modules" + +#: ../../operation/agentes/estado_monitores.php:445 +msgid "Status:" +msgstr "Status:" + +#: ../../operation/agentes/estado_monitores.php:451 +msgid "Not Normal" +msgstr "Abnormal" + +#: ../../operation/agentes/estado_monitores.php:459 +msgid "Free text for search (*):" +msgstr "Free text for search (*):" + +#: ../../operation/agentes/estado_monitores.php:460 +msgid "Search by module name, list matches." +msgstr "Search by module name, list matches." + +#: ../../operation/agentes/estado_monitores.php:472 +#: ../../godmode/agentes/module_manager.php:120 +msgid "Show in hierachy mode" +msgstr "Show in hierarchy mode" + +#: ../../operation/agentes/estado_monitores.php:475 +msgid "Reset" +msgstr "Reset" + +#: ../../operation/agentes/snapshot_view.php:66 +msgid "Current data at" +msgstr "Current data at" + +#: ../../operation/agentes/alerts_status.php:108 +msgid "Full list of alerts" +msgstr "Full list of alerts" + +#: ../../operation/agentes/alerts_status.php:135 +msgid "Alerts view" +msgstr "Alerts view" + +#: ../../operation/agentes/alerts_status.php:144 +msgid "Insufficient permissions to validate alerts" +msgstr "Insufficient permissions to validate alerts" + +#: ../../operation/agentes/alerts_status.php:396 +#: ../../godmode/alerts/alert_list.list.php:163 +msgid "Alert control filter" +msgstr "Alert control filter" + +#: ../../operation/agentes/alerts_status.php:416 +#: ../../operation/agentes/alerts_status.php:462 +#: ../../operation/agentes/alerts_status.php:497 +#: ../../operation/agentes/alerts_status.php:532 +#: ../../operation/agentes/alerts_status.functions.php:103 +#: ../../godmode/alerts/alert_list.list.php:138 +msgid "Standby" +msgstr "Stand by" + +#: ../../operation/agentes/alerts_status.php:417 +#: ../../operation/agentes/alerts_status.php:462 +#: ../../operation/agentes/alerts_status.php:497 +#: ../../operation/agentes/alerts_status.php:532 +#: ../../mobile/operation/agents.php:322 +#: ../../include/functions_events.php:898 +#: ../../godmode/agentes/module_manager.php:554 +msgid "S." +msgstr "S." + +#: ../../operation/agentes/alerts_status.php:422 +#: ../../operation/agentes/alerts_status.php:466 +#: ../../operation/agentes/alerts_status.php:500 +#: ../../operation/agentes/alerts_status.php:535 +#: ../../include/ajax/module.php:732 +msgid "Force execution" +msgstr "Force execution" + +#: ../../operation/agentes/alerts_status.php:423 +#: ../../operation/agentes/alerts_status.php:466 +#: ../../operation/agentes/alerts_status.php:500 +#: ../../operation/agentes/alerts_status.php:535 +#: ../../include/ajax/module.php:732 +msgid "F." +msgstr "F." + +#: ../../operation/agentes/alerts_status.php:431 +#: ../../operation/agentes/alerts_status.php:472 +#: ../../operation/agentes/alerts_status.php:506 +#: ../../operation/agentes/alerts_status.php:540 +#: ../../extensions/agents_alerts.php:282 +#: ../../include/functions_treeview.php:424 +#: ../../include/functions_reporting_html.php:3099 +#: ../../godmode/snmpconsole/snmp_alert.php:1169 +#: ../../godmode/alerts/alert_view.php:79 +msgid "Last fired" +msgstr "Last fired" + +#: ../../operation/agentes/alerts_status.php:599 +msgid "No alerts found" +msgstr "No alerts found" + +#: ../../operation/agentes/datos_agente.php:165 +msgid "Received data from" +msgstr "Received data from" + +#: ../../operation/agentes/datos_agente.php:172 +msgid "Main database" +msgstr "Main database" + +#: ../../operation/agentes/datos_agente.php:172 +msgid "History database" +msgstr "Historical database" + +#: ../../operation/agentes/datos_agente.php:173 +msgid "" +"Switch between the main database and the history database to retrieve module " +"data" +msgstr "" +"Switch between the main database and the historical database in order to " +"retrieve module data." + +#: ../../operation/agentes/datos_agente.php:185 +#: ../../include/ajax/module.php:149 +msgid "Choose a time from now" +msgstr "Choose a time from now" + +#: ../../operation/agentes/datos_agente.php:188 +#: ../../include/ajax/module.php:161 +msgid "Specify time range" +msgstr "Specify time range" + +#: ../../operation/agentes/datos_agente.php:202 +#: ../../operation/agentes/alerts_status.functions.php:97 +msgid "Free text for search" +msgstr "Free text for search" + +#: ../../operation/agentes/datos_agente.php:286 +#: ../../include/ajax/module.php:345 +#: ../../godmode/agentes/module_manager.php:523 +msgid "No available data to show" +msgstr "No available data to show" + +#: ../../operation/agentes/tactical.php:46 +#: ../../operation/agentes/group_view.php:61 +#: ../../extensions/agents_modules.php:56 +#: ../../extensions/agents_alerts.php:55 +msgid "Last update" +msgstr "Latest update" + +#: ../../operation/agentes/tactical.php:135 +msgid "Report of State" +msgstr "Status report" + +#: ../../operation/agentes/tactical.php:188 +#: ../../include/functions_events.php:880 +msgid "Latest events" +msgstr "Latest events" + +#: ../../operation/agentes/ehorus.php:30 +msgid "Missing agent id" +msgstr "Missing agent id" + +#: ../../operation/agentes/ehorus.php:48 +msgid "Missing ehorus agent id" +msgstr "Missing eHorus agent id" + +#: ../../operation/agentes/ehorus.php:80 +msgid "There was an error retrieving an authorization token" +msgstr "There was an error retrieving an authorization token" + +#: ../../operation/agentes/ehorus.php:93 +#: ../../operation/agentes/ehorus.php:129 +msgid "There was an error processing the response" +msgstr "There was an error processing the response" + +#: ../../operation/agentes/ehorus.php:116 +msgid "There was an error retrieving the agent data" +msgstr "There was an error retrieving the agent data" + +#: ../../operation/agentes/ehorus.php:134 +msgid "Remote management of this agent with eHorus" +msgstr "Remote management of this agent with eHorus" + +#: ../../operation/agentes/ehorus.php:136 +msgid "Launch" +msgstr "Launch" + +#: ../../operation/agentes/ehorus.php:142 +msgid "The connection was lost and the authorization token was expired" +msgstr "The connection was lost and the authorization token was expired" + +#: ../../operation/agentes/ehorus.php:144 +msgid "Reload the page to request a new authorization token" +msgstr "Reload the page to request a new authorization token" + +#: ../../operation/agentes/alerts_status.functions.php:32 +msgid "Alert(s) validated" +msgstr "Alert(s) validated" + +#: ../../operation/agentes/alerts_status.functions.php:33 +msgid "Error processing alert(s)" +msgstr "Error processing alert(s)" + +#: ../../operation/agentes/alerts_status.functions.php:72 +#: ../../mobile/operation/alerts.php:36 +msgid "All (Enabled)" +msgstr "All (Enabled)" + +#: ../../operation/agentes/alerts_status.functions.php:80 +#: ../../mobile/operation/alerts.php:44 ../../include/functions_ui.php:826 +#: ../../godmode/alerts/alert_list.list.php:140 +msgid "Standby on" +msgstr "Standby on" + +#: ../../operation/agentes/alerts_status.functions.php:81 +#: ../../mobile/operation/alerts.php:45 +#: ../../godmode/alerts/alert_list.list.php:141 +msgid "Standby off" +msgstr "Standby off" + +#: ../../operation/agentes/alerts_status.functions.php:99 +msgid "Filter by agent name, module name, template name or action name" +msgstr "Filter by agent name, module name, template name or action name" + +#: ../../operation/agentes/alerts_status.functions.php:109 +msgid "No actions" +msgstr "No actions" + +#: ../../operation/agentes/interface_traffic_graph_win.php:48 +#: ../../operation/agentes/stat_win.php:44 +msgid "There was a problem connecting with the node" +msgstr "There was a problem connecting with the node" + +#: ../../operation/agentes/interface_traffic_graph_win.php:66 +msgid "In" +msgstr "In" + +#: ../../operation/agentes/interface_traffic_graph_win.php:67 +msgid "Out" +msgstr "Out" + +#: ../../operation/agentes/interface_traffic_graph_win.php:201 +#: ../../operation/agentes/stat_win.php:268 +msgid "Pandora FMS Graph configuration menu" +msgstr "Pandora FMS' graph configuration menu" + +#: ../../operation/agentes/interface_traffic_graph_win.php:203 +#: ../../operation/agentes/stat_win.php:270 +msgid "Please, make your changes and apply with the Reload button" +msgstr "" +"Please establish your changes and apply the with the Reload button" + +#: ../../operation/agentes/interface_traffic_graph_win.php:220 +#: ../../operation/agentes/stat_win.php:297 +msgid "Refresh time" +msgstr "Refresh time" + +#: ../../operation/agentes/interface_traffic_graph_win.php:239 +#: ../../operation/agentes/stat_win.php:377 +msgid "Show percentil" +msgstr "Show percentile" + +#: ../../operation/agentes/interface_traffic_graph_win.php:245 +#: ../../operation/agentes/stat_win.php:326 +msgid "Zoom factor" +msgstr "Zoom factor" + +#: ../../operation/agentes/interface_traffic_graph_win.php:272 +#: ../../operation/agentes/stat_win.php:421 +msgid "Reload" +msgstr "Reload" + +#: ../../operation/agentes/ver_agente.php:686 +msgid "Main IP" +msgstr "Main IP" + +#: ../../operation/agentes/ver_agente.php:697 +#: ../../include/functions_events.php:2043 +msgid "Last remote contact" +msgstr "Last remote contact" + +#: ../../operation/agentes/ver_agente.php:737 +msgid "Monitors down" +msgstr "Monitors down" + +#: ../../operation/agentes/ver_agente.php:773 +#: ../../mobile/operation/groups.php:161 +#: ../../include/functions_groups.php:848 +#: ../../include/functions_groups.php:850 +#: ../../include/functions_groups.php:852 +#: ../../include/functions_groups.php:853 +#: ../../include/functions_groups.php:854 +#: ../../include/functions_reporting_html.php:2920 +#: ../../include/functions_reporting_html.php:2929 +msgid "Alerts fired" +msgstr "Alerts fired" + +#: ../../operation/agentes/ver_agente.php:822 +msgid "Address" +msgstr "Address" + +#: ../../operation/agentes/ver_agente.php:854 +#: ../../operation/agentes/estado_generalagente.php:278 +#: ../../include/functions_visual_map_editor.php:525 +#: ../../godmode/massive/massive_edit_agents.php:280 +#: ../../godmode/reporting/visual_console_builder.elements.php:81 +#: ../../godmode/groups/configure_group.php:134 +#: ../../godmode/modules/manage_nc_groups_form.php:70 +#: ../../godmode/agentes/agent_manager.php:255 +msgid "Parent" +msgstr "Parent" + +#: ../../operation/agentes/ver_agente.php:863 +msgid "Sons" +msgstr "Sons" + +#: ../../operation/agentes/ver_agente.php:1008 +#: ../../godmode/agentes/configurar_agente.php:374 +msgid "GIS data" +msgstr "GIS data" + +#: ../../operation/agentes/ver_agente.php:1035 +#: ../../operation/agentes/estado_generalagente.php:329 +#: ../../include/functions_treeview.php:668 +#: ../../godmode/agentes/agent_manager.php:419 +msgid "Url address" +msgstr "URL address" + +#: ../../operation/agentes/ver_agente.php:1046 +#: ../../include/functions_events.php:2048 ../../godmode/menu.php:36 +#: ../../godmode/events/events.php:53 ../../godmode/events/events.php:58 +#: ../../godmode/events/events.php:69 +#: ../../godmode/massive/massive_edit_agents.php:465 +#: ../../godmode/agentes/agent_manager.php:470 +msgid "Custom fields" +msgstr "Custom fields" + +#: ../../operation/agentes/ver_agente.php:1076 +msgid "Log Viewer" +msgstr "Log Viewer" + +#: ../../operation/agentes/ver_agente.php:1089 ../../godmode/menu.php:269 +#: ../../godmode/setup/setup.php:102 ../../godmode/setup/setup.php:133 +msgid "eHorus" +msgstr "eHorus" + +#: ../../operation/agentes/ver_agente.php:1096 +msgid "Terminal" +msgstr "Terminal" + +#: ../../operation/agentes/ver_agente.php:1101 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1281 +msgid "Display" +msgstr "Display" + +#: ../../operation/agentes/ver_agente.php:1106 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:301 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:793 +msgid "Processes" +msgstr "Processes" + +#: ../../operation/agentes/ver_agente.php:1111 +#: ../../general/firts_task/service_list.php:28 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:300 +msgid "Services" +msgstr "Services" + +#: ../../operation/agentes/ver_agente.php:1116 +msgid "Files" +msgstr "Files" + +#: ../../operation/agentes/pandora_networkmap.editor.php:187 +msgid "Node radius" +msgstr "Node radius" + +#: ../../operation/agentes/pandora_networkmap.editor.php:197 +#: ../../include/functions_groups.php:92 ../../godmode/menu.php:212 +msgid "Recon task" +msgstr "Recon task" + +#: ../../operation/agentes/pandora_networkmap.editor.php:198 +msgid "CIDR IP mask" +msgstr "CIDR IP mask" + +#: ../../operation/agentes/pandora_networkmap.editor.php:200 +msgid "Source from recon task" +msgstr "Source from recon task" + +#: ../../operation/agentes/pandora_networkmap.editor.php:202 +msgid "" +"It is setted any recon task, the nodes get from the recontask IP mask " +"instead from the group." +msgstr "" +"If any Recon Task is defined, the nodes obtain their IPs from the " +"recontask's IP mask instead from the group." + +#: ../../operation/agentes/pandora_networkmap.editor.php:206 +msgid "Show only the task with the recon script \"SNMP L2 Recon\"." +msgstr "" +"Display the task which contains the recon script called \"SNMP L2 Recon\" " +"only." + +#: ../../operation/agentes/pandora_networkmap.editor.php:208 +msgid "Source from CIDR IP mask" +msgstr "Source from CIDR IP mask" + +#: ../../operation/agentes/pandora_networkmap.editor.php:212 +msgid "Don't show subgroups:" +msgstr "Don't show subgroups:" + +#: ../../operation/agentes/pandora_networkmap.editor.php:225 +msgid "Method generation networkmap" +msgstr "Method generation of network map" + +#: ../../operation/agentes/pandora_networkmap.editor.php:237 +msgid "Save networkmap" +msgstr "Save network map" + +#: ../../operation/agentes/pandora_networkmap.editor.php:243 +msgid "Update networkmap" +msgstr "Update network map" + +#: ../../operation/agentes/group_view.php:117 +msgid "Summary of the status groups" +msgstr "Summary of the status groups" + +#: ../../operation/agentes/group_view.php:170 +#: ../../include/functions_reporting_html.php:690 +#: ../../include/functions_reporting_html.php:2538 +msgid "Not Init" +msgstr "Uninitialised" + +#: ../../operation/agentes/group_view.php:249 +#: ../../mobile/operation/modules.php:151 +#: ../../mobile/operation/modules.php:152 +#: ../../mobile/operation/modules.php:244 +#: ../../mobile/operation/modules.php:245 +msgid "Tag" +msgstr "Tag" + +#: ../../operation/agentes/group_view.php:430 +#: ../../operation/agentes/estado_agente.php:642 +#: ../../godmode/agentes/modificar_agente.php:646 +msgid "There are no defined agents" +msgstr "There are no defined agents" + +#: ../../operation/agentes/stat_win.php:115 +msgid "There was a problem locating the source of the graph" +msgstr "There was a problem locating the graph source" + +#: ../../operation/agentes/stat_win.php:305 +msgid "Avg. Only" +msgstr "Avg. Only" + +#: ../../operation/agentes/stat_win.php:320 +msgid "Begin time" +msgstr "Start time" + +#: ../../operation/agentes/stat_win.php:345 +#: ../../operation/agentes/graphs.php:140 +msgid "Show events" +msgstr "Show events" + +#: ../../operation/agentes/stat_win.php:356 +msgid "" +"Show events is disabled because this Pandora node is set the event " +"replication." +msgstr "" +"'Show events' is disabled because this Pandora node is set to event " +"replication." + +#: ../../operation/agentes/stat_win.php:362 +#: ../../operation/agentes/graphs.php:142 +msgid "Show alerts" +msgstr "Show alerts" + +#: ../../operation/agentes/stat_win.php:368 +msgid "Show event graph" +msgstr "Show event graph" + +#: ../../operation/agentes/stat_win.php:383 +#: ../../mobile/operation/module_graph.php:418 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1295 +msgid "Time compare (Overlapped)" +msgstr "Time comparison (overlapped)" + +#: ../../operation/agentes/stat_win.php:389 +#: ../../mobile/operation/module_graph.php:410 +msgid "Time compare (Separated)" +msgstr "Time comparison (separated)" + +#: ../../operation/agentes/stat_win.php:395 +#: ../../mobile/operation/module_graph.php:426 +msgid "Show unknown graph" +msgstr "Show unknown graph" + +#: ../../operation/agentes/estado_generalagente.php:42 +msgid "The agent has not assigned server. Maybe agent does not run fine." +msgstr "" +"The agent has not assigned a server. Maybe the agent does not run fine." + +#: ../../operation/agentes/estado_generalagente.php:82 +#: ../../operation/agentes/estado_agente.php:572 +#: ../../mobile/operation/agent.php:129 +#: ../../include/class/Tree.class.php:1796 ../../include/ajax/module.php:879 +#: ../../godmode/massive/massive_edit_agents.php:416 +#: ../../godmode/massive/massive_edit_modules.php:601 +#: ../../godmode/agentes/module_manager_editor_common.php:565 +#: ../../godmode/agentes/planned_downtime.editor.php:488 +#: ../../godmode/agentes/agent_manager.php:423 +#: ../../godmode/agentes/modificar_agente.php:541 +#: ../../godmode/agentes/module_manager.php:643 +#: ../../godmode/agentes/planned_downtime.list.php:427 +msgid "Quiet" +msgstr "Quiet" + +#: ../../operation/agentes/estado_generalagente.php:119 +msgid "" +"Agent statuses are re-calculated by the server, they are not shown in real " +"time." +msgstr "" +"Agent statuses are recalculated by the server and aren't shown in real time." + +#: ../../operation/agentes/estado_generalagente.php:147 +#: ../../extensions/net_tools.php:131 +msgid "IP address" +msgstr "IP address" + +#: ../../operation/agentes/estado_generalagente.php:196 +msgid "Agent contact" +msgstr "Agent contact" + +#: ../../operation/agentes/estado_generalagente.php:218 +msgid "Next contact" +msgstr "Next contact" + +#: ../../operation/agentes/estado_generalagente.php:241 +msgid "Agent info" +msgstr "Agent info" + +#: ../../operation/agentes/estado_generalagente.php:256 +#: ../../include/functions_treeview.php:714 +msgid "Agent access rate (24h)" +msgstr "Agent access rate (24h)" + +#: ../../operation/agentes/estado_generalagente.php:268 +#: ../../include/functions_treeview.php:571 +msgid "Other IP addresses" +msgstr "Other IP addresses" + +#: ../../operation/agentes/estado_generalagente.php:292 +#: ../../godmode/massive/massive_edit_agents.php:368 +#: ../../godmode/servers/servers.build_table.php:160 +#: ../../godmode/agentes/configurar_agente.php:441 +#: ../../godmode/agentes/configurar_agente.php:553 +#: ../../godmode/agentes/agent_manager.php:347 +msgid "Remote configuration" +msgstr "Remote configuration" + +#: ../../operation/agentes/estado_generalagente.php:297 +#: ../../include/functions_groups.php:2158 +#: ../../include/functions_reporting_html.php:2086 +#: ../../godmode/alerts/configure_alert_template.php:663 +msgid "Enabled" +msgstr "Enabled" + +#: ../../operation/agentes/estado_generalagente.php:310 +#: ../../include/functions_treeview.php:659 +msgid "Position (Long, Lat)" +msgstr "Position (Long, Lat)" + +#: ../../operation/agentes/estado_generalagente.php:313 +msgid "There is no GIS data." +msgstr "There is no GIS data." + +#: ../../operation/agentes/estado_generalagente.php:338 +#: ../../include/functions_treeview.php:676 +msgid "Timezone Offset" +msgstr "Timezone Offset" + +#: ../../operation/agentes/estado_generalagente.php:388 +msgid "Active incident on this agent" +msgstr "Active incident on this agent" + +#: ../../operation/agentes/estado_generalagente.php:392 +#: ../../operation/incidents/incident_detail.php:419 +#: ../../godmode/setup/news.php:222 +msgid "Author" +msgstr "Author" + +#: ../../operation/agentes/estado_generalagente.php:397 +msgid "Title" +msgstr "Title" + +#: ../../operation/agentes/estado_generalagente.php:407 +#: ../../operation/incidents/incident_detail.php:318 +#: ../../operation/incidents/incident.php:246 +#: ../../operation/incidents/incident.php:338 +#: ../../include/functions_reporting_html.php:2873 +#: ../../include/functions_events.php:2173 +#: ../../godmode/snmpconsole/snmp_alert.php:941 +#: ../../godmode/snmpconsole/snmp_alert.php:1006 +#: ../../godmode/alerts/alert_view.php:102 +#: ../../godmode/alerts/alert_list.list.php:127 +#: ../../godmode/alerts/configure_alert_template.php:767 +#: ../../godmode/alerts/alert_templates.php:52 +#: ../../godmode/agentes/agent_incidents.php:88 +msgid "Priority" +msgstr "Priority" + +#: ../../operation/agentes/estado_generalagente.php:448 +#: ../../include/functions_treeview.php:796 +msgid "Interface information" +msgstr "Interface information" + +#: ../../operation/agentes/estado_generalagente.php:477 +#: ../../include/functions_treeview.php:774 +msgid "Interface traffic" +msgstr "Interface traffic" + +#: ../../operation/agentes/estado_generalagente.php:538 +msgid "Events info (24hr.)" +msgstr "Event info (24hrs.)" + +#: ../../operation/agentes/estado_generalagente.php:601 +#: ../../mobile/operation/agent.php:214 +#: ../../include/functions_treeview.php:722 +msgid "Events (24h)" +msgstr "Events (24h)" + +#: ../../operation/agentes/estado_generalagente.php:620 +msgid "Refresh data" +msgstr "Refresh data" + +#: ../../operation/agentes/estado_generalagente.php:622 +msgid "Force remote checks" +msgstr "Force remote checks" + +#: ../../operation/agentes/estado_agente.php:156 +msgid "Sucessfully deleted agent" +msgstr "Agent sucessfully deleted" + +#: ../../operation/agentes/estado_agente.php:158 +msgid "There was an error message deleting the agent" +msgstr "An error message appeared when deleting the agent" + +#: ../../operation/agentes/estado_agente.php:175 +#: ../../godmode/agentes/planned_downtime.editor.php:706 +#: ../../godmode/agentes/modificar_agente.php:165 +msgid "Recursion" +msgstr "Recursion" + +#: ../../operation/agentes/estado_agente.php:593 +msgid "Remote config" +msgstr "Remote config" + +#: ../../operation/agentes/gis_view.php:55 +#: ../../godmode/agentes/agent_conf_gis.php:40 +msgid "" +"There is no default map. Please go to the setup for to set a default map." +msgstr "" +"There is no default map. Please go to the setup in order to select one." + +#: ../../operation/agentes/gis_view.php:86 +#: ../../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 "" +"There is no GIS data for this agent, so it'll be found in its default " +"position on the map." + +#: ../../operation/agentes/gis_view.php:91 +msgid "Last position in " +msgstr "Last position in " + +#: ../../operation/agentes/gis_view.php:98 +msgid "Period to show data as path" +msgstr "Period to show data as path" + +#: ../../operation/agentes/gis_view.php:102 +msgid "Refresh path" +msgstr "Refresh path" + +#: ../../operation/agentes/gis_view.php:105 +msgid "Positional data from the last" +msgstr "Positional data from the last" + +#: ../../operation/agentes/gis_view.php:144 +msgid "This agent doesn't have any GIS data." +msgstr "This agent doesn't have any GIS data." + +#: ../../operation/agentes/gis_view.php:172 +#, php-format +msgid "%s Km" +msgstr "%s Km" + +#: ../../operation/agentes/gis_view.php:178 +#: ../../godmode/setup/gis_step_2.php:300 +msgid "Longitude" +msgstr "Longitude" + +#: ../../operation/agentes/gis_view.php:179 +#: ../../godmode/setup/gis_step_2.php:296 +msgid "Latitude" +msgstr "Latitude" + +#: ../../operation/agentes/gis_view.php:180 +#: ../../godmode/setup/gis_step_2.php:304 +msgid "Altitude" +msgstr "Altitude" + +#: ../../operation/agentes/gis_view.php:182 +#: ../../godmode/agentes/planned_downtime.list.php:145 +msgid "To" +msgstr "To" + +#: ../../operation/agentes/gis_view.php:184 +msgid "Distance" +msgstr "Distance" + +#: ../../operation/agentes/gis_view.php:185 +msgid "# of Packages" +msgstr "# of packages" + +#: ../../operation/agentes/gis_view.php:189 +msgid "positional data" +msgstr "positional data" + +#: ../../operation/agentes/status_events.php:31 +#: ../../operation/agentes/status_events.php:32 +msgid "Latest events for this agent" +msgstr "Latest events for this agent" + +#: ../../operation/agentes/graphs.php:86 +msgid "Other modules" +msgstr "Other modules" + +#: ../../operation/agentes/graphs.php:91 +msgid "Modules network no proc" +msgstr "Modules network no proc" + +#: ../../operation/agentes/graphs.php:143 +msgid "the combined graph does not show the alerts into this graph" +msgstr "the combined graph does not show the alerts into this graph" + +#: ../../operation/agentes/graphs.php:145 +msgid "Show as one combined graph" +msgstr "Show as a single combined graph" + +#: ../../operation/agentes/graphs.php:147 +msgid "one combined graph" +msgstr "single combined graph" + +#: ../../operation/agentes/graphs.php:150 +msgid "several graphs for each module" +msgstr "Several graphs per module" + +#: ../../operation/agentes/graphs.php:157 +msgid "Save as custom graph" +msgstr "Save as a custom graph" + +#: ../../operation/agentes/graphs.php:163 +msgid "Filter graphs" +msgstr "Filter graphs" + +#: ../../operation/agentes/graphs.php:210 +msgid "There was an error loading the graph" +msgstr "There was an error loading the graph" + +#: ../../operation/agentes/graphs.php:218 +#: ../../operation/agentes/graphs.php:221 +msgid "Name custom graph" +msgstr "Name the custom graph" + +#: ../../operation/agentes/graphs.php:235 ../../extensions/insert_data.php:194 +#: ../../godmode/setup/snmp_wizard.php:104 +#: ../../godmode/setup/gis_step_2.php:310 +#: ../../godmode/reporting/reporting_builder.main.php:32 +#: ../../godmode/reporting/visual_console_builder.data.php:181 +msgid "Save" +msgstr "Save" + +#: ../../operation/agentes/graphs.php:243 +msgid "Save custom graph" +msgstr "Save custom graph" + +#: ../../operation/agentes/graphs.php:264 +msgid "Custom graph create from the tab graphs in the agent." +msgstr "Custom graph create from the tab graphs in the agent." + +#: ../../operation/agentes/networkmap.dinamic.php:130 +#: ../../mobile/operation/networkmap.php:110 +#: ../../mobile/operation/networkmap.php:129 +#: ../../mobile/operation/networkmap.php:146 +#: ../../include/functions_pandora_networkmap.php:99 +msgid "Pandora FMS" +msgstr "Pandora FMS" + +#: ../../operation/incidents/incident_statistics.php:33 +msgid "Incidents by status" +msgstr "Incidents by status" + +#: ../../operation/incidents/incident_statistics.php:36 +msgid "Incidents by priority" +msgstr "Incidents by priority" + +#: ../../operation/incidents/incident_statistics.php:39 +msgid "Incidents by group" +msgstr "Incidents by group" + +#: ../../operation/incidents/incident_statistics.php:42 +msgid "Incidents by user" +msgstr "Incidents by user" + +#: ../../operation/incidents/incident_statistics.php:45 +msgid "Incidents by source" +msgstr "Incidents by source" + +#: ../../operation/incidents/incident_detail.php:67 +#: ../../godmode/alerts/alert_list.php:170 +#: ../../godmode/massive/massive_add_action_alerts.php:112 +#: ../../godmode/massive/massive_add_alerts.php:112 +#: ../../godmode/massive/massive_add_tags.php:88 +msgid "Successfully added" +msgstr "Successfully added" + +#: ../../operation/incidents/incident_detail.php:68 +#: ../../godmode/alerts/alert_list.php:170 +#: ../../godmode/massive/massive_add_action_alerts.php:59 +#: ../../godmode/massive/massive_add_action_alerts.php:96 +#: ../../godmode/massive/massive_add_action_alerts.php:112 +#: ../../godmode/massive/massive_add_action_alerts.php:116 +#: ../../godmode/massive/massive_add_action_alerts.php:120 +#: ../../godmode/massive/massive_add_alerts.php:113 +#: ../../godmode/massive/massive_delete_action_alerts.php:119 +#: ../../godmode/massive/massive_add_tags.php:89 +msgid "Could not be added" +msgstr "Could not be added" + +#: ../../operation/incidents/incident_detail.php:120 +msgid "No description available" +msgstr "No description available" + +#: ../../operation/incidents/incident_detail.php:160 +msgid "File could not be saved due to database error" +msgstr "The file couldn't be saved due to a database error." + +#: ../../operation/incidents/incident_detail.php:173 +msgid "File uploaded" +msgstr "File uploaded" + +#: ../../operation/incidents/incident_detail.php:174 +msgid "File could not be uploaded" +msgstr "The file could not be uploaded." + +#: ../../operation/incidents/incident_detail.php:233 +msgid "Incident details" +msgstr "Incident details" + +#: ../../operation/incidents/incident_detail.php:238 +#: ../../operation/incidents/incident.php:411 +msgid "Create incident" +msgstr "Create incident" + +#: ../../operation/incidents/incident_detail.php:244 +#: ../../operation/incidents/incident.php:337 +#: ../../godmode/servers/manage_recontask_form.php:311 +#: ../../godmode/servers/manage_recontask.php:291 +#: ../../godmode/agentes/agent_incidents.php:87 +msgid "Incident" +msgstr "Incident" + +#: ../../operation/incidents/incident_detail.php:259 +msgid "Opened at" +msgstr "Opened at" + +#: ../../operation/incidents/incident_detail.php:327 +msgid "Creator" +msgstr "Creator" + +#: ../../operation/incidents/incident_detail.php:376 +msgid "Update incident" +msgstr "Update incident" + +#: ../../operation/incidents/incident_detail.php:382 +msgid "Submit" +msgstr "Submit" + +#: ../../operation/incidents/incident_detail.php:396 +#: ../../operation/incidents/incident_detail.php:400 +msgid "Add note" +msgstr "Add note" + +#: ../../operation/incidents/incident_detail.php:432 +msgid "Notes attached to incident" +msgstr "Notes attached to the incident" + +#: ../../operation/incidents/incident_detail.php:453 +#: ../../operation/incidents/incident_detail.php:505 +msgid "Filename" +msgstr "Filename" + +#: ../../operation/incidents/incident_detail.php:455 +#: ../../extensions/files_repo/files_repo_list.php:60 +#: ../../include/functions_filemanager.php:582 +#: ../../include/functions_visual_map_editor.php:107 +#: ../../include/functions_visual_map_editor.php:149 +#: ../../include/functions_visual_map_editor.php:444 +#: ../../include/functions_visual_map_editor.php:508 +#: ../../godmode/events/event_responses.editor.php:97 +msgid "Size" +msgstr "Size" + +#: ../../operation/incidents/incident_detail.php:481 +msgid "Attached files" +msgstr "Attached files" + +#: ../../operation/incidents/incident_detail.php:499 +#: ../../operation/incidents/incident_detail.php:503 +msgid "Add attachment" +msgstr "Add attachment" + +#: ../../operation/incidents/incident_detail.php:507 +#: ../../extensions/resource_registration.php:876 +#: ../../extensions/plugin_registration.php:43 +#: ../../extensions/extension_uploader.php:85 +#: ../../godmode/alerts/alert_special_days.php:260 +msgid "Upload" +msgstr "Upload" + +#: ../../operation/incidents/incident.php:33 +msgid "Incident management" +msgstr "Incident management" + +#: ../../operation/incidents/incident.php:72 +msgid "Successfully reclaimed ownership" +msgstr "Successfully reclaimed ownership" + +#: ../../operation/incidents/incident.php:73 +msgid "Could not reclame ownership" +msgstr "Could not reclame ownership" + +#: ../../operation/incidents/incident.php:143 +msgid "Error creating incident" +msgstr "Error creating the incident" + +#: ../../operation/incidents/incident.php:146 +msgid "Incident created" +msgstr "Incident created" + +#: ../../operation/incidents/incident.php:233 +msgid "Incidents:" +msgstr "Incidents:" + +#: ../../operation/incidents/incident.php:234 +msgid "All incidents" +msgstr "All incidents" + +#: ../../operation/incidents/incident.php:256 +msgid "Priorities:" +msgstr "Priorities:" + +#: ../../operation/incidents/incident.php:257 +msgid "All priorities" +msgstr "All priorities" + +#: ../../operation/incidents/incident.php:261 +msgid "Users:" +msgstr "Users:" + +#: ../../operation/incidents/incident.php:262 +msgid "All users" +msgstr "All users" + +#: ../../operation/incidents/incident.php:277 +msgid "Agents:" +msgstr "Agents:" + +#: ../../operation/incidents/incident.php:279 +#: ../../godmode/db/db_purge.php:167 +msgid "All agents" +msgstr "All agents" + +#: ../../operation/incidents/incident.php:284 +msgid "Groups:" +msgstr "Groups:" + +#: ../../operation/incidents/incident.php:290 +msgid "Free text:" +msgstr "Free text:" + +#: ../../operation/incidents/incident.php:291 +msgid "Search by incident name or description, list matches." +msgstr "Search by incident name or description, list matches." + +#: ../../operation/incidents/incident.php:340 +#: ../../godmode/servers/servers.build_table.php:72 +#: ../../godmode/agentes/agent_incidents.php:90 +msgid "Updated" +msgstr "Updated" + +#: ../../operation/incidents/incident.php:399 +msgid "Delete incidents" +msgstr "Delete incidents" + +#: ../../operation/incidents/incident.php:403 +msgid "Become owner" +msgstr "Become owner" + +#: ../../extensions/resource_exportation.php:53 +#: ../../extensions/resource_exportation.php:338 +msgid "Resource exportation" +msgstr "Resource exporting" + +#: ../../extensions/resource_exportation.php:341 +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). " +msgstr "" +"This extension makes exporting resource templates easier. You can export " +"resource templates in Pandora FMS 3.x format (.ptr) " + +#: ../../extensions/resource_exportation.php:352 +msgid "Report" +msgstr "Report" + +#: ../../extensions/module_groups.php:39 +msgid "Number fired of alerts" +msgstr "Number of alerts fired" + +#: ../../extensions/module_groups.php:46 +#: ../../godmode/massive/massive_add_alerts.php:174 +#: ../../godmode/massive/massive_enable_disable_alerts.php:148 +#: ../../godmode/massive/massive_standby_alerts.php:148 +#: ../../godmode/massive/massive_delete_alerts.php:206 +msgid "Alert template" +msgstr "Alert template" + +#: ../../extensions/module_groups.php:84 +#: ../../include/functions_filemanager.php:583 +#: ../../include/functions_treeview.php:382 +#: ../../include/functions_reporting_html.php:1952 +#: ../../godmode/alerts/alert_view.php:344 +#: ../../godmode/alerts/alert_list.list.php:121 +#: ../../godmode/alerts/alert_list.list.php:410 +#: ../../godmode/alerts/alert_list.builder.php:83 ../../godmode/menu.php:156 +#: ../../godmode/events/event_responses.list.php:57 +#: ../../godmode/category/category.php:111 +#: ../../godmode/groups/group_list.php:341 +#: ../../godmode/agentes/planned_downtime.editor.php:760 +#: ../../godmode/agentes/modificar_agente.php:494 +#: ../../godmode/agentes/fields_manager.php:97 ../../godmode/tag/tag.php:205 +msgid "Actions" +msgstr "Actions" + +#: ../../extensions/module_groups.php:168 +msgid "Combined table of agent group and module group" +msgstr "Agent group and module group combined table" + +#: ../../extensions/module_groups.php:171 +msgid "" +"This table shows in columns the modules group and in rows agents group. The " +"cell shows all modules" +msgstr "" +"This table shows module groups in the columns, and agent groups in the rows. " +"Cells show all modules." + +#: ../../extensions/module_groups.php:297 +msgid "" +"Orange cell when the module group and agent have at least one alarm fired." +msgstr "" +"Cell is orange when the module and agent groups have at least one alarm " +"fired." + +#: ../../extensions/module_groups.php:298 +msgid "" +"Red cell when the module group and agent have at least one module in " +"critical status and the others in any status" +msgstr "" +"Cell is red when the module and agent groups have at least one module in " +"critical status although others may be in any status." + +#: ../../extensions/module_groups.php:299 +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 "" +"Cell is yellow when module and agent groups have at least one module in " +"warning status, although others may be in green or grey status." + +#: ../../extensions/module_groups.php:300 +msgid "" +"Green cell when the module group and agent have all modules in OK status" +msgstr "" +"Cell is green when the module and agent groups have all modules in normal " +"status." + +#: ../../extensions/module_groups.php:301 +msgid "" +"Grey cell when the module group and agent have at least one in unknown " +"status and the others in green status" +msgstr "" +"Cell is grey when the module and agent groups have at least one module in " +"unknown status and the rest in normal status." + +#: ../../extensions/module_groups.php:302 +msgid "" +"Blue cell when the module group and agent have all modules in not init " +"status." +msgstr "" +"Cell is blue if the module and agent groups all have modules in non-" +"initialised status." + +#: ../../extensions/module_groups.php:307 +msgid "There are no defined groups or module groups" +msgstr "There are no agent or module groups defined." + +#: ../../extensions/resource_registration.php:40 +#, php-format +msgid "Success add '%s' item in report '%s'." +msgstr "Successfully added '%s' item into '%s' report" + +#: ../../extensions/resource_registration.php:41 +#, php-format +msgid "Error create '%s' item in report '%s'." +msgstr "Error creating item '%s' on report '%s'" + +#: ../../extensions/resource_registration.php:68 +#, php-format +msgid "Error create '%s' report, the name exist and there aren't free name." +msgstr "" +"Error creating '%s' report, the name already exists and no other names are " +"available." + +#: ../../extensions/resource_registration.php:75 +#, php-format +msgid "" +"Warning create '%s' report, the name exist, the report have a name %s." +msgstr "" +"Warning creating report '%s': the name already exists and the report has a " +"name '%s'." + +#: ../../extensions/resource_registration.php:82 +msgid "Error the report haven't name." +msgstr "Error. The report is unnamed" + +#: ../../extensions/resource_registration.php:88 +msgid "Error the report haven't group." +msgstr "Error. The report is not in any available group." + +#: ../../extensions/resource_registration.php:98 +#, php-format +msgid "Success create '%s' report." +msgstr "successfully created '%s' report" + +#: ../../extensions/resource_registration.php:99 +#, php-format +msgid "Error create '%s' report." +msgstr "Error creating '%s' report" + +#: ../../extensions/resource_registration.php:327 +#: ../../extensions/resource_registration.php:348 +#: ../../extensions/resource_registration.php:358 +#, php-format +msgid "Success add '%s' content." +msgstr "Success adding the '%s' content" + +#: ../../extensions/resource_registration.php:328 +#: ../../extensions/resource_registration.php:349 +#: ../../extensions/resource_registration.php:359 +#, php-format +msgid "Error add '%s' action." +msgstr "Error adding '%s' action" + +#: ../../extensions/resource_registration.php:335 +#, php-format +msgid "Success add '%s' SLA." +msgstr "Success adding the '%s' SLA" + +#: ../../extensions/resource_registration.php:336 +#, php-format +msgid "Error add '%s' SLA." +msgstr "Error adding the '%s' SLA" + +#: ../../extensions/resource_registration.php:377 +#, php-format +msgid "Error create '%s' visual map, lost tag name." +msgstr "Error creating the '%s' visual map. Tag name is missing." + +#: ../../extensions/resource_registration.php:413 +#, php-format +msgid "" +"Error create '%s' visual map, the name exist and there aren't free name." +msgstr "" +"Error creating the '%s' visual map, the name is already taken and there are " +"no names available" + +#: ../../extensions/resource_registration.php:420 +#, php-format +msgid "" +"Warning create '%s' visual map, the name exist, the report have a name %s." +msgstr "" +"Warning creating the '%s' visual map: the name already exists and the report " +"already has '%s' as a name." + +#: ../../extensions/resource_registration.php:428 +#, php-format +msgid "Success create '%s' visual map." +msgstr "Success creating the '%s' visual map" + +#: ../../extensions/resource_registration.php:429 +#, php-format +msgid "Error create '%s' visual map." +msgstr "'Error creating the '%s' visual map" + +#: ../../extensions/resource_registration.php:535 +#, php-format +msgid "Success create item type '%d' visual map." +msgstr "Success creating item type '%d' on the visual map." + +#: ../../extensions/resource_registration.php:536 +#, php-format +msgid "Error create item type '%d' visual map." +msgstr "Error creating the '%d' visual map" + +#: ../../extensions/resource_registration.php:554 +#: ../../extensions/resource_registration.php:569 +#, php-format +msgid "Success create item for agent '%s' visual map." +msgstr "Success creating the '%s' agent item on the visual map" + +#: ../../extensions/resource_registration.php:555 +#: ../../extensions/resource_registration.php:570 +#, php-format +msgid "Error create item for agent '%s' visual map." +msgstr "Error creating the '%s' agent item on the visual map" + +#: ../../extensions/resource_registration.php:792 +#, php-format +msgid "Success create '%s' component." +msgstr "Success creating '%s' component." + +#: ../../extensions/resource_registration.php:793 +#, php-format +msgid "Error create '%s' component." +msgstr "Error creating '%s' component" + +#: ../../extensions/resource_registration.php:849 +#: ../../extensions/resource_registration.php:889 +msgid "Resource registration" +msgstr "Resource registration" + +#: ../../extensions/resource_registration.php:852 +msgid "Error, please install the PHP libXML in the system." +msgstr "Error: please install PHP libXML on the system" + +#: ../../extensions/resource_registration.php:858 +#, 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" +msgstr "" +"This extension makes registering resource templates easier. Here you can " +"upload a resource template in Pandora FMS 3.x format (.ptr files). Please " +"refer to our documentation for more information on how to obtain and use " +"Pandora FMS' resources.

    You can get more resurces in our Public Resource Library" + +#: ../../extensions/resource_registration.php:872 +msgid "Group filter: " +msgstr "Group filter: " + +#: ../../extensions/disabled/ssh_gateway.php:52 +msgid "You need to specify a user and a host address" +msgstr "You must specify a username and a host address" + +#: ../../extensions/disabled/ssh_gateway.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:66 +msgid "Host address" +msgstr "Host address" + +#: ../../extensions/disabled/ssh_gateway.php:59 +#, php-format +msgid "For security reasons the following characters are not allowed: %s" +msgstr "For security reasons, the following characters are not allowed : %s" + +#: ../../extensions/disabled/ssh_gateway.php:60 +msgid "Connect" +msgstr "Connect" + +#: ../../extensions/disabled/ssh_gateway.php:63 +msgid "Port (use 0 for default)" +msgstr "Port (use 0 as default)" + +#: ../../extensions/disabled/ssh_gateway.php:65 +msgid "Connect mode" +msgstr "Connect mode" + +#: ../../extensions/disabled/matrix_events.php:29 +msgid "Matrix events" +msgstr "Matrix Events" + +#: ../../extensions/disabled/vnc_view.php:25 +msgid "VNC Display (:0 by default)" +msgstr "VNC Display (:0 as default value)" + +#: ../../extensions/disabled/vnc_view.php:28 +msgid "Send" +msgstr "Send" + +#: ../../extensions/disabled/vnc_view.php:42 +msgid "VNC view" +msgstr "VNC mode" + +#: ../../extensions/net_tools.php:96 +msgid "The agent hasn't got IP" +msgstr "The agent doesn't have an IP yet." + +#: ../../extensions/net_tools.php:118 ../../extensions/api_checker.php:132 +#: ../../include/functions_menu.php:574 +#: ../../include/functions_reporting_html.php:1481 +#: ../../include/functions_reporting_html.php:2582 +#: ../../godmode/extensions.php:153 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1748 +msgid "Operation" +msgstr "Operation" + +#: ../../extensions/net_tools.php:120 +msgid "" +"You can set the command path in the menu Administration -> Extensions -" +"> Config Network Tools" +msgstr "" +"You can set the command path from the menu Administration -> Extensions -" +"> Config Network Tools" + +#: ../../extensions/net_tools.php:123 +msgid "Traceroute" +msgstr "Traceroute" + +#: ../../extensions/net_tools.php:124 +msgid "Ping host & Latency" +msgstr "Ping host and retrieve latency values" + +#: ../../extensions/net_tools.php:125 +msgid "SNMP Interface status" +msgstr "SNMP Interface status" + +#: ../../extensions/net_tools.php:126 +msgid "Basic TCP Port Scan" +msgstr "Basic TCP Port Scan" + +#: ../../extensions/net_tools.php:127 +msgid "DiG/Whois Lookup" +msgstr "Look up DiG/Whois" + +#: ../../extensions/net_tools.php:145 +msgid "SNMP Community" +msgstr "SNMP Community" + +#: ../../extensions/net_tools.php:148 ../../include/functions_events.php:1796 +msgid "Execute" +msgstr "Execute" + +#: ../../extensions/net_tools.php:162 +msgid "Traceroute executable does not exist." +msgstr "Traceroute executable does not exist." + +#: ../../extensions/net_tools.php:165 +msgid "Traceroute to " +msgstr "Traceroute to " + +#: ../../extensions/net_tools.php:174 +msgid "Ping executable does not exist." +msgstr "Ping executable does not exist." + +#: ../../extensions/net_tools.php:177 +#, php-format +msgid "Ping to %s" +msgstr "Ping %s" + +#: ../../extensions/net_tools.php:186 +msgid "Nmap executable does not exist." +msgstr "Nmap executable does not exist." + +#: ../../extensions/net_tools.php:189 +msgid "Basic TCP Scan on " +msgstr "Perform basic TCP Scan on " + +#: ../../extensions/net_tools.php:196 +msgid "Domain and IP information for " +msgstr "Domain and IP information on " + +#: ../../extensions/net_tools.php:200 +msgid "Dig executable does not exist." +msgstr "Dig executable does not exist." + +#: ../../extensions/net_tools.php:210 +msgid "Whois executable does not exist." +msgstr "Whois executable does not exist." + +#: ../../extensions/net_tools.php:219 +msgid "SNMP information for " +msgstr "SNMP information on " + +#: ../../extensions/net_tools.php:223 +msgid "SNMPget executable does not exist." +msgstr "SNMPget executable does not exist." + +#: ../../extensions/net_tools.php:226 +msgid "Uptime" +msgstr "Uptime" + +#: ../../extensions/net_tools.php:230 +msgid "Device info" +msgstr "Device info" + +#: ../../extensions/net_tools.php:238 +msgid "Interface" +msgstr "Interface" + +#: ../../extensions/net_tools.php:268 ../../extensions/net_tools.php:343 +msgid "Config Network Tools" +msgstr "Config Network Tools" + +#: ../../extensions/net_tools.php:289 ../../extensions/net_tools.php:290 +msgid "Set the paths." +msgstr "Set paths" + +#: ../../extensions/net_tools.php:310 +msgid "Traceroute path" +msgstr "Traceroute path" + +#: ../../extensions/net_tools.php:311 +msgid "If it is empty, Pandora searchs the traceroute system." +msgstr "If empty, Pandora will search the traceroute system" + +#: ../../extensions/net_tools.php:314 +msgid "Ping path" +msgstr "Ping path" + +#: ../../extensions/net_tools.php:315 +msgid "If it is empty, Pandora searchs the ping system." +msgstr "If empty, Pandora will search the ping system" + +#: ../../extensions/net_tools.php:318 +msgid "Nmap path" +msgstr "Nmap path" + +#: ../../extensions/net_tools.php:319 +msgid "If it is empty, Pandora searchs the nmap system." +msgstr "If empty, Pandora will search the nmap system." + +#: ../../extensions/net_tools.php:322 +msgid "Dig path" +msgstr "Dig path" + +#: ../../extensions/net_tools.php:323 +msgid "If it is empty, Pandora searchs the dig system." +msgstr "If empty, Pandora will search the dig system" + +#: ../../extensions/net_tools.php:326 +msgid "Snmpget path" +msgstr "Snmpget path" + +#: ../../extensions/net_tools.php:327 +msgid "If it is empty, Pandora searchs the snmpget system." +msgstr "If empty, Pandora will search the snmpget system" + +#: ../../extensions/net_tools.php:332 +#: ../../godmode/reporting/reporting_builder.list_items.php:305 +#: ../../godmode/update_manager/update_manager.php:35 +msgid "Options" +msgstr "Options" + +#: ../../extensions/insert_data.php:56 +msgid "Insert data" +msgstr "Insert data" + +#: ../../extensions/insert_data.php:93 +msgid "You haven't privileges for insert data in the agent." +msgstr "You don't have the necessary privileges to add data to the agent" + +#: ../../extensions/insert_data.php:130 +#, php-format +msgid "Can't save agent (%s), module (%s) data xml." +msgstr "Can't save (%s) agent, module (%s) xml data" + +#: ../../extensions/insert_data.php:137 +#, php-format +msgid "Save agent (%s), module (%s) data xml." +msgstr "(%s) Agent saved, module (%s) xml data" + +#: ../../extensions/insert_data.php:146 +#, 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 "" +"Please check if the directory \"%s\" is can be written on by the apache " +"user.

    The CSV file format is " +"date;value<newline>date;value<newline>... The date in CSV has a " +"Y/m/d H:i:s format." + +#: ../../extensions/insert_data.php:179 ../../general/header.php:204 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 +#: ../../godmode/alerts/configure_alert_template.php:592 +#: ../../godmode/alerts/alert_list.builder.php:77 +#: ../../godmode/alerts/alert_list.builder.php:125 +#: ../../godmode/massive/massive_add_alerts.php:176 +#: ../../godmode/massive/massive_delete_modules.php:412 +#: ../../godmode/massive/massive_delete_modules.php:481 +#: ../../godmode/massive/massive_copy_modules.php:95 +#: ../../godmode/massive/massive_edit_modules.php:256 +#: ../../godmode/massive/massive_edit_modules.php:310 +#: ../../godmode/massive/massive_delete_alerts.php:208 +#: ../../godmode/gis_maps/configure_gis_map.php:588 +msgid "Select" +msgstr "Select" + +#: ../../extensions/insert_data.php:258 +msgid "Insert Data" +msgstr "Insert Data" + #: ../../extensions/api_checker.php:92 ../../extensions/api_checker.php:228 msgid "API checker" msgstr "API checker" #: ../../extensions/api_checker.php:99 ../../extensions/users_connected.php:78 +#: ../../include/functions_visual_map_editor.php:653 +#: ../../include/functions_reporting_html.php:1901 +#: ../../include/functions_reporting_html.php:2075 +#: ../../godmode/reporting/visual_console_builder.elements.php:558 #: ../../godmode/admin_access_logs.php:69 #: ../../godmode/admin_access_logs.php:70 -#: ../../godmode/reporting/visual_console_builder.elements.php:558 -#: ../../include/functions_visual_map_editor.php:699 -#: ../../include/functions_reporting_html.php:1907 -#: ../../include/functions_reporting_html.php:2081 -#: ../../enterprise/extensions/ipam/ipam_network.php:272 -#: ../../enterprise/extensions/ipam/ipam_network.php:273 -#: ../../enterprise/include/functions_reporting_pdf.php:2317 msgid "IP" msgstr "IP" @@ -1438,78 +7022,17 @@ msgstr "Pandora Console URL" msgid "API Pass" msgstr "API Pass" -#: ../../extensions/api_checker.php:114 -#: ../../extensions/disabled/ssh_gateway.php:59 -#: ../../extensions/users_connected.php:77 ../../general/login_page.php:140 -#: ../../general/login_page.php:169 ../../general/logon_ok.php:224 -#: ../../general/logon_ok.php:420 ../../godmode/admin_access_logs.php:63 -#: ../../godmode/admin_access_logs.php:188 -#: ../../godmode/events/custom_events.php:77 -#: ../../godmode/events/custom_events.php:155 -#: ../../godmode/setup/setup_ehorus.php:73 ../../include/functions.php:2312 -#: ../../include/functions_config.php:332 -#: ../../include/functions_config.php:343 -#: ../../include/functions_config.php:353 -#: ../../include/functions_events.php:37 -#: ../../include/functions_events.php:3547 -#: ../../include/functions_events.php:3928 -#: ../../include/functions_reporting_html.php:3595 -#: ../../mobile/include/user.class.php:245 -#: ../../mobile/operation/tactical.php:309 -#: ../../operation/events/events.build_table.php:173 -#: ../../operation/events/events.build_table.php:582 -#: ../../operation/search_users.php:68 -#: ../../enterprise/extensions/cron/main.php:196 -#: ../../enterprise/extensions/disabled/check_acls.php:42 -#: ../../enterprise/extensions/disabled/check_acls.php:120 -#: ../../enterprise/extensions/vmware/main.php:243 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:167 -#: ../../enterprise/godmode/servers/manage_export_form.php:97 -#: ../../enterprise/godmode/setup/setup_auth.php:272 -#: ../../enterprise/godmode/setup/setup_auth.php:303 -#: ../../enterprise/godmode/setup/setup_auth.php:334 -#: ../../enterprise/meta/general/login_page.php:79 -#: ../../enterprise/meta/general/login_page.php:108 -#: ../../enterprise/meta/include/functions_events_meta.php:64 -#: ../../enterprise/meta/include/functions_meta.php:859 -#: ../../enterprise/meta/include/functions_meta.php:912 -#: ../../enterprise/meta/include/functions_meta.php:965 -#: ../../enterprise/meta/include/functions_wizard_meta.php:402 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1311 -msgid "User" -msgstr "User" - -#: ../../extensions/api_checker.php:119 ../../general/login_page.php:148 -#: ../../general/login_page.php:176 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:264 -#: ../../godmode/agentes/module_manager_editor_wmi.php:57 -#: ../../godmode/massive/massive_edit_modules.php:528 -#: ../../godmode/modules/manage_network_components_form_wmi.php:50 -#: ../../godmode/setup/setup_ehorus.php:79 -#: ../../godmode/users/configure_user.php:454 -#: ../../include/functions_config.php:334 +#: ../../extensions/api_checker.php:119 +#: ../../mobile/include/user.class.php:252 ../../general/login_page.php:141 +#: ../../general/login_page.php:165 ../../include/functions_config.php:334 #: ../../include/functions_config.php:345 #: ../../include/functions_config.php:355 -#: ../../mobile/include/user.class.php:252 -#: ../../enterprise/extensions/vmware/main.php:248 -#: ../../enterprise/godmode/agentes/inventory_manager.php:191 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:262 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:203 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:326 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:55 -#: ../../enterprise/godmode/servers/manage_export_form.php:101 -#: ../../enterprise/godmode/setup/setup_auth.php:278 -#: ../../enterprise/godmode/setup/setup_auth.php:309 -#: ../../enterprise/godmode/setup/setup_auth.php:340 -#: ../../enterprise/include/functions_setup.php:30 -#: ../../enterprise/include/functions_setup.php:59 -#: ../../enterprise/meta/general/login_page.php:87 -#: ../../enterprise/meta/general/login_page.php:116 -#: ../../enterprise/meta/include/functions_meta.php:869 -#: ../../enterprise/meta/include/functions_meta.php:922 -#: ../../enterprise/meta/include/functions_meta.php:975 -#: ../../enterprise/meta/include/functions_wizard_meta.php:406 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1315 +#: ../../godmode/setup/setup_ehorus.php:79 +#: ../../godmode/massive/massive_edit_modules.php:528 +#: ../../godmode/users/configure_user.php:454 +#: ../../godmode/modules/manage_network_components_form_wmi.php:50 +#: ../../godmode/agentes/module_manager_editor_wmi.php:57 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:264 msgid "Password" msgstr "Password" @@ -1517,40 +7040,6 @@ msgstr "Password" msgid "Action (get or set)" msgstr "Action (get or set)" -#: ../../extensions/api_checker.php:132 ../../extensions/net_tools.php:118 -#: ../../godmode/extensions.php:153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1753 -#: ../../include/functions_menu.php:574 -#: ../../include/functions_reporting_html.php:1487 -#: ../../include/functions_reporting_html.php:2592 -#: ../../enterprise/dashboard/widgets/top_n.php:128 -#: ../../enterprise/dashboard/widgets/top_n.php:337 -#: ../../enterprise/godmode/policies/policy_queue.php:342 -#: ../../enterprise/godmode/policies/policy_queue.php:376 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2106 -#: ../../enterprise/include/functions_reporting_pdf.php:835 -#: ../../enterprise/include/functions_reporting_pdf.php:928 -#: ../../enterprise/meta/advanced/policymanager.queue.php:216 -#: ../../enterprise/meta/advanced/policymanager.queue.php:258 -msgid "Operation" -msgstr "Operation" - -#: ../../extensions/api_checker.php:137 -#: ../../godmode/agentes/agent_incidents.php:85 -#: ../../godmode/agentes/agent_manager.php:163 -#: ../../godmode/agentes/fields_manager.php:94 -#: ../../godmode/agentes/module_manager_editor_common.php:156 -#: ../../godmode/alerts/alert_commands.php:331 -#: ../../godmode/groups/group_list.php:337 -#: ../../godmode/groups/modu_group_list.php:182 -#: ../../godmode/modules/module_list.php:58 ../../godmode/setup/os.list.php:33 -#: ../../include/functions_events.php:3511 -#: ../../operation/events/events.build_table.php:133 -#: ../../operation/incidents/incident.php:335 -msgid "ID" -msgstr "ID" - #: ../../extensions/api_checker.php:142 msgid "ID 2" msgstr "ID 2" @@ -1559,33 +7048,6 @@ msgstr "ID 2" msgid "Return Type" msgstr "Return Type" -#: ../../extensions/api_checker.php:152 -#: ../../godmode/groups/configure_group.php:190 -#: ../../godmode/snmpconsole/snmp_alert.php:33 -#: ../../include/functions_graph.php:2596 -#: ../../include/functions_graph.php:2746 -#: ../../include/functions_graph.php:2787 -#: ../../include/functions_graph.php:2828 -#: ../../include/functions_graph.php:2884 -#: ../../include/functions_graph.php:2940 -#: ../../include/functions_graph.php:2994 -#: ../../include/functions_graph.php:3172 -#: ../../include/functions_graph.php:3317 -#: ../../include/functions_graph.php:3367 -#: ../../include/functions_graph.php:4366 -#: ../../operation/gis_maps/render_view.php:152 -#: ../../operation/snmpconsole/snmp_statistics.php:172 -#: ../../operation/snmpconsole/snmp_statistics.php:219 -#: ../../operation/snmpconsole/snmp_view.php:429 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:832 -#: ../../operation/users/user_edit.php:282 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 -#: ../../enterprise/godmode/setup/setup_acl.php:157 -msgid "Other" -msgstr "Other" - #: ../../extensions/api_checker.php:157 msgid "Other Mode" msgstr "Alternate mode" @@ -1595,8 +7057,6 @@ msgid "Raw URL" msgstr "Raw URL" #: ../../extensions/api_checker.php:171 -#: ../../enterprise/meta/include/functions_wizard_meta.php:833 -#: ../../enterprise/meta/include/functions_wizard_meta.php:918 msgid "Credentials" msgstr "Credentials" @@ -1617,17 +7077,6 @@ msgstr "Custom URL" msgid "Result" msgstr "Result" -#: ../../extensions/api_checker.php:201 -#: ../../godmode/events/event_responses.editor.php:114 -#: ../../godmode/events/event_responses.editor.php:121 -#: ../../godmode/events/event_responses.editor.php:124 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1243 -#: ../../operation/gis_maps/ajax.php:293 -#: ../../enterprise/dashboard/widgets/url.php:25 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1549 -msgid "URL" -msgstr "URL" - #: ../../extensions/api_checker.php:203 ../../extensions/api_checker.php:220 msgid "Show URL" msgstr "Show URL" @@ -1636,6 +7085,114 @@ msgstr "Show URL" msgid "Hide URL" msgstr "Hide URL" +#: ../../extensions/users_connected.php:38 +#: ../../extensions/users_connected.php:122 +#: ../../extensions/users_connected.php:123 +msgid "Users connected" +msgstr "Connected users" + +#: ../../extensions/users_connected.php:66 +msgid "No other users connected" +msgstr "No other users connected" + +#: ../../extensions/agents_modules.php:103 +#: ../../extensions/agents_alerts.php:81 +#: ../../include/functions_netflow.php:1134 +#: ../../include/functions_netflow.php:1144 +#: ../../include/functions_netflow.php:1161 +#: ../../include/functions_netflow.php:1169 +#: ../../include/functions_netflow.php:1193 +#: ../../include/functions_html.php:727 ../../include/functions.php:430 +#: ../../include/functions.php:564 +#: ../../godmode/snmpconsole/snmp_alert.php:938 +#: ../../godmode/alerts/configure_alert_action.php:144 +#: ../../godmode/alerts/alert_list.builder.php:136 +#: ../../godmode/setup/setup_visuals.php:711 +msgid "seconds" +msgstr "seconds" + +#: ../../extensions/agents_modules.php:154 +#: ../../extensions/agents_modules.php:156 +#: ../../godmode/massive/massive_add_action_alerts.php:171 +#: ../../godmode/massive/massive_add_alerts.php:169 +#: ../../godmode/massive/massive_delete_action_alerts.php:172 +#: ../../godmode/massive/massive_delete_modules.php:501 +#: ../../godmode/massive/massive_edit_modules.php:349 +#: ../../godmode/massive/massive_delete_alerts.php:229 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1045 +msgid "Show common modules" +msgstr "Show common modules" + +#: ../../extensions/agents_modules.php:155 +#: ../../godmode/massive/massive_add_action_alerts.php:172 +#: ../../godmode/massive/massive_add_alerts.php:169 +#: ../../godmode/massive/massive_delete_action_alerts.php:173 +#: ../../godmode/massive/massive_delete_modules.php:501 +#: ../../godmode/massive/massive_edit_modules.php:350 +#: ../../godmode/massive/massive_delete_alerts.php:229 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1046 +msgid "Show all modules" +msgstr "Show all modules" + +#: ../../extensions/agents_modules.php:165 +#: ../../include/functions_visual_map_editor.php:627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1512 +msgid "Update item" +msgstr "Update item" + +#: ../../extensions/agents_modules.php:176 +#: ../../include/functions_reports.php:588 +#: ../../include/graphs/functions_pchart.php:1196 +msgid "Agents/Modules" +msgstr "Agents/Modules" + +#: ../../extensions/agents_modules.php:305 +#: ../../include/functions_reporting.php:1679 +msgid "There are no agents with modules" +msgstr "There are no agents with modules" + +#: ../../extensions/agents_modules.php:331 +msgid "Previous modules" +msgstr "Previous modules" + +#: ../../extensions/agents_modules.php:370 +msgid "More modules" +msgstr "More modules" + +#: ../../extensions/agents_modules.php:491 +#: ../../include/functions_reporting_html.php:1439 +msgid "Orange cell when the module has fired alerts" +msgstr "Cell turns orange when there are alerts for that module" + +#: ../../extensions/agents_modules.php:492 +#: ../../include/functions_reporting_html.php:1440 +msgid "Red cell when the module has a critical status" +msgstr "Cell turns red when a module is in 'critical' status" + +#: ../../extensions/agents_modules.php:493 +#: ../../include/functions_reporting_html.php:1441 +msgid "Yellow cell when the module has a warning status" +msgstr "Cell turns yellow when a module is in 'warning' status" + +#: ../../extensions/agents_modules.php:494 +#: ../../include/functions_reporting_html.php:1442 +msgid "Green cell when the module has a normal status" +msgstr "Cell turns green when a module is in 'normal' status" + +#: ../../extensions/agents_modules.php:495 +#: ../../include/functions_reporting_html.php:1443 +msgid "Grey cell when the module has an unknown status" +msgstr "Cell turns grey when the module is in 'unknown' status" + +#: ../../extensions/agents_modules.php:496 +#: ../../include/functions_reporting_html.php:1444 +msgid "Cell turns grey when the module is in 'not initialize' status" +msgstr "Cell turns grey when the module is in 'not initialize' status" + +#: ../../extensions/agents_modules.php:538 +msgid "Agents/Modules view" +msgstr "Agent/Module view" + #: ../../extensions/db_status.php:43 ../../extensions/db_status.php:361 msgid "DB Status" msgstr "DB Status" @@ -1785,1769 +7342,6 @@ msgstr "Run SQL query" msgid "DB interface" msgstr "DB interface" -#: ../../extensions/disabled/matrix_events.php:29 -msgid "Matrix events" -msgstr "Matrix Events" - -#: ../../extensions/disabled/ssh_gateway.php:52 -msgid "You need to specify a user and a host address" -msgstr "You must specify a username and a host address" - -#: ../../extensions/disabled/ssh_gateway.php:57 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:66 -msgid "Host address" -msgstr "Host address" - -#: ../../extensions/disabled/ssh_gateway.php:59 -#, php-format -msgid "For security reasons the following characters are not allowed: %s" -msgstr "For security reasons, the following characters are not allowed : %s" - -#: ../../extensions/disabled/ssh_gateway.php:60 -msgid "Connect" -msgstr "Connect" - -#: ../../extensions/disabled/ssh_gateway.php:63 -msgid "Port (use 0 for default)" -msgstr "Port (use 0 as default)" - -#: ../../extensions/disabled/ssh_gateway.php:65 -msgid "Connect mode" -msgstr "Connect mode" - -#: ../../extensions/disabled/vnc_view.php:25 -msgid "VNC Display (:0 by default)" -msgstr "VNC Display (:0 as default value)" - -#: ../../extensions/disabled/vnc_view.php:28 -msgid "Send" -msgstr "Send" - -#: ../../extensions/disabled/vnc_view.php:42 -msgid "VNC view" -msgstr "VNC mode" - -#: ../../extensions/extension_uploader.php:28 -msgid "Uploader extension" -msgstr "Upload extension" - -#: ../../extensions/extension_uploader.php:64 -msgid "Success to upload extension" -msgstr "Successfully uploaded extension" - -#: ../../extensions/extension_uploader.php:65 -msgid "Fail to upload extension" -msgstr "Failed to upload extension" - -#: ../../extensions/extension_uploader.php:73 -msgid "Upload extension" -msgstr "Upload extension" - -#: ../../extensions/extension_uploader.php:75 -msgid "Upload the extension as a zip file." -msgstr "Upload the extension as a zip file." - -#: ../../extensions/extension_uploader.php:77 -msgid "Upload enterprise extension" -msgstr "Upload enterprise extension" - -#: ../../extensions/extension_uploader.php:85 -#: ../../extensions/plugin_registration.php:43 -#: ../../extensions/resource_registration.php:876 -#: ../../godmode/alerts/alert_special_days.php:260 -#: ../../operation/incidents/incident_detail.php:507 -#: ../../enterprise/include/functions_policies.php:4110 -msgid "Upload" -msgstr "Upload" - -#: ../../extensions/extension_uploader.php:90 -msgid "Extension uploader" -msgstr "Extension uploader" - -#: ../../extensions/files_repo/files_repo_form.php:65 -#: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../include/functions_maps.php:40 -#: ../../include/functions_networkmap.php:1632 -#: ../../mobile/include/functions_web.php:26 -#: ../../mobile/operation/groups.php:66 ../../mobile/operation/home.php:50 -#: ../../operation/agentes/pandora_networkmap.php:404 -#: ../../operation/tree.php:61 -#: ../../enterprise/dashboard/widgets/events_list.php:57 -#: ../../enterprise/dashboard/widgets/groups_status.php:28 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:35 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:35 -#: ../../enterprise/dashboard/widgets/tree_view.php:34 -#: ../../enterprise/godmode/setup/setup_auth.php:427 -#: ../../enterprise/godmode/setup/setup_auth.php:468 -msgid "Groups" -msgstr "Groups" - -#: ../../extensions/files_repo/files_repo_form.php:72 -#: ../../extensions/files_repo/files_repo_list.php:59 -#: ../../godmode/agentes/agent_manager.php:305 -#: ../../godmode/agentes/agent_template.php:230 -#: ../../godmode/agentes/modificar_agente.php:493 -#: ../../godmode/agentes/module_manager.php:563 -#: ../../godmode/agentes/module_manager_editor_common.php:356 -#: ../../godmode/agentes/planned_downtime.editor.php:482 -#: ../../godmode/agentes/planned_downtime.list.php:392 -#: ../../godmode/alerts/alert_commands.php:332 -#: ../../godmode/alerts/alert_templates.php:47 -#: ../../godmode/alerts/configure_alert_command.php:155 -#: ../../godmode/alerts/configure_alert_special_days.php:90 -#: ../../godmode/alerts/configure_alert_template.php:763 -#: ../../godmode/events/event_responses.editor.php:87 -#: ../../godmode/events/event_responses.list.php:55 -#: ../../godmode/groups/configure_group.php:182 -#: ../../godmode/groups/group_list.php:340 -#: ../../godmode/massive/massive_edit_agents.php:321 -#: ../../godmode/massive/massive_edit_modules.php:459 -#: ../../godmode/massive/massive_edit_plugins.php:451 -#: ../../godmode/modules/manage_network_components.php:567 -#: ../../godmode/modules/manage_network_components_form.php:263 -#: ../../godmode/modules/manage_network_templates.php:191 -#: ../../godmode/modules/manage_network_templates_form.php:150 -#: ../../godmode/modules/manage_network_templates_form.php:201 -#: ../../godmode/modules/module_list.php:60 -#: ../../godmode/netflow/nf_item_list.php:149 -#: ../../godmode/reporting/graph_builder.main.php:123 -#: ../../godmode/reporting/graphs.php:153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:684 -#: ../../godmode/reporting/reporting_builder.list_items.php:306 -#: ../../godmode/reporting/reporting_builder.main.php:121 -#: ../../godmode/reporting/reporting_builder.php:533 -#: ../../godmode/servers/modificar_server.php:48 -#: ../../godmode/servers/plugin.php:312 ../../godmode/servers/plugin.php:444 -#: ../../godmode/servers/recon_script.php:107 -#: ../../godmode/servers/recon_script.php:154 -#: ../../godmode/servers/recon_script.php:349 -#: ../../godmode/setup/os.builder.php:36 ../../godmode/setup/os.list.php:35 -#: ../../godmode/setup/snmp_wizard.php:40 -#: ../../godmode/snmpconsole/snmp_alert.php:627 -#: ../../godmode/snmpconsole/snmp_alert.php:1163 -#: ../../godmode/snmpconsole/snmp_filters.php:94 -#: ../../godmode/snmpconsole/snmp_filters.php:131 -#: ../../godmode/tag/edit_tag.php:177 ../../godmode/tag/tag.php:156 -#: ../../godmode/tag/tag.php:200 ../../godmode/users/user_list.php:277 -#: ../../include/ajax/module.php:744 ../../include/functions_events.php:1810 -#: ../../include/functions_reporting_html.php:123 -#: ../../include/functions_reporting_html.php:2082 -#: ../../include/functions_reporting_html.php:2115 -#: ../../include/functions_reporting_html.php:3106 -#: ../../include/functions_reporting_html.php:3820 -#: ../../include/functions_snmp_browser.php:415 -#: ../../include/functions_treeview.php:129 -#: ../../include/functions_treeview.php:587 -#: ../../mobile/operation/tactical.php:312 -#: ../../operation/agentes/custom_fields.php:64 -#: ../../operation/agentes/estado_agente.php:495 -#: ../../operation/agentes/estado_generalagente.php:171 -#: ../../operation/agentes/gis_view.php:183 -#: ../../operation/agentes/pandora_networkmap.editor.php:191 -#: ../../operation/events/events.php:91 ../../operation/gis_maps/ajax.php:302 -#: ../../operation/incidents/incident_detail.php:454 -#: ../../operation/incidents/incident_detail.php:506 -#: ../../operation/reporting/custom_reporting.php:39 -#: ../../operation/reporting/graph_viewer.php:339 -#: ../../operation/search_graphs.php:34 ../../operation/search_reports.php:39 -#: ../../operation/search_users.php:53 -#: ../../enterprise/extensions/backup/main.php:98 -#: ../../enterprise/extensions/backup/main.php:213 -#: ../../enterprise/extensions/cron/functions.php:62 -#: ../../enterprise/extensions/ipam/ipam_editor.php:85 -#: ../../enterprise/extensions/ipam/ipam_list.php:160 -#: ../../enterprise/extensions/ipam/ipam_network.php:143 -#: ../../enterprise/godmode/agentes/collection_manager.php:107 -#: ../../enterprise/godmode/agentes/collection_manager.php:165 -#: ../../enterprise/godmode/agentes/collections.php:234 -#: ../../enterprise/godmode/agentes/inventory_manager.php:234 -#: ../../enterprise/godmode/alerts/alert_events.php:501 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:241 -#: ../../enterprise/godmode/modules/configure_local_component.php:305 -#: ../../enterprise/godmode/modules/configure_local_component.php:443 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:155 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:80 -#: ../../enterprise/godmode/policies/configure_policy.php:75 -#: ../../enterprise/godmode/policies/policy_collections.php:123 -#: ../../enterprise/godmode/policies/policy_collections.php:194 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:243 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:163 -#: ../../enterprise/godmode/reporting/graph_template_list.php:125 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:286 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:122 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1223 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 -#: ../../enterprise/godmode/services/services.elements.php:383 -#: ../../enterprise/godmode/services/services.service.php:247 -#: ../../enterprise/godmode/setup/edit_skin.php:231 -#: ../../enterprise/godmode/setup/setup_skins.php:119 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:322 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:78 -#: ../../enterprise/include/functions_netflow_pdf.php:166 -#: ../../enterprise/include/functions_reporting.php:4559 -#: ../../enterprise/include/functions_reporting_csv.php:256 -#: ../../enterprise/include/functions_reporting_csv.php:259 -#: ../../enterprise/include/functions_reporting_csv.php:341 -#: ../../enterprise/include/functions_reporting_csv.php:343 -#: ../../enterprise/include/functions_reporting_csv.php:372 -#: ../../enterprise/include/functions_reporting_csv.php:374 -#: ../../enterprise/include/functions_reporting_csv.php:398 -#: ../../enterprise/include/functions_reporting_csv.php:400 -#: ../../enterprise/include/functions_reporting_csv.php:425 -#: ../../enterprise/include/functions_reporting_csv.php:427 -#: ../../enterprise/include/functions_reporting_csv.php:451 -#: ../../enterprise/include/functions_reporting_csv.php:453 -#: ../../enterprise/include/functions_reporting_csv.php:491 -#: ../../enterprise/include/functions_reporting_csv.php:493 -#: ../../enterprise/include/functions_reporting_csv.php:519 -#: ../../enterprise/include/functions_reporting_csv.php:521 -#: ../../enterprise/include/functions_reporting_csv.php:523 -#: ../../enterprise/include/functions_reporting_csv.php:554 -#: ../../enterprise/include/functions_reporting_csv.php:556 -#: ../../enterprise/include/functions_reporting_csv.php:558 -#: ../../enterprise/include/functions_reporting_csv.php:590 -#: ../../enterprise/include/functions_reporting_csv.php:592 -#: ../../enterprise/include/functions_reporting_csv.php:594 -#: ../../enterprise/include/functions_reporting_csv.php:626 -#: ../../enterprise/include/functions_reporting_csv.php:628 -#: ../../enterprise/include/functions_reporting_csv.php:631 -#: ../../enterprise/include/functions_reporting_csv.php:661 -#: ../../enterprise/include/functions_reporting_csv.php:663 -#: ../../enterprise/include/functions_reporting_csv.php:695 -#: ../../enterprise/include/functions_reporting_csv.php:697 -#: ../../enterprise/include/functions_reporting_csv.php:699 -#: ../../enterprise/include/functions_reporting_csv.php:731 -#: ../../enterprise/include/functions_reporting_csv.php:733 -#: ../../enterprise/include/functions_reporting_csv.php:735 -#: ../../enterprise/include/functions_reporting_csv.php:767 -#: ../../enterprise/include/functions_reporting_csv.php:769 -#: ../../enterprise/include/functions_reporting_csv.php:771 -#: ../../enterprise/include/functions_reporting_csv.php:803 -#: ../../enterprise/include/functions_reporting_csv.php:805 -#: ../../enterprise/include/functions_reporting_csv.php:807 -#: ../../enterprise/include/functions_reporting_csv.php:839 -#: ../../enterprise/include/functions_reporting_csv.php:841 -#: ../../enterprise/include/functions_reporting_csv.php:843 -#: ../../enterprise/include/functions_reporting_csv.php:875 -#: ../../enterprise/include/functions_reporting_csv.php:877 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_csv.php:918 -#: ../../enterprise/include/functions_reporting_csv.php:1039 -#: ../../enterprise/include/functions_reporting_csv.php:1152 -#: ../../enterprise/include/functions_reporting_csv.php:1299 -#: ../../enterprise/include/functions_reporting_csv.php:1364 -#: ../../enterprise/include/functions_reporting_csv.php:1504 -#: ../../enterprise/include/functions_reporting_csv.php:1508 -#: ../../enterprise/include/functions_reporting_pdf.php:2175 -#: ../../enterprise/include/functions_reporting_pdf.php:2318 -#: ../../enterprise/include/functions_reporting_pdf.php:2366 -#: ../../enterprise/include/functions_reporting_pdf.php:2421 -#: ../../enterprise/include/functions_services.php:1414 -#: ../../enterprise/include/functions_update_manager.php:172 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:102 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1113 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1393 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1658 -#: ../../enterprise/meta/include/functions_wizard_meta.php:158 -#: ../../enterprise/meta/include/functions_wizard_meta.php:369 -#: ../../enterprise/meta/include/functions_wizard_meta.php:469 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1005 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1302 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1419 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1519 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1637 -#: ../../enterprise/mobile/include/enterprise.class.php:80 -#: ../../enterprise/operation/agentes/collection_view.php:65 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:358 -#: ../../enterprise/operation/agentes/policy_view.php:49 -#: ../../enterprise/operation/agentes/transactional_map.php:149 -#: ../../enterprise/operation/agentes/ver_agente.php:58 -#: ../../enterprise/operation/services/services.list.php:331 -#: ../../enterprise/operation/services/services.service.php:130 -msgid "Description" -msgstr "Description" - -#: ../../extensions/files_repo/files_repo_form.php:73 -msgid "Only 200 characters are permitted" -msgstr "200 characters max." - -#: ../../extensions/files_repo/files_repo_form.php:84 -#: ../../extensions/system_info.php:471 ../../extensions/system_info.php:526 -#: ../../godmode/extensions.php:143 -msgid "File" -msgstr "File" - -#: ../../extensions/files_repo/files_repo_form.php:87 -#: ../../extensions/files_repo/files_repo_form.php:93 -#: ../../extensions/files_repo/files_repo_list.php:89 -msgid "Public link" -msgstr "Public link" - -#: ../../extensions/files_repo/files_repo_form.php:88 -#: ../../extensions/net_tools.php:338 -#: ../../godmode/agentes/agent_conf_gis.php:88 -#: ../../godmode/agentes/agent_manager.php:489 -#: ../../godmode/agentes/agent_template.php:253 -#: ../../godmode/agentes/configure_field.php:61 -#: ../../godmode/agentes/module_manager_editor.php:525 -#: ../../godmode/agentes/planned_downtime.editor.php:624 -#: ../../godmode/agentes/planned_downtime.list.php:466 -#: ../../godmode/agentes/planned_downtime.list.php:475 -#: ../../godmode/alerts/alert_list.list.php:147 -#: ../../godmode/alerts/alert_list.list.php:155 -#: ../../godmode/alerts/configure_alert_action.php:216 -#: ../../godmode/alerts/configure_alert_action.php:222 -#: ../../godmode/alerts/configure_alert_command.php:198 -#: ../../godmode/alerts/configure_alert_special_days.php:102 -#: ../../godmode/category/edit_category.php:169 -#: ../../godmode/events/custom_events.php:201 -#: ../../godmode/events/event_edit_filter.php:401 -#: ../../godmode/events/event_responses.editor.php:145 -#: ../../godmode/groups/configure_group.php:221 -#: ../../godmode/groups/configure_modu_group.php:83 -#: ../../godmode/massive/massive_edit_agents.php:473 -#: ../../godmode/massive/massive_edit_modules.php:619 -#: ../../godmode/massive/massive_edit_plugins.php:321 -#: ../../godmode/modules/manage_nc_groups_form.php:80 -#: ../../godmode/modules/manage_network_components_form.php:274 -#: ../../godmode/modules/manage_network_templates_form.php:156 -#: ../../godmode/netflow/nf_edit_form.php:240 -#: ../../godmode/reporting/graph_builder.main.php:183 -#: ../../godmode/reporting/reporting_builder.main.php:38 -#: ../../godmode/reporting/visual_console_builder.data.php:185 -#: ../../godmode/reporting/visual_console_builder.elements.php:516 -#: ../../godmode/servers/manage_recontask_form.php:407 -#: ../../godmode/servers/modificar_server.php:53 -#: ../../godmode/servers/plugin.php:173 ../../godmode/servers/plugin.php:546 -#: ../../godmode/servers/recon_script.php:223 -#: ../../godmode/setup/links.php:120 ../../godmode/setup/news.php:207 -#: ../../godmode/setup/os.php:57 ../../godmode/setup/os.php:110 -#: ../../godmode/setup/performance.php:154 -#: ../../godmode/setup/setup_auth.php:202 -#: ../../godmode/setup/setup_ehorus.php:57 -#: ../../godmode/setup/setup_ehorus.php:158 -#: ../../godmode/setup/setup_general.php:232 -#: ../../godmode/setup/setup_netflow.php:81 -#: ../../godmode/setup/setup_visuals.php:766 -#: ../../godmode/setup/snmp_wizard.php:106 -#: ../../godmode/snmpconsole/snmp_alert.php:977 -#: ../../godmode/snmpconsole/snmp_alert.php:1232 -#: ../../godmode/snmpconsole/snmp_filters.php:105 -#: ../../godmode/snmpconsole/snmp_filters.php:142 -#: ../../godmode/tag/edit_tag.php:224 -#: ../../godmode/update_manager/update_manager.setup.php:132 -#: ../../godmode/users/configure_profile.php:381 -#: ../../godmode/users/configure_user.php:594 -#: ../../include/ajax/alert_list.ajax.php:172 -#: ../../include/functions_events.php:1706 -#: ../../include/functions_events.php:1744 -#: ../../include/functions_visual_map_editor.php:465 -#: ../../include/functions_pandora_networkmap.php:1486 -#: ../../operation/agentes/datos_agente.php:209 -#: ../../operation/events/events_list.php:628 -#: ../../operation/reporting/reporting_viewer.php:201 -#: ../../operation/snmpconsole/snmp_view.php:450 -#: ../../operation/users/user_edit.php:472 -#: ../../enterprise/dashboard/main_dashboard.php:286 -#: ../../enterprise/dashboard/widget.php:190 -#: ../../enterprise/extensions/cron/main.php:350 -#: ../../enterprise/extensions/ipam/ipam_editor.php:118 -#: ../../enterprise/extensions/ipam/ipam_massive.php:95 -#: ../../enterprise/extensions/ipam/ipam_network.php:670 -#: ../../enterprise/extensions/translate_string.php:306 -#: ../../enterprise/extensions/translate_string.php:313 -#: ../../enterprise/extensions/vmware/vmware_view.php:1353 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:216 -#: ../../enterprise/godmode/agentes/collection_manager.php:132 -#: ../../enterprise/godmode/agentes/collection_manager.php:217 -#: ../../enterprise/godmode/agentes/collections.data.php:95 -#: ../../enterprise/godmode/agentes/collections.data.php:202 -#: ../../enterprise/godmode/agentes/collections.data.php:260 -#: ../../enterprise/godmode/agentes/collections.data.php:335 -#: ../../enterprise/godmode/agentes/collections.editor.php:130 -#: ../../enterprise/godmode/agentes/collections.editor.php:196 -#: ../../enterprise/godmode/agentes/inventory_manager.php:204 -#: ../../enterprise/godmode/agentes/inventory_manager.php:267 -#: ../../enterprise/godmode/agentes/plugins_manager.php:145 -#: ../../enterprise/godmode/agentes/plugins_manager.php:179 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:225 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:300 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:291 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:126 -#: ../../enterprise/godmode/modules/configure_local_component.php:486 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:228 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:115 -#: ../../enterprise/godmode/policies/configure_policy.php:86 -#: ../../enterprise/godmode/policies/policy_collections.php:158 -#: ../../enterprise/godmode/policies/policy_collections.php:210 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:274 -#: ../../enterprise/godmode/policies/policy_modules.php:364 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:229 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:109 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:146 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:78 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:88 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:327 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:87 -#: ../../enterprise/godmode/servers/manage_export_form.php:120 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:172 -#: ../../enterprise/godmode/services/services.elements.php:421 -#: ../../enterprise/godmode/services/services.service.php:377 -#: ../../enterprise/godmode/setup/edit_skin.php:262 -#: ../../enterprise/godmode/setup/setup.php:225 -#: ../../enterprise/godmode/setup/setup.php:318 -#: ../../enterprise/godmode/setup/setup_history.php:84 -#: ../../enterprise/godmode/setup/setup_log_collector.php:55 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:218 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:345 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:86 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:348 -#: ../../enterprise/meta/advanced/metasetup.password.php:146 -#: ../../enterprise/meta/advanced/metasetup.performance.php:103 -#: ../../enterprise/meta/advanced/metasetup.setup.php:258 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:102 -#: ../../enterprise/meta/advanced/metasetup.visual.php:283 -#: ../../enterprise/meta/event/custom_events.php:197 -#: ../../enterprise/operation/agentes/collection_view.php:98 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:191 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:399 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:76 -#: ../../enterprise/operation/agentes/policy_view.php:161 -msgid "Update" -msgstr "Update" - -#: ../../extensions/files_repo/files_repo_form.php:94 -#: ../../godmode/agentes/planned_downtime.editor.php:628 -#: ../../godmode/agentes/planned_downtime.editor.php:724 -#: ../../godmode/agentes/planned_downtime.editor.php:864 -#: ../../godmode/alerts/alert_list.list.php:632 -#: ../../godmode/events/event_edit_filter.php:353 -#: ../../godmode/events/event_edit_filter.php:368 -#: ../../godmode/massive/massive_add_action_alerts.php:205 -#: ../../godmode/massive/massive_add_alerts.php:185 -#: ../../godmode/massive/massive_add_tags.php:161 -#: ../../godmode/modules/manage_network_templates_form.php:310 -#: ../../godmode/reporting/graph_builder.graph_editor.php:163 -#: ../../godmode/reporting/visual_console_builder.wizard.php:367 -#: ../../godmode/servers/manage_recontask_form.php:411 -#: ../../godmode/servers/plugin.php:796 -#: ../../godmode/servers/recon_script.php:383 -#: ../../godmode/setup/links.php:158 ../../godmode/setup/news.php:275 -#: ../../godmode/setup/setup_visuals.php:710 -#: ../../godmode/setup/setup_visuals.php:746 -#: ../../godmode/snmpconsole/snmp_alert.php:1317 -#: ../../godmode/users/configure_profile.php:375 -#: ../../operation/events/events_list.php:336 -#: ../../operation/events/events_list.php:363 -#: ../../operation/incidents/incident_detail.php:404 -#: ../../enterprise/dashboard/main_dashboard.php:340 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:186 -#: ../../enterprise/godmode/agentes/collection_manager.php:109 -#: ../../enterprise/godmode/agentes/collection_manager.php:126 -#: ../../enterprise/godmode/agentes/inventory_manager.php:208 -#: ../../enterprise/godmode/agentes/plugins_manager.php:127 -#: ../../enterprise/godmode/alerts/alert_events_list.php:608 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:123 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:112 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:110 -#: ../../enterprise/godmode/policies/policy_alerts.php:474 -#: ../../enterprise/godmode/policies/policy_alerts.php:520 -#: ../../enterprise/godmode/policies/policy_collections.php:196 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:285 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:336 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:219 -#: ../../enterprise/godmode/policies/policy_plugins.php:70 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:183 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:316 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:162 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:193 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:133 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:380 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:78 -#: ../../enterprise/godmode/servers/manage_export_form.php:122 -#: ../../enterprise/godmode/setup/setup_acl.php:172 -#: ../../enterprise/godmode/setup/setup_acl.php:191 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:221 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:329 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:352 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:484 -#: ../../enterprise/meta/advanced/metasetup.visual.php:149 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1213 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:235 -msgid "Add" -msgstr "Add" - -#: ../../extensions/files_repo/files_repo_get_file.php:65 -msgid "Unreliable petition" -msgstr "Unreliable petition" - -#: ../../extensions/files_repo/files_repo_get_file.php:65 -msgid "Please contact the administrator" -msgstr "Please contact the administrator." - -#: ../../extensions/files_repo/files_repo_list.php:58 -#: ../../godmode/agentes/configure_field.php:48 -#: ../../godmode/agentes/module_manager.php:545 -#: ../../godmode/agentes/module_manager_editor_common.php:149 -#: ../../godmode/agentes/module_manager_editor_common.php:655 -#: ../../godmode/agentes/planned_downtime.editor.php:478 -#: ../../godmode/agentes/planned_downtime.editor.php:753 -#: ../../godmode/alerts/alert_actions.php:340 -#: ../../godmode/alerts/alert_commands.php:330 -#: ../../godmode/alerts/alert_templates.php:298 -#: ../../godmode/alerts/configure_alert_action.php:112 -#: ../../godmode/alerts/configure_alert_command.php:146 -#: ../../godmode/alerts/configure_alert_template.php:747 -#: ../../godmode/category/edit_category.php:155 -#: ../../godmode/events/event_filter.php:108 -#: ../../godmode/events/event_responses.editor.php:76 -#: ../../godmode/events/event_responses.list.php:54 -#: ../../godmode/groups/configure_group.php:116 -#: ../../godmode/groups/configure_modu_group.php:69 -#: ../../godmode/groups/group_list.php:336 -#: ../../godmode/groups/modu_group_list.php:183 -#: ../../godmode/modules/manage_nc_groups.php:194 -#: ../../godmode/modules/manage_nc_groups_form.php:67 -#: ../../godmode/modules/manage_network_components_form_common.php:54 -#: ../../godmode/modules/manage_network_templates.php:190 -#: ../../godmode/modules/manage_network_templates_form.php:146 -#: ../../godmode/modules/module_list.php:59 -#: ../../godmode/netflow/nf_edit.php:118 -#: ../../godmode/netflow/nf_edit_form.php:189 -#: ../../godmode/reporting/graph_builder.main.php:103 -#: ../../godmode/reporting/reporting_builder.item_editor.php:653 -#: ../../godmode/reporting/reporting_builder.list_items.php:306 -#: ../../godmode/reporting/reporting_builder.main.php:65 -#: ../../godmode/reporting/reporting_builder.main.php:67 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/modificar_server.php:46 -#: ../../godmode/servers/plugin.php:293 ../../godmode/servers/plugin.php:735 -#: ../../godmode/servers/recon_script.php:95 -#: ../../godmode/servers/recon_script.php:348 -#: ../../godmode/servers/servers.build_table.php:64 -#: ../../godmode/setup/os.builder.php:35 ../../godmode/setup/os.list.php:34 -#: ../../godmode/tag/edit_tag.php:169 ../../godmode/tag/tag.php:156 -#: ../../godmode/users/user_list.php:269 ../../godmode/users/user_list.php:403 -#: ../../include/functions_events.php:2018 -#: ../../include/functions_events.php:2068 -#: ../../include/functions_filemanager.php:580 -#: ../../include/functions_pandora_networkmap.php:1399 -#: ../../include/functions_pandora_networkmap.php:1432 -#: ../../include/functions_pandora_networkmap.php:1439 -#: ../../include/functions_pandora_networkmap.php:1600 -#: ../../include/functions_reporting_html.php:808 -#: ../../include/functions_reporting_html.php:817 -#: ../../include/functions_reporting_html.php:1646 -#: ../../include/functions_reporting_html.php:2110 -#: ../../include/functions_reporting_html.php:3819 -#: ../../include/functions_treeview.php:79 -#: ../../mobile/operation/networkmaps.php:195 -#: ../../mobile/operation/visualmaps.php:139 -#: ../../operation/agentes/pandora_networkmap.editor.php:180 -#: ../../operation/agentes/pandora_networkmap.php:402 -#: ../../operation/gis_maps/gis_map.php:89 -#: ../../operation/netflow/nf_live_view.php:305 -#: ../../operation/search_helps.php:36 ../../operation/search_maps.php:31 -#: ../../operation/search_users.php:41 -#: ../../enterprise/dashboard/dashboards.php:82 -#: ../../enterprise/dashboard/main_dashboard.php:295 -#: ../../enterprise/dashboard/main_dashboard.php:330 -#: ../../enterprise/godmode/agentes/collection_manager.php:105 -#: ../../enterprise/godmode/agentes/collection_manager.php:163 -#: ../../enterprise/godmode/agentes/inventory_manager.php:233 -#: ../../enterprise/godmode/alerts/alert_events.php:488 -#: ../../enterprise/godmode/alerts/alert_events_list.php:422 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:407 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:131 -#: ../../enterprise/godmode/modules/configure_local_component.php:149 -#: ../../enterprise/godmode/modules/local_components.php:481 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:154 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:78 -#: ../../enterprise/godmode/policies/configure_policy.php:65 -#: ../../enterprise/godmode/policies/policies.php:254 -#: ../../enterprise/godmode/policies/policy_agents.php:377 -#: ../../enterprise/godmode/policies/policy_collections.php:121 -#: ../../enterprise/godmode/policies/policy_collections.php:192 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:242 -#: ../../enterprise/godmode/policies/policy_modules.php:1203 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:153 -#: ../../enterprise/godmode/reporting/mysql_builder.php:41 -#: ../../enterprise/godmode/reporting/mysql_builder.php:138 -#: ../../enterprise/godmode/reporting/mysql_builder.php:139 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:111 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:112 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1213 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:84 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:325 -#: ../../enterprise/godmode/servers/list_satellite.php:35 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:54 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:67 -#: ../../enterprise/godmode/services/services.service.php:244 -#: ../../enterprise/godmode/setup/edit_skin.php:208 -#: ../../enterprise/godmode/setup/setup_skins.php:82 -#: ../../enterprise/include/functions_reporting.php:4558 -#: ../../enterprise/include/functions_reporting_pdf.php:2420 -#: ../../enterprise/include/functions_services.php:1413 -#: ../../enterprise/meta/advanced/servers.build_table.php:59 -#: ../../enterprise/meta/include/functions_wizard_meta.php:148 -#: ../../enterprise/meta/include/functions_wizard_meta.php:359 -#: ../../enterprise/meta/include/functions_wizard_meta.php:464 -#: ../../enterprise/meta/include/functions_wizard_meta.php:995 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1415 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1515 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1629 -#: ../../enterprise/mobile/include/enterprise.class.php:79 -#: ../../enterprise/operation/agentes/collection_view.php:63 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:118 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:357 -#: ../../enterprise/operation/agentes/policy_view.php:131 -#: ../../enterprise/operation/agentes/policy_view.php:305 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:158 -#: ../../enterprise/operation/services/services.list.php:326 -#: ../../enterprise/operation/services/services.service.php:129 -msgid "Name" -msgstr "Name" - -#: ../../extensions/files_repo/files_repo_list.php:60 -#: ../../godmode/events/event_responses.editor.php:97 -#: ../../include/functions_visual_map_editor.php:107 -#: ../../include/functions_visual_map_editor.php:149 -#: ../../include/functions_visual_map_editor.php:444 -#: ../../include/functions_visual_map_editor.php:511 -#: ../../include/functions_filemanager.php:582 -#: ../../operation/incidents/incident_detail.php:455 -#: ../../enterprise/extensions/backup/main.php:100 -msgid "Size" -msgstr "Size" - -#: ../../extensions/files_repo/files_repo_list.php:61 -#: ../../include/functions_filemanager.php:581 -msgid "Last modification" -msgstr "Previous modification" - -#: ../../extensions/files_repo/files_repo_list.php:86 -msgid "Copy to clipboard" -msgstr "Copy to clipboard" - -#: ../../extensions/files_repo/files_repo_list.php:94 -#: ../../extensions/system_info.php:467 -#: ../../enterprise/extensions/backup/main.php:179 -msgid "Download" -msgstr "Download" - -#: ../../extensions/files_repo/files_repo_list.php:101 -#: ../../godmode/agentes/fields_manager.php:126 -#: ../../godmode/agentes/modificar_agente.php:569 -#: ../../godmode/agentes/planned_downtime.list.php:401 -#: ../../godmode/alerts/alert_special_days.php:449 -#: ../../godmode/events/event_responses.list.php:67 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 -#: ../../godmode/reporting/reporting_builder.list_items.php:437 -#: ../../godmode/reporting/reporting_builder.php:698 -#: ../../godmode/servers/plugin.php:157 ../../godmode/servers/plugin.php:781 -#: ../../godmode/servers/servers.build_table.php:159 -#: ../../godmode/setup/snmp_wizard.php:119 -#: ../../godmode/users/profile_list.php:389 -#: ../../godmode/users/user_list.php:468 ../../include/ajax/module.php:866 -#: ../../include/functions_groups.php:2166 -#: ../../include/functions_pandora_networkmap.php:1464 -#: ../../operation/agentes/estado_agente.php:581 -#: ../../operation/agentes/pandora_networkmap.php:407 -#: ../../operation/agentes/status_monitor.php:1118 -#: ../../operation/gis_maps/gis_map.php:163 -#: ../../operation/search_reports.php:52 -#: ../../operation/servers/recon_view.php:110 -#: ../../enterprise/extensions/cron/main.php:293 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:256 -#: ../../enterprise/godmode/agentes/collections.editor.php:178 -#: ../../enterprise/godmode/alerts/alert_events_list.php:634 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:475 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 -#: ../../enterprise/godmode/reporting/mysql_builder.php:86 -#: ../../enterprise/godmode/reporting/mysql_builder.php:100 -#: ../../enterprise/godmode/reporting/mysql_builder.php:110 -#: ../../enterprise/godmode/reporting/mysql_builder.php:152 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:349 -#: ../../enterprise/include/ajax/transactional.ajax.php:119 -#: ../../enterprise/include/ajax/transactional.ajax.php:210 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1419 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1909 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2003 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2481 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:264 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:425 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:617 -#: ../../enterprise/meta/screens/screens.visualmap.php:63 -msgid "Edit" -msgstr "Edit" - -#: ../../extensions/files_repo/files_repo_list.php:105 -#: ../../godmode/agentes/agent_manager.php:203 -#: ../../godmode/agentes/agent_template.php:251 -#: ../../godmode/agentes/fields_manager.php:127 -#: ../../godmode/agentes/modificar_agente.php:635 -#: ../../godmode/agentes/module_manager.php:759 -#: ../../godmode/agentes/module_manager.php:767 -#: ../../godmode/agentes/module_manager.php:782 -#: ../../godmode/agentes/module_manager.php:797 -#: ../../godmode/agentes/module_manager.php:808 -#: ../../godmode/agentes/module_manager_editor_common.php:159 -#: ../../godmode/agentes/planned_downtime.editor.php:848 -#: ../../godmode/alerts/alert_actions.php:385 -#: ../../godmode/alerts/alert_actions.php:388 -#: ../../godmode/alerts/alert_commands.php:361 -#: ../../godmode/alerts/alert_list.list.php:825 -#: ../../godmode/alerts/alert_special_days.php:451 -#: ../../godmode/alerts/alert_templates.php:341 -#: ../../godmode/category/category.php:126 -#: ../../godmode/category/category.php:131 ../../godmode/db/db_audit.php:107 -#: ../../godmode/db/db_event.php:92 ../../godmode/db/db_refine.php:119 -#: ../../godmode/events/event_filter.php:146 -#: ../../godmode/groups/modu_group_list.php:198 -#: ../../godmode/groups/modu_group_list.php:200 -#: ../../godmode/massive/massive_add_action_alerts.php:203 -#: ../../godmode/massive/massive_add_alerts.php:183 -#: ../../godmode/massive/massive_add_profiles.php:115 -#: ../../godmode/massive/massive_add_tags.php:158 -#: ../../godmode/massive/massive_delete_action_alerts.php:202 -#: ../../godmode/massive/massive_delete_agents.php:138 -#: ../../godmode/massive/massive_delete_modules.php:511 -#: ../../godmode/massive/massive_delete_profiles.php:129 -#: ../../godmode/massive/massive_delete_tags.php:215 -#: ../../godmode/massive/massive_edit_plugins.php:533 -#: ../../godmode/massive/massive_enable_disable_alerts.php:167 -#: ../../godmode/massive/massive_operations.php:247 -#: ../../godmode/massive/massive_operations.php:256 -#: ../../godmode/massive/massive_standby_alerts.php:167 -#: ../../godmode/modules/manage_nc_groups.php:220 -#: ../../godmode/modules/manage_network_components.php:616 -#: ../../godmode/modules/manage_network_templates.php:209 -#: ../../godmode/modules/manage_network_templates.php:214 -#: ../../godmode/netflow/nf_edit.php:143 -#: ../../godmode/netflow/nf_item_list.php:237 -#: ../../godmode/reporting/graphs.php:190 -#: ../../godmode/reporting/reporting_builder.php:703 -#: ../../godmode/reporting/visual_console_builder.elements.php:318 -#: ../../godmode/servers/plugin.php:782 ../../godmode/setup/links.php:150 -#: ../../godmode/setup/news.php:267 -#: ../../godmode/snmpconsole/snmp_alert.php:1200 -#: ../../godmode/snmpconsole/snmp_alert.php:1236 -#: ../../godmode/snmpconsole/snmp_alert.php:1455 -#: ../../godmode/snmpconsole/snmp_filters.php:143 -#: ../../godmode/tag/tag.php:273 ../../godmode/users/configure_user.php:667 -#: ../../godmode/users/profile_list.php:390 -#: ../../godmode/users/user_list.php:470 ../../godmode/users/user_list.php:472 -#: ../../include/functions_events.php:1761 -#: ../../include/functions_filemanager.php:740 -#: ../../include/functions_groups.php:2173 -#: ../../operation/agentes/pandora_networkmap.php:496 -#: ../../operation/events/events.build_table.php:774 -#: ../../operation/events/events.php:852 -#: ../../operation/incidents/incident_detail.php:425 -#: ../../operation/incidents/incident_detail.php:472 -#: ../../operation/messages/message_list.php:193 -#: ../../operation/messages/message_list.php:199 -#: ../../operation/snmpconsole/snmp_view.php:750 -#: ../../operation/snmpconsole/snmp_view.php:756 -#: ../../operation/snmpconsole/snmp_view.php:907 -#: ../../operation/users/user_edit.php:799 -#: ../../enterprise/dashboard/dashboards.php:140 -#: ../../enterprise/extensions/backup/main.php:238 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:206 -#: ../../enterprise/godmode/agentes/inventory_manager.php:261 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:210 -#: ../../enterprise/godmode/alerts/alert_events_list.php:643 -#: ../../enterprise/godmode/alerts/alert_events_list.php:756 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:479 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:574 -#: ../../enterprise/godmode/modules/local_components.php:530 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:223 -#: ../../enterprise/godmode/policies/policies.php:430 -#: ../../enterprise/godmode/policies/policies.php:440 -#: ../../enterprise/godmode/policies/policies.php:458 -#: ../../enterprise/godmode/policies/policy_agents.php:227 -#: ../../enterprise/godmode/policies/policy_agents.php:326 -#: ../../enterprise/godmode/policies/policy_agents.php:470 -#: ../../enterprise/godmode/policies/policy_agents.php:523 -#: ../../enterprise/godmode/policies/policy_alerts.php:411 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:246 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:269 -#: ../../enterprise/godmode/policies/policy_modules.php:1251 -#: ../../enterprise/godmode/policies/policy_modules.php:1258 -#: ../../enterprise/godmode/policies/policy_modules.php:1287 -#: ../../enterprise/godmode/policies/policy_queue.php:440 -#: ../../enterprise/godmode/policies/policy_queue.php:476 -#: ../../enterprise/godmode/policies/policy_queue.php:492 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:175 -#: ../../enterprise/godmode/reporting/graph_template_list.php:146 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:393 -#: ../../enterprise/godmode/reporting/mysql_builder.php:49 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:361 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:369 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:762 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:367 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:162 -#: ../../enterprise/godmode/setup/setup_skins.php:136 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:348 -#: ../../enterprise/include/ajax/transactional.ajax.php:120 -#: ../../enterprise/include/ajax/transactional.ajax.php:212 -#: ../../enterprise/include/functions_services.php:1660 -#: ../../enterprise/meta/advanced/policymanager.queue.php:330 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:101 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:195 -#: ../../enterprise/operation/agentes/transactional_map.php:300 -#: ../../enterprise/operation/agentes/transactional_map.php:306 -#: ../../enterprise/operation/agentes/transactional_map.php:318 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:228 -#: ../../enterprise/operation/services/services.list.php:482 -msgid "Are you sure?" -msgstr "Are you sure?" - -#: ../../extensions/files_repo/files_repo_list.php:106 -#: ../../godmode/agentes/agent_template.php:251 -#: ../../godmode/agentes/fields_manager.php:127 -#: ../../godmode/agentes/module_manager.php:569 -#: ../../godmode/agentes/module_manager.php:799 -#: ../../godmode/agentes/module_manager.php:816 -#: ../../godmode/agentes/module_manager_editor_common.php:720 -#: ../../godmode/agentes/planned_downtime.editor.php:798 -#: ../../godmode/agentes/planned_downtime.editor.php:803 -#: ../../godmode/agentes/planned_downtime.editor.php:851 -#: ../../godmode/agentes/planned_downtime.list.php:402 -#: ../../godmode/agentes/planned_downtime.list.php:470 -#: ../../godmode/alerts/alert_actions.php:343 -#: ../../godmode/alerts/alert_commands.php:333 -#: ../../godmode/alerts/alert_list.list.php:710 -#: ../../godmode/alerts/alert_templates.php:344 -#: ../../godmode/db/db_refine.php:119 -#: ../../godmode/events/event_filter.php:148 -#: ../../godmode/events/event_filter.php:162 -#: ../../godmode/events/event_responses.list.php:66 -#: ../../godmode/extensions.php:272 ../../godmode/extensions.php:276 -#: ../../godmode/groups/modu_group_list.php:184 -#: ../../godmode/massive/massive_delete_action_alerts.php:204 -#: ../../godmode/massive/massive_delete_agents.php:140 -#: ../../godmode/massive/massive_delete_alerts.php:238 -#: ../../godmode/massive/massive_delete_modules.php:513 -#: ../../godmode/massive/massive_delete_profiles.php:131 -#: ../../godmode/massive/massive_delete_tags.php:218 -#: ../../godmode/modules/manage_nc_groups.php:222 -#: ../../godmode/modules/manage_nc_groups.php:233 -#: ../../godmode/modules/manage_network_components.php:617 -#: ../../godmode/modules/manage_network_components.php:629 -#: ../../godmode/modules/manage_network_templates.php:214 -#: ../../godmode/modules/manage_network_templates.php:227 -#: ../../godmode/modules/manage_network_templates_form.php:221 -#: ../../godmode/netflow/nf_edit.php:145 ../../godmode/netflow/nf_edit.php:157 -#: ../../godmode/netflow/nf_item_list.php:239 -#: ../../godmode/netflow/nf_item_list.php:250 -#: ../../godmode/reporting/graph_builder.graph_editor.php:88 -#: ../../godmode/reporting/graph_builder.graph_editor.php:127 -#: ../../godmode/reporting/graphs.php:191 -#: ../../godmode/reporting/graphs.php:204 -#: ../../godmode/reporting/map_builder.php:215 -#: ../../godmode/reporting/reporting_builder.list_items.php:439 -#: ../../godmode/reporting/reporting_builder.list_items.php:466 -#: ../../godmode/reporting/reporting_builder.list_items.php:485 -#: ../../godmode/reporting/reporting_builder.list_items.php:545 -#: ../../godmode/reporting/reporting_builder.php:707 -#: ../../godmode/reporting/visual_console_builder.elements.php:518 -#: ../../godmode/servers/recon_script.php:350 -#: ../../godmode/servers/servers.build_table.php:172 -#: ../../godmode/setup/gis.php:64 ../../godmode/setup/links.php:137 -#: ../../godmode/setup/news.php:225 ../../godmode/setup/setup_visuals.php:720 -#: ../../godmode/setup/setup_visuals.php:751 -#: ../../godmode/setup/snmp_wizard.php:122 -#: ../../godmode/snmpconsole/snmp_alert.php:1201 -#: ../../godmode/snmpconsole/snmp_alert.php:1237 -#: ../../godmode/snmpconsole/snmp_filters.php:144 -#: ../../godmode/update_manager/update_manager.messages.php:91 -#: ../../godmode/update_manager/update_manager.messages.php:165 -#: ../../godmode/users/user_list.php:470 -#: ../../include/functions_groups.php:2173 -#: ../../include/functions_pandora_networkmap.php:762 -#: ../../operation/agentes/pandora_networkmap.php:408 -#: ../../operation/agentes/pandora_networkmap.php:496 -#: ../../operation/gis_maps/gis_map.php:165 -#: ../../operation/incidents/incident_detail.php:456 -#: ../../operation/messages/message_edit.php:109 -#: ../../operation/messages/message_list.php:128 -#: ../../operation/messages/message_list.php:194 -#: ../../operation/messages/message_list.php:200 -#: ../../operation/messages/message_list.php:218 -#: ../../operation/snmpconsole/snmp_view.php:750 -#: ../../operation/snmpconsole/snmp_view.php:756 -#: ../../operation/snmpconsole/snmp_view.php:907 -#: ../../operation/snmpconsole/snmp_view.php:932 -#: ../../enterprise/dashboard/dashboards.php:97 -#: ../../enterprise/dashboard/dashboards.php:140 -#: ../../enterprise/extensions/backup/main.php:190 -#: ../../enterprise/extensions/cron/main.php:296 -#: ../../enterprise/godmode/agentes/inventory_manager.php:262 -#: ../../enterprise/godmode/agentes/plugins_manager.php:147 -#: ../../enterprise/godmode/agentes/plugins_manager.php:218 -#: ../../enterprise/godmode/alerts/alert_events_list.php:568 -#: ../../enterprise/godmode/alerts/alert_events_list.php:646 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:480 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:122 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:191 -#: ../../enterprise/godmode/modules/local_components.php:531 -#: ../../enterprise/godmode/modules/local_components.php:543 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:224 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:237 -#: ../../enterprise/godmode/policies/policies.php:444 -#: ../../enterprise/godmode/policies/policy_agents.php:478 -#: ../../enterprise/godmode/policies/policy_alerts.php:422 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:257 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:270 -#: ../../enterprise/godmode/policies/policy_modules.php:1269 -#: ../../enterprise/godmode/policies/policy_modules.php:1293 -#: ../../enterprise/godmode/policies/policy_plugins.php:88 -#: ../../enterprise/godmode/policies/policy_queue.php:344 -#: ../../enterprise/godmode/policies/policy_queue.php:379 -#: ../../enterprise/godmode/policies/policy_queue.php:421 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:177 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:188 -#: ../../enterprise/godmode/reporting/graph_template_list.php:158 -#: ../../enterprise/godmode/reporting/mysql_builder.php:42 -#: ../../enterprise/godmode/reporting/mysql_builder.php:49 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:373 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:355 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:328 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:366 -#: ../../enterprise/godmode/setup/setup_acl.php:227 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:349 -#: ../../enterprise/include/ajax/transactional.ajax.php:121 -#: ../../enterprise/include/ajax/transactional.ajax.php:213 -#: ../../enterprise/meta/advanced/metasetup.visual.php:154 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/meta/advanced/policymanager.queue.php:312 -#: ../../enterprise/meta/advanced/servers.build_table.php:132 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1425 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1594 -#: ../../enterprise/meta/include/functions_wizard_meta.php:294 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:267 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:428 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:620 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:196 -#: ../../enterprise/operation/agentes/transactional_map.php:319 -#: ../../enterprise/operation/services/services.list.php:483 -msgid "Delete" -msgstr "Delete" - -#: ../../extensions/files_repo/files_repo_list.php:115 -msgid "No items" -msgstr "No items" - -#: ../../extensions/files_repo/functions_files_repo.php:29 -#: ../../extensions/files_repo/functions_files_repo.php:40 -#: ../../include/functions_config.php:1779 -msgid "Attachment directory is not writable by HTTP Server" -msgstr "Attachment directory is not writable by HTTP Server" - -#: ../../extensions/files_repo/functions_files_repo.php:30 -#: ../../extensions/files_repo/functions_files_repo.php:41 -#, php-format -msgid "Please check that the web server has write rights on the %s directory" -msgstr "" -"Please check if the web server has writing permissions on the %s directory " -"or not." - -#: ../../extensions/files_repo/functions_files_repo.php:229 -msgid "The file could not be copied" -msgstr "The file could not be copied." - -#: ../../extensions/files_repo/functions_files_repo.php:233 -msgid "There was an error creating the file" -msgstr "There was an error creating the file." - -#: ../../extensions/files_repo/functions_files_repo.php:274 -#: ../../enterprise/extensions/vmware/main.php:76 -msgid "There was an error updating the file" -msgstr "There was an error updating the file." - -#: ../../extensions/files_repo.php:91 -msgid "Extension not installed" -msgstr "Extension not installed." - -#: ../../extensions/files_repo.php:104 ../../extensions/files_repo.php:187 -#: ../../enterprise/extensions/ipam.php:213 -#: ../../enterprise/extensions/ipam.php:226 -#: ../../enterprise/extensions/ipam.php:292 -msgid "Administration view" -msgstr "Management view" - -#: ../../extensions/files_repo.php:110 ../../extensions/files_repo.php:192 -#: ../../enterprise/extensions/ipam.php:159 -#: ../../enterprise/extensions/ipam.php:300 -msgid "Operation view" -msgstr "Operation view" - -#: ../../extensions/files_repo.php:116 ../../extensions/files_repo.php:218 -msgid "Files repository manager" -msgstr "File repository manager" - -#: ../../extensions/files_repo.php:133 ../../include/functions.php:2190 -#: ../../include/functions.php:2193 -msgid "The file exceeds the maximum size" -msgstr "Maximum filesize exceeded" - -#: ../../extensions/files_repo.php:166 -#: ../../godmode/agentes/planned_downtime.list.php:107 -#: ../../godmode/alerts/alert_actions.php:332 -#: ../../godmode/alerts/alert_commands.php:319 -#: ../../godmode/alerts/alert_list.php:145 -#: ../../godmode/alerts/alert_list.php:213 -#: ../../godmode/alerts/alert_special_days.php:223 -#: ../../godmode/alerts/alert_templates.php:224 -#: ../../godmode/events/event_filter.php:56 -#: ../../godmode/events/event_filter.php:77 -#: ../../godmode/massive/massive_delete_action_alerts.php:114 -#: ../../godmode/massive/massive_delete_alerts.php:156 -#: ../../godmode/massive/massive_delete_modules.php:236 -#: ../../godmode/massive/massive_delete_tags.php:151 -#: ../../godmode/modules/manage_nc_groups.php:122 -#: ../../godmode/modules/manage_network_components.php:372 -#: ../../godmode/netflow/nf_edit.php:76 ../../godmode/netflow/nf_edit.php:100 -#: ../../godmode/netflow/nf_item_list.php:105 -#: ../../godmode/netflow/nf_item_list.php:126 -#: ../../godmode/reporting/graphs.php:86 ../../godmode/reporting/graphs.php:94 -#: ../../godmode/reporting/graphs.php:136 -#: ../../godmode/reporting/map_builder.php:87 -#: ../../godmode/reporting/reporting_builder.php:412 -#: ../../godmode/setup/gis.php:57 ../../godmode/setup/links.php:69 -#: ../../godmode/setup/news.php:97 -#: ../../godmode/snmpconsole/snmp_alert.php:560 -#: ../../godmode/snmpconsole/snmp_filters.php:76 -#: ../../godmode/users/configure_user.php:415 -#: ../../godmode/users/profile_list.php:94 -#: ../../godmode/users/user_list.php:147 ../../godmode/users/user_list.php:188 -#: ../../operation/events/events.php:536 -#: ../../operation/gis_maps/gis_map.php:74 -#: ../../operation/incidents/incident.php:66 -#: ../../operation/incidents/incident_detail.php:85 -#: ../../operation/incidents/incident_detail.php:114 -#: ../../operation/messages/message_list.php:56 -#: ../../operation/messages/message_list.php:73 -#: ../../operation/reporting/graph_viewer.php:44 -#: ../../operation/reporting/graph_viewer.php:51 -#: ../../operation/snmpconsole/snmp_view.php:95 -#: ../../enterprise/dashboard/dashboards.php:51 -#: ../../enterprise/extensions/ipam/ipam_action.php:64 -#: ../../enterprise/godmode/alerts/alert_events_list.php:160 -#: ../../enterprise/godmode/alerts/alert_events_list.php:204 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:281 -#: ../../enterprise/godmode/modules/local_components.php:330 -#: ../../enterprise/godmode/policies/policies.php:174 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:98 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:119 -#: ../../enterprise/godmode/reporting/graph_template_list.php:86 -#: ../../enterprise/godmode/reporting/graph_template_list.php:106 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:244 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:117 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:53 -#: ../../enterprise/operation/agentes/transactional_map.php:132 -msgid "Successfully deleted" -msgstr "Successfully deleted" - -#: ../../extensions/files_repo.php:166 -#: ../../godmode/alerts/alert_actions.php:333 -#: ../../godmode/alerts/alert_commands.php:320 -#: ../../godmode/alerts/alert_list.php:145 -#: ../../godmode/alerts/alert_list.php:213 -#: ../../godmode/alerts/alert_special_days.php:224 -#: ../../godmode/alerts/alert_templates.php:225 -#: ../../godmode/massive/massive_delete_action_alerts.php:115 -#: ../../godmode/massive/massive_delete_alerts.php:157 -#: ../../godmode/massive/massive_delete_tags.php:152 -#: ../../godmode/modules/manage_network_components.php:373 -#: ../../godmode/reporting/reporting_builder.php:413 -#: ../../godmode/setup/gis.php:55 ../../godmode/setup/news.php:98 -#: ../../godmode/users/configure_user.php:416 -#: ../../operation/agentes/pandora_networkmap.php:273 -#: ../../operation/events/events.php:537 -#: ../../operation/gis_maps/gis_map.php:75 -#: ../../operation/incidents/incident.php:67 -#: ../../operation/incidents/incident_detail.php:86 -#: ../../operation/incidents/incident_detail.php:115 -#: ../../operation/messages/message_list.php:57 -#: ../../operation/snmpconsole/snmp_view.php:96 -#: ../../enterprise/dashboard/dashboards.php:52 -#: ../../enterprise/extensions/ipam/ipam_action.php:61 -#: ../../enterprise/godmode/alerts/alert_events_list.php:161 -#: ../../enterprise/godmode/alerts/alert_events_list.php:205 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:282 -#: ../../enterprise/godmode/modules/local_components.php:331 -#: ../../enterprise/godmode/policies/policies.php:175 -#: ../../enterprise/godmode/policies/policy_agents.php:91 -#: ../../enterprise/godmode/policies/policy_alerts.php:165 -#: ../../enterprise/godmode/policies/policy_alerts.php:206 -#: ../../enterprise/godmode/policies/policy_collections.php:69 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:96 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:141 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:96 -#: ../../enterprise/godmode/policies/policy_modules.php:1097 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:245 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:191 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:118 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:54 -#: ../../enterprise/operation/agentes/transactional_map.php:133 -msgid "Could not be deleted" -msgstr "Could not be deleted" - -#: ../../extensions/files_repo.php:200 ../../extensions/files_repo.php:216 -msgid "Files repository" -msgstr "File repository" - -#: ../../extensions/insert_data.php:56 -msgid "Insert data" -msgstr "Insert data" - -#: ../../extensions/insert_data.php:93 -msgid "You haven't privileges for insert data in the agent." -msgstr "You don't have the necessary privileges to add data to the agent" - -#: ../../extensions/insert_data.php:130 -#, php-format -msgid "Can't save agent (%s), module (%s) data xml." -msgstr "Can't save (%s) agent, module (%s) xml data" - -#: ../../extensions/insert_data.php:137 -#, php-format -msgid "Save agent (%s), module (%s) data xml." -msgstr "(%s) Agent saved, module (%s) xml data" - -#: ../../extensions/insert_data.php:146 -#, 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 "" -"Please check if the directory \"%s\" is can be written on by the apache " -"user.

    The CSV file format is " -"date;value<newline>date;value<newline>... The date in CSV has a " -"Y/m/d H:i:s format." - -#: ../../extensions/insert_data.php:179 ../../general/header.php:204 -#: ../../godmode/alerts/alert_list.builder.php:77 -#: ../../godmode/alerts/alert_list.builder.php:125 -#: ../../godmode/alerts/configure_alert_template.php:592 -#: ../../godmode/gis_maps/configure_gis_map.php:588 -#: ../../godmode/massive/massive_add_alerts.php:176 -#: ../../godmode/massive/massive_copy_modules.php:95 -#: ../../godmode/massive/massive_delete_alerts.php:208 -#: ../../godmode/massive/massive_delete_modules.php:412 -#: ../../godmode/massive/massive_delete_modules.php:481 -#: ../../godmode/massive/massive_edit_modules.php:256 -#: ../../godmode/massive/massive_edit_modules.php:310 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 -#: ../../enterprise/godmode/alerts/alert_events.php:513 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:207 -#: ../../enterprise/godmode/policies/policy_alerts.php:509 -#: ../../enterprise/godmode/policies/policy_alerts.php:513 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:328 -#: ../../enterprise/meta/advanced/synchronizing.user.php:538 -#: ../../enterprise/meta/general/main_header.php:392 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:224 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:223 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:313 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:482 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:555 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:107 -msgid "Select" -msgstr "Select" - -#: ../../extensions/insert_data.php:180 ../../extensions/insert_data.php:181 -#: ../../include/ajax/module.php:749 ../../include/functions_graph.php:3435 -#: ../../include/functions_netflow.php:311 -#: ../../include/functions_reporting.php:2360 -#: ../../include/functions_reporting.php:2394 -#: ../../include/functions_reporting_html.php:1812 -#: ../../include/functions_reporting_html.php:1815 -#: ../../include/functions_reporting_html.php:1816 -#: ../../include/functions_reporting_html.php:1819 -#: ../../mobile/operation/modules.php:606 -#: ../../mobile/operation/modules.php:613 -#: ../../mobile/operation/modules.php:621 -#: ../../mobile/operation/modules.php:757 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/exportdata.php:98 -#: ../../operation/agentes/gis_view.php:194 -#: ../../operation/agentes/status_monitor.php:983 -#: ../../operation/search_modules.php:53 -#: ../../enterprise/godmode/agentes/collections.agents.php:50 -#: ../../enterprise/godmode/agentes/collections.agents.php:59 -#: ../../enterprise/godmode/agentes/collections.data.php:62 -#: ../../enterprise/godmode/agentes/collections.data.php:101 -#: ../../enterprise/godmode/agentes/collections.data.php:138 -#: ../../enterprise/godmode/agentes/collections.data.php:154 -#: ../../enterprise/godmode/agentes/collections.data.php:169 -#: ../../enterprise/godmode/agentes/collections.data.php:191 -#: ../../enterprise/godmode/agentes/collections.data.php:214 -#: ../../enterprise/godmode/agentes/collections.data.php:235 -#: ../../enterprise/godmode/agentes/collections.data.php:254 -#: ../../enterprise/godmode/agentes/collections.editor.php:39 -#: ../../enterprise/include/functions_reporting.php:1470 -#: ../../enterprise/include/functions_reporting.php:1594 -#: ../../enterprise/include/functions_reporting.php:1597 -#: ../../enterprise/include/functions_reporting_csv.php:348 -#: ../../enterprise/include/functions_reporting_csv.php:404 -#: ../../enterprise/include/functions_reporting_csv.php:430 -#: ../../enterprise/include/functions_reporting_csv.php:496 -#: ../../enterprise/include/functions_reporting_csv.php:879 -#: ../../enterprise/include/functions_reporting_pdf.php:365 -#: ../../enterprise/include/functions_reporting_pdf.php:371 -#: ../../enterprise/include/functions_reporting_pdf.php:977 -#: ../../enterprise/include/functions_reporting_pdf.php:983 -#: ../../enterprise/include/functions_reporting_pdf.php:984 -#: ../../enterprise/include/functions_reporting_pdf.php:987 -#: ../../enterprise/include/functions_services.php:1428 -#: ../../enterprise/operation/agentes/policy_view.php:308 -msgid "Data" -msgstr "Data" - -#: ../../extensions/insert_data.php:182 -#: ../../extensions/users_connected.php:79 ../../general/logon_ok.php:226 -#: ../../general/logon_ok.php:423 ../../godmode/admin_access_logs.php:190 -#: ../../godmode/alerts/configure_alert_special_days.php:66 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1121 -#: ../../include/functions.php:2314 ../../include/functions_events.php:3927 -#: ../../include/functions_reporting.php:2360 -#: ../../include/functions_reporting.php:2393 -#: ../../include/functions_reporting_html.php:1812 -#: ../../include/functions_reporting_html.php:1816 -#: ../../include/functions_reporting_html.php:1819 -#: ../../include/functions_reporting_html.php:1834 -#: ../../include/functions_reporting_html.php:3598 -#: ../../mobile/operation/tactical.php:310 -#: ../../operation/events/events.build_table.php:581 -#: ../../operation/netflow/nf_live_view.php:234 -#: ../../operation/reporting/graph_viewer.php:205 -#: ../../enterprise/extensions/backup/main.php:99 -#: ../../enterprise/include/functions_inventory.php:508 -#: ../../enterprise/include/functions_log.php:346 -#: ../../enterprise/include/functions_reporting.php:1446 -#: ../../enterprise/include/functions_reporting.php:1469 -#: ../../enterprise/include/functions_reporting.php:1594 -#: ../../enterprise/include/functions_reporting.php:1597 -#: ../../enterprise/include/functions_reporting_csv.php:323 -#: ../../enterprise/include/functions_reporting_csv.php:377 -#: ../../enterprise/include/functions_reporting_pdf.php:364 -#: ../../enterprise/include/functions_reporting_pdf.php:373 -#: ../../enterprise/include/functions_reporting_pdf.php:976 -#: ../../enterprise/include/functions_reporting_pdf.php:982 -#: ../../enterprise/include/functions_reporting_pdf.php:999 -#: ../../enterprise/operation/agentes/agent_inventory.php:70 -#: ../../enterprise/operation/inventory/inventory.php:223 -msgid "Date" -msgstr "Date" - -#: ../../extensions/insert_data.php:185 -#: ../../operation/agentes/exportdata.php:331 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:293 -#: ../../enterprise/operation/reporting/custom_reporting.php:21 -msgid "CSV" -msgstr "CSV" - -#: ../../extensions/insert_data.php:194 -#: ../../godmode/reporting/reporting_builder.main.php:32 -#: ../../godmode/reporting/visual_console_builder.data.php:181 -#: ../../godmode/setup/gis_step_2.php:310 -#: ../../godmode/setup/snmp_wizard.php:104 -#: ../../operation/agentes/graphs.php:235 -#: ../../enterprise/dashboard/main_dashboard.php:315 -#: ../../enterprise/godmode/reporting/mysql_builder.php:149 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:67 -#: ../../enterprise/include/ajax/transactional.ajax.php:83 -msgid "Save" -msgstr "Save" - -#: ../../extensions/insert_data.php:210 -#: ../../godmode/agentes/planned_downtime.editor.php:1169 -#: ../../godmode/alerts/configure_alert_template.php:1074 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2028 -#: ../../godmode/setup/news.php:297 -#: ../../operation/agentes/datos_agente.php:304 -#: ../../operation/agentes/estado_monitores.php:401 -#: ../../operation/agentes/interface_traffic_graph_win.php:354 -#: ../../operation/agentes/stat_win.php:506 -#: ../../operation/events/events_list.php:1587 -#: ../../operation/netflow/nf_live_view.php:659 -#: ../../operation/reporting/graph_viewer.php:277 -#: ../../operation/reporting/reporting_viewer.php:254 -#: ../../operation/reporting/reporting_viewer.php:274 -#: ../../operation/tree.php:391 -#: ../../enterprise/dashboard/widgets/tree_view.php:317 -#: ../../enterprise/extensions/cron/main.php:370 -#: ../../enterprise/godmode/alerts/alert_events.php:577 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:683 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2283 -#: ../../enterprise/operation/log/log_viewer.php:310 -#: ../../enterprise/operation/log/log_viewer.php:322 -msgid "Choose time" -msgstr "Choose time" - -#: ../../extensions/insert_data.php:211 -#: ../../godmode/agentes/planned_downtime.editor.php:1170 -#: ../../godmode/alerts/configure_alert_template.php:1075 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2029 -#: ../../godmode/setup/news.php:298 -#: ../../operation/agentes/datos_agente.php:305 -#: ../../operation/agentes/estado_monitores.php:402 -#: ../../operation/agentes/interface_traffic_graph_win.php:355 -#: ../../operation/agentes/stat_win.php:507 -#: ../../operation/events/events_list.php:1588 -#: ../../operation/netflow/nf_live_view.php:660 -#: ../../operation/reporting/graph_viewer.php:278 -#: ../../operation/reporting/reporting_viewer.php:255 -#: ../../operation/reporting/reporting_viewer.php:275 -#: ../../operation/tree.php:392 -#: ../../enterprise/dashboard/widgets/tree_view.php:318 -#: ../../enterprise/extensions/cron/main.php:371 -#: ../../enterprise/godmode/alerts/alert_events.php:578 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:684 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2284 -#: ../../enterprise/operation/log/log_viewer.php:311 -#: ../../enterprise/operation/log/log_viewer.php:323 -msgid "Time" -msgstr "Time" - -#: ../../extensions/insert_data.php:212 -#: ../../godmode/agentes/planned_downtime.editor.php:1171 -#: ../../godmode/alerts/configure_alert_template.php:1076 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2030 -#: ../../godmode/setup/news.php:299 ../../include/functions_html.php:861 -#: ../../operation/agentes/datos_agente.php:306 -#: ../../operation/agentes/estado_monitores.php:403 -#: ../../operation/agentes/interface_traffic_graph_win.php:356 -#: ../../operation/agentes/stat_win.php:508 -#: ../../operation/events/events_list.php:1589 -#: ../../operation/netflow/nf_live_view.php:661 -#: ../../operation/reporting/graph_viewer.php:279 -#: ../../operation/reporting/reporting_viewer.php:256 -#: ../../operation/reporting/reporting_viewer.php:276 -#: ../../operation/tree.php:393 -#: ../../enterprise/dashboard/widgets/tree_view.php:319 -#: ../../enterprise/extensions/cron/main.php:372 -#: ../../enterprise/godmode/alerts/alert_events.php:579 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:685 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2285 -#: ../../enterprise/operation/log/log_viewer.php:312 -#: ../../enterprise/operation/log/log_viewer.php:324 -msgid "Hour" -msgstr "Hour" - -#: ../../extensions/insert_data.php:213 -#: ../../godmode/agentes/planned_downtime.editor.php:1172 -#: ../../godmode/alerts/configure_alert_template.php:1077 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2031 -#: ../../godmode/setup/news.php:300 ../../include/functions_html.php:862 -#: ../../operation/agentes/datos_agente.php:307 -#: ../../operation/agentes/estado_monitores.php:404 -#: ../../operation/agentes/interface_traffic_graph_win.php:357 -#: ../../operation/agentes/stat_win.php:509 -#: ../../operation/events/events_list.php:1590 -#: ../../operation/netflow/nf_live_view.php:662 -#: ../../operation/reporting/graph_viewer.php:280 -#: ../../operation/reporting/reporting_viewer.php:257 -#: ../../operation/reporting/reporting_viewer.php:277 -#: ../../operation/tree.php:394 -#: ../../enterprise/dashboard/widgets/tree_view.php:320 -#: ../../enterprise/extensions/cron/main.php:373 -#: ../../enterprise/godmode/alerts/alert_events.php:580 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:686 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2286 -#: ../../enterprise/operation/log/log_viewer.php:313 -#: ../../enterprise/operation/log/log_viewer.php:325 -msgid "Minute" -msgstr "Minute" - -#: ../../extensions/insert_data.php:214 -#: ../../godmode/agentes/planned_downtime.editor.php:1173 -#: ../../godmode/alerts/configure_alert_template.php:1078 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2032 -#: ../../godmode/setup/news.php:301 -#: ../../operation/agentes/datos_agente.php:308 -#: ../../operation/agentes/estado_monitores.php:405 -#: ../../operation/agentes/interface_traffic_graph_win.php:358 -#: ../../operation/agentes/stat_win.php:510 -#: ../../operation/events/events_list.php:1591 -#: ../../operation/netflow/nf_live_view.php:663 -#: ../../operation/reporting/graph_viewer.php:281 -#: ../../operation/reporting/reporting_viewer.php:258 -#: ../../operation/reporting/reporting_viewer.php:278 -#: ../../operation/tree.php:395 -#: ../../enterprise/dashboard/widgets/tree_view.php:321 -#: ../../enterprise/extensions/cron/main.php:374 -#: ../../enterprise/godmode/alerts/alert_events.php:581 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:687 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2287 -#: ../../enterprise/operation/log/log_viewer.php:314 -#: ../../enterprise/operation/log/log_viewer.php:326 -msgid "Second" -msgstr "Second" - -#: ../../extensions/insert_data.php:215 -#: ../../godmode/agentes/planned_downtime.editor.php:1174 -#: ../../godmode/alerts/configure_alert_template.php:1079 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2033 -#: ../../godmode/setup/news.php:302 ../../include/functions.php:436 -#: ../../include/functions.php:570 -#: ../../operation/agentes/datos_agente.php:309 -#: ../../operation/agentes/estado_monitores.php:406 -#: ../../operation/agentes/interface_traffic_graph_win.php:359 -#: ../../operation/agentes/stat_win.php:511 -#: ../../operation/events/events_list.php:1592 -#: ../../operation/netflow/nf_live_view.php:664 -#: ../../operation/reporting/graph_viewer.php:282 -#: ../../operation/reporting/reporting_viewer.php:259 -#: ../../operation/reporting/reporting_viewer.php:279 -#: ../../operation/tree.php:396 -#: ../../enterprise/dashboard/widgets/tree_view.php:322 -#: ../../enterprise/extensions/cron/main.php:375 -#: ../../enterprise/godmode/alerts/alert_events.php:582 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:688 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2288 -#: ../../enterprise/operation/agentes/agent_inventory.php:89 -#: ../../enterprise/operation/log/log_viewer.php:315 -#: ../../enterprise/operation/log/log_viewer.php:327 -msgid "Now" -msgstr "Now" - -#: ../../extensions/insert_data.php:216 -#: ../../godmode/agentes/planned_downtime.editor.php:1175 -#: ../../godmode/alerts/configure_alert_template.php:1080 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2034 -#: ../../godmode/setup/news.php:303 -#: ../../include/functions_filemanager.php:619 -#: ../../include/functions_filemanager.php:640 -#: ../../include/functions_filemanager.php:656 -#: ../../include/functions_snmp_browser.php:441 -#: ../../mobile/include/ui.class.php:571 ../../mobile/include/ui.class.php:610 -#: ../../operation/agentes/datos_agente.php:310 -#: ../../operation/agentes/estado_monitores.php:407 -#: ../../operation/agentes/interface_traffic_graph_win.php:360 -#: ../../operation/agentes/stat_win.php:512 -#: ../../operation/events/events_list.php:1593 -#: ../../operation/netflow/nf_live_view.php:665 -#: ../../operation/reporting/graph_viewer.php:283 -#: ../../operation/reporting/reporting_viewer.php:260 -#: ../../operation/reporting/reporting_viewer.php:280 -#: ../../operation/tree.php:397 -#: ../../enterprise/dashboard/widgets/tree_view.php:323 -#: ../../enterprise/extensions/cron/main.php:376 -#: ../../enterprise/godmode/alerts/alert_events.php:583 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:689 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2289 -#: ../../enterprise/operation/log/log_viewer.php:316 -#: ../../enterprise/operation/log/log_viewer.php:328 -msgid "Close" -msgstr "Close" - -#: ../../extensions/insert_data.php:258 -msgid "Insert Data" -msgstr "Insert Data" - -#: ../../extensions/module_groups.php:39 -msgid "Number fired of alerts" -msgstr "Number of alerts fired" - -#: ../../extensions/module_groups.php:46 -#: ../../godmode/massive/massive_add_alerts.php:174 -#: ../../godmode/massive/massive_delete_alerts.php:206 -#: ../../godmode/massive/massive_enable_disable_alerts.php:148 -#: ../../godmode/massive/massive_standby_alerts.php:148 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:101 -#: ../../enterprise/godmode/policies/policy_alerts.php:507 -msgid "Alert template" -msgstr "Alert template" - -#: ../../extensions/module_groups.php:84 -#: ../../godmode/agentes/fields_manager.php:97 -#: ../../godmode/agentes/modificar_agente.php:494 -#: ../../godmode/agentes/planned_downtime.editor.php:760 -#: ../../godmode/alerts/alert_list.builder.php:83 -#: ../../godmode/alerts/alert_list.list.php:121 -#: ../../godmode/alerts/alert_list.list.php:410 -#: ../../godmode/alerts/alert_view.php:344 -#: ../../godmode/category/category.php:111 -#: ../../godmode/events/event_responses.list.php:57 -#: ../../godmode/groups/group_list.php:341 ../../godmode/menu.php:156 -#: ../../godmode/tag/tag.php:205 ../../include/functions_filemanager.php:583 -#: ../../include/functions_reporting_html.php:1958 -#: ../../include/functions_treeview.php:382 -#: ../../enterprise/extensions/backup/main.php:103 -#: ../../enterprise/extensions/cron/main.php:201 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:261 -#: ../../enterprise/godmode/agentes/collections.php:235 -#: ../../enterprise/godmode/agentes/inventory_manager.php:237 -#: ../../enterprise/godmode/alerts/alert_events_list.php:421 -#: ../../enterprise/godmode/policies/policy_alerts.php:241 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:171 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:245 -#: ../../enterprise/godmode/setup/setup_skins.php:120 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:323 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1196 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1408 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1500 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1583 -#: ../../enterprise/meta/include/functions_alerts_meta.php:111 -#: ../../enterprise/meta/include/functions_alerts_meta.php:128 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:98 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:122 -#: ../../enterprise/operation/agentes/transactional_map.php:155 -#: ../../enterprise/operation/services/services.list.php:348 -msgid "Actions" -msgstr "Actions" - -#: ../../extensions/module_groups.php:168 -msgid "Combined table of agent group and module group" -msgstr "Agent group and module group combined table" - -#: ../../extensions/module_groups.php:171 -msgid "" -"This table shows in columns the modules group and in rows agents group. The " -"cell shows all modules" -msgstr "" -"This table shows module groups in the columns, and agent groups in the rows. " -"Cells show all modules." - -#: ../../extensions/module_groups.php:297 -msgid "" -"Orange cell when the module group and agent have at least one alarm fired." -msgstr "" -"Cell is orange when the module and agent groups have at least one alarm " -"fired." - -#: ../../extensions/module_groups.php:298 -msgid "" -"Red cell when the module group and agent have at least one module in " -"critical status and the others in any status" -msgstr "" -"Cell is red when the module and agent groups have at least one module in " -"critical status although others may be in any status." - -#: ../../extensions/module_groups.php:299 -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 "" -"Cell is yellow when module and agent groups have at least one module in " -"warning status, although others may be in green or grey status." - -#: ../../extensions/module_groups.php:300 -msgid "" -"Green cell when the module group and agent have all modules in OK status" -msgstr "" -"Cell is green when the module and agent groups have all modules in normal " -"status." - -#: ../../extensions/module_groups.php:301 -msgid "" -"Grey cell when the module group and agent have at least one in unknown " -"status and the others in green status" -msgstr "" -"Cell is grey when the module and agent groups have at least one module in " -"unknown status and the rest in normal status." - -#: ../../extensions/module_groups.php:302 -msgid "" -"Blue cell when the module group and agent have all modules in not init " -"status." -msgstr "" -"Cell is blue if the module and agent groups all have modules in non-" -"initialised status." - -#: ../../extensions/module_groups.php:307 -msgid "There are no defined groups or module groups" -msgstr "There are no agent or module groups defined." - -#: ../../extensions/module_groups.php:325 ../../godmode/menu.php:49 -#: ../../operation/tree.php:67 -#: ../../enterprise/dashboard/widgets/tree_view.php:36 -msgid "Module groups" -msgstr "Module groups" - -#: ../../extensions/net_tools.php:96 -msgid "The agent hasn't got IP" -msgstr "The agent doesn't have an IP yet." - -#: ../../extensions/net_tools.php:120 -msgid "" -"You can set the command path in the menu Administration -> Extensions -" -"> Config Network Tools" -msgstr "" -"You can set the command path from the menu Administration -> Extensions -" -"> Config Network Tools" - -#: ../../extensions/net_tools.php:123 -msgid "Traceroute" -msgstr "Traceroute" - -#: ../../extensions/net_tools.php:124 -msgid "Ping host & Latency" -msgstr "Ping host and retrieve latency values" - -#: ../../extensions/net_tools.php:125 -msgid "SNMP Interface status" -msgstr "SNMP Interface status" - -#: ../../extensions/net_tools.php:126 -msgid "Basic TCP Port Scan" -msgstr "Basic TCP Port Scan" - -#: ../../extensions/net_tools.php:127 -msgid "DiG/Whois Lookup" -msgstr "Look up DiG/Whois" - -#: ../../extensions/net_tools.php:131 -#: ../../operation/agentes/estado_generalagente.php:147 -msgid "IP address" -msgstr "IP address" - -#: ../../extensions/net_tools.php:145 -#: ../../enterprise/meta/include/functions_wizard_meta.php:826 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1322 -msgid "SNMP Community" -msgstr "SNMP Community" - -#: ../../extensions/net_tools.php:148 ../../include/functions_events.php:1796 -msgid "Execute" -msgstr "Execute" - -#: ../../extensions/net_tools.php:162 -msgid "Traceroute executable does not exist." -msgstr "Traceroute executable does not exist." - -#: ../../extensions/net_tools.php:165 -msgid "Traceroute to " -msgstr "Traceroute to " - -#: ../../extensions/net_tools.php:174 -msgid "Ping executable does not exist." -msgstr "Ping executable does not exist." - -#: ../../extensions/net_tools.php:177 -#, php-format -msgid "Ping to %s" -msgstr "Ping %s" - -#: ../../extensions/net_tools.php:186 -msgid "Nmap executable does not exist." -msgstr "Nmap executable does not exist." - -#: ../../extensions/net_tools.php:189 -msgid "Basic TCP Scan on " -msgstr "Perform basic TCP Scan on " - -#: ../../extensions/net_tools.php:196 -msgid "Domain and IP information for " -msgstr "Domain and IP information on " - -#: ../../extensions/net_tools.php:200 -msgid "Dig executable does not exist." -msgstr "Dig executable does not exist." - -#: ../../extensions/net_tools.php:210 -msgid "Whois executable does not exist." -msgstr "Whois executable does not exist." - -#: ../../extensions/net_tools.php:219 -msgid "SNMP information for " -msgstr "SNMP information on " - -#: ../../extensions/net_tools.php:223 -msgid "SNMPget executable does not exist." -msgstr "SNMPget executable does not exist." - -#: ../../extensions/net_tools.php:226 -msgid "Uptime" -msgstr "Uptime" - -#: ../../extensions/net_tools.php:230 -msgid "Device info" -msgstr "Device info" - -#: ../../extensions/net_tools.php:238 -msgid "Interface" -msgstr "Interface" - -#: ../../extensions/net_tools.php:268 ../../extensions/net_tools.php:343 -msgid "Config Network Tools" -msgstr "Config Network Tools" - -#: ../../extensions/net_tools.php:289 ../../extensions/net_tools.php:290 -msgid "Set the paths." -msgstr "Set paths" - -#: ../../extensions/net_tools.php:310 -msgid "Traceroute path" -msgstr "Traceroute path" - -#: ../../extensions/net_tools.php:311 -msgid "If it is empty, Pandora searchs the traceroute system." -msgstr "If empty, Pandora will search the traceroute system" - -#: ../../extensions/net_tools.php:314 -msgid "Ping path" -msgstr "Ping path" - -#: ../../extensions/net_tools.php:315 -msgid "If it is empty, Pandora searchs the ping system." -msgstr "If empty, Pandora will search the ping system" - -#: ../../extensions/net_tools.php:318 -msgid "Nmap path" -msgstr "Nmap path" - -#: ../../extensions/net_tools.php:319 -msgid "If it is empty, Pandora searchs the nmap system." -msgstr "If empty, Pandora will search the nmap system." - -#: ../../extensions/net_tools.php:322 -msgid "Dig path" -msgstr "Dig path" - -#: ../../extensions/net_tools.php:323 -msgid "If it is empty, Pandora searchs the dig system." -msgstr "If empty, Pandora will search the dig system" - -#: ../../extensions/net_tools.php:326 -msgid "Snmpget path" -msgstr "Snmpget path" - -#: ../../extensions/net_tools.php:327 -msgid "If it is empty, Pandora searchs the snmpget system." -msgstr "If empty, Pandora will search the snmpget system" - -#: ../../extensions/net_tools.php:332 -#: ../../godmode/reporting/reporting_builder.list_items.php:308 -#: ../../godmode/update_manager/update_manager.php:35 -#: ../../enterprise/dashboard/main_dashboard.php:162 -#: ../../enterprise/dashboard/main_dashboard.php:242 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:254 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:243 -msgid "Options" -msgstr "Options" - #: ../../extensions/pandora_logs.php:33 ../../extensions/system_info.php:174 msgid "Cannot find file" msgstr "Cannot find file" @@ -3580,6 +7374,74 @@ msgstr "" msgid "System logfiles" msgstr "System logfiles" +#: ../../extensions/files_repo/files_repo_get_file.php:65 +msgid "Unreliable petition" +msgstr "Unreliable petition" + +#: ../../extensions/files_repo/files_repo_get_file.php:65 +msgid "Please contact the administrator" +msgstr "Please contact the administrator." + +#: ../../extensions/files_repo/files_repo_form.php:73 +msgid "Only 200 characters are permitted" +msgstr "200 characters max." + +#: ../../extensions/files_repo/files_repo_form.php:84 +#: ../../extensions/system_info.php:471 ../../extensions/system_info.php:526 +#: ../../godmode/extensions.php:143 +msgid "File" +msgstr "File" + +#: ../../extensions/files_repo/files_repo_form.php:87 +#: ../../extensions/files_repo/files_repo_form.php:93 +#: ../../extensions/files_repo/files_repo_list.php:89 +msgid "Public link" +msgstr "Public link" + +#: ../../extensions/files_repo/files_repo_list.php:61 +#: ../../include/functions_filemanager.php:581 +msgid "Last modification" +msgstr "Previous modification" + +#: ../../extensions/files_repo/files_repo_list.php:86 +msgid "Copy to clipboard" +msgstr "Copy to clipboard" + +#: ../../extensions/files_repo/files_repo_list.php:94 +#: ../../extensions/system_info.php:467 +msgid "Download" +msgstr "Download" + +#: ../../extensions/files_repo/files_repo_list.php:115 +msgid "No items" +msgstr "No items" + +#: ../../extensions/files_repo/functions_files_repo.php:29 +#: ../../extensions/files_repo/functions_files_repo.php:40 +#: ../../include/functions_config.php:1730 +msgid "Attachment directory is not writable by HTTP Server" +msgstr "Attachment directory is not writable by HTTP Server" + +#: ../../extensions/files_repo/functions_files_repo.php:30 +#: ../../extensions/files_repo/functions_files_repo.php:41 +#, php-format +msgid "Please check that the web server has write rights on the %s directory" +msgstr "" +"Please check if the web server has writing permissions on the %s directory " +"or not." + +#: ../../extensions/files_repo/functions_files_repo.php:229 +msgid "The file could not be copied" +msgstr "The file could not be copied." + +#: ../../extensions/files_repo/functions_files_repo.php:233 +msgid "There was an error creating the file" +msgstr "There was an error creating the file." + +#: ../../extensions/files_repo/functions_files_repo.php:274 +msgid "There was an error updating the file" +msgstr "There was an error updating the file." + #: ../../extensions/plugin_registration.php:26 #: ../../extensions/plugin_registration.php:33 msgid "Plugin registration" @@ -3632,9 +7494,9 @@ msgid "Module plugin registered" msgstr "Module plug-in registered" #: ../../extensions/plugin_registration.php:422 -#: ../../godmode/agentes/module_manager_editor_plugin.php:50 #: ../../godmode/massive/massive_edit_plugins.php:287 #: ../../godmode/modules/manage_network_components_form_plugin.php:22 +#: ../../godmode/agentes/module_manager_editor_plugin.php:50 msgid "Plugin" msgstr "Plugin" @@ -3679,18 +7541,6 @@ msgstr "Pandora Server load" msgid "SNMP Interface throughput" msgstr "SNMP Interface throughput" -#: ../../extensions/realtime_graphs.php:72 ../../include/ajax/module.php:750 -#: ../../include/functions_events.php:2103 -#: ../../include/functions_visual_map_editor.php:56 -#: ../../include/functions_pandora_networkmap.php:1401 -#: ../../operation/agentes/status_monitor.php:977 -#: ../../operation/search_modules.php:52 -#: ../../enterprise/dashboard/widgets/custom_graph.php:33 -#: ../../enterprise/operation/services/services.list.php:344 -#: ../../enterprise/operation/services/services.service.php:143 -msgid "Graph" -msgstr "Graph" - #: ../../extensions/realtime_graphs.php:79 msgid "Refresh interval" msgstr "Refresh interval" @@ -3704,41 +7554,32 @@ msgid "Clear graph" msgstr "Clear graph" #: ../../extensions/realtime_graphs.php:94 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:700 +#: ../../include/functions_snmp_browser.php:506 +#: ../../godmode/massive/massive_edit_modules.php:488 #: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:339 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:254 #: ../../godmode/agentes/module_manager_editor_network.php:67 #: ../../godmode/agentes/module_manager_editor_wmi.php:45 -#: ../../godmode/massive/massive_edit_modules.php:488 -#: ../../include/functions_snmp_browser.php:506 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:689 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:336 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:252 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:254 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:700 msgid "Target IP" msgstr "Target IP" #: ../../extensions/realtime_graphs.php:97 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:69 #: ../../include/functions_snmp_browser.php:508 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:69 msgid "Community" msgstr "Community" #: ../../extensions/realtime_graphs.php:108 -#: ../../godmode/setup/snmp_wizard.php:41 #: ../../include/functions_snmp_browser.php:401 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:243 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:318 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 +#: ../../godmode/setup/snmp_wizard.php:41 msgid "OID" msgstr "OID" -#: ../../extensions/realtime_graphs.php:111 ../../godmode/extensions.php:144 -#: ../../godmode/servers/servers.build_table.php:67 +#: ../../extensions/realtime_graphs.php:111 #: ../../include/functions_snmp_browser.php:513 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:39 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:388 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../godmode/extensions.php:144 +#: ../../godmode/servers/servers.build_table.php:67 msgid "Version" msgstr "Version" @@ -3752,203 +7593,103 @@ msgstr "SNMP walk" msgid "Use this OID" msgstr "Use this OID" -#: ../../extensions/resource_exportation.php:53 -#: ../../extensions/resource_exportation.php:338 -msgid "Resource exportation" -msgstr "Resource exporting" +#: ../../extensions/files_repo.php:91 +msgid "Extension not installed" +msgstr "Extension not installed." -#: ../../extensions/resource_exportation.php:341 -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). " -msgstr "" -"This extension makes exporting resource templates easier. You can export " -"resource templates in Pandora FMS 3.x format (.ptr) " +#: ../../extensions/files_repo.php:104 ../../extensions/files_repo.php:187 +msgid "Administration view" +msgstr "Management view" -#: ../../extensions/resource_exportation.php:352 -#: ../../enterprise/dashboard/widgets/reports.php:27 -#: ../../enterprise/dashboard/widgets/reports.php:43 -#: ../../enterprise/extensions/cron/functions.php:445 -#: ../../enterprise/extensions/cron/main.php:225 -#: ../../enterprise/extensions/cron/main.php:267 -#: ../../enterprise/extensions/cron/main.php:281 -msgid "Report" -msgstr "Report" +#: ../../extensions/files_repo.php:110 ../../extensions/files_repo.php:192 +msgid "Operation view" +msgstr "Operation view" -#: ../../extensions/resource_exportation.php:354 -#: ../../extensions/resource_exportation.php:357 -#: ../../operation/agentes/exportdata.php:341 -#: ../../enterprise/extensions/resource_exportation/functions.php:20 -msgid "Export" -msgstr "Export" +#: ../../extensions/files_repo.php:116 ../../extensions/files_repo.php:218 +msgid "Files repository manager" +msgstr "File repository manager" -#: ../../extensions/resource_exportation.php:355 ../../operation/menu.php:128 -#: ../../operation/users/user_edit.php:277 -#: ../../enterprise/meta/screens/screens.visualmap.php:216 -#: ../../enterprise/meta/screens/screens.visualmap.php:220 -msgid "Visual console" -msgstr "Visual console" +#: ../../extensions/files_repo.php:133 ../../include/functions.php:2190 +#: ../../include/functions.php:2193 +msgid "The file exceeds the maximum size" +msgstr "Maximum filesize exceeded" -#: ../../extensions/resource_registration.php:40 -#, php-format -msgid "Success add '%s' item in report '%s'." -msgstr "Successfully added '%s' item into '%s' report" +#: ../../extensions/files_repo.php:200 ../../extensions/files_repo.php:216 +msgid "Files repository" +msgstr "File repository" -#: ../../extensions/resource_registration.php:41 -#, php-format -msgid "Error create '%s' item in report '%s'." -msgstr "Error creating item '%s' on report '%s'" +#: ../../extensions/agents_alerts.php:109 +msgid "Agents/Alerts" +msgstr "Agents / Alerts" -#: ../../extensions/resource_registration.php:68 -#, php-format -msgid "Error create '%s' report, the name exist and there aren't free name." -msgstr "" -"Error creating '%s' report, the name already exists and no other names are " -"available." +#: ../../extensions/agents_alerts.php:156 +msgid "There are no agents with alerts" +msgstr "There are no agents with alerts." -#: ../../extensions/resource_registration.php:75 -#, php-format -msgid "" -"Warning create '%s' report, the name exist, the report have a name %s." -msgstr "" -"Warning creating report '%s': the name already exists and the report has a " -"name '%s'." +#: ../../extensions/agents_alerts.php:177 +#: ../../godmode/alerts/alert_templates.php:132 +#: ../../godmode/alerts/alert_templates.php:175 +#: ../../godmode/alerts/alert_templates.php:194 +#: ../../godmode/alerts/alert_templates.php:210 +#: ../../godmode/massive/massive_add_action_alerts.php:163 +#: ../../godmode/massive/massive_delete_action_alerts.php:167 +msgid "Alert templates" +msgstr "Alert templates" -#: ../../extensions/resource_registration.php:82 -msgid "Error the report haven't name." -msgstr "Error. The report is unnamed" +#: ../../extensions/agents_alerts.php:184 +msgid "Previous templates" +msgstr "Previous templates" -#: ../../extensions/resource_registration.php:88 -msgid "Error the report haven't group." -msgstr "Error. The report is not in any available group." +#: ../../extensions/agents_alerts.php:222 +msgid "More templates" +msgstr "More templates" -#: ../../extensions/resource_registration.php:98 -#, php-format -msgid "Success create '%s' report." -msgstr "successfully created '%s' report" +#: ../../extensions/agents_alerts.php:324 +#: ../../mobile/operation/alerts.php:253 ../../include/functions_ui.php:921 +#: ../../godmode/alerts/alert_view.php:85 +#: ../../godmode/alerts/alert_list.list.php:642 +msgid "times" +msgstr "amount of times alert was fired" -#: ../../extensions/resource_registration.php:99 -#, php-format -msgid "Error create '%s' report." -msgstr "Error creating '%s' report" +#: ../../extensions/agents_alerts.php:328 +#: ../../mobile/operation/alerts.php:257 ../../include/functions_ui.php:925 +#: ../../include/functions_reporting.php:7972 +#: ../../godmode/alerts/alert_view.php:89 +#: ../../godmode/alerts/alert_list.list.php:646 +msgid "Alert disabled" +msgstr "Alert disabled" -#: ../../extensions/resource_registration.php:327 -#: ../../extensions/resource_registration.php:348 -#: ../../extensions/resource_registration.php:358 -#, php-format -msgid "Success add '%s' content." -msgstr "Success adding the '%s' content" +#: ../../extensions/agents_alerts.php:348 +msgid "Agents/Alerts view" +msgstr "Agent/Alert view" -#: ../../extensions/resource_registration.php:328 -#: ../../extensions/resource_registration.php:349 -#: ../../extensions/resource_registration.php:359 -#: ../../enterprise/extensions/resource_registration/functions.php:482 -#, php-format -msgid "Error add '%s' action." -msgstr "Error adding '%s' action" +#: ../../extensions/extension_uploader.php:28 +msgid "Uploader extension" +msgstr "Upload extension" -#: ../../extensions/resource_registration.php:335 -#, php-format -msgid "Success add '%s' SLA." -msgstr "Success adding the '%s' SLA" +#: ../../extensions/extension_uploader.php:64 +msgid "Success to upload extension" +msgstr "Successfully uploaded extension" -#: ../../extensions/resource_registration.php:336 -#, php-format -msgid "Error add '%s' SLA." -msgstr "Error adding the '%s' SLA" +#: ../../extensions/extension_uploader.php:65 +msgid "Fail to upload extension" +msgstr "Failed to upload extension" -#: ../../extensions/resource_registration.php:377 -#, php-format -msgid "Error create '%s' visual map, lost tag name." -msgstr "Error creating the '%s' visual map. Tag name is missing." +#: ../../extensions/extension_uploader.php:73 +msgid "Upload extension" +msgstr "Upload extension" -#: ../../extensions/resource_registration.php:413 -#, php-format -msgid "" -"Error create '%s' visual map, the name exist and there aren't free name." -msgstr "" -"Error creating the '%s' visual map, the name is already taken and there are " -"no names available" +#: ../../extensions/extension_uploader.php:75 +msgid "Upload the extension as a zip file." +msgstr "Upload the extension as a zip file." -#: ../../extensions/resource_registration.php:420 -#, php-format -msgid "" -"Warning create '%s' visual map, the name exist, the report have a name %s." -msgstr "" -"Warning creating the '%s' visual map: the name already exists and the report " -"already has '%s' as a name." +#: ../../extensions/extension_uploader.php:77 +msgid "Upload enterprise extension" +msgstr "Upload enterprise extension" -#: ../../extensions/resource_registration.php:428 -#, php-format -msgid "Success create '%s' visual map." -msgstr "Success creating the '%s' visual map" - -#: ../../extensions/resource_registration.php:429 -#, php-format -msgid "Error create '%s' visual map." -msgstr "'Error creating the '%s' visual map" - -#: ../../extensions/resource_registration.php:535 -#, php-format -msgid "Success create item type '%d' visual map." -msgstr "Success creating item type '%d' on the visual map." - -#: ../../extensions/resource_registration.php:536 -#, php-format -msgid "Error create item type '%d' visual map." -msgstr "Error creating the '%d' visual map" - -#: ../../extensions/resource_registration.php:554 -#: ../../extensions/resource_registration.php:569 -#, php-format -msgid "Success create item for agent '%s' visual map." -msgstr "Success creating the '%s' agent item on the visual map" - -#: ../../extensions/resource_registration.php:555 -#: ../../extensions/resource_registration.php:570 -#, php-format -msgid "Error create item for agent '%s' visual map." -msgstr "Error creating the '%s' agent item on the visual map" - -#: ../../extensions/resource_registration.php:792 -#, php-format -msgid "Success create '%s' component." -msgstr "Success creating '%s' component." - -#: ../../extensions/resource_registration.php:793 -#, php-format -msgid "Error create '%s' component." -msgstr "Error creating '%s' component" - -#: ../../extensions/resource_registration.php:849 -#: ../../extensions/resource_registration.php:889 -msgid "Resource registration" -msgstr "Resource registration" - -#: ../../extensions/resource_registration.php:852 -#: ../../enterprise/include/functions_policies.php:4090 -msgid "Error, please install the PHP libXML in the system." -msgstr "Error: please install PHP libXML on the system" - -#: ../../extensions/resource_registration.php:858 -#, 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" -msgstr "" -"This extension makes registering resource templates easier. Here you can " -"upload a resource template in Pandora FMS 3.x format (.ptr files). Please " -"refer to our documentation for more information on how to obtain and use " -"Pandora FMS' resources.

    You can get more resurces in our Public Resource Library" - -#: ../../extensions/resource_registration.php:872 -#: ../../enterprise/include/functions_policies.php:4106 -msgid "Group filter: " -msgstr "Group filter: " +#: ../../extensions/extension_uploader.php:90 +msgid "Extension uploader" +msgstr "Extension uploader" #: ../../extensions/system_info.php:179 msgid "Cannot read file" @@ -3997,15 +7738,11 @@ msgid "Number lines of log" msgstr "Number of log lines" #: ../../extensions/system_info.php:476 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:216 msgid "Created" msgstr "Created" #: ../../extensions/system_info.php:481 ../../extensions/system_info.php:527 #: ../../godmode/events/event_responses.editor.php:93 -#: ../../enterprise/extensions/ipam/ipam_editor.php:89 -#: ../../enterprise/extensions/ipam/ipam_list.php:161 -#: ../../enterprise/extensions/ipam/ipam_network.php:140 msgid "Location" msgstr "Location" @@ -4013,60 +7750,611 @@ msgstr "Location" msgid "Generate file" msgstr "Generate file" -#: ../../extensions/system_info.php:496 ../../general/ui/agents_list.php:121 -#: ../../godmode/massive/massive_copy_modules.php:164 -#: ../../operation/reporting/reporting_viewer.php:234 -#: ../../enterprise/godmode/policies/policy_modules.php:1309 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:106 -#: ../../enterprise/operation/log/log_viewer.php:246 -#: ../../enterprise/operation/log/log_viewer.php:252 -msgid "Loading" -msgstr "Loading" - -#: ../../extensions/system_info.php:533 ../../extensions/system_info.php:594 -#: ../../godmode/db/db_refine.php:42 ../../godmode/db/db_refine.php:47 -#: ../../godmode/massive/massive_edit_plugins.php:813 -#: ../../godmode/massive/massive_edit_plugins.php:814 -#: ../../include/ajax/double_auth.ajax.php:250 -#: ../../include/ajax/double_auth.ajax.php:347 -#: ../../include/ajax/double_auth.ajax.php:392 -#: ../../include/ajax/double_auth.ajax.php:507 -#: ../../include/functions.php:1043 ../../include/functions_events.php:1176 -#: ../../include/functions_events.php:1422 ../../include/functions_ui.php:228 -#: ../../operation/users/user_edit.php:696 -#: ../../operation/users/user_edit.php:761 -#: ../../enterprise/dashboard/main_dashboard.php:355 -#: ../../enterprise/dashboard/main_dashboard.php:435 -#: ../../enterprise/include/functions_login.php:99 -#: ../../enterprise/meta/include/functions_ui_meta.php:779 -msgid "Error" -msgstr "Error" - #: ../../extensions/system_info.php:548 msgid "At least one option must be selected" msgstr "At least one option must be selected" -#: ../../extensions/users_connected.php:38 -#: ../../extensions/users_connected.php:122 -#: ../../extensions/users_connected.php:123 -msgid "Users connected" -msgstr "Connected users" +#: ../../index.php:241 ../../mobile/include/user.class.php:171 +#: ../../include/ajax/double_auth.ajax.php:489 +msgid "Invalid code" +msgstr "Invalid code" -#: ../../extensions/users_connected.php:66 -msgid "No other users connected" -msgstr "No other users connected" +#: ../../index.php:252 +msgid "The code shouldn't be empty" +msgstr "The code shouldn't be empty" -#: ../../extras/pandora_diag.php:90 -msgid "Pandora FMS Diagnostic tool" -msgstr "Pandora FMS Diagnostic tool" +#: ../../index.php:264 +msgid "Expired login" +msgstr "Expired login" -#: ../../extras/pandora_diag.php:93 -msgid "Item" -msgstr "Item" +#: ../../index.php:272 ../../index.php:278 +msgid "Login error" +msgstr "Login error" -#: ../../extras/pandora_diag.php:94 -msgid "Data value" -msgstr "Data value" +#: ../../index.php:548 +msgid "User doesn\\'t exist." +msgstr "User does not exist" + +#: ../../index.php:564 +msgid "User only can use the API." +msgstr "Only user can use the API" + +#: ../../index.php:794 +msgid "Sorry! I can't find the page!" +msgstr "Sorry! I can't find the page!" + +#: ../../mobile/operation/home.php:78 +#: ../../include/functions_visual_map.php:2744 +#: ../../include/functions_visual_map_editor.php:251 +#: ../../godmode/reporting/visual_console_builder.wizard.php:106 +msgid "Module graph" +msgstr "Module graph" + +#: ../../mobile/operation/home.php:118 ../../mobile/include/user.class.php:286 +#: ../../mobile/include/ui.class.php:175 +#: ../../mobile/include/functions_web.php:33 ../../general/header.php:289 +msgid "Logout" +msgstr "Logout" + +#: ../../mobile/operation/home.php:128 ../../mobile/include/ui.class.php:185 +msgid "Home" +msgstr "Home" + +#: ../../mobile/operation/networkmaps.php:99 +#: ../../mobile/operation/networkmap.php:78 +#: ../../mobile/operation/visualmaps.php:83 +#: ../../mobile/operation/tactical.php:71 ../../mobile/operation/groups.php:53 +#: ../../mobile/operation/alerts.php:141 ../../mobile/operation/agents.php:145 +#: ../../mobile/operation/events.php:430 +#: ../../mobile/operation/module_graph.php:270 +#: ../../mobile/operation/agent.php:66 ../../mobile/operation/visualmap.php:65 +#: ../../mobile/operation/modules.php:173 ../../mobile/index.php:240 +#: ../../general/noaccess2.php:18 ../../general/noaccess2.php:21 +msgid "You don't have access to this page" +msgstr "You don't have access to this page" + +#: ../../mobile/operation/networkmaps.php:100 +#: ../../mobile/operation/networkmap.php:79 +#: ../../mobile/operation/visualmaps.php:84 +#: ../../mobile/operation/tactical.php:72 ../../mobile/operation/groups.php:54 +#: ../../mobile/operation/alerts.php:142 ../../mobile/operation/agents.php:146 +#: ../../mobile/operation/events.php:431 +#: ../../mobile/operation/module_graph.php:271 +#: ../../mobile/operation/agent.php:67 ../../mobile/operation/visualmap.php:66 +#: ../../mobile/operation/modules.php:174 ../../mobile/index.php:241 +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" +msgstr "" +"Access to this page is restricted to authorized users only, please contact " +"your system administrator if you should need help.

    . Please remember " +"that any attempts to access this page will be recorded on the Pandora FMS " +"System Database." + +#: ../../mobile/operation/networkmaps.php:112 +msgid "Networkmaps" +msgstr "Network maps" + +#: ../../mobile/operation/networkmaps.php:116 +#: ../../mobile/operation/networkmap.php:98 +#: ../../mobile/operation/visualmaps.php:100 +#: ../../mobile/operation/tactical.php:88 ../../mobile/operation/groups.php:69 +#: ../../mobile/operation/alerts.php:158 ../../mobile/operation/agents.php:162 +#: ../../mobile/operation/events.php:568 +#: ../../mobile/operation/module_graph.php:368 +#: ../../mobile/operation/module_graph.php:377 +#: ../../mobile/operation/agent.php:108 +#: ../../mobile/operation/visualmap.php:103 +#: ../../mobile/operation/modules.php:190 +msgid "Back" +msgstr "Back" + +#: ../../mobile/operation/networkmaps.php:120 +#, php-format +msgid "Filter Networkmaps by %s" +msgstr "Filter Network maps by %s" + +#: ../../mobile/operation/networkmaps.php:150 +#: ../../mobile/operation/alerts.php:213 ../../mobile/operation/agents.php:201 +#: ../../mobile/operation/events.php:659 +#: ../../mobile/operation/modules.php:261 +msgid "Apply Filter" +msgstr "Apply Filter" + +#: ../../mobile/operation/networkmaps.php:202 +#: ../../mobile/operation/networkmap.php:164 +msgid "No networkmaps" +msgstr "No network maps" + +#: ../../mobile/operation/networkmaps.php:216 +#: ../../mobile/operation/alerts.php:306 ../../mobile/operation/agents.php:460 +#: ../../mobile/operation/events.php:1070 +#: ../../mobile/operation/modules.php:786 +msgid "(Default)" +msgstr "(Default)" + +#: ../../mobile/operation/networkmaps.php:222 +#: ../../mobile/operation/alerts.php:316 ../../mobile/operation/agents.php:466 +#: ../../mobile/operation/events.php:1096 +#: ../../mobile/operation/modules.php:793 +#, php-format +msgid "Group: %s" +msgstr "Group : %s" + +#: ../../mobile/operation/networkmaps.php:229 +#: ../../mobile/operation/events.php:1108 +#, php-format +msgid "Type: %s" +msgstr "Type: %s" + +#: ../../mobile/operation/networkmap.php:222 +#: ../../mobile/operation/networkmap.php:234 +msgid "Map could not be generated" +msgstr "Map could not be generated" + +#: ../../mobile/operation/visualmaps.php:96 +msgid "Visual consoles" +msgstr "Visual consoles" + +#: ../../mobile/operation/visualmaps.php:146 +msgid "No maps defined" +msgstr "No maps defined" + +#: ../../mobile/operation/tactical.php:193 +msgid "Last activity" +msgstr "Last activity" + +#: ../../mobile/operation/tactical.php:215 +#: ../../mobile/operation/agents.php:381 ../../mobile/operation/events.php:797 +#: ../../mobile/operation/module_graph.php:467 +#: ../../mobile/operation/agent.php:305 +#: ../../mobile/operation/visualmap.php:118 +#: ../../mobile/operation/modules.php:706 +#: ../../godmode/reporting/visual_console_builder.wizard.php:377 +msgid "Loading..." +msgstr "Loading..." + +#: ../../mobile/operation/groups.php:129 +#: ../../include/functions_reporting_html.php:3422 +msgid "Agents not init" +msgstr "Uninitialised agents" + +#: ../../mobile/operation/groups.php:133 +#: ../../include/functions_reporting_html.php:3404 +msgid "Agents critical" +msgstr "Agents in critical status" + +#: ../../mobile/operation/groups.php:137 +#: ../../include/functions_groups.php:794 +#: ../../include/functions_groups.php:796 +#: ../../include/functions_groups.php:798 +#: ../../include/functions_groups.php:799 +#: ../../include/functions_groups.php:800 +#: ../../include/functions_reporting_html.php:3416 +msgid "Agents unknown" +msgstr "Unknown agents" + +#: ../../mobile/operation/alerts.php:96 ../../mobile/operation/alerts.php:97 +#: ../../mobile/operation/alerts.php:203 ../../mobile/operation/alerts.php:204 +#: ../../godmode/alerts/alert_view.php:106 +msgid "Stand by" +msgstr "Stand by" + +#: ../../mobile/operation/alerts.php:162 +#, php-format +msgid "Filter Alerts by %s" +msgstr "Filter Alerts by %s" + +#: ../../mobile/operation/alerts.php:272 +msgid "Last Fired" +msgstr "Last Fired" + +#: ../../mobile/operation/alerts.php:282 +msgid "No alerts" +msgstr "No alerts" + +#: ../../mobile/operation/alerts.php:312 +#, php-format +msgid "Standby: %s" +msgstr "Standby : %s" + +#: ../../mobile/operation/alerts.php:320 ../../mobile/operation/agents.php:470 +#: ../../mobile/operation/events.php:1112 +#: ../../mobile/operation/modules.php:805 +#, php-format +msgid "Status: %s" +msgstr "Status : %s" + +#: ../../mobile/operation/alerts.php:324 ../../mobile/operation/agents.php:474 +#: ../../mobile/operation/modules.php:809 +#, php-format +msgid "Free Search: %s" +msgstr "Free Search : %s" + +#: ../../mobile/operation/agents.php:166 +#, php-format +msgid "Filter Agents by %s" +msgstr "Filter Agents by %s" + +#: ../../mobile/operation/agents.php:324 +#: ../../godmode/reporting/visual_console_builder.elements.php:86 +msgid "A." +msgstr "A." + +#: ../../mobile/operation/agents.php:370 +msgid "No agents" +msgstr "No agents" + +#: ../../mobile/operation/events.php:382 ../../mobile/operation/events.php:383 +#: ../../mobile/operation/events.php:590 ../../mobile/operation/events.php:591 +msgid "Preset Filters" +msgstr "Preset Filters" + +#: ../../mobile/operation/events.php:443 +msgid "ERROR: Event detail" +msgstr "ERROR : Event details" + +#: ../../mobile/operation/events.php:445 +msgid "Error connecting to DB pandora." +msgstr "Error on connecting to Pandora DB." + +#: ../../mobile/operation/events.php:458 +msgid "Event detail" +msgstr "Event details" + +#: ../../mobile/operation/events.php:497 +#: ../../include/functions_events.php:2421 +msgid "Acknowledged by" +msgstr "Acknowledged by" + +#: ../../mobile/operation/events.php:506 +#: ../../include/functions_visual_map_editor.php:606 +#: ../../godmode/reporting/visual_console_builder.elements.php:153 +msgid "Module Graph" +msgstr "Module Graph" + +#: ../../mobile/operation/events.php:541 +msgid "Sucessful validate" +msgstr "Validation successful." + +#: ../../mobile/operation/events.php:543 +msgid "Fail validate" +msgstr "Validation failed." + +#: ../../mobile/operation/events.php:575 +#, php-format +msgid "Filter Events by %s" +msgstr "Filter events by %s" + +#: ../../mobile/operation/events.php:1076 +#, php-format +msgid "Filter: %s" +msgstr "Filter : %s" + +#: ../../mobile/operation/events.php:1089 +#, php-format +msgid "Severity: %s" +msgstr "Severity : %s" + +#: ../../mobile/operation/events.php:1116 +#, php-format +msgid "Free search: %s" +msgstr "Free search : %s" + +#: ../../mobile/operation/events.php:1120 +#, php-format +msgid "Hours: %s" +msgstr "Hours : %s" + +#: ../../mobile/operation/module_graph.php:364 +#: ../../mobile/operation/module_graph.php:373 +#, php-format +msgid "PandoraFMS: %s" +msgstr "PandoraFMS : %s" + +#: ../../mobile/operation/module_graph.php:387 +#, php-format +msgid "Options for %s : %s" +msgstr "Options for %s : %s" + +#: ../../mobile/operation/module_graph.php:394 +msgid "Show Alerts" +msgstr "Show Alerts" + +#: ../../mobile/operation/module_graph.php:402 +msgid "Show Events" +msgstr "Show Events" + +#: ../../mobile/operation/module_graph.php:434 +msgid "Avg Only" +msgstr "Avg Only" + +#: ../../mobile/operation/module_graph.php:439 +msgid "Time range (hours)" +msgstr "Time range (hours)" + +#: ../../mobile/operation/module_graph.php:459 +msgid "Update graph" +msgstr "Update graph" + +#: ../../mobile/operation/module_graph.php:468 +msgid "Error get the graph" +msgstr "Error retrieving the graph" + +#: ../../mobile/operation/agent.php:112 +msgid "PandoraFMS: Agents" +msgstr "PandoraFMS : Agents" + +#: ../../mobile/operation/agent.php:118 +msgid "No agent found" +msgstr "No agent found." + +#: ../../mobile/operation/agent.php:200 +msgid "Modules by status" +msgstr "Modules by status" + +#: ../../mobile/operation/agent.php:269 +#, php-format +msgid "Last %s Events" +msgstr "Last %s events" + +#: ../../mobile/operation/modules.php:194 +#, php-format +msgid "Filter Modules by %s" +msgstr "Filter Modules by %s" + +#: ../../mobile/operation/modules.php:543 +msgid "Interval." +msgstr "Interval" + +#: ../../mobile/operation/modules.php:549 +msgid "Last update." +msgstr "Last update" + +#: ../../mobile/operation/modules.php:668 +#: ../../godmode/agentes/agent_template.php:263 +msgid "No modules" +msgstr "No modules" + +#: ../../mobile/operation/modules.php:801 +#, php-format +msgid "Module group: %s" +msgstr "Module group : %s" + +#: ../../mobile/operation/modules.php:814 +#, php-format +msgid "Tag: %s" +msgstr "Tag: %s" + +#: ../../mobile/include/user.class.php:152 +#: ../../mobile/include/user.class.php:170 +#: ../../mobile/include/user.class.php:177 +msgid "Double authentication failed" +msgstr "Double authentication failed" + +#: ../../mobile/include/user.class.php:153 +msgid "Secret code not found" +msgstr "Secret code not found" + +#: ../../mobile/include/user.class.php:154 +msgid "Please contact the administrator to reset your double authentication" +msgstr "Please contact the administrator to reset your double authentication" + +#: ../../mobile/include/user.class.php:178 +msgid "There was an error checking the code" +msgstr "There was an error checking the code" + +#: ../../mobile/include/user.class.php:211 +msgid "Login Failed" +msgstr "Login Failed" + +#: ../../mobile/include/user.class.php:212 +msgid "User not found in database or incorrect password." +msgstr "User not found in database or wrong password." + +#: ../../mobile/include/user.class.php:220 +msgid "Login out" +msgstr "Logout" + +#: ../../mobile/include/user.class.php:221 ../../general/login_page.php:176 +msgid "" +"Your session is over. Please close your browser window to close this Pandora " +"session." +msgstr "" +"Your session has ended. Please close your browser window to close this " +"Pandora FMS session." + +#: ../../mobile/include/user.class.php:244 +msgid "user" +msgstr "User" + +#: ../../mobile/include/user.class.php:251 +msgid "password" +msgstr "Password" + +#: ../../mobile/include/user.class.php:256 ../../general/login_page.php:168 +msgid "Login" +msgstr "Login" + +#: ../../mobile/include/user.class.php:301 +#: ../../mobile/include/user.class.php:302 ../../general/login_page.php:186 +msgid "Authenticator code" +msgstr "Authentication code" + +#: ../../mobile/include/user.class.php:306 ../../general/login_page.php:192 +msgid "Check code" +msgstr "Check code" + +#: ../../mobile/include/ui.class.php:87 ../../mobile/include/ui.class.php:168 +msgid "Pandora FMS mobile" +msgstr "Pandora FMS : Mobile" + +#: ../../mobile/include/ui.class.php:257 +#: ../../mobile/include/functions_web.php:81 +#, php-format +msgid "Pandora FMS %s - Build %s" +msgstr "Pandora FMS %s - Build %s" + +#: ../../mobile/include/ui.class.php:258 +#: ../../mobile/include/functions_web.php:82 +msgid "Generated at" +msgstr "Generated at" + +#: ../../mobile/include/ui.class.php:630 +msgid "Not found header." +msgstr "Header not found." + +#: ../../mobile/include/ui.class.php:633 +msgid "Not found content." +msgstr "Content not found." + +#: ../../mobile/include/ui.class.php:636 +msgid "Not found footer." +msgstr "Footer not found." + +#: ../../mobile/include/ui.class.php:639 +msgid "Incorrect form." +msgstr "Incorrect form." + +#: ../../mobile/include/ui.class.php:642 +msgid "Incorrect grid." +msgstr "Wrong grid." + +#: ../../mobile/include/ui.class.php:645 +msgid "Incorrect collapsible." +msgstr "Wrong collapsible." + +#: ../../mobile/include/functions_web.php:23 +#: ../../include/functions_reporting_html.php:3025 +#: ../../include/functions_reporting_html.php:3165 +msgid "Monitor" +msgstr "Monitor" + +#: ../../mobile/include/functions_web.php:27 ../../godmode/menu.php:201 +#: ../../godmode/reporting/visual_console_builder.wizard.php:246 +msgid "Servers" +msgstr "Servers" + +#: ../../general/logon_failed.php:33 +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 "" +"Username or password are incorrect. Please check that your CAPS LOCK key is " +"disabled, username and password are case sensitive

    All actions, " +"included failed login attempts are registered in Pandora FMS System logs and " +"can be reviewed by all users. Please report any incident or malfunction to " +"an admin" + +#: ../../general/footer.php:35 +#, php-format +msgid "Pandora FMS %s - Build %s - MR %s" +msgstr "Pandora FMS %s - Build %s - MR %s" + +#: ../../general/footer.php:38 +msgid "Page generated at" +msgstr "Page generated as" + +#: ../../general/footer.php:39 +msgid "® Ártica ST" +msgstr "" + +#: ../../general/ui/agents_list.php:127 +msgid "No agents found" +msgstr "No agents found" + +#: ../../general/pandora_help.php:24 ../../general/pandora_help.php:68 +#: ../../general/pandora_help.php:95 +msgid "Pandora FMS help system" +msgstr "Pandora FMS help wizard" + +#: ../../general/pandora_help.php:73 +msgid "Help system error" +msgstr "Help wizard error" + +#: ../../general/pandora_help.php:78 +msgid "" +"Pandora FMS help system has been called with a help reference that currently " +"don't exist. There is no help content to show." +msgstr "" +"Pandora FMS' help wizard has been asked for a reference that currently " +"doesn't exist. There is no help content available for this topic." + +#: ../../general/header.php:75 +msgid "Blank characters are used as AND conditions" +msgstr "Blank characters are used as AND conditions" + +#: ../../general/header.php:90 ../../general/header.php:92 +msgid "Enter keywords to search" +msgstr "Enter keywords to search" + +#: ../../general/header.php:114 ../../general/header.php:122 +msgid "All systems" +msgstr "All systems" + +#: ../../general/header.php:114 +msgid "Down" +msgstr "Down" + +#: ../../general/header.php:118 +msgid "servers down" +msgstr "servers down" + +#: ../../general/header.php:122 +msgid "Ready" +msgstr "Ready" + +#: ../../general/header.php:142 ../../general/header.php:143 +msgid "QR Code of the page" +msgstr "Page QR Code" + +#: ../../general/header.php:169 ../../general/header.php:170 +#: ../../include/functions_clippy.php:128 +msgid "Pandora FMS assistant" +msgstr "Pandora FMS assistant" + +#: ../../general/header.php:195 +msgid "Configure autorefresh" +msgstr "Configure autorefresh" + +#: ../../general/header.php:222 +msgid "Disabled autorefresh" +msgstr "Disable autorefresh" + +#: ../../general/header.php:248 +msgid "System alerts detected - Please fix as soon as possible" +msgstr "System alerts detected - Please fix them as soon as possible" + +#: ../../general/header.php:263 +#, php-format +msgid "You have %d warning(s)" +msgstr "You have %d warning(s)" + +#: ../../general/header.php:274 +msgid "There are not warnings" +msgstr "There are no warnings" + +#: ../../general/header.php:283 +msgid "Main help" +msgstr "Main help" + +#: ../../general/header.php:305 +msgid "New chat message" +msgstr "New chat message" + +#: ../../general/header.php:314 +msgid "Message overview" +msgstr "Message overview" + +#: ../../general/header.php:315 +#, php-format +msgid "You have %d unread message(s)" +msgstr "You have %d unread message(s)" #: ../../general/alert_enterprise.php:96 msgid "" @@ -4314,19 +8602,361 @@ msgstr "" "correlation alerts to simplify the alerting system and have easier " "administration and increased performance." +#: ../../general/logon_ok.php:114 ../../general/logon_ok.php:318 +msgid "Pandora FMS Overview" +msgstr "Pandora FMS Overview" + +#: ../../general/logon_ok.php:181 ../../general/logon_ok.php:380 +msgid "News board" +msgstr "News board" + +#: ../../general/logon_ok.php:186 ../../general/logon_ok.php:385 +msgid "ago" +msgstr "ago" + +#: ../../general/logon_ok.php:193 ../../general/logon_ok.php:392 +msgid "by" +msgstr "by" + +#: ../../general/logon_ok.php:229 ../../general/logon_ok.php:426 +msgid "This is your last activity in Pandora FMS console" +msgstr "This is your last activity performed on the Pandora FMS console" + +#: ../../general/login_page.php:35 +msgid "Go to Pandora FMS Website" +msgstr "Go to the Pandora FMS Website" + +#: ../../general/login_page.php:40 +msgid "Go to Login" +msgstr "Go to Login" + +#: ../../general/login_page.php:82 +msgid "Docs" +msgstr "Docs" + +#: ../../general/login_page.php:84 ../../general/login_help_dialog.php:67 +#: ../../general/login_help_dialog.php:69 +msgid "Support" +msgstr "Support" + +#: ../../general/login_page.php:145 +msgid "Login as admin" +msgstr "Login as admin" + +#: ../../general/login_page.php:152 +msgid "Login with SAML" +msgstr "Login with SAML" + +#: ../../general/login_page.php:174 +msgid "Logged out" +msgstr "Logged out" + +#: ../../general/login_page.php:200 +msgid "View details" +msgstr "View details" + +#: ../../general/login_page.php:224 +msgid "Build" +msgstr "Build" + +#: ../../general/login_page.php:237 +msgid "Login failed" +msgstr "Login failed" + +#: ../../general/login_page.php:261 +msgid "" +"Pandora FMS frontend is built on advanced, modern technologies and does not " +"support old browsers." +msgstr "" +"Pandora FMS' frontend is built with advanced, modern technologies and " +"doesn't support older browsers." + +#: ../../general/login_page.php:262 +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." +msgstr "" +"It's highly recommended that you choose and install an updated browser. It's " +"free of charge and will only take a couple of minutes" + +#: ../../general/login_page.php:325 +msgid "Why is it recommended to upgrade the web browser?" +msgstr "Why is it recommendable to upgrade your browser?" + +#: ../../general/login_page.php:330 +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." +msgstr "" +"Newer browsers usually include support for new technology, increasing " +"browsing speed, improving privacy settings, and so on. They also solve " +"security and functional issues." + +#: ../../general/login_page.php:339 +msgid "Continue despite this warning" +msgstr "Continue despite this warning" + +#: ../../general/noaccess2.php:26 +msgid "Access to this page is restricted" +msgstr "Access to this page is restricted" + +#: ../../general/noaccess2.php:31 +msgid "No access" +msgstr "No access" + +#: ../../general/noaccess2.php:36 +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 "" +"Access to this page is restricted to authorised users only, please contact " +"system administrator if you need assistance.

    \n" +"\t\t\tPlease know that all attempts to access this page are recorded on the " +"security logs of Pandora System Database" + +#: ../../general/login_required.php:69 +#: ../../general/login_identification_wizard.php:180 +msgid "Pandora FMS instance identification wizard" +msgstr "Pandora FMS instance identification wizard" + +#: ../../general/login_required.php:72 +msgid "" +"Please fill the following information in order to configure your Pandora FMS " +"instance successfully" +msgstr "" +"Please fill out the following information in order to configure your Pandora " +"FMS instance successfully" + +#: ../../general/login_required.php:86 ../../include/functions_config.php:129 +#: ../../godmode/setup/setup_general.php:52 +msgid "Language code for Pandora" +msgstr "Pandora FMS Language settings" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Africa" +msgstr "Africa" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "America" +msgstr "America" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Antarctica" +msgstr "Antarctica" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Arctic" +msgstr "Arctic" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Asia" +msgstr "Asia" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Atlantic" +msgstr "Atlantic" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Australia" +msgstr "Australia" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Europe" +msgstr "Europe" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Indian" +msgstr "Indian" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Pacific" +msgstr "Pacific" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "UTC" +msgstr "UTC" + +#: ../../general/login_required.php:111 ../../include/functions_config.php:166 +#: ../../godmode/setup/setup_general.php:135 +msgid "Timezone setup" +msgstr "Timezone setup" + +#: ../../general/login_required.php:112 +#: ../../godmode/setup/setup_general.php:136 +msgid "" +"Must have the same time zone as the system or database to avoid mismatches " +"of time." +msgstr "" +"Pandora FMS must be set to the same timezone as your system or database as " +"to avoid incoherences." + +#: ../../general/login_required.php:116 +msgid "E-mail for receiving alerts" +msgstr "E-mail for receiving alerts" + +#: ../../general/login_required.php:124 +msgid "Register" +msgstr "Register" + +#: ../../general/login_required.php:127 +#: ../../include/functions_visual_map_editor.php:461 +#: ../../include/functions_visual_map_editor.php:469 +#: ../../godmode/setup/snmp_wizard.php:109 +msgid "Cancel" +msgstr "Cancel" + +#: ../../general/login_required.php:130 +msgid "All fields required" +msgstr "All fields required" + +#: ../../general/login_help_dialog.php:39 +msgid "Welcome to Pandora FMS" +msgstr "Welcome to Pandora FMS" + +#: ../../general/login_help_dialog.php:42 +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!" +msgstr "" +"If this is your first time using Pandora FMS, 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 Pandora FMS!" + +#: ../../general/login_help_dialog.php:51 +#: ../../general/login_help_dialog.php:53 +msgid "Online help" +msgstr "Online help" + +#: ../../general/login_help_dialog.php:59 +#: ../../general/login_help_dialog.php:61 +msgid "Enterprise version" +msgstr "Enterprise Edition" + +#: ../../general/login_help_dialog.php:69 +msgid "Forums" +msgstr "Forums" + +#: ../../general/login_help_dialog.php:75 +#: ../../general/login_help_dialog.php:77 +msgid "Documentation" +msgstr "Documentation" + +#: ../../general/login_help_dialog.php:86 +msgid "Click here to don't show again this message" +msgstr "Don't show this message again" + +#: ../../general/firts_task/recon_view.php:21 +msgid "There are no recon task defined yet." +msgstr "There are no recon task defined yet." + +#: ../../general/firts_task/recon_view.php:25 +#: ../../include/functions_servers.php:378 +#: ../../godmode/servers/manage_recontask_form.php:222 +msgid "Recon server" +msgstr "Recon server" + +#: ../../general/firts_task/recon_view.php:28 +#: ../../general/firts_task/recon_view.php:35 +msgid "Create Recon Task" +msgstr "Create Recon Task" + +#: ../../general/firts_task/recon_view.php:29 +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" +"\t\ttype. You can define your own customized recon script." +msgstr "" +"The Recon Task definition for Pandora FMS is used to find new elements on " +"the network. \n" +"\t\tIf it detects any item, it will add that item into the monitoring " +"process, and if that item it is already being monitored, then it will \n" +"\t\tignore it or it 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." + +#: ../../general/firts_task/transactional_list.php:23 +msgid "There are no transactions defined yet." +msgstr "There are no transactions defined yet." + +#: ../../general/firts_task/transactional_list.php:30 +msgid "Transactions" +msgstr "Transactions" + +#: ../../general/firts_task/transactional_list.php:33 +#: ../../general/firts_task/transactional_list.php:38 +msgid "Create Transactions" +msgstr "Create Transactions" + +#: ../../general/firts_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 "" +"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." + +#: ../../general/firts_task/custom_fields.php:23 +#: ../../general/firts_task/fields_manager.php:21 +msgid "There are no custom fields defined yet." +msgstr "There are no custom fields defined yet." + +#: ../../general/firts_task/custom_fields.php:28 +msgid "Custom Fields" +msgstr "Custom Fields" + +#: ../../general/firts_task/custom_fields.php:31 +#: ../../general/firts_task/custom_fields.php:35 +msgid "Create Custom Fields" +msgstr "Create Custom Fields" + +#: ../../general/firts_task/custom_fields.php:32 +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 "" +"Custom fields are an easy way to customize an agent's information.\n" +"\t\t It's possible to create custom fields by clicking on 'Administration' -" +"> 'Manage monitoring' -> 'Manage custom fields'. " + #: ../../general/firts_task/collections.php:21 msgid "There are no collections defined yet." msgstr "There are no collections defined yet." #: ../../general/firts_task/collections.php:25 -#: ../../enterprise/godmode/agentes/collections.agents.php:47 -#: ../../enterprise/godmode/agentes/collections.data.php:42 -#: ../../enterprise/godmode/agentes/collections.editor.php:50 -#: ../../enterprise/godmode/menu.php:56 -#: ../../enterprise/godmode/policies/policies.php:385 -#: ../../enterprise/godmode/policies/policy_collections.php:29 -#: ../../enterprise/godmode/policies/policy_collections.php:173 -#: ../../enterprise/include/functions_policies.php:3289 msgid "Collections" msgstr "Collections" @@ -4369,173 +8999,30 @@ msgstr "" "can see on \n" "\t\t the picture below. " -#: ../../general/firts_task/custom_fields.php:23 -#: ../../general/firts_task/fields_manager.php:21 -msgid "There are no custom fields defined yet." -msgstr "There are no custom fields defined yet." +#: ../../general/firts_task/service_list.php:23 +msgid "There are no services defined yet." +msgstr "There are no services defined yet." -#: ../../general/firts_task/custom_fields.php:28 -msgid "Custom Fields" -msgstr "Custom Fields" +#: ../../general/firts_task/service_list.php:31 +#: ../../general/firts_task/service_list.php:40 +msgid "Create Services" +msgstr "Create Services" -#: ../../general/firts_task/custom_fields.php:31 -#: ../../general/firts_task/custom_fields.php:35 -msgid "Create Custom Fields" -msgstr "Create Custom Fields" - -#: ../../general/firts_task/custom_fields.php:32 +#: ../../general/firts_task/service_list.php:32 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'. " +"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 "" -"Custom fields are an easy way to customize an agent's information.\n" -"\t\t It's possible to create custom fields by clicking on 'Administration' -" -"> 'Manage monitoring' -> 'Manage custom fields'. " - -#: ../../general/firts_task/custom_graphs.php:23 -msgid "There are no custom graphs defined yet." -msgstr "There are no custom graphs defined yet." - -#: ../../general/firts_task/custom_graphs.php:28 -msgid "Custom Graphs" -msgstr "Custom Graphs" - -#: ../../general/firts_task/custom_graphs.php:31 -#: ../../general/firts_task/custom_graphs.php:36 -msgid "Create Custom Graph" -msgstr "Create Custom Graph" - -#: ../../general/firts_task/custom_graphs.php:32 -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." -msgstr "" -"Graphs are designed to show the data collected by Pandora FMS in a user " -"defined timeframe.\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 updated " -"status.\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." - -#: ../../general/firts_task/fields_manager.php:25 -msgid "Fields Manager" -msgstr "Field Manager" - -#: ../../general/firts_task/fields_manager.php:28 -msgid "Create Fields Manager" -msgstr "Create field manager" - -#: ../../general/firts_task/fields_manager.php:29 -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 "" -"Custom fields are an easy way to customize an agent's information\n" -"\t\t\t\tA user is able to create custom fields by clicking on " -"'Administration' -> 'Manage monitoring' -> 'Manage custom fields'. " - -#: ../../general/firts_task/fields_manager.php:32 -msgid "Create Fields " -msgstr "Create Fields " - -#: ../../general/firts_task/incidents.php:25 -msgid "There are no incidents defined yet." -msgstr "There are no incidents defined yet." - -#: ../../general/firts_task/incidents.php:32 -#: ../../godmode/agentes/configurar_agente.php:418 -#: ../../godmode/agentes/configurar_agente.php:550 -#: ../../operation/agentes/ver_agente.php:1022 -#: ../../operation/incidents/incident_statistics.php:30 -#: ../../operation/menu.php:354 -msgid "Incidents" -msgstr "Incidents" - -#: ../../general/firts_task/incidents.php:35 -#: ../../general/firts_task/incidents.php:44 -msgid "Create Incidents" -msgstr "Create Incidents" - -#: ../../general/firts_task/incidents.php:36 -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" -msgstr "" -"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 Pandora FMS 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" - -#: ../../general/firts_task/map_builder.php:26 -#: ../../godmode/reporting/map_builder.php:255 -msgid "There are no visual console defined yet." -msgstr "There are no visual consoles defined yet" - -#: ../../general/firts_task/map_builder.php:32 -#: ../../godmode/reporting/map_builder.php:39 -#: ../../enterprise/include/functions_enterprise.php:292 -#: ../../enterprise/meta/general/main_header.php:189 -msgid "Visual Console" -msgstr "Visual Console" - -#: ../../general/firts_task/map_builder.php:35 -#: ../../general/firts_task/map_builder.php:43 -msgid "Create Visual Console" -msgstr "Create Visual Console" - -#: ../../general/firts_task/map_builder.php:36 -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\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'. " -msgstr "" -"Pandora FMS allows users to create visual maps on which each user is able to " -"create his or her own monitoring map.\n" -"\t\t\tThe new visual console editor is much more practical, although the " -"prior visual console editor had its advantages. \n" -"\t\t\tOn 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-" -"divided tabs named 'Data', 'Preview', 'Wizard', 'List of Elements' and " -"'Editor'.\n" -"\t\t\tThe items the Pandora FMS Visual Map was designed to handle are " -"'static images', 'percentage bars', 'module graphs' and 'simple values'. " #: ../../general/firts_task/network_map.php:23 msgid "There are no network map defined yet." @@ -4584,6 +9071,86 @@ msgstr "Dynamic Map" msgid "Policy Map (Only Enterprise version)" msgstr "Policy Map (Only Enterprise version)" +#: ../../general/firts_task/map_builder.php:26 +#: ../../godmode/reporting/map_builder.php:255 +msgid "There are no visual console defined yet." +msgstr "There are no visual consoles defined yet" + +#: ../../general/firts_task/map_builder.php:32 +#: ../../godmode/reporting/map_builder.php:39 +msgid "Visual Console" +msgstr "Visual Console" + +#: ../../general/firts_task/map_builder.php:35 +#: ../../general/firts_task/map_builder.php:43 +msgid "Create Visual Console" +msgstr "Create Visual Console" + +#: ../../general/firts_task/map_builder.php:36 +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\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'. " +msgstr "" +"Pandora FMS allows users to create visual maps on which each user is able to " +"create his or her own monitoring map.\n" +"\t\t\tThe new visual console editor is much more practical, although the " +"prior visual console editor had its advantages. \n" +"\t\t\tOn 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-" +"divided tabs named 'Data', 'Preview', 'Wizard', 'List of Elements' and " +"'Editor'.\n" +"\t\t\tThe items the Pandora FMS Visual Map was designed to handle are " +"'static images', 'percentage bars', 'module graphs' and 'simple values'. " + +#: ../../general/firts_task/incidents.php:25 +msgid "There are no incidents defined yet." +msgstr "There are no incidents defined yet." + +#: ../../general/firts_task/incidents.php:35 +#: ../../general/firts_task/incidents.php:44 +msgid "Create Incidents" +msgstr "Create Incidents" + +#: ../../general/firts_task/incidents.php:36 +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" +msgstr "" +"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 Pandora FMS 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" + #: ../../general/firts_task/planned_downtime.php:21 msgid "There are no planned downtime defined yet." msgstr "There are no planned downtime defined yet." @@ -4617,92 +9184,6 @@ msgstr "" "\t\t\t\t\t\taccount for most metrics or report types, because agents don't " "contain any data within those intervals. " -#: ../../general/firts_task/recon_view.php:21 -msgid "There are no recon task defined yet." -msgstr "There are no recon task defined yet." - -#: ../../general/firts_task/recon_view.php:25 -#: ../../godmode/servers/manage_recontask_form.php:228 -#: ../../include/functions_servers.php:378 -#: ../../enterprise/extensions/ipam/ipam_editor.php:80 -msgid "Recon server" -msgstr "Recon server" - -#: ../../general/firts_task/recon_view.php:28 -#: ../../general/firts_task/recon_view.php:35 -msgid "Create Recon Task" -msgstr "Create Recon Task" - -#: ../../general/firts_task/recon_view.php:29 -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" -"\t\ttype. You can define your own customized recon script." -msgstr "" -"The Recon Task definition for Pandora FMS is used to find new elements on " -"the network. \n" -"\t\tIf it detects any item, it will add that item into the monitoring " -"process, and if that item it is already being monitored, then it will \n" -"\t\tignore it or it 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." - -#: ../../general/firts_task/service_list.php:23 -msgid "There are no services defined yet." -msgstr "There are no services defined yet." - -#: ../../general/firts_task/service_list.php:28 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:300 -#: ../../operation/agentes/ver_agente.php:1111 -#: ../../enterprise/dashboard/widgets/service_map.php:79 -#: ../../enterprise/godmode/menu.php:92 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:298 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:164 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:101 -#: ../../enterprise/godmode/services/services.elements.php:135 -#: ../../enterprise/godmode/services/services.service.php:210 -#: ../../enterprise/include/functions_groups.php:61 -#: ../../enterprise/meta/general/main_header.php:172 -#: ../../enterprise/operation/menu.php:31 -#: ../../enterprise/operation/services/services.list.php:60 -#: ../../enterprise/operation/services/services.list.php:64 -#: ../../enterprise/operation/services/services.service_map.php:121 -#: ../../enterprise/operation/services/services.table_services.php:46 -#: ../../enterprise/operation/services/services.table_services.php:50 -msgid "Services" -msgstr "Services" - -#: ../../general/firts_task/service_list.php:31 -#: ../../general/firts_task/service_list.php:40 -msgid "Create Services" -msgstr "Create Services" - -#: ../../general/firts_task/service_list.php:32 -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/firts_task/snmp_filters.php:21 msgid "There are no SNMP filter defined yet." msgstr "There are no SNMP filter defined yet." @@ -4738,43 +9219,32 @@ msgstr "" "\t\t\t\tOne trap is going to run in conjunction with any of them - just the " "ones for the server are going to get ruled out automatically. " +#: ../../general/firts_task/fields_manager.php:25 +msgid "Fields Manager" +msgstr "Field Manager" + +#: ../../general/firts_task/fields_manager.php:28 +msgid "Create Fields Manager" +msgstr "Create field manager" + +#: ../../general/firts_task/fields_manager.php:29 +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 "" +"Custom fields are an easy way to customize an agent's information\n" +"\t\t\t\tA user is able to create custom fields by clicking on " +"'Administration' -> 'Manage monitoring' -> 'Manage custom fields'. " + +#: ../../general/firts_task/fields_manager.php:32 +msgid "Create Fields " +msgstr "Create Fields " + #: ../../general/firts_task/tags.php:21 msgid "There are no tags defined yet." msgstr "There are no tags defined yet." -#: ../../general/firts_task/tags.php:25 -#: ../../godmode/events/custom_events.php:104 -#: ../../godmode/events/custom_events.php:164 -#: ../../godmode/massive/massive_add_tags.php:147 -#: ../../godmode/massive/massive_delete_tags.php:187 -#: ../../godmode/massive/massive_edit_modules.php:562 -#: ../../godmode/modules/manage_network_components_form_common.php:200 -#: ../../godmode/tag/edit_tag.php:57 -#: ../../godmode/users/configure_user.php:625 -#: ../../include/functions_events.php:46 -#: ../../include/functions_events.php:2446 -#: ../../include/functions_events.php:3589 -#: ../../include/functions_reporting_html.php:2119 -#: ../../include/functions_treeview.php:165 -#: ../../mobile/operation/events.php:514 -#: ../../operation/agentes/alerts_status.functions.php:86 -#: ../../operation/agentes/group_view.php:164 -#: ../../operation/agentes/status_monitor.php:340 -#: ../../operation/agentes/status_monitor.php:343 -#: ../../operation/events/events.build_table.php:223 -#: ../../operation/tree.php:49 ../../operation/users/user_edit.php:506 -#: ../../enterprise/dashboard/widgets/events_list.php:62 -#: ../../enterprise/dashboard/widgets/tree_view.php:35 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:94 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:92 -#: ../../enterprise/godmode/modules/configure_local_component.php:375 -#: ../../enterprise/godmode/setup/setup_auth.php:427 -#: ../../enterprise/godmode/setup/setup_auth.php:468 -#: ../../enterprise/include/functions_reporting_pdf.php:2370 -#: ../../enterprise/meta/include/functions_events_meta.php:91 -msgid "Tags" -msgstr "Tags" - #: ../../general/firts_task/tags.php:28 ../../general/firts_task/tags.php:33 msgid "Create Tags" msgstr "Create Tags" @@ -4795,196 +9265,36 @@ msgstr "" "\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " "certain tags. " -#: ../../general/firts_task/transactional_list.php:23 -msgid "There are no transactions defined yet." -msgstr "There are no transactions defined yet." +#: ../../general/firts_task/custom_graphs.php:23 +msgid "There are no custom graphs defined yet." +msgstr "There are no custom graphs defined yet." -#: ../../general/firts_task/transactional_list.php:30 -msgid "Transactions" -msgstr "Transactions" +#: ../../general/firts_task/custom_graphs.php:28 +msgid "Custom Graphs" +msgstr "Custom Graphs" -#: ../../general/firts_task/transactional_list.php:33 -#: ../../general/firts_task/transactional_list.php:38 -msgid "Create Transactions" -msgstr "Create Transactions" +#: ../../general/firts_task/custom_graphs.php:31 +#: ../../general/firts_task/custom_graphs.php:36 +msgid "Create Custom Graph" +msgstr "Create Custom Graph" -#: ../../general/firts_task/transactional_list.php:34 +#: ../../general/firts_task/custom_graphs.php:32 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." +"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 "" -"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." - -#: ../../general/footer.php:35 -#, php-format -msgid "Pandora FMS %s - Build %s - MR %s" -msgstr "Pandora FMS %s - Build %s - MR %s" - -#: ../../general/footer.php:38 ../../enterprise/meta/general/footer.php:27 -msgid "Page generated at" -msgstr "Page generated as" - -#: ../../general/footer.php:39 ../../enterprise/meta/general/footer.php:28 -msgid "® Ártica ST" -msgstr "" - -#: ../../general/header.php:75 -msgid "Blank characters are used as AND conditions" -msgstr "Blank characters are used as AND conditions" - -#: ../../general/header.php:90 ../../general/header.php:92 -msgid "Enter keywords to search" -msgstr "Enter keywords to search" - -#: ../../general/header.php:114 ../../general/header.php:122 -#: ../../enterprise/meta/general/main_header.php:355 -#: ../../enterprise/meta/general/main_header.php:363 -msgid "All systems" -msgstr "All systems" - -#: ../../general/header.php:114 -#: ../../enterprise/meta/general/main_header.php:355 -msgid "Down" -msgstr "Down" - -#: ../../general/header.php:118 -#: ../../enterprise/meta/general/main_header.php:359 -msgid "servers down" -msgstr "servers down" - -#: ../../general/header.php:122 -#: ../../enterprise/meta/general/main_header.php:363 -msgid "Ready" -msgstr "Ready" - -#: ../../general/header.php:142 ../../general/header.php:143 -msgid "QR Code of the page" -msgstr "Page QR Code" - -#: ../../general/header.php:147 -#: ../../operation/visual_console/public_console.php:130 -msgid "QR code of the page" -msgstr "Page QR Code" - -#: ../../general/header.php:169 ../../general/header.php:170 -#: ../../include/functions_clippy.php:128 -msgid "Pandora FMS assistant" -msgstr "Pandora FMS assistant" - -#: ../../general/header.php:195 -#: ../../enterprise/meta/general/main_header.php:388 -msgid "Configure autorefresh" -msgstr "Configure autorefresh" - -#: ../../general/header.php:222 -#: ../../enterprise/meta/general/main_header.php:405 -#: ../../enterprise/meta/general/main_header.php:415 -msgid "Disabled autorefresh" -msgstr "Disable autorefresh" - -#: ../../general/header.php:248 -msgid "System alerts detected - Please fix as soon as possible" -msgstr "System alerts detected - Please fix them as soon as possible" - -#: ../../general/header.php:263 -#, php-format -msgid "You have %d warning(s)" -msgstr "You have %d warning(s)" - -#: ../../general/header.php:274 -msgid "There are not warnings" -msgstr "There are no warnings" - -#: ../../general/header.php:283 -msgid "Main help" -msgstr "Main help" - -#: ../../general/header.php:289 ../../mobile/include/functions_web.php:33 -#: ../../mobile/include/ui.class.php:175 -#: ../../mobile/include/user.class.php:286 ../../mobile/operation/home.php:118 -#: ../../enterprise/meta/general/main_header.php:373 -msgid "Logout" -msgstr "Logout" - -#: ../../general/header.php:294 ../../general/header.php:296 -#: ../../operation/menu.php:336 -#: ../../enterprise/meta/general/main_header.php:428 -#: ../../enterprise/meta/general/main_header.php:433 -#: ../../enterprise/meta/include/functions_users_meta.php:178 -#: ../../enterprise/meta/include/functions_users_meta.php:190 -msgid "Edit my user" -msgstr "Edit my user" - -#: ../../general/header.php:305 -msgid "New chat message" -msgstr "New chat message" - -#: ../../general/header.php:314 -msgid "Message overview" -msgstr "Message overview" - -#: ../../general/header.php:315 -#, php-format -msgid "You have %d unread message(s)" -msgstr "You have %d unread message(s)" - -#: ../../general/links_menu.php:20 ../../godmode/menu.php:298 -#: ../../godmode/menu.php:414 -msgid "Links" -msgstr "Links" - -#: ../../general/login_help_dialog.php:39 -#: ../../enterprise/dashboard/widgets/example.php:37 -msgid "Welcome to Pandora FMS" -msgstr "Welcome to Pandora FMS" - -#: ../../general/login_help_dialog.php:42 -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!" -msgstr "" -"If this is your first time using Pandora FMS, 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 Pandora FMS!" - -#: ../../general/login_help_dialog.php:51 -#: ../../general/login_help_dialog.php:53 -msgid "Online help" -msgstr "Online help" - -#: ../../general/login_help_dialog.php:59 -#: ../../general/login_help_dialog.php:61 -msgid "Enterprise version" -msgstr "Enterprise Edition" - -#: ../../general/login_help_dialog.php:67 -#: ../../general/login_help_dialog.php:69 ../../general/login_page.php:90 -#: ../../enterprise/meta/general/login_page.php:45 -msgid "Support" -msgstr "Support" - -#: ../../general/login_help_dialog.php:69 -msgid "Forums" -msgstr "Forums" - -#: ../../general/login_help_dialog.php:75 -#: ../../general/login_help_dialog.php:77 -msgid "Documentation" -msgstr "Documentation" - -#: ../../general/login_help_dialog.php:86 -msgid "Click here to don't show again this message" -msgstr "Don't show this message again" +"Graphs are designed to show the data collected by Pandora FMS in a user " +"defined timeframe.\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 updated " +"status.\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." #: ../../general/login_identification_wizard.php:142 msgid "The Pandora FMS community wizard" @@ -5025,8 +9335,6 @@ msgstr "" #: ../../general/login_identification_wizard.php:157 #: ../../godmode/alerts/configure_alert_template.php:814 -#: ../../enterprise/godmode/alerts/alert_events.php:548 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:91 msgid "Finish" msgstr "Finish" @@ -5038,13940 +9346,1277 @@ msgstr "Return" msgid "Join the Pandora FMS community" msgstr "Join the Pandora FMS community" -#: ../../general/login_identification_wizard.php:167 -#: ../../operation/users/user_edit.php:355 -msgid "Subscribe to our newsletter" -msgstr "Subscribe to our newsletter" - -#: ../../general/login_identification_wizard.php:170 -#: ../../general/login_identification_wizard.php:171 -#: ../../godmode/tag/edit_tag.php:195 ../../godmode/tag/tag.php:203 -#: ../../operation/search_users.php:44 -#: ../../enterprise/extensions/cron/main.php:226 -#: ../../enterprise/extensions/cron/main.php:251 -#: ../../enterprise/operation/reporting/custom_reporting.php:24 -#: ../../enterprise/operation/reporting/custom_reporting.php:78 -msgid "Email" -msgstr "E-mail" - #: ../../general/login_identification_wizard.php:172 msgid "Required" msgstr "Required" -#: ../../general/login_identification_wizard.php:180 -#: ../../general/login_required.php:69 -msgid "Pandora FMS instance identification wizard" -msgstr "Pandora FMS instance identification wizard" - #: ../../general/login_identification_wizard.php:182 msgid "Do you want to continue without any registration" msgstr "Do you want to continue without any registration?" -#: ../../general/login_identification_wizard.php:185 -#: ../../godmode/agentes/agent_conf_gis.php:80 -#: ../../godmode/agentes/agent_manager.php:414 -#: ../../godmode/alerts/alert_view.php:107 -#: ../../godmode/alerts/alert_view.php:303 -#: ../../godmode/alerts/alert_view.php:385 -#: ../../godmode/massive/massive_edit_agents.php:293 -#: ../../godmode/massive/massive_edit_agents.php:413 -#: ../../godmode/massive/massive_edit_agents.php:419 -#: ../../godmode/massive/massive_edit_modules.php:408 -#: ../../godmode/massive/massive_edit_modules.php:453 -#: ../../godmode/massive/massive_edit_modules.php:472 -#: ../../godmode/massive/massive_edit_modules.php:558 -#: ../../godmode/massive/massive_edit_modules.php:586 -#: ../../godmode/massive/massive_edit_modules.php:604 -#: ../../godmode/reporting/reporting_builder.main.php:115 -#: ../../godmode/reporting/reporting_builder.php:639 -#: ../../godmode/reporting/visual_console_builder.wizard.php:274 -#: ../../godmode/reporting/visual_console_builder.wizard.php:315 -#: ../../godmode/servers/manage_recontask.php:340 -#: ../../godmode/servers/manage_recontask_form.php:317 -#: ../../godmode/setup/news.php:264 ../../godmode/setup/performance.php:119 -#: ../../godmode/setup/performance.php:126 -#: ../../godmode/setup/performance.php:133 -#: ../../godmode/setup/setup_auth.php:52 ../../godmode/setup/setup_auth.php:59 -#: ../../godmode/setup/setup_auth.php:95 -#: ../../godmode/setup/setup_auth.php:133 -#: ../../godmode/setup/setup_ehorus.php:56 -#: ../../godmode/setup/setup_general.php:72 -#: ../../godmode/setup/setup_general.php:76 -#: ../../godmode/setup/setup_general.php:80 -#: ../../godmode/setup/setup_general.php:104 -#: ../../godmode/setup/setup_general.php:113 -#: ../../godmode/setup/setup_general.php:170 -#: ../../godmode/setup/setup_general.php:178 -#: ../../godmode/setup/setup_general.php:185 -#: ../../godmode/setup/setup_general.php:206 -#: ../../godmode/setup/setup_general.php:215 -#: ../../godmode/setup/setup_netflow.php:64 -#: ../../godmode/setup/setup_netflow.php:72 -#: ../../godmode/setup/setup_visuals.php:90 -#: ../../godmode/setup/setup_visuals.php:110 -#: ../../godmode/setup/setup_visuals.php:132 -#: ../../godmode/setup/setup_visuals.php:259 -#: ../../godmode/setup/setup_visuals.php:268 -#: ../../godmode/setup/setup_visuals.php:276 -#: ../../godmode/setup/setup_visuals.php:304 -#: ../../godmode/setup/setup_visuals.php:397 -#: ../../godmode/setup/setup_visuals.php:482 -#: ../../godmode/setup/setup_visuals.php:489 -#: ../../godmode/setup/setup_visuals.php:501 -#: ../../godmode/setup/setup_visuals.php:528 -#: ../../godmode/setup/setup_visuals.php:645 -#: ../../godmode/setup/setup_visuals.php:672 -#: ../../godmode/update_manager/update_manager.setup.php:125 -#: ../../godmode/users/configure_user.php:516 -#: ../../include/functions_events.php:2375 -#: ../../include/functions_events.php:2382 -#: ../../mobile/operation/events.php:186 ../../mobile/operation/events.php:193 -#: ../../operation/netflow/nf_live_view.php:280 -#: ../../operation/snmpconsole/snmp_view.php:439 -#: ../../operation/users/user_edit.php:249 -#: ../../enterprise/extensions/cron/functions.php:327 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:334 -#: ../../enterprise/godmode/setup/setup.php:32 -#: ../../enterprise/godmode/setup/setup.php:41 -#: ../../enterprise/godmode/setup/setup.php:57 -#: ../../enterprise/godmode/setup/setup.php:141 -#: ../../enterprise/godmode/setup/setup.php:206 -#: ../../enterprise/godmode/setup/setup.php:245 -#: ../../enterprise/godmode/setup/setup.php:254 -#: ../../enterprise/godmode/setup/setup.php:259 -#: ../../enterprise/godmode/setup/setup.php:268 -#: ../../enterprise/godmode/setup/setup.php:282 -#: ../../enterprise/godmode/setup/setup.php:287 -#: ../../enterprise/godmode/setup/setup_auth.php:359 -#: ../../enterprise/godmode/setup/setup_auth.php:394 -#: ../../enterprise/godmode/setup/setup_auth.php:513 -#: ../../enterprise/godmode/setup/setup_history.php:47 -#: ../../enterprise/godmode/setup/setup_history.php:51 -#: ../../enterprise/meta/advanced/metasetup.password.php:80 -#: ../../enterprise/meta/advanced/metasetup.password.php:91 -#: ../../enterprise/meta/advanced/metasetup.password.php:97 -#: ../../enterprise/meta/advanced/metasetup.password.php:108 -#: ../../enterprise/meta/advanced/metasetup.password.php:124 -#: ../../enterprise/meta/advanced/metasetup.password.php:130 -#: ../../enterprise/meta/advanced/metasetup.performance.php:84 -#: ../../enterprise/meta/advanced/metasetup.setup.php:138 -#: ../../enterprise/meta/advanced/metasetup.setup.php:189 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:95 -#: ../../enterprise/meta/advanced/metasetup.visual.php:122 -#: ../../enterprise/meta/advanced/metasetup.visual.php:126 -#: ../../enterprise/meta/advanced/metasetup.visual.php:170 -#: ../../enterprise/meta/advanced/metasetup.visual.php:179 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1565 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:95 -msgid "No" -msgstr "No" +#: ../../general/links_menu.php:20 ../../godmode/menu.php:298 +#: ../../godmode/menu.php:414 +msgid "Links" +msgstr "Links" -#: ../../general/login_identification_wizard.php:188 -#: ../../godmode/agentes/agent_conf_gis.php:79 -#: ../../godmode/agentes/agent_manager.php:411 -#: ../../godmode/alerts/alert_view.php:107 -#: ../../godmode/alerts/alert_view.php:301 -#: ../../godmode/massive/massive_edit_agents.php:293 -#: ../../godmode/massive/massive_edit_agents.php:412 -#: ../../godmode/massive/massive_edit_agents.php:419 -#: ../../godmode/massive/massive_edit_modules.php:407 -#: ../../godmode/massive/massive_edit_modules.php:452 -#: ../../godmode/massive/massive_edit_modules.php:471 -#: ../../godmode/massive/massive_edit_modules.php:558 -#: ../../godmode/massive/massive_edit_modules.php:585 -#: ../../godmode/massive/massive_edit_modules.php:604 -#: ../../godmode/reporting/reporting_builder.main.php:111 -#: ../../godmode/reporting/reporting_builder.php:637 -#: ../../godmode/reporting/visual_console_builder.wizard.php:269 -#: ../../godmode/reporting/visual_console_builder.wizard.php:312 -#: ../../godmode/servers/manage_recontask.php:340 -#: ../../godmode/servers/manage_recontask_form.php:317 -#: ../../godmode/setup/performance.php:118 -#: ../../godmode/setup/performance.php:125 -#: ../../godmode/setup/performance.php:132 -#: ../../godmode/setup/setup_auth.php:51 ../../godmode/setup/setup_auth.php:58 -#: ../../godmode/setup/setup_auth.php:94 -#: ../../godmode/setup/setup_auth.php:130 -#: ../../godmode/setup/setup_ehorus.php:55 -#: ../../godmode/setup/setup_general.php:71 -#: ../../godmode/setup/setup_general.php:75 -#: ../../godmode/setup/setup_general.php:79 -#: ../../godmode/setup/setup_general.php:103 -#: ../../godmode/setup/setup_general.php:112 -#: ../../godmode/setup/setup_general.php:167 -#: ../../godmode/setup/setup_general.php:175 -#: ../../godmode/setup/setup_general.php:184 -#: ../../godmode/setup/setup_general.php:205 -#: ../../godmode/setup/setup_general.php:214 -#: ../../godmode/setup/setup_netflow.php:63 -#: ../../godmode/setup/setup_netflow.php:71 -#: ../../godmode/setup/setup_visuals.php:86 -#: ../../godmode/setup/setup_visuals.php:106 -#: ../../godmode/setup/setup_visuals.php:128 -#: ../../godmode/setup/setup_visuals.php:251 -#: ../../godmode/setup/setup_visuals.php:265 -#: ../../godmode/setup/setup_visuals.php:273 -#: ../../godmode/setup/setup_visuals.php:302 -#: ../../godmode/setup/setup_visuals.php:395 -#: ../../godmode/setup/setup_visuals.php:481 -#: ../../godmode/setup/setup_visuals.php:487 -#: ../../godmode/setup/setup_visuals.php:497 -#: ../../godmode/setup/setup_visuals.php:526 -#: ../../godmode/setup/setup_visuals.php:641 -#: ../../godmode/setup/setup_visuals.php:668 -#: ../../godmode/update_manager/update_manager.setup.php:124 -#: ../../godmode/users/configure_user.php:516 -#: ../../operation/netflow/nf_live_view.php:276 -#: ../../operation/snmpconsole/snmp_view.php:436 -#: ../../operation/users/user_edit.php:249 -#: ../../enterprise/extensions/cron/functions.php:327 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:171 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:332 -#: ../../enterprise/godmode/setup/setup.php:31 -#: ../../enterprise/godmode/setup/setup.php:40 -#: ../../enterprise/godmode/setup/setup.php:56 -#: ../../enterprise/godmode/setup/setup.php:140 -#: ../../enterprise/godmode/setup/setup.php:205 -#: ../../enterprise/godmode/setup/setup.php:244 -#: ../../enterprise/godmode/setup/setup.php:253 -#: ../../enterprise/godmode/setup/setup.php:258 -#: ../../enterprise/godmode/setup/setup.php:267 -#: ../../enterprise/godmode/setup/setup.php:281 -#: ../../enterprise/godmode/setup/setup.php:286 -#: ../../enterprise/godmode/setup/setup_auth.php:356 -#: ../../enterprise/godmode/setup/setup_auth.php:391 -#: ../../enterprise/godmode/setup/setup_auth.php:512 -#: ../../enterprise/godmode/setup/setup_history.php:46 -#: ../../enterprise/godmode/setup/setup_history.php:50 -#: ../../enterprise/meta/advanced/metasetup.password.php:79 -#: ../../enterprise/meta/advanced/metasetup.password.php:90 -#: ../../enterprise/meta/advanced/metasetup.password.php:96 -#: ../../enterprise/meta/advanced/metasetup.password.php:107 -#: ../../enterprise/meta/advanced/metasetup.password.php:123 -#: ../../enterprise/meta/advanced/metasetup.password.php:129 -#: ../../enterprise/meta/advanced/metasetup.performance.php:83 -#: ../../enterprise/meta/advanced/metasetup.setup.php:137 -#: ../../enterprise/meta/advanced/metasetup.setup.php:188 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:94 -#: ../../enterprise/meta/advanced/metasetup.visual.php:121 -#: ../../enterprise/meta/advanced/metasetup.visual.php:125 -#: ../../enterprise/meta/advanced/metasetup.visual.php:166 -#: ../../enterprise/meta/advanced/metasetup.visual.php:175 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1563 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:94 -msgid "Yes" -msgstr "Yes" +#: ../../extras/pandora_diag.php:90 +msgid "Pandora FMS Diagnostic tool" +msgstr "Pandora FMS Diagnostic tool" -#: ../../general/login_page.php:35 -msgid "Go to Pandora FMS Website" -msgstr "Go to the Pandora FMS Website" +#: ../../extras/pandora_diag.php:93 +msgid "Item" +msgstr "Item" -#: ../../general/login_page.php:47 -msgid "Go to Login" -msgstr "Go to Login" +#: ../../extras/pandora_diag.php:94 +msgid "Data value" +msgstr "Data value" -#: ../../general/login_page.php:55 -#: ../../enterprise/meta/general/login_page.php:32 -msgid "Splash login" -msgstr "" +#: ../../include/functions_snmp_browser.php:145 +msgid "Target IP cannot be blank." +msgstr "The target IP cannot be left blank." -#: ../../general/login_page.php:88 -msgid "Docs" -msgstr "Docs" +#: ../../include/functions_snmp_browser.php:403 +msgid "Numeric OID" +msgstr "Numeric OID" -#: ../../general/login_page.php:152 -msgid "Login as admin" -msgstr "Login as admin" - -#: ../../general/login_page.php:160 -#: ../../enterprise/meta/general/login_page.php:99 -msgid "Login with SAML" -msgstr "Login with SAML" - -#: ../../general/login_page.php:179 ../../mobile/include/user.class.php:256 -#: ../../enterprise/meta/general/login_page.php:91 -#: ../../enterprise/meta/general/login_page.php:119 -msgid "Login" -msgstr "Login" - -#: ../../general/login_page.php:194 -msgid "Authentication code" -msgstr "" - -#: ../../general/login_page.php:197 ../../mobile/include/user.class.php:306 -msgid "Check code" -msgstr "Check code" - -#: ../../general/login_page.php:205 -msgid "View details" -msgstr "View details" - -#: ../../general/login_page.php:223 ../../general/login_page.php:227 -#: ../../include/functions_config.php:1120 -msgid "WELCOME TO PANDORA FMS" -msgstr "" - -#: ../../general/login_page.php:236 ../../general/login_page.php:240 -#: ../../include/functions_config.php:1124 -msgid "NEXT GENERATION" -msgstr "" - -#: ../../general/login_page.php:259 -#: ../../enterprise/meta/general/login_page.php:154 -msgid "Build" -msgstr "Build" - -#: ../../general/login_page.php:263 ../../general/login_page.php:266 -#: ../../general/login_page.php:365 ../../general/login_page.php:368 -#: ../../enterprise/include/functions_login.php:132 -#: ../../enterprise/meta/general/login_page.php:157 -#: ../../enterprise/meta/general/login_page.php:160 -msgid "Login failed" -msgstr "Login failed" - -#: ../../general/login_page.php:270 -#: ../../enterprise/meta/general/login_page.php:164 -msgid "ERROR" -msgstr "ERROR" - -#: ../../general/login_page.php:282 ../../general/login_page.php:285 -#: ../../general/login_page.php:289 -#: ../../enterprise/meta/general/login_page.php:176 -#: ../../enterprise/meta/general/login_page.php:179 -#: ../../enterprise/meta/general/login_page.php:183 -msgid "Logged out" -msgstr "Logged out" - -#: ../../general/login_page.php:290 ../../mobile/include/user.class.php:221 -#: ../../enterprise/meta/general/login_page.php:184 -msgid "" -"Your session is over. Please close your browser window to close this Pandora " -"session." -msgstr "" -"Your session has ended. Please close your browser window to close this " -"Pandora FMS session." - -#: ../../general/login_page.php:303 ../../include/functions_ui.php:3574 -msgid "Problem with Pandora FMS database" -msgstr "Problem with Pandora FMS database" - -#: ../../general/login_page.php:304 -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:308 ../../include/functions_ui.php:3579 -msgid "DB ERROR" -msgstr "DB ERROR" - -#: ../../general/login_page.php:314 ../../include/functions_ui.php:3585 -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\";
    " -msgstr "" -"If you have modified the auth system, the origin of this problem could be " -"that Pandora cannot override the authorization variables from the config " -"database. Please remove them from your database by executing " -":
    DELETE FROM tconfig WHERE token = \"auth\";
    " - -#: ../../general/login_page.php:318 ../../include/functions_ui.php:3589 -msgid "Empty configuration table" -msgstr "Empty configuration table" - -#: ../../general/login_page.php:319 -msgid "" -"Cannot load configuration variables from database. Please check your " -"database setup in the\n" -"\t\tinclude/config.php file.

    \n" -"\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

    Pandora FMS 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:326 ../../include/functions_ui.php:3597 -msgid "No configuration file found" -msgstr "No configuration file found." - -#: ../../general/login_page.php:327 -msgid "" -"Pandora FMS 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:338 ../../include/functions_ui.php:3609 -#, php-format -msgid "You may try to run the %sinstallation wizard%s to create one." -msgstr "" -"You may try running the %sinstallation wizard%s to create one." - -#: ../../general/login_page.php:341 ../../include/functions_ui.php:3612 -msgid "Installer active" -msgstr "Installer active" - -#: ../../general/login_page.php:342 -msgid "" -"For security reasons, normal operation is not possible until you delete " -"installer file.\n" -"\t\tPlease delete the ./install.php file before running Pandora FMS " -"Console." -msgstr "" - -#: ../../general/login_page.php:346 ../../include/functions_ui.php:3617 -msgid "Bad permission for include/config.php" -msgstr "Bad permission for include/config.php" - -#: ../../general/login_page.php:347 -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:353 -msgid "Bad defined homedir" -msgstr "" - -#: ../../general/login_page.php:354 -msgid "" -"In the config.php file in the variable $config[\"homedir\"] = add the " -"correct path" -msgstr "" - -#: ../../general/login_page.php:357 -msgid "Bad defined homeurl or homeurl_static" -msgstr "" - -#: ../../general/login_page.php:358 -msgid "" -"In the config.php file in the variable $config[\"homeurl\"] or " -"$config[\"homeurl_static\"] = add the correct path" -msgstr "" - -#: ../../general/login_required.php:72 -msgid "" -"Please fill the following information in order to configure your Pandora FMS " -"instance successfully" -msgstr "" -"Please fill out the following information in order to configure your Pandora " -"FMS instance successfully" - -#: ../../general/login_required.php:86 -#: ../../godmode/setup/setup_general.php:52 -#: ../../include/functions_config.php:129 -#: ../../enterprise/meta/advanced/metasetup.setup.php:119 -#: ../../enterprise/meta/include/functions_meta.php:358 -msgid "Language code for Pandora" -msgstr "Pandora FMS Language settings" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:148 -msgid "Africa" -msgstr "Africa" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 -msgid "America" -msgstr "America" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:150 -msgid "Antarctica" -msgstr "Antarctica" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:151 -msgid "Arctic" -msgstr "Arctic" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:152 -msgid "Asia" -msgstr "Asia" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:153 -msgid "Atlantic" -msgstr "Atlantic" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:154 -msgid "Australia" -msgstr "Australia" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:155 -msgid "Europe" -msgstr "Europe" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:156 -msgid "Indian" -msgstr "Indian" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:157 -msgid "Pacific" -msgstr "Pacific" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:158 -msgid "UTC" -msgstr "UTC" - -#: ../../general/login_required.php:111 -#: ../../godmode/setup/setup_general.php:135 -#: ../../include/functions_config.php:166 -#: ../../enterprise/meta/advanced/metasetup.setup.php:177 -#: ../../enterprise/meta/include/functions_meta.php:408 -msgid "Timezone setup" -msgstr "Timezone setup" - -#: ../../general/login_required.php:112 -#: ../../godmode/setup/setup_general.php:136 -msgid "" -"Must have the same time zone as the system or database to avoid mismatches " -"of time." -msgstr "" -"Pandora FMS must be set to the same timezone as your system or database as " -"to avoid incoherences." - -#: ../../general/login_required.php:116 -msgid "E-mail for receiving alerts" -msgstr "E-mail for receiving alerts" - -#: ../../general/login_required.php:124 -msgid "Register" -msgstr "Register" - -#: ../../general/login_required.php:127 -#: ../../godmode/setup/snmp_wizard.php:109 -#: ../../godmode/update_manager/update_manager.offline.php:65 -#: ../../include/functions_update_manager.php:365 -#: ../../include/functions_visual_map_editor.php:464 -#: ../../include/functions_visual_map_editor.php:472 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:167 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:194 -#: ../../enterprise/include/functions_update_manager.php:197 -msgid "Cancel" -msgstr "Cancel" - -#: ../../general/login_required.php:130 -msgid "All fields required" -msgstr "All fields required" - -#: ../../general/logon_failed.php:21 -#: ../../include/ajax/double_auth.ajax.php:247 -#: ../../include/ajax/double_auth.ajax.php:344 -#: ../../include/ajax/double_auth.ajax.php:389 -#: ../../include/ajax/double_auth.ajax.php:503 -#: ../../operation/users/user_edit.php:693 -#: ../../operation/users/user_edit.php:758 -#: ../../operation/users/user_edit.php:829 -msgid "Authentication error" -msgstr "Authentication error" - -#: ../../general/logon_failed.php:33 -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 "" -"Username or password are incorrect. Please check that your CAPS LOCK key is " -"disabled, username and password are case sensitive

    All actions, " -"included failed login attempts are registered in Pandora FMS System logs and " -"can be reviewed by all users. Please report any incident or malfunction to " -"an admin" - -#: ../../general/logon_ok.php:114 ../../general/logon_ok.php:318 -msgid "Pandora FMS Overview" -msgstr "Pandora FMS Overview" - -#: ../../general/logon_ok.php:181 ../../general/logon_ok.php:380 -msgid "News board" -msgstr "News board" - -#: ../../general/logon_ok.php:186 ../../general/logon_ok.php:385 -msgid "ago" -msgstr "ago" - -#: ../../general/logon_ok.php:193 ../../general/logon_ok.php:392 -msgid "by" -msgstr "by" - -#: ../../general/logon_ok.php:227 ../../general/logon_ok.php:424 -#: ../../godmode/admin_access_logs.php:191 -#: ../../include/functions_reporting_html.php:3599 -#: ../../mobile/operation/tactical.php:311 -#: ../../operation/snmpconsole/snmp_statistics.php:140 -msgid "Source IP" -msgstr "Source IP" - -#: ../../general/logon_ok.php:228 ../../general/logon_ok.php:425 -#: ../../godmode/admin_access_logs.php:192 -#: ../../godmode/servers/manage_recontask_form.php:371 -#: ../../godmode/users/configure_user.php:485 -#: ../../include/ajax/events.php:302 ../../include/functions.php:2316 -#: ../../include/functions_reporting_html.php:3600 -#: ../../mobile/operation/events.php:518 -#: ../../operation/users/user_edit.php:448 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:93 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:206 -#: ../../enterprise/extensions/ipam/ipam_massive.php:69 -#: ../../enterprise/extensions/ipam/ipam_network.php:543 -#: ../../enterprise/extensions/ipam/ipam_network.php:654 -msgid "Comments" -msgstr "Comments" - -#: ../../general/logon_ok.php:229 ../../general/logon_ok.php:426 -msgid "This is your last activity in Pandora FMS console" -msgstr "This is your last activity performed on the Pandora FMS console" - -#: ../../general/noaccess2.php:18 ../../general/noaccess2.php:21 -#: ../../mobile/index.php:240 ../../mobile/operation/agent.php:66 -#: ../../mobile/operation/agents.php:145 ../../mobile/operation/alerts.php:141 -#: ../../mobile/operation/events.php:430 ../../mobile/operation/groups.php:53 -#: ../../mobile/operation/module_graph.php:270 -#: ../../mobile/operation/modules.php:173 -#: ../../mobile/operation/networkmap.php:78 -#: ../../mobile/operation/networkmaps.php:99 -#: ../../mobile/operation/tactical.php:71 -#: ../../mobile/operation/visualmap.php:65 -#: ../../mobile/operation/visualmaps.php:83 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:13 -#: ../../enterprise/meta/general/noaccess.php:24 -msgid "You don't have access to this page" -msgstr "You don't have access to this page" - -#: ../../general/noaccess2.php:26 -msgid "Access to this page is restricted" -msgstr "Access to this page is restricted" - -#: ../../general/noaccess2.php:31 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:21 -#: ../../enterprise/meta/general/noaccess.php:28 -msgid "No access" -msgstr "No access" - -#: ../../general/noaccess2.php:36 -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 "" -"Access to this page is restricted to authorised users only, please contact " -"system administrator if you need assistance.

    \n" -"\t\t\tPlease know that all attempts to access this page are recorded on the " -"security logs of Pandora System Database" - -#: ../../general/pandora_help.php:24 -msgid "Pandora FMS help system" -msgstr "Pandora FMS help wizard" - -#: ../../general/pandora_help.php:74 -msgid "Help system error" -msgstr "Help wizard error" - -#: ../../general/pandora_help.php:79 -msgid "" -"Pandora FMS help system has been called with a help reference that currently " -"don't exist. There is no help content to show." -msgstr "" -"Pandora FMS' help wizard has been asked for a reference that currently " -"doesn't exist. There is no help content available for this topic." - -#: ../../general/ui/agents_list.php:80 ../../general/ui/agents_list.php:91 -#: ../../godmode/agentes/modificar_agente.php:169 -#: ../../godmode/agentes/modificar_agente.php:173 -#: ../../godmode/agentes/module_manager.php:45 -#: ../../godmode/agentes/planned_downtime.list.php:141 -#: ../../godmode/agentes/planned_downtime.list.php:177 -#: ../../godmode/alerts/alert_templates.php:256 -#: ../../godmode/alerts/alert_templates.php:260 -#: ../../godmode/modules/manage_network_components.php:524 -#: ../../godmode/reporting/reporting_builder.php:439 -#: ../../godmode/users/user_list.php:230 ../../godmode/users/user_list.php:234 -#: ../../include/functions_snmp_browser.php:556 -#: ../../operation/agentes/estado_agente.php:180 -#: ../../operation/agentes/estado_agente.php:198 -#: ../../operation/agentes/status_monitor.php:336 -#: ../../operation/incidents/incident.php:294 -#: ../../operation/search_results.php:161 -#: ../../enterprise/extensions/translate_string.php:265 -#: ../../enterprise/godmode/agentes/collection_manager.php:50 -#: ../../enterprise/godmode/agentes/collections.php:221 -#: ../../enterprise/godmode/alerts/alert_events_list.php:364 -#: ../../enterprise/godmode/alerts/alert_events_list.php:368 -#: ../../enterprise/godmode/modules/local_components.php:450 -#: ../../enterprise/godmode/modules/local_components.php:464 -#: ../../enterprise/godmode/policies/policy_agents.php:366 -#: ../../enterprise/godmode/policies/policy_agents.php:371 -#: ../../enterprise/godmode/policies/policy_collections.php:182 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:138 -#: ../../enterprise/meta/agentsearch.php:69 -#: ../../enterprise/meta/general/main_header.php:486 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:228 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:318 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:487 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:560 -#: ../../enterprise/operation/agentes/agent_inventory.php:90 -#: ../../enterprise/operation/agentes/agent_inventory.php:95 -#: ../../enterprise/operation/inventory/inventory.php:179 -#: ../../enterprise/operation/inventory/inventory.php:219 -#: ../../enterprise/operation/log/log_viewer.php:170 -#: ../../enterprise/operation/log/log_viewer.php:238 -#: ../../enterprise/operation/services/services.list.php:164 -#: ../../enterprise/operation/services/services.list.php:203 -#: ../../enterprise/operation/services/services.table_services.php:133 -#: ../../enterprise/operation/services/services.table_services.php:172 -msgid "Search" -msgstr "Search" - -#: ../../general/ui/agents_list.php:127 -#: ../../enterprise/extensions/vmware/vmware_view.php:1363 -#: ../../enterprise/operation/policies/networkmap.policies.php:71 -msgid "No agents found" -msgstr "No agents found" - -#: ../../godmode/admin_access_logs.php:33 -msgid "Pandora audit" -msgstr "Pandora audit" - -#: ../../godmode/admin_access_logs.php:33 -msgid "Review Logs" -msgstr "Review Logs" - -#: ../../godmode/admin_access_logs.php:45 -#: ../../godmode/admin_access_logs.php:72 -#: ../../godmode/agentes/module_manager.php:49 -#: ../../godmode/modules/manage_network_templates_form.php:244 -#: ../../godmode/modules/manage_network_templates_form.php:300 -#: ../../godmode/netflow/nf_item_list.php:148 -#: ../../godmode/reporting/reporting_builder.item_editor.php:663 -#: ../../godmode/reporting/reporting_builder.list_items.php:177 -#: ../../godmode/reporting/reporting_builder.list_items.php:200 -#: ../../godmode/snmpconsole/snmp_alert.php:1014 -#: ../../godmode/snmpconsole/snmp_filters.php:96 -#: ../../godmode/snmpconsole/snmp_filters.php:132 -#: ../../godmode/tag/tag.php:161 -#: ../../operation/agentes/alerts_status.functions.php:116 -#: ../../operation/agentes/alerts_status.functions.php:126 -#: ../../operation/agentes/estado_monitores.php:474 -#: ../../operation/agentes/graphs.php:159 -#: ../../operation/incidents/incident.php:230 -#: ../../operation/netflow/nf_live_view.php:320 ../../operation/tree.php:147 -#: ../../enterprise/extensions/backup/main.php:87 -#: ../../enterprise/extensions/ipam/ipam_network.php:328 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:150 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:179 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:230 -#: ../../enterprise/godmode/policies/policies.php:239 -#: ../../enterprise/godmode/policies/policy_linking.php:68 -#: ../../enterprise/godmode/policies/policy_queue.php:354 -#: ../../enterprise/godmode/setup/setup_acl.php:207 -#: ../../enterprise/godmode/setup/setup_skins.php:91 -#: ../../enterprise/meta/advanced/policymanager.queue.php:228 -#: ../../enterprise/operation/services/services.list.php:293 -#: ../../enterprise/operation/services/services.list.php:299 -#: ../../enterprise/operation/services/services.table_services.php:261 -#: ../../enterprise/operation/services/services.table_services.php:267 -msgid "Filter" -msgstr "Filter" - -#: ../../godmode/admin_access_logs.php:65 -#: ../../godmode/admin_access_logs.php:66 -#: ../../enterprise/extensions/translate_string.php:254 -#: ../../enterprise/extensions/translate_string.php:255 -#: ../../enterprise/godmode/agentes/collection_manager.php:44 -#: ../../enterprise/godmode/agentes/collections.php:217 -#: ../../enterprise/godmode/policies/policies.php:235 -#: ../../enterprise/godmode/policies/policy_collections.php:176 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:139 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:140 -msgid "Free text for search (*)" -msgstr "Free text for search (*)" - -#: ../../godmode/admin_access_logs.php:67 -#: ../../godmode/admin_access_logs.php:68 -#: ../../godmode/events/event_edit_filter.php:281 -#: ../../mobile/operation/events.php:647 -#: ../../operation/events/events_list.php:579 -#: ../../enterprise/dashboard/widgets/events_list.php:38 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:33 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:33 -#: ../../enterprise/include/functions_events.php:163 -msgid "Max. hours old" -msgstr "Max. hours old" - -#: ../../godmode/admin_access_logs.php:303 -msgid "Export to CSV " -msgstr "Export to CSV " - -#: ../../godmode/agentes/agent_conf_gis.php:40 -#: ../../operation/agentes/gis_view.php:55 -msgid "" -"There is no default map. Please go to the setup for to set a default map." -msgstr "" -"There is no default map. Please go to the setup in order to select one." - -#: ../../godmode/agentes/agent_conf_gis.php:50 -#: ../../operation/agentes/gis_view.php:86 -msgid "" -"There is no GIS data for this agent, so it's positioned in default position " -"of map." -msgstr "" -"There is no GIS data for this agent, so it'll be found in its default " -"position on the map." - -#: ../../godmode/agentes/agent_conf_gis.php:53 -msgid "" -"When you change the Agent position, the agent automatically activates the " -"'Ignore new GIS data' option" -msgstr "" -"When you change the agent's position, the agent will automatically activate " -"the 'Ignore new GIS data' option." - -#: ../../godmode/agentes/agent_conf_gis.php:60 -msgid "Agent position" -msgstr "Agent position" - -#: ../../godmode/agentes/agent_conf_gis.php:66 -msgid "Latitude: " -msgstr "Latitude: " - -#: ../../godmode/agentes/agent_conf_gis.php:70 -msgid "Longitude: " -msgstr "Longitude: " - -#: ../../godmode/agentes/agent_conf_gis.php:74 -msgid "Altitude: " -msgstr "Altitude: " - -#: ../../godmode/agentes/agent_conf_gis.php:78 -#: ../../godmode/agentes/agent_manager.php:410 -#: ../../godmode/massive/massive_edit_agents.php:410 -msgid "Ignore new GIS data:" -msgstr "Ignore new GIS data:" - -#: ../../godmode/agentes/agent_incidents.php:67 -msgid "No incidents associated to this agent" -msgstr "No incidents associated to this agent" - -#: ../../godmode/agentes/agent_incidents.php:87 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:318 -#: ../../operation/incidents/incident.php:337 -#: ../../operation/incidents/incident_detail.php:244 -msgid "Incident" -msgstr "Incident" - -#: ../../godmode/agentes/agent_incidents.php:88 -#: ../../godmode/alerts/alert_list.list.php:127 -#: ../../godmode/alerts/alert_templates.php:52 -#: ../../godmode/alerts/alert_view.php:102 -#: ../../godmode/alerts/configure_alert_template.php:767 -#: ../../godmode/snmpconsole/snmp_alert.php:941 -#: ../../godmode/snmpconsole/snmp_alert.php:1006 -#: ../../include/functions_events.php:2173 -#: ../../include/functions_reporting_html.php:2883 -#: ../../operation/agentes/estado_generalagente.php:407 -#: ../../operation/incidents/incident.php:246 -#: ../../operation/incidents/incident.php:338 -#: ../../operation/incidents/incident_detail.php:318 -#: ../../enterprise/godmode/alerts/alert_events.php:505 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:172 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:223 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:276 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:107 -msgid "Priority" -msgstr "Priority" - -#: ../../godmode/agentes/agent_incidents.php:90 -#: ../../godmode/servers/servers.build_table.php:72 -#: ../../operation/incidents/incident.php:340 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:221 -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -msgid "Updated" -msgstr "Updated" - -#: ../../godmode/agentes/agent_incidents.php:91 -#: ../../godmode/events/custom_events.php:107 -#: ../../godmode/events/custom_events.php:165 -#: ../../godmode/massive/massive_copy_modules.php:108 -#: ../../godmode/reporting/reporting_builder.item_editor.php:881 -#: ../../include/functions_events.php:47 -#: ../../include/functions_events.php:2146 -#: ../../include/functions_events.php:2261 -#: ../../include/functions_events.php:3594 -#: ../../operation/agentes/pandora_networkmap.editor.php:194 -#: ../../operation/events/events.build_table.php:229 -#: ../../operation/incidents/incident.php:341 -#: ../../operation/incidents/incident_detail.php:289 -#: ../../enterprise/include/functions_log.php:346 -#: ../../enterprise/meta/advanced/policymanager.sync.php:295 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:332 -#: ../../enterprise/meta/advanced/synchronizing.component.php:310 -#: ../../enterprise/meta/advanced/synchronizing.group.php:147 -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:91 -#: ../../enterprise/meta/advanced/synchronizing.os.php:91 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:91 -#: ../../enterprise/meta/advanced/synchronizing.user.php:517 -#: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/operation/log/log_viewer.php:205 -msgid "Source" -msgstr "Source" - -#: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/events/custom_events.php:113 -#: ../../godmode/events/custom_events.php:167 -#: ../../include/functions_events.php:49 -#: ../../include/functions_events.php:2353 -#: ../../include/functions_events.php:3552 -#: ../../mobile/operation/events.php:477 -#: ../../operation/events/events.build_table.php:179 -#: ../../operation/incidents/incident.php:342 -#: ../../operation/incidents/incident_detail.php:266 -#: ../../enterprise/meta/include/functions_events_meta.php:100 -msgid "Owner" -msgstr "Owner" - -#: ../../godmode/agentes/agent_manager.php:155 -#: ../../godmode/agentes/modificar_agente.php:477 -#: ../../godmode/events/custom_events.php:74 -#: ../../godmode/events/custom_events.php:154 -#: ../../include/functions_events.php:36 -#: ../../include/functions_events.php:908 -#: ../../include/functions_events.php:3536 -#: ../../include/functions_reporting_html.php:2078 -#: ../../include/functions_treeview.php:555 -#: ../../mobile/operation/modules.php:495 -#: ../../mobile/operation/modules.php:753 -#: ../../operation/events/events.build_table.php:161 -#: ../../enterprise/include/functions_reporting_pdf.php:2314 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1071 -#: ../../enterprise/meta/include/functions_events_meta.php:61 -msgid "Agent name" -msgstr "Agent name" - -#: ../../godmode/agentes/agent_manager.php:156 -msgid "The agent's name must be the same as the one defined at the console" -msgstr "Agent name must be the same as the one defined on the console" - -#: ../../godmode/agentes/agent_manager.php:159 -msgid "QR Code Agent view" -msgstr "View agent's QR code" - -#: ../../godmode/agentes/agent_manager.php:166 -#: ../../operation/agentes/estado_agente.php:145 ../../operation/menu.php:54 -msgid "Agent detail" -msgstr "Agent detail" - -#: ../../godmode/agentes/agent_manager.php:193 -#: ../../enterprise/godmode/policies/policy_agents.php:428 -msgid "This agent can be remotely configured" -msgstr "This agent can be configured remotely" - -#: ../../godmode/agentes/agent_manager.php:196 -msgid "You can remotely edit this agent configuration" -msgstr "Agent settings can be remotely edited" - -#: ../../godmode/agentes/agent_manager.php:203 -msgid "Delete agent" -msgstr "Delete agent" - -#: ../../godmode/agentes/agent_manager.php:205 -msgid "Alias" -msgstr "Alias" - -#: ../../godmode/agentes/agent_manager.php:208 -msgid "Use alias as name" -msgstr "" - -#: ../../godmode/agentes/agent_manager.php:211 -#: ../../godmode/servers/modificar_server.php:47 -#: ../../include/functions_events.php:2028 -#: ../../include/functions_reporting_html.php:2255 -#: ../../include/functions_reporting_html.php:2298 -#: ../../include/functions_treeview.php:575 -#: ../../operation/gis_maps/ajax.php:269 -#: ../../enterprise/include/functions_reporting_pdf.php:1844 -#: ../../enterprise/include/functions_reporting_pdf.php:1863 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1087 -#: ../../enterprise/meta/include/functions_wizard_meta.php:163 -#: ../../enterprise/meta/include/functions_wizard_meta.php:166 -#: ../../enterprise/meta/include/functions_wizard_meta.php:375 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1306 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1641 -msgid "IP Address" -msgstr "IP Address" - -#: ../../godmode/agentes/agent_manager.php:220 -#: ../../godmode/snmpconsole/snmp_alert.php:1331 -#: ../../operation/events/events.build_table.php:770 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:210 -msgid "Delete selected" -msgstr "Delete selected items" - -#: ../../godmode/agentes/agent_manager.php:238 -msgid "Only it is show when
    the agent is saved." -msgstr "Only shown when
    the agent is saved." - -#: ../../godmode/agentes/agent_manager.php:250 -#: ../../godmode/agentes/planned_downtime.editor.php:713 -#: ../../godmode/agentes/planned_downtime.list.php:154 -#: ../../godmode/events/event_edit_filter.php:297 -#: ../../godmode/massive/massive_add_action_alerts.php:161 -#: ../../godmode/massive/massive_edit_agents.php:275 -#: ../../godmode/reporting/visual_console_builder.wizard.php:372 -#: ../../godmode/servers/manage_recontask.php:344 -#: ../../godmode/servers/manage_recontask_form.php:303 -#: ../../godmode/users/configure_user.php:696 -#: ../../include/ajax/visual_console_builder.ajax.php:693 -#: ../../include/functions_visual_map_editor.php:313 -#: ../../include/functions_visual_map_editor.php:698 -#: ../../include/functions_html.php:868 ../../include/functions_html.php:869 -#: ../../include/functions_html.php:870 ../../include/functions_html.php:871 -#: ../../include/functions_html.php:872 ../../include/functions_html.php:875 -#: ../../include/functions_html.php:876 ../../include/functions_html.php:877 -#: ../../include/functions_html.php:878 ../../include/functions_html.php:879 -#: ../../operation/events/events_list.php:441 -#: ../../enterprise/dashboard/widgets/events_list.php:31 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:156 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:159 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:207 -#: ../../enterprise/godmode/setup/setup_acl.php:205 -#: ../../enterprise/godmode/setup/setup_auth.php:66 -#: ../../enterprise/godmode/setup/setup_auth.php:383 -#: ../../enterprise/godmode/setup/setup_auth.php:475 -#: ../../enterprise/operation/services/services.list.php:176 -#: ../../enterprise/operation/services/services.list.php:193 -#: ../../enterprise/operation/services/services.table_services.php:145 -#: ../../enterprise/operation/services/services.table_services.php:162 -msgid "Any" -msgstr "Any" - -#: ../../godmode/agentes/agent_manager.php:255 -#: ../../godmode/groups/configure_group.php:134 -#: ../../godmode/massive/massive_edit_agents.php:280 -#: ../../godmode/modules/manage_nc_groups_form.php:70 -#: ../../godmode/reporting/visual_console_builder.elements.php:81 -#: ../../include/functions_visual_map_editor.php:528 -#: ../../operation/agentes/estado_generalagente.php:278 -#: ../../operation/agentes/ver_agente.php:854 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1277 -msgid "Parent" -msgstr "Parent" - -#: ../../godmode/agentes/agent_manager.php:266 -#: ../../godmode/massive/massive_edit_agents.php:291 -msgid "Cascade protection" -msgstr "Cascade protection" - -#: ../../godmode/agentes/agent_manager.php:276 -#: ../../godmode/agentes/module_manager.php:560 -#: ../../godmode/agentes/module_manager_editor_common.php:379 -#: ../../godmode/agentes/module_manager_editor_common.php:405 -#: ../../godmode/massive/massive_edit_agents.php:301 -#: ../../godmode/massive/massive_edit_modules.php:464 -#: ../../godmode/modules/manage_network_components_form_common.php:104 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:259 -#: ../../include/functions_reporting_html.php:2116 -#: ../../include/functions_treeview.php:85 -#: ../../include/functions_treeview.php:581 -#: ../../mobile/operation/modules.php:540 -#: ../../mobile/operation/modules.php:543 -#: ../../mobile/operation/modules.php:544 -#: ../../mobile/operation/modules.php:755 -#: ../../operation/agentes/estado_agente.php:512 -#: ../../operation/agentes/estado_generalagente.php:200 -#: ../../operation/agentes/status_monitor.php:966 -#: ../../operation/netflow/nf_live_view.php:245 -#: ../../operation/search_agents.php:46 ../../operation/search_agents.php:56 -#: ../../operation/search_modules.php:50 -#: ../../operation/servers/recon_view.php:92 -#: ../../enterprise/extensions/ipam/ipam_list.php:162 -#: ../../enterprise/extensions/ipam/ipam_network.php:125 -#: ../../enterprise/extensions/vmware/main.php:253 -#: ../../enterprise/godmode/agentes/inventory_manager.php:174 -#: ../../enterprise/godmode/agentes/inventory_manager.php:236 -#: ../../enterprise/godmode/modules/configure_local_component.php:223 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:188 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:244 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:80 -#: ../../enterprise/include/functions_reporting_pdf.php:2367 -#: ../../enterprise/meta/agentsearch.php:95 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1108 -#: ../../enterprise/meta/include/functions_wizard_meta.php:780 -#: ../../enterprise/meta/include/functions_wizard_meta.php:898 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1062 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1360 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1441 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1574 -msgid "Interval" -msgstr "Interval" - -#: ../../godmode/agentes/agent_manager.php:282 -#: ../../godmode/agentes/modificar_agente.php:485 -#: ../../godmode/agentes/planned_downtime.editor.php:755 -#: ../../godmode/massive/massive_edit_agents.php:305 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:298 -#: ../../include/functions_events.php:2033 -#: ../../include/functions_reporting_html.php:2080 -#: ../../mobile/operation/agents.php:73 ../../mobile/operation/agents.php:316 -#: ../../operation/agentes/estado_agente.php:507 -#: ../../operation/agentes/estado_generalagente.php:127 -#: ../../operation/gis_maps/ajax.php:276 ../../operation/search_agents.php:45 -#: ../../operation/search_agents.php:53 ../../operation/tree.php:55 -#: ../../operation/tree.php:94 -#: ../../enterprise/dashboard/widgets/tree_view.php:38 -#: ../../enterprise/extensions/ipam/ipam_network.php:538 -#: ../../enterprise/godmode/modules/configure_local_component.php:168 -#: ../../enterprise/godmode/modules/local_components.php:446 -#: ../../enterprise/godmode/modules/local_components.php:460 -#: ../../enterprise/godmode/modules/local_components.php:482 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:156 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:82 -#: ../../enterprise/meta/agentsearch.php:94 -msgid "OS" -msgstr "OS" - -#: ../../godmode/agentes/agent_manager.php:294 -#: ../../godmode/agentes/module_manager.php:554 -#: ../../godmode/massive/massive_edit_agents.php:316 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1226 -#: ../../include/functions_events.php:3515 -#: ../../operation/events/events.build_table.php:139 -#: ../../operation/events/events_list.php:448 -#: ../../operation/servers/recon_view.php:173 -#: ../../enterprise/extensions/csv_import/main.php:75 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1401 -#: ../../enterprise/include/functions_events.php:204 -#: ../../enterprise/meta/advanced/policymanager.queue.php:255 -#: ../../enterprise/meta/agentsearch.php:92 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1081 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1371 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1494 -#: ../../enterprise/meta/include/functions_wizard_meta.php:133 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1624 -msgid "Server" -msgstr "Server" - -#: ../../godmode/agentes/agent_manager.php:302 -#: ../../godmode/agentes/agent_manager.php:401 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:692 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:771 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:933 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:949 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:965 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:981 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:997 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1012 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1018 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:331 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:409 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:246 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:286 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:416 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:432 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:448 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:464 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:479 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:485 -#: ../../godmode/agentes/module_manager_editor_common.php:429 -#: ../../godmode/agentes/module_manager_editor_common.php:631 -#: ../../godmode/agentes/module_manager_editor_common.php:791 -#: ../../godmode/agentes/module_manager_editor_common.php:797 -#: ../../godmode/agentes/module_manager_editor_common.php:806 -#: ../../godmode/agentes/module_manager_editor_common.php:812 -#: ../../godmode/agentes/module_manager_editor_plugin.php:52 -#: ../../godmode/alerts/alert_list.list.php:610 -#: ../../godmode/alerts/configure_alert_action.php:131 -#: ../../godmode/alerts/configure_alert_template.php:585 -#: ../../godmode/events/custom_events.php:213 -#: ../../godmode/events/custom_events.php:224 -#: ../../godmode/events/event_edit_filter.php:422 -#: ../../godmode/gis_maps/configure_gis_map.php:414 -#: ../../godmode/groups/configure_group.php:197 -#: ../../godmode/massive/massive_add_action_alerts.php:288 -#: ../../godmode/massive/massive_add_alerts.php:193 -#: ../../godmode/massive/massive_add_tags.php:169 -#: ../../godmode/massive/massive_delete_alerts.php:243 -#: ../../godmode/massive/massive_delete_modules.php:490 -#: ../../godmode/massive/massive_delete_modules.php:564 -#: ../../godmode/massive/massive_delete_modules.php:609 -#: ../../godmode/massive/massive_delete_modules.php:610 -#: ../../godmode/massive/massive_delete_modules.php:611 -#: ../../godmode/massive/massive_delete_modules.php:612 -#: ../../godmode/massive/massive_delete_modules.php:679 -#: ../../godmode/massive/massive_delete_tags.php:226 -#: ../../godmode/massive/massive_delete_tags.php:253 -#: ../../godmode/massive/massive_delete_tags.php:289 -#: ../../godmode/massive/massive_edit_agents.php:315 -#: ../../godmode/massive/massive_edit_modules.php:319 -#: ../../godmode/massive/massive_edit_modules.php:536 -#: ../../godmode/massive/massive_edit_modules.php:564 -#: ../../godmode/massive/massive_edit_modules.php:625 -#: ../../godmode/massive/massive_edit_modules.php:684 -#: ../../godmode/massive/massive_edit_modules.php:769 -#: ../../godmode/massive/massive_edit_modules.php:770 -#: ../../godmode/massive/massive_edit_modules.php:771 -#: ../../godmode/massive/massive_edit_modules.php:772 -#: ../../godmode/massive/massive_edit_modules.php:967 -#: ../../godmode/massive/massive_edit_plugins.php:284 -#: ../../godmode/modules/manage_nc_groups_form.php:72 -#: ../../godmode/modules/manage_network_components_form.php:455 -#: ../../godmode/modules/manage_network_components_form.php:461 -#: ../../godmode/modules/manage_network_components_form.php:470 -#: ../../godmode/modules/manage_network_components_form.php:476 -#: ../../godmode/modules/manage_network_components_form_common.php:191 -#: ../../godmode/modules/manage_network_components_form_plugin.php:24 -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../godmode/reporting/graph_builder.graph_editor.php:135 -#: ../../godmode/reporting/graph_builder.graph_editor.php:194 -#: ../../godmode/reporting/graph_builder.graph_editor.php:214 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1077 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1146 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1156 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1181 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1474 -#: ../../godmode/reporting/visual_console_builder.elements.php:288 -#: ../../godmode/reporting/visual_console_builder.elements.php:429 -#: ../../godmode/reporting/visual_console_builder.wizard.php:199 -#: ../../godmode/reporting/visual_console_builder.wizard.php:296 -#: ../../godmode/reporting/visual_console_builder.wizard.php:304 -#: ../../godmode/reporting/visual_console_builder.wizard.php:326 -#: ../../godmode/reporting/visual_console_builder.wizard.php:335 -#: ../../godmode/reporting/visual_console_builder.wizard.php:374 -#: ../../godmode/reporting/visual_console_builder.wizard.php:571 -#: ../../godmode/reporting/visual_console_builder.wizard.php:581 -#: ../../godmode/reporting/visual_console_builder.wizard.php:613 -#: ../../godmode/servers/manage_recontask_form.php:277 -#: ../../godmode/setup/os.builder.php:40 -#: ../../godmode/setup/setup_visuals.php:315 -#: ../../godmode/snmpconsole/snmp_alert.php:27 -#: ../../godmode/snmpconsole/snmp_alert.php:1008 -#: ../../godmode/users/configure_user.php:510 -#: ../../godmode/users/configure_user.php:682 -#: ../../godmode/users/configure_user.php:686 -#: ../../godmode/users/configure_user.php:691 -#: ../../include/ajax/alert_list.ajax.php:150 -#: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/functions.php:909 ../../include/functions_events.php:1698 -#: ../../include/functions_events.php:1705 -#: ../../include/functions_visual_map_editor.php:268 -#: ../../include/functions_visual_map_editor.php:353 -#: ../../include/functions_visual_map_editor.php:531 -#: ../../include/functions_html.php:317 ../../include/functions_html.php:480 -#: ../../include/functions_pandora_networkmap.php:267 -#: ../../include/functions_pandora_networkmap.php:753 -#: ../../include/functions_pandora_networkmap.php:1471 -#: ../../include/functions_pandora_networkmap.php:1474 -#: ../../include/functions_pandora_networkmap.php:1525 -#: ../../include/functions_pandora_networkmap.php:1529 -#: ../../include/functions_pandora_networkmap.php:1581 -#: ../../include/functions_pandora_networkmap.php:1586 -#: ../../mobile/operation/events.php:587 -#: ../../operation/agentes/pandora_networkmap.editor.php:204 -#: ../../operation/agentes/ver_agente.php:813 -#: ../../operation/agentes/ver_agente.php:856 -#: ../../operation/agentes/ver_agente.php:866 -#: ../../operation/events/events_list.php:282 -#: ../../operation/events/events_list.php:891 -#: ../../operation/netflow/nf_live_view.php:399 -#: ../../operation/snmpconsole/snmp_view.php:423 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:814 -#: ../../operation/users/user_edit.php:323 -#: ../../operation/users/user_edit.php:347 -#: ../../operation/users/user_edit.php:387 -#: ../../operation/users/user_edit.php:401 -#: ../../operation/users/user_edit.php:554 -#: ../../operation/users/user_edit.php:561 -#: ../../operation/users/user_edit.php:570 -#: ../../operation/users/user_edit.php:577 -#: ../../enterprise/dashboard/widgets/service_map.php:39 -#: ../../enterprise/dashboard/widgets/top_n.php:398 -#: ../../enterprise/extensions/ipam/ipam_network.php:635 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:427 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:558 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:654 -#: ../../enterprise/godmode/alerts/alert_events.php:468 -#: ../../enterprise/godmode/alerts/alert_events_list.php:595 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:98 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:117 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:97 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:116 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:128 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:27 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:174 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:306 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:384 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:459 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:460 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:461 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:462 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:511 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:90 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:135 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:89 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:133 -#: ../../enterprise/godmode/modules/configure_local_component.php:367 -#: ../../enterprise/godmode/modules/configure_local_component.php:507 -#: ../../enterprise/godmode/modules/configure_local_component.php:513 -#: ../../enterprise/godmode/modules/configure_local_component.php:521 -#: ../../enterprise/godmode/modules/configure_local_component.php:527 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:681 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:756 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:917 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:933 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:949 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:965 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:981 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:996 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1002 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:328 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:403 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:244 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:284 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:414 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:430 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:446 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:462 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:477 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:483 -#: ../../enterprise/godmode/policies/policy_agents.php:223 -#: ../../enterprise/godmode/policies/policy_agents.php:653 -#: ../../enterprise/godmode/policies/policy_alerts.php:459 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:273 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:138 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:344 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:363 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:374 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:389 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:421 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:59 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:336 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:353 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:369 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:409 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:467 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:500 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:509 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:528 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:665 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:729 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:744 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:754 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:768 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1745 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1832 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:252 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:699 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:720 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:735 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:745 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:755 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:759 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:786 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:57 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:422 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:438 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:459 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:468 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:625 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:653 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:672 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:699 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:75 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:274 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:282 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:292 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:314 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:332 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:365 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:395 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:416 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:436 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:461 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:480 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:500 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:158 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:196 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:208 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:218 -#: ../../enterprise/godmode/servers/manage_export_form.php:73 -#: ../../enterprise/godmode/setup/setup.php:332 -#: ../../enterprise/godmode/setup/setup.php:338 -#: ../../enterprise/godmode/setup/setup.php:346 -#: ../../enterprise/godmode/setup/setup.php:352 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:148 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:258 -#: ../../enterprise/meta/advanced/metasetup.setup.php:277 -#: ../../enterprise/meta/advanced/metasetup.setup.php:283 -#: ../../enterprise/meta/advanced/metasetup.setup.php:293 -#: ../../enterprise/meta/advanced/metasetup.setup.php:299 -#: ../../enterprise/meta/event/custom_events.php:211 -#: ../../enterprise/meta/event/custom_events.php:222 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:232 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:322 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:383 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:491 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:564 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:100 -#: ../../enterprise/operation/agentes/ver_agente.php:36 -msgid "None" -msgstr "None" - -#: ../../godmode/agentes/agent_manager.php:323 -#: ../../godmode/agentes/module_manager_editor_common.php:361 -#: ../../godmode/groups/configure_group.php:178 -#: ../../godmode/massive/massive_edit_agents.php:352 -msgid "Custom ID" -msgstr "Custom ID" - -#: ../../godmode/agentes/agent_manager.php:327 -#: ../../godmode/massive/massive_edit_agents.php:356 -msgid "Module definition" -msgstr "Module definition" - -#: ../../godmode/agentes/agent_manager.php:329 -#: ../../godmode/massive/massive_edit_agents.php:358 -msgid "Learning mode" -msgstr "Apprentice mode" - -#: ../../godmode/agentes/agent_manager.php:332 -#: ../../godmode/massive/massive_edit_agents.php:359 -msgid "Normal mode" -msgstr "Normal mode" - -#: ../../godmode/agentes/agent_manager.php:335 -msgid "Autodisable mode" -msgstr "Autodisable mode" - -#: ../../godmode/agentes/agent_manager.php:341 -#: ../../godmode/agentes/modificar_agente.php:562 -#: ../../godmode/agentes/module_manager_editor_common.php:172 -#: ../../godmode/agentes/module_manager_editor_common.php:471 -#: ../../godmode/alerts/alert_view.php:516 -#: ../../godmode/alerts/configure_alert_template.php:663 -#: ../../godmode/massive/massive_edit_agents.php:364 -#: ../../godmode/massive/massive_edit_modules.php:467 -#: ../../include/functions_groups.php:2158 -#: ../../include/functions_reporting.php:3604 -#: ../../include/functions_reporting_html.php:2095 -#: ../../include/functions_treeview.php:74 -#: ../../include/functions_treeview.php:551 -#: ../../mobile/operation/agent.php:124 ../../mobile/operation/alerts.php:40 -#: ../../operation/agentes/alerts_status.functions.php:76 -#: ../../operation/agentes/estado_generalagente.php:79 -#: ../../operation/agentes/estado_generalagente.php:294 -#: ../../operation/search_agents.php:91 -#: ../../enterprise/extensions/vmware/functions.php:20 -#: ../../enterprise/godmode/modules/configure_local_component.php:287 -#: ../../enterprise/godmode/setup/edit_skin.php:248 -#: ../../enterprise/include/functions_reporting_pdf.php:2347 -#: ../../enterprise/meta/agentsearch.php:160 -#: ../../enterprise/meta/agentsearch.php:168 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:408 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:680 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:890 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1073 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1364 -#: ../../enterprise/meta/include/functions_wizard_meta.php:179 -#: ../../enterprise/meta/include/functions_wizard_meta.php:411 -#: ../../enterprise/meta/include/functions_wizard_meta.php:480 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1009 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1370 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1460 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1645 -msgid "Disabled" -msgstr "Disabled" - -#: ../../godmode/agentes/agent_manager.php:343 -#: ../../godmode/massive/massive_edit_agents.php:365 -msgid "Active" -msgstr "Active" - -#: ../../godmode/agentes/agent_manager.php:347 -#: ../../godmode/agentes/configurar_agente.php:441 -#: ../../godmode/agentes/configurar_agente.php:553 -#: ../../godmode/massive/massive_edit_agents.php:368 -#: ../../godmode/servers/servers.build_table.php:165 -#: ../../operation/agentes/estado_generalagente.php:292 -#: ../../enterprise/godmode/policies/policy_agents.php:378 -msgid "Remote configuration" -msgstr "Remote configuration" - -#: ../../godmode/agentes/agent_manager.php:350 -#: ../../godmode/agentes/agent_manager.php:372 -#: ../../godmode/massive/massive_edit_agents.php:375 -msgid "Not available" -msgstr "Not available" - -#: ../../godmode/agentes/agent_manager.php:363 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:207 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:163 -msgid "Delete remote configuration file" -msgstr "Delete remote configuration file" - -#: ../../godmode/agentes/agent_manager.php:366 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:208 -msgid "" -"Delete this conf file implies that for restore you must reactive remote " -"config in the local agent." -msgstr "" -"Deleting this conf file means you will have to reactivate remote " -"configuration on the local agent in order to restore it." - -#: ../../godmode/agentes/agent_manager.php:381 -#: ../../godmode/massive/massive_edit_agents.php:401 -msgid "Agent icon" -msgstr "Agent icon" - -#: ../../godmode/agentes/agent_manager.php:381 -msgid "Agent icon for GIS Maps." -msgstr "Agent icon for GIS Maps." - -#: ../../godmode/agentes/agent_manager.php:419 -#: ../../include/functions_treeview.php:668 -#: ../../operation/agentes/estado_generalagente.php:329 -#: ../../operation/agentes/ver_agente.php:1035 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1144 -msgid "Url address" -msgstr "URL address" - -#: ../../godmode/agentes/agent_manager.php:423 -#: ../../godmode/agentes/modificar_agente.php:541 -#: ../../godmode/agentes/module_manager.php:643 -#: ../../godmode/agentes/module_manager_editor_common.php:565 -#: ../../godmode/agentes/planned_downtime.editor.php:488 -#: ../../godmode/agentes/planned_downtime.list.php:427 -#: ../../godmode/massive/massive_edit_agents.php:416 -#: ../../godmode/massive/massive_edit_modules.php:601 -#: ../../include/ajax/module.php:879 ../../include/class/Tree.class.php:1796 -#: ../../mobile/operation/agent.php:129 -#: ../../operation/agentes/estado_agente.php:572 -#: ../../operation/agentes/estado_generalagente.php:82 -msgid "Quiet" -msgstr "Quiet" - -#: ../../godmode/agentes/agent_manager.php:425 -#: ../../godmode/massive/massive_edit_agents.php:417 -msgid "The agent still runs but the alerts and events will be stop" -msgstr "" -"The agent will continue to run, but alerts and events will be stopped" - -#: ../../godmode/agentes/agent_manager.php:428 -#: ../../godmode/agentes/module_manager_editor.php:515 -#: ../../godmode/massive/massive_add_action_alerts.php:181 -#: ../../godmode/massive/massive_edit_agents.php:422 -#: ../../include/functions_visual_map_editor.php:486 -#: ../../operation/events/events_list.php:591 -#: ../../enterprise/godmode/alerts/alert_events_list.php:597 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:276 -#: ../../enterprise/godmode/policies/policy_modules.php:341 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:147 -msgid "Advanced options" -msgstr "Advanced options" - -#: ../../godmode/agentes/agent_manager.php:448 -#: ../../godmode/massive/massive_edit_agents.php:446 -msgid "This field allows url insertion using the BBCode's url tag" -msgstr "This field allows url insertion using the BBCode's url tag" - -#: ../../godmode/agentes/agent_manager.php:450 -#: ../../godmode/massive/massive_edit_agents.php:448 -msgid "The format is: [url='url to navigate']'text to show'[/url]" -msgstr "The format is: [url='url to navigate']'text to show'[/url]" - -#: ../../godmode/agentes/agent_manager.php:452 -#: ../../godmode/massive/massive_edit_agents.php:450 -msgid "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" -msgstr "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" - -#: ../../godmode/agentes/agent_manager.php:470 -#: ../../godmode/events/events.php:53 ../../godmode/events/events.php:58 -#: ../../godmode/events/events.php:69 -#: ../../godmode/massive/massive_edit_agents.php:465 ../../godmode/menu.php:36 -#: ../../include/functions_events.php:2048 -#: ../../operation/agentes/ver_agente.php:1046 -#: ../../enterprise/meta/event/custom_events.php:53 -#: ../../enterprise/meta/event/custom_events.php:58 -#: ../../enterprise/meta/event/custom_events.php:69 -#: ../../enterprise/meta/event/custom_events.php:83 -msgid "Custom fields" -msgstr "Custom fields" - -#: ../../godmode/agentes/agent_manager.php:495 -#: ../../godmode/agentes/configure_field.php:65 -#: ../../godmode/agentes/module_manager.php:136 -#: ../../godmode/agentes/module_manager_editor.php:540 -#: ../../godmode/agentes/planned_downtime.list.php:366 -#: ../../godmode/agentes/planned_downtime.list.php:516 -#: ../../godmode/alerts/alert_actions.php:403 -#: ../../godmode/alerts/alert_commands.php:377 -#: ../../godmode/alerts/alert_list.list.php:742 -#: ../../godmode/alerts/alert_list.php:329 -#: ../../godmode/alerts/alert_special_days.php:464 -#: ../../godmode/alerts/alert_special_days.php:482 -#: ../../godmode/alerts/alert_templates.php:363 -#: ../../godmode/alerts/configure_alert_action.php:227 -#: ../../godmode/alerts/configure_alert_command.php:202 -#: ../../godmode/alerts/configure_alert_special_days.php:106 -#: ../../godmode/category/edit_category.php:174 -#: ../../godmode/events/event_edit_filter.php:405 -#: ../../godmode/events/event_responses.editor.php:134 -#: ../../godmode/groups/configure_group.php:225 -#: ../../godmode/groups/configure_modu_group.php:87 -#: ../../godmode/massive/massive_add_profiles.php:117 -#: ../../godmode/modules/manage_nc_groups.php:245 -#: ../../godmode/modules/manage_nc_groups_form.php:84 -#: ../../godmode/modules/manage_network_components.php:645 -#: ../../godmode/modules/manage_network_components_form.php:279 -#: ../../godmode/modules/manage_network_templates.php:237 -#: ../../godmode/modules/manage_network_templates_form.php:159 -#: ../../godmode/netflow/nf_edit_form.php:244 -#: ../../godmode/reporting/graph_builder.main.php:186 -#: ../../godmode/reporting/map_builder.php:312 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1191 -#: ../../godmode/servers/manage_recontask.php:397 -#: ../../godmode/servers/plugin.php:542 -#: ../../godmode/servers/recon_script.php:220 ../../godmode/setup/gis.php:93 -#: ../../godmode/setup/links.php:117 ../../godmode/setup/news.php:204 -#: ../../godmode/setup/os.php:52 ../../godmode/setup/os.php:76 -#: ../../godmode/snmpconsole/snmp_alert.php:980 -#: ../../godmode/snmpconsole/snmp_alert.php:1339 -#: ../../godmode/snmpconsole/snmp_filters.php:108 -#: ../../godmode/snmpconsole/snmp_filters.php:156 -#: ../../godmode/tag/edit_tag.php:232 -#: ../../godmode/users/configure_user.php:588 -#: ../../godmode/users/profile_list.php:404 -#: ../../include/functions_visual_map_editor.php:473 -#: ../../include/functions_filemanager.php:617 -#: ../../include/functions_filemanager.php:654 -#: ../../operation/gis_maps/gis_map.php:182 -#: ../../operation/incidents/incident_detail.php:379 -#: ../../enterprise/extensions/backup/main.php:227 -#: ../../enterprise/extensions/cron/main.php:354 -#: ../../enterprise/extensions/ipam/ipam_editor.php:121 -#: ../../enterprise/extensions/ipam/ipam_list.php:257 -#: ../../enterprise/godmode/agentes/collections.agents.php:40 -#: ../../enterprise/godmode/agentes/collections.data.php:56 -#: ../../enterprise/godmode/agentes/collections.data.php:127 -#: ../../enterprise/godmode/agentes/collections.data.php:146 -#: ../../enterprise/godmode/agentes/collections.data.php:161 -#: ../../enterprise/godmode/agentes/collections.data.php:183 -#: ../../enterprise/godmode/agentes/collections.data.php:225 -#: ../../enterprise/godmode/agentes/collections.editor.php:117 -#: ../../enterprise/godmode/agentes/collections.php:287 -#: ../../enterprise/godmode/alerts/alert_events_list.php:671 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:511 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:220 -#: ../../enterprise/godmode/modules/configure_local_component.php:490 -#: ../../enterprise/godmode/modules/local_components.php:551 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:245 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 -#: ../../enterprise/godmode/policies/configure_policy.php:90 -#: ../../enterprise/godmode/policies/policies.php:478 -#: ../../enterprise/godmode/policies/policy_modules.php:369 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:232 -#: ../../enterprise/godmode/servers/manage_export.php:125 -#: ../../enterprise/godmode/servers/manage_export.php:157 -#: ../../enterprise/godmode/services/services.elements.php:426 -#: ../../enterprise/godmode/services/services.service.php:372 -#: ../../enterprise/godmode/setup/edit_skin.php:270 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:365 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:90 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1215 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1430 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:309 -msgid "Create" -msgstr "Create" - -#: ../../godmode/agentes/agent_template.php:69 -msgid "Created by template " -msgstr "Created from a template " - -#: ../../godmode/agentes/agent_template.php:157 -msgid "Error adding modules" -msgstr "Error adding modules" - -#: ../../godmode/agentes/agent_template.php:159 -msgid "Error adding modules. The following errors already exists: " -msgstr "Error adding modules. The following errors already exist: " - -#: ../../godmode/agentes/agent_template.php:162 -msgid "Modules successfully added" -msgstr "Modules successfully added" - -#: ../../godmode/agentes/agent_template.php:189 -msgid "Assign" -msgstr "Assign" - -#: ../../godmode/agentes/agent_template.php:228 -#: ../../godmode/alerts/alert_list.list.php:86 -#: ../../godmode/modules/manage_network_components.php:565 -#: ../../godmode/modules/manage_network_templates_form.php:198 -#: ../../include/ajax/module.php:741 ../../mobile/operation/modules.php:489 -#: ../../mobile/operation/modules.php:752 -#: ../../operation/agentes/status_monitor.php:332 -#: ../../operation/agentes/status_monitor.php:958 -#: ../../enterprise/include/functions_reporting_pdf.php:2361 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1361 -msgid "Module name" -msgstr "Module name" - -#: ../../godmode/agentes/agent_template.php:229 -#: ../../godmode/agentes/module_manager.php:131 -#: ../../godmode/agentes/module_manager.php:557 -#: ../../godmode/agentes/module_manager_editor_common.php:186 -#: ../../godmode/agentes/planned_downtime.editor.php:485 -#: ../../godmode/agentes/planned_downtime.list.php:394 -#: ../../godmode/alerts/alert_templates.php:38 -#: ../../godmode/alerts/alert_templates.php:253 -#: ../../godmode/alerts/alert_templates.php:301 -#: ../../godmode/events/event_responses.editor.php:115 -#: ../../godmode/modules/manage_network_components.php:566 -#: ../../godmode/modules/manage_network_components_form_common.php:69 -#: ../../godmode/modules/manage_network_templates_form.php:199 -#: ../../godmode/reporting/reporting_builder.item_editor.php:620 -#: ../../godmode/reporting/reporting_builder.list_items.php:169 -#: ../../godmode/reporting/reporting_builder.list_items.php:196 -#: ../../godmode/reporting/reporting_builder.list_items.php:289 -#: ../../godmode/reporting/visual_console_builder.wizard.php:111 -#: ../../godmode/reporting/visual_console_builder.wizard.php:216 -#: ../../godmode/servers/plugin.php:736 -#: ../../godmode/servers/servers.build_table.php:66 -#: ../../godmode/setup/gis_step_2.php:171 ../../godmode/setup/news.php:221 -#: ../../include/ajax/module.php:738 ../../include/functions_events.php:901 -#: ../../include/functions_events.php:2367 -#: ../../include/functions_visual_map_editor.php:400 -#: ../../include/functions_visual_map_editor.php:419 -#: ../../include/functions_reporting_html.php:809 -#: ../../include/functions_reporting_html.php:818 -#: ../../include/functions_reporting_html.php:1023 -#: ../../include/functions_reporting_html.php:1033 -#: ../../include/functions_reporting_html.php:1647 -#: ../../include/functions_reporting_html.php:2111 -#: ../../include/functions_reporting_html.php:3105 -#: ../../include/functions_snmp_browser.php:410 -#: ../../mobile/operation/events.php:352 ../../mobile/operation/events.php:353 -#: ../../mobile/operation/events.php:481 ../../mobile/operation/events.php:622 -#: ../../mobile/operation/events.php:623 -#: ../../mobile/operation/networkmaps.php:77 -#: ../../mobile/operation/networkmaps.php:78 -#: ../../mobile/operation/networkmaps.php:140 -#: ../../mobile/operation/networkmaps.php:141 -#: ../../mobile/operation/networkmaps.php:196 -#: ../../mobile/operation/visualmaps.php:61 -#: ../../mobile/operation/visualmaps.php:62 -#: ../../operation/agentes/ver_agente.php:806 -#: ../../operation/events/events.php:72 -#: ../../operation/events/sound_events.php:82 -#: ../../operation/netflow/nf_live_view.php:254 -#: ../../operation/search_modules.php:49 -#: ../../enterprise/godmode/modules/configure_local_component.php:184 -#: ../../enterprise/godmode/policies/policy_modules.php:1204 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:82 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1194 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:80 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:98 -#: ../../enterprise/godmode/services/services.elements.php:338 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/functions_reporting_csv.php:1143 -#: ../../enterprise/include/functions_reporting_csv.php:1290 -#: ../../enterprise/include/functions_reporting_csv.php:1355 -#: ../../enterprise/include/functions_reporting_pdf.php:2362 -#: ../../enterprise/include/functions_services.php:1412 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:93 -#: ../../enterprise/operation/agentes/policy_view.php:306 -#: ../../enterprise/operation/agentes/ver_agente.php:30 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:159 -msgid "Type" -msgstr "Type" - -#: ../../godmode/agentes/agent_template.php:263 -#: ../../mobile/operation/modules.php:668 -msgid "No modules" -msgstr "No modules" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:60 -msgid "The SNMP remote plugin doesnt seem to be installed" -msgstr "The remote SNMP plugin doesn't appear to be installed" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:60 -msgid "It is necessary to use some features" -msgstr "It's necessary in order to access certain features" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:60 -msgid "" -"Please, install the SNMP remote plugin (The name of the plugin must be " -"snmp_remote.pl)" -msgstr "" -"Please, install the remote SNMP plugin (the plugin must be named " -"snmp_remote.pl)" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:253 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:248 -msgid "Remote system doesnt support host SNMP information" -msgstr "The remote system doesn't support the host's SNMP information" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:298 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:179 -msgid "No agent selected or the agent does not exist" -msgstr "No agent selected or the agent does not exist" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:338 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:330 -msgid "The number of bytes read from this device since boot" -msgstr "The number of bytes read from this device since boot" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:340 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:332 -msgid "The number of bytes written to this device since boot" -msgstr "The number of bytes written to this device since boot" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:342 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:334 -msgid "The number of read accesses from this device since boot" -msgstr "The number of read accesses from this device since boot" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:344 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:336 -msgid "The number of write accesses from this device since boot" -msgstr "The number of write accesses from this device since boot" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:519 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:511 -#, php-format -msgid "Check if the process %s is running or not" -msgstr "Check if the process %s is running or not" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:590 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:582 -msgid "Disk use information" -msgstr "Disk use information" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:661 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:651 -#, php-format -msgid "%s modules created succesfully" -msgstr "%s modules created succesfully" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:666 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:671 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:656 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:661 -#, php-format -msgid "Error creating %s modules" -msgstr "Error creating %s modules" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:676 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:234 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:666 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:232 -#, php-format -msgid "%s modules already exist" -msgstr "%s modules already exist" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:685 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:675 -msgid "Modules created succesfully" -msgstr "Modules successfully created." - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:703 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:342 -#: ../../godmode/agentes/module_manager_editor_network.php:106 -#: ../../godmode/modules/manage_network_components_form_network.php:38 -#: ../../include/functions_config.php:695 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:692 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:339 -#: ../../enterprise/godmode/servers/manage_export_form.php:105 -#: ../../enterprise/godmode/setup/setup_history.php:56 -msgid "Port" -msgstr "Port" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:706 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:345 -msgid "Use agent ip" -msgstr "Use agent IP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:714 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:353 -#: ../../godmode/agentes/module_manager_editor_network.php:119 -#: ../../godmode/modules/manage_network_components_form_network.php:50 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:700 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:347 -msgid "SNMP community" -msgstr "SNMP community" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:717 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:356 -#: ../../godmode/agentes/module_manager_editor_network.php:132 -#: ../../godmode/massive/massive_edit_modules.php:494 -#: ../../godmode/modules/manage_network_components_form_network.php:40 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:703 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:350 -msgid "SNMP version" -msgstr "SNMP version" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:731 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:369 -#: ../../godmode/agentes/module_manager_editor_network.php:216 -#: ../../godmode/massive/massive_edit_modules.php:497 -#: ../../godmode/modules/manage_network_components_form_network.php:57 -#: ../../include/functions_snmp_browser.php:530 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:716 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:363 -msgid "Auth user" -msgstr "Authenticate user" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:733 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:371 -#: ../../godmode/agentes/module_manager_editor_network.php:219 -#: ../../godmode/massive/massive_edit_modules.php:500 -#: ../../godmode/modules/manage_network_components_form_network.php:59 -#: ../../include/functions_snmp_browser.php:532 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:718 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:365 -msgid "Auth password" -msgstr "Authenticate password" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:737 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:375 -#: ../../godmode/agentes/module_manager_editor_network.php:227 -#: ../../godmode/massive/massive_edit_modules.php:503 -#: ../../godmode/modules/manage_network_components_form_network.php:65 -#: ../../include/functions_snmp_browser.php:536 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:722 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:369 -msgid "Privacy method" -msgstr "Privacy method" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:738 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:376 -#: ../../godmode/agentes/module_manager_editor_network.php:228 -#: ../../godmode/massive/massive_edit_modules.php:504 -#: ../../godmode/modules/manage_network_components_form_network.php:66 -#: ../../include/functions_snmp_browser.php:537 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:723 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:370 -msgid "DES" -msgstr "DES" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:738 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:376 -#: ../../godmode/agentes/module_manager_editor_network.php:228 -#: ../../godmode/massive/massive_edit_modules.php:504 -#: ../../godmode/modules/manage_network_components_form_network.php:66 -#: ../../include/functions_snmp_browser.php:537 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:723 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:370 -msgid "AES" -msgstr "AES" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:739 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:377 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:724 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:371 -msgid "privacy pass" -msgstr "privacy pass" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:742 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:380 -#: ../../godmode/agentes/module_manager_editor_network.php:237 -#: ../../godmode/massive/massive_edit_modules.php:507 -#: ../../godmode/modules/manage_network_components_form_network.php:72 -#: ../../include/functions_snmp_browser.php:541 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:727 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:374 -msgid "Auth method" -msgstr "Authentication method" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:743 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:381 -#: ../../godmode/agentes/module_manager_editor_network.php:238 -#: ../../godmode/massive/massive_edit_modules.php:508 -#: ../../godmode/modules/manage_network_components_form_network.php:73 -#: ../../include/functions_snmp_browser.php:542 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:728 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:375 -msgid "MD5" -msgstr "MD5" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:743 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:381 -#: ../../godmode/agentes/module_manager_editor_network.php:238 -#: ../../godmode/massive/massive_edit_modules.php:508 -#: ../../godmode/modules/manage_network_components_form_network.php:73 -#: ../../include/functions_snmp_browser.php:542 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:728 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:375 -msgid "SHA" -msgstr "SHA" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:744 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:382 -#: ../../godmode/agentes/module_manager_editor_network.php:239 -#: ../../godmode/massive/massive_edit_modules.php:509 -#: ../../godmode/modules/manage_network_components_form_network.php:74 -#: ../../include/functions_snmp_browser.php:543 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:729 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:376 -msgid "Security level" -msgstr "Security level" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:745 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:383 -#: ../../godmode/agentes/module_manager_editor_network.php:240 -#: ../../godmode/massive/massive_edit_modules.php:510 -#: ../../godmode/modules/manage_network_components_form_network.php:75 -#: ../../include/functions_snmp_browser.php:544 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:730 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:377 -msgid "Not auth and not privacy method" -msgstr "Non-authenticated and non-private method" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:746 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:384 -#: ../../godmode/agentes/module_manager_editor_network.php:241 -#: ../../godmode/massive/massive_edit_modules.php:511 -#: ../../godmode/modules/manage_network_components_form_network.php:76 -#: ../../include/functions_snmp_browser.php:545 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:731 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:378 -msgid "Auth and not privacy method" -msgstr "Authenticated and non-private method" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:746 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:384 -#: ../../godmode/agentes/module_manager_editor_network.php:241 -#: ../../godmode/massive/massive_edit_modules.php:511 -#: ../../godmode/modules/manage_network_components_form_network.php:76 -#: ../../include/functions_snmp_browser.php:545 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:731 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:378 -msgid "Auth and privacy method" -msgstr "Authenticated and private method" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:759 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:397 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:744 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:391 -msgid "SNMP Walk" -msgstr "SNMP Walk" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 -#: ../../operation/tree.php:264 -#: ../../enterprise/dashboard/widgets/tree_view.php:188 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:748 -#: ../../enterprise/include/functions_inventory.php:166 -msgid "No data found" -msgstr "No data found" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:748 -msgid "" -"If the device is a network device, try with the SNMP Interfaces wizard" -msgstr "If it's a network device, try with the SNMP interface wizard" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:792 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:776 -msgid "Devices" -msgstr "Devices" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:793 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:301 -#: ../../operation/agentes/ver_agente.php:1106 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:777 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:299 -msgid "Processes" -msgstr "Processes" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:794 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:302 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:778 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:300 -msgid "Free space on disk" -msgstr "Free space on disk" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:795 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:779 -msgid "Temperature sensors" -msgstr "Temperature sensors" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:796 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:780 -msgid "Other SNMP data" -msgstr "Other SNMP data" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:305 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:782 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:303 -msgid "Wizard mode" -msgstr "Wizard mode" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:817 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:822 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:801 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:806 -msgid "SNMP remote plugin is necessary for this feature" -msgstr "The remote SNMP plugin is necessary to run this feature" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:854 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:856 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:858 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:860 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:863 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:348 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:350 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:352 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:354 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:838 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:840 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:842 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:844 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:847 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:346 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:348 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:350 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:352 -msgid "Add to modules list" -msgstr "Add to the module list" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:865 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:358 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:849 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:356 -msgid "Remove from modules list" -msgstr "Remove from the module list" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:875 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:447 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:369 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:859 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:440 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:367 -msgid "Create modules" -msgstr "Create modules" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:932 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:916 -msgid "Device" -msgstr "Device" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:938 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:954 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:970 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:986 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1002 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:421 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:437 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:453 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:469 -#: ../../godmode/events/event_edit_filter.php:301 -#: ../../include/functions_events.php:2372 -#: ../../mobile/operation/events.php:485 -#: ../../operation/events/events_list.php:581 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:922 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:938 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:954 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:970 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:986 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:419 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:435 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:451 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:467 -#: ../../enterprise/include/functions_events.php:149 -msgid "Repeated" -msgstr "Duplicate" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:948 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:431 -#: ../../godmode/reporting/visual_console_builder.wizard.php:193 -#: ../../include/functions_visual_map_editor.php:348 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:932 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:429 -msgid "Process" -msgstr "Process" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:980 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:964 -msgid "Temperature" -msgstr "Temperature" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1027 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:491 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1011 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:489 -msgid "Modules list is empty" -msgstr "Module list is empty" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:174 -#: ../../godmode/massive/massive_add_action_alerts.php:116 -#: ../../godmode/massive/massive_add_tags.php:38 -#: ../../godmode/massive/massive_delete_action_alerts.php:119 -#: ../../godmode/massive/massive_delete_tags.php:102 -#: ../../godmode/massive/massive_edit_modules.php:1073 -#: ../../godmode/reporting/visual_console_builder.php:486 -#: ../../include/functions_visual_map.php:1749 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:404 -#: ../../enterprise/include/functions_massive.php:15 -msgid "No modules selected" -msgstr "No modules selected" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:286 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:283 -msgid "Successfully modules created" -msgstr "Modules created successfully" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:290 -#: ../../godmode/agentes/configurar_agente.php:266 -#: ../../godmode/agentes/configurar_agente.php:617 -#: ../../godmode/agentes/planned_downtime.editor.php:356 -#: ../../godmode/alerts/alert_actions.php:185 -#: ../../godmode/alerts/alert_commands.php:294 -#: ../../godmode/alerts/alert_list.php:104 -#: ../../godmode/alerts/alert_special_days.php:149 -#: ../../godmode/alerts/configure_alert_template.php:119 -#: ../../godmode/alerts/configure_alert_template.php:432 -#: ../../godmode/modules/manage_nc_groups.php:74 -#: ../../godmode/modules/manage_network_components.php:162 -#: ../../godmode/modules/manage_network_components.php:256 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2436 -#: ../../godmode/setup/gis.php:47 ../../godmode/setup/news.php:57 -#: ../../godmode/users/configure_user.php:237 -#: ../../include/functions_planned_downtimes.php:110 -#: ../../include/functions_planned_downtimes.php:727 -#: ../../operation/agentes/pandora_networkmap.php:153 -#: ../../enterprise/extensions/ipam/ipam_action.php:92 -#: ../../enterprise/extensions/ipam/ipam_action.php:100 -#: ../../enterprise/godmode/alerts/alert_events.php:350 -#: ../../enterprise/godmode/modules/local_components.php:107 -#: ../../enterprise/godmode/modules/local_components.php:247 -#: ../../enterprise/godmode/policies/policies.php:128 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:287 -#: ../../enterprise/godmode/policies/policy_alerts.php:148 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:74 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:36 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:87 -#: ../../enterprise/godmode/servers/manage_export.php:105 -#: ../../enterprise/godmode/servers/manage_export.php:114 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:108 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:216 -#: ../../enterprise/operation/agentes/transactional_map.php:87 -msgid "Could not be created" -msgstr "Could not be created" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:296 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:293 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1855 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1955 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2428 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2544 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2633 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2844 -msgid "Another module already exists with the same name" -msgstr "Another module already exists with the same name" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:299 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:296 -msgid "Some required fields are missed" -msgstr "Some required fields are missing" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:299 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:296 -msgid "name" -msgstr "name" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:304 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:301 -msgid "Processing error" -msgstr "Processing error" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:401 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:395 -msgid "Unable to do SNMP walk" -msgstr "Unable to perform an SNMP walk" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:435 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:428 -msgid "Interfaces" -msgstr "Interfaces" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:111 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:110 -#, php-format -msgid "Free space on %s" -msgstr "Free space on %s" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:204 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:202 -#, php-format -msgid "%s service modules created succesfully" -msgstr "%s service modules created successfully" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:207 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:205 -#, php-format -msgid "Error creating %s service modules" -msgstr "Error when creating %s service modules" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:212 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:210 -#, php-format -msgid "%s process modules created succesfully" -msgstr "%s process modules created successfully" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:215 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:213 -#, php-format -msgid "Error creating %s process modules" -msgstr "Error when creating %s service modules" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:220 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:218 -#, php-format -msgid "%s disk space modules created succesfully" -msgstr "%s disk space modules created successfully" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:223 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:221 -#, php-format -msgid "Error creating %s disk space modules" -msgstr "Error upon creating %s disk space modules" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:228 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:226 -#, php-format -msgid "%s modules created from components succesfully" -msgstr "%s modules created from components successfully" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:231 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:229 -#, php-format -msgid "Error creating %s modules from components" -msgstr "Error creating %s modules from components" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:257 -#: ../../godmode/agentes/module_manager_editor_wmi.php:47 -#: ../../godmode/modules/manage_network_components_form_wmi.php:42 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:255 -msgid "Namespace" -msgstr "Namespace" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:261 -#: ../../godmode/agentes/module_manager_editor_wmi.php:54 -#: ../../godmode/massive/massive_edit_modules.php:526 -#: ../../godmode/modules/manage_network_components_form_wmi.php:48 -#: ../../enterprise/godmode/agentes/inventory_manager.php:188 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:259 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:201 -msgid "Username" -msgstr "Username" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:274 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:272 -msgid "WMI Explore" -msgstr "WMI Explorer" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:278 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:276 -msgid "Unable to do WMI explorer" -msgstr "Unable to perform WMI exploration" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:303 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:301 -msgid "WMI components" -msgstr "WMI components" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:316 -#: ../../godmode/agentes/planned_downtime.editor.php:708 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:314 -msgid "Filter by group" -msgstr "Filter by group" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:336 -#: ../../godmode/agentes/module_manager_editor_common.php:81 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:60 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:334 -msgid "No component was found" -msgstr "No component was found" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:415 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1547 -#: ../../enterprise/dashboard/widgets/service_map.php:46 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:22 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:413 -#: ../../enterprise/godmode/services/services.elements.php:336 -#: ../../enterprise/godmode/services/services.elements.php:377 -#: ../../enterprise/include/functions_reporting.php:4425 -#: ../../enterprise/include/functions_reporting.php:4726 -#: ../../enterprise/include/functions_reporting_pdf.php:2039 -#: ../../enterprise/include/functions_services.php:1458 -#: ../../enterprise/include/functions_visual_map.php:496 -#: ../../enterprise/include/functions_visual_map_editor.php:17 -#: ../../enterprise/include/functions_visual_map_editor.php:24 -#: ../../enterprise/include/functions_visual_map_editor.php:47 -msgid "Service" -msgstr "Service" - -#: ../../godmode/agentes/configurar_agente.php:187 -#: ../../godmode/agentes/configurar_agente.php:733 -msgid "No agent alias specified" -msgstr "No agent alias specified" - -#: ../../godmode/agentes/configurar_agente.php:268 -msgid "Could not be created, because name already exists" -msgstr "" - -#: ../../godmode/agentes/configurar_agente.php:281 -#: ../../godmode/agentes/modificar_agente.php:52 -#: ../../godmode/agentes/modificar_agente.php:582 -#: ../../godmode/reporting/visual_console_builder.php:687 -#: ../../godmode/servers/manage_recontask.php:32 -#: ../../godmode/setup/setup_visuals.php:165 -#: ../../godmode/setup/setup_visuals.php:185 -#: ../../godmode/setup/setup_visuals.php:204 -#: ../../godmode/setup/setup_visuals.php:220 -#: ../../godmode/setup/setup_visuals.php:231 -#: ../../godmode/setup/setup_visuals.php:318 -#: ../../operation/agentes/estado_agente.php:578 -#: ../../operation/visual_console/pure_ajax.php:130 -#: ../../operation/visual_console/render_view.php:133 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:79 -#: ../../enterprise/meta/screens/screens.visualmap.php:149 -#: ../../enterprise/meta/screens/screens.visualmap.php:165 -#: ../../enterprise/operation/agentes/policy_view.php:51 -msgid "View" -msgstr "View" - -#: ../../godmode/agentes/configurar_agente.php:293 -#: ../../godmode/agentes/configurar_agente.php:520 ../../godmode/menu.php:231 -#: ../../godmode/menu.php:238 ../../operation/agentes/estado_agente.php:135 -#: ../../operation/gis_maps/render_view.php:119 -#: ../../enterprise/godmode/policies/configure_policy.php:38 -#: ../../enterprise/include/functions_policies.php:3203 -msgid "Setup" -msgstr "Setup" - -#: ../../godmode/agentes/configurar_agente.php:322 ../../godmode/menu.php:101 -msgid "Module templates" -msgstr "Module templates" - -#: ../../godmode/agentes/configurar_agente.php:374 -#: ../../operation/agentes/ver_agente.php:1008 -msgid "GIS data" -msgstr "GIS data" - -#: ../../godmode/agentes/configurar_agente.php:385 -#: ../../enterprise/godmode/policies/policy.php:58 -#: ../../enterprise/include/functions_policies.php:3221 -msgid "Agent wizard" -msgstr "Agent wizard" - -#: ../../godmode/agentes/configurar_agente.php:392 -#: ../../godmode/agentes/configurar_agente.php:558 -#: ../../godmode/setup/snmp_wizard.php:30 -#: ../../enterprise/include/functions_policies.php:3228 -msgid "SNMP Wizard" -msgstr "SNMP Wizard" - -#: ../../godmode/agentes/configurar_agente.php:397 -#: ../../godmode/agentes/configurar_agente.php:561 -#: ../../enterprise/include/functions_policies.php:3233 -msgid "SNMP Interfaces wizard" -msgstr "SNMP Interface wizard" - -#: ../../godmode/agentes/configurar_agente.php:402 -#: ../../godmode/agentes/configurar_agente.php:564 -#: ../../enterprise/include/functions_policies.php:3238 -msgid "WMI Wizard" -msgstr "WMI Wizard" - -#: ../../godmode/agentes/configurar_agente.php:523 -#: ../../enterprise/godmode/agentes/collections.php:229 -#: ../../enterprise/include/functions_groups.php:75 -#: ../../enterprise/operation/agentes/ver_agente.php:190 -msgid "Collection" -msgstr "Collection" - -#: ../../godmode/agentes/configurar_agente.php:527 -#: ../../include/functions_reports.php:628 -#: ../../include/functions_reports.php:629 -#: ../../include/functions_reports.php:631 -#: ../../include/functions_reporting.php:1590 -#: ../../enterprise/godmode/agentes/configurar_agente.php:33 -#: ../../enterprise/include/functions_reporting_csv.php:304 -#: ../../enterprise/operation/agentes/ver_agente.php:174 -#: ../../enterprise/operation/inventory/inventory.php:112 -#: ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:24 -msgid "Inventory" -msgstr "Inventory" - -#: ../../godmode/agentes/configurar_agente.php:531 -#: ../../enterprise/godmode/agentes/configurar_agente.php:49 -#: ../../enterprise/godmode/policies/policy.php:54 -#: ../../enterprise/include/functions_policies.php:3316 -msgid "Agent plugins" -msgstr "Agent plugins" - -#: ../../godmode/agentes/configurar_agente.php:538 -#: ../../godmode/events/custom_events.php:95 -#: ../../godmode/events/custom_events.php:161 -#: ../../include/functions_events.php:43 -#: ../../include/functions_events.php:991 -#: ../../include/functions_events.php:3573 -#: ../../operation/agentes/estado_monitores.php:449 -#: ../../operation/events/events.build_table.php:204 -#: ../../operation/events/events_rss.php:185 -#: ../../operation/snmpconsole/snmp_view.php:382 -#: ../../operation/snmpconsole/snmp_view.php:627 -#: ../../operation/snmpconsole/snmp_view.php:921 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:169 -#: ../../enterprise/meta/include/functions_events_meta.php:82 -msgid "Alert" -msgstr "Alert" - -#: ../../godmode/agentes/configurar_agente.php:542 ../../godmode/menu.php:151 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:137 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:251 -#: ../../enterprise/include/functions_reporting.php:81 -#: ../../enterprise/include/functions_reporting.php:6156 -#: ../../enterprise/include/functions_reporting.php:6180 -#: ../../enterprise/include/functions_reporting.php:6234 -#: ../../enterprise/meta/include/functions_alerts_meta.php:107 -#: ../../enterprise/meta/include/functions_alerts_meta.php:125 -msgid "Templates" -msgstr "Templates" - -#: ../../godmode/agentes/configurar_agente.php:546 -msgid "Gis" -msgstr "Gis" - -#: ../../godmode/agentes/configurar_agente.php:572 -msgid "SNMP explorer" -msgstr "SNMP explorer" - -#: ../../godmode/agentes/configurar_agente.php:587 -msgid "Agent manager" -msgstr "Agent manager" - -#: ../../godmode/agentes/configurar_agente.php:610 -#: ../../godmode/servers/modificar_server.php:135 -msgid "Conf file deleted successfully" -msgstr "Conf file deleted successfully" - -#: ../../godmode/agentes/configurar_agente.php:611 -#: ../../godmode/servers/modificar_server.php:136 -msgid "Could not delete conf file" -msgstr "Could not delete conf file" - -#: ../../godmode/agentes/configurar_agente.php:621 -#: ../../godmode/agentes/planned_downtime.editor.php:365 -#: ../../godmode/alerts/alert_actions.php:184 -#: ../../godmode/alerts/alert_commands.php:293 -#: ../../godmode/alerts/alert_list.php:104 -#: ../../godmode/alerts/alert_special_days.php:148 -#: ../../godmode/alerts/configure_alert_template.php:431 -#: ../../godmode/modules/manage_nc_groups.php:73 -#: ../../godmode/setup/gis.php:45 ../../godmode/setup/links.php:41 -#: ../../godmode/setup/news.php:56 -#: ../../godmode/snmpconsole/snmp_alert.php:247 -#: ../../godmode/snmpconsole/snmp_filters.php:66 -#: ../../godmode/users/configure_user.php:236 -#: ../../godmode/users/profile_list.php:241 -#: ../../include/functions_planned_downtimes.php:113 -#: ../../include/functions_planned_downtimes.php:731 -#: ../../enterprise/extensions/cron/main.php:83 -#: ../../enterprise/extensions/cron/main.php:142 -#: ../../enterprise/extensions/ipam/ipam_action.php:96 -#: ../../enterprise/godmode/alerts/alert_events.php:350 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:35 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:86 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:129 -#: ../../enterprise/godmode/servers/manage_export.php:105 -#: ../../enterprise/godmode/servers/manage_export.php:114 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:107 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:215 -#: ../../enterprise/operation/agentes/transactional_map.php:86 -msgid "Successfully created" -msgstr "Successfully created" - -#: ../../godmode/agentes/configurar_agente.php:647 -#: ../../godmode/agentes/configurar_agente.php:652 -msgid "No data to normalize" -msgstr "No data to normalise" - -#: ../../godmode/agentes/configurar_agente.php:656 -#, php-format -msgid "Deleted data above %f" -msgstr "Deleted data above %f" - -#: ../../godmode/agentes/configurar_agente.php:657 -#, php-format -msgid "Error normalizing module %s" -msgstr "Error normalising module %s" - -#: ../../godmode/agentes/configurar_agente.php:782 -msgid "There was a problem updating the agent" -msgstr "There was a problem updating the agent" - -#: ../../godmode/agentes/configurar_agente.php:804 -#: ../../godmode/agentes/planned_downtime.editor.php:368 -#: ../../godmode/alerts/alert_actions.php:262 -#: ../../godmode/alerts/alert_list.php:196 -#: ../../godmode/alerts/alert_special_days.php:206 -#: ../../godmode/alerts/alert_templates.php:151 -#: ../../godmode/alerts/configure_alert_command.php:93 -#: ../../godmode/alerts/configure_alert_template.php:444 -#: ../../godmode/events/event_edit_filter.php:173 -#: ../../godmode/massive/massive_edit_modules.php:152 -#: ../../godmode/modules/manage_nc_groups.php:98 -#: ../../godmode/netflow/nf_edit_form.php:131 ../../godmode/setup/gis.php:39 -#: ../../godmode/setup/links.php:58 ../../godmode/setup/news.php:87 -#: ../../godmode/snmpconsole/snmp_alert.php:318 -#: ../../godmode/snmpconsole/snmp_filters.php:54 -#: ../../godmode/users/profile_list.php:223 -#: ../../include/functions_planned_downtimes.php:125 -#: ../../operation/incidents/incident.php:110 -#: ../../operation/snmpconsole/snmp_view.php:114 -#: ../../enterprise/extensions/ipam/ipam_action.php:131 -#: ../../enterprise/extensions/ipam/ipam_massive.php:41 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:98 -#: ../../enterprise/godmode/alerts/alert_events.php:374 -#: ../../enterprise/godmode/alerts/alert_events_list.php:94 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:158 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:104 -#: ../../enterprise/godmode/policies/policy_modules.php:1038 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:66 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:51 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:120 -#: ../../enterprise/operation/agentes/transactional_map.php:117 -msgid "Successfully updated" -msgstr "Successfully updated" - -#: ../../godmode/agentes/configurar_agente.php:826 -msgid "There was a problem loading the agent" -msgstr "There was a problem loading the agent" - -#: ../../godmode/agentes/configurar_agente.php:1227 -msgid "" -"There was a problem updating module. Another module already exists with the " -"same name." -msgstr "" -"There was an issue updating the module: there's another module with the same " -"name" - -#: ../../godmode/agentes/configurar_agente.php:1230 -msgid "" -"There was a problem updating module. Some required fields are missed: (name)" -msgstr "" -"There was an issue updating the module: some required fields are missing: " -"(name)" - -#: ../../godmode/agentes/configurar_agente.php:1233 -msgid "There was a problem updating module. \"No change\"" -msgstr "A problem occurred when updating the module. \"No change\"" - -#: ../../godmode/agentes/configurar_agente.php:1238 -msgid "There was a problem updating module. Processing error" -msgstr "A problem occurred when updating the module. Processing error" - -#: ../../godmode/agentes/configurar_agente.php:1258 -msgid "Module successfully updated" -msgstr "Module successfully updated" - -#: ../../godmode/agentes/configurar_agente.php:1367 -msgid "" -"There was a problem adding module. Another module already exists with the " -"same name." -msgstr "" -"A problem occurred when adding the module. There's another module with the " -"same name." - -#: ../../godmode/agentes/configurar_agente.php:1370 -msgid "" -"There was a problem adding module. Some required fields are missed : (name)" -msgstr "" -"There was a problem adding the module: some required fields are missing: " -"(name)" - -#: ../../godmode/agentes/configurar_agente.php:1375 -msgid "There was a problem adding module. Processing error" -msgstr "There was a problem adding the module. Processing error." - -#: ../../godmode/agentes/configurar_agente.php:1393 -#: ../../godmode/reporting/graph_builder.php:258 -msgid "Module added successfully" -msgstr "Module added successfully" - -#: ../../godmode/agentes/configurar_agente.php:1511 -msgid "There was a problem deleting the module" -msgstr "There was a problem deleting the module" - -#: ../../godmode/agentes/configurar_agente.php:1514 -msgid "Module deleted succesfully" -msgstr "Module deleted succesfully" - -#: ../../godmode/agentes/configurar_agente.php:1528 -#: ../../enterprise/godmode/policies/policy_modules.php:1143 -#, php-format -msgid "copy of %s" -msgstr "copy of %s" - -#: ../../godmode/agentes/configurar_agente.php:1538 -#: ../../enterprise/godmode/policies/policy_modules.php:1155 -#, php-format -msgid "copy of %s (%d)" -msgstr "copy of %s (%d)" - -#: ../../godmode/agentes/configurar_agente.php:1571 -#: ../../godmode/agentes/modificar_agente.php:116 -#: ../../godmode/alerts/alert_list.php:230 -#: ../../godmode/massive/massive_enable_disable_alerts.php:78 -#: ../../godmode/users/user_list.php:208 -#: ../../include/ajax/alert_list.ajax.php:80 -#: ../../enterprise/godmode/alerts/alert_events_list.php:221 -#: ../../enterprise/godmode/policies/policy_alerts.php:88 -#: ../../enterprise/godmode/policies/policy_modules.php:422 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:123 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:237 -msgid "Successfully enabled" -msgstr "Successfully enabled" - -#: ../../godmode/agentes/configurar_agente.php:1571 -#: ../../godmode/agentes/modificar_agente.php:116 -#: ../../godmode/alerts/alert_list.php:230 -#: ../../godmode/massive/massive_enable_disable_alerts.php:78 -#: ../../include/ajax/alert_list.ajax.php:82 -#: ../../enterprise/godmode/alerts/alert_events_list.php:222 -#: ../../enterprise/godmode/policies/policy_alerts.php:88 -#: ../../enterprise/godmode/policies/policy_modules.php:422 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:124 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:238 -msgid "Could not be enabled" -msgstr "Could not be enabled" - -#: ../../godmode/agentes/configurar_agente.php:1586 -#: ../../godmode/agentes/modificar_agente.php:135 -#: ../../godmode/alerts/alert_list.php:247 -#: ../../godmode/massive/massive_enable_disable_alerts.php:96 -#: ../../godmode/users/user_list.php:203 -#: ../../include/ajax/alert_list.ajax.php:91 -#: ../../enterprise/godmode/alerts/alert_events_list.php:238 -#: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../enterprise/godmode/policies/policy_modules.php:436 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:129 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:248 -msgid "Successfully disabled" -msgstr "Successfully disabled" - -#: ../../godmode/agentes/configurar_agente.php:1586 -#: ../../godmode/agentes/modificar_agente.php:135 -#: ../../godmode/alerts/alert_list.php:247 -#: ../../godmode/massive/massive_enable_disable_alerts.php:96 -#: ../../include/ajax/alert_list.ajax.php:93 -#: ../../enterprise/godmode/alerts/alert_events_list.php:239 -#: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../enterprise/godmode/policies/policy_modules.php:436 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:130 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:249 -msgid "Could not be disabled" -msgstr "Could not be disabled" - -#: ../../godmode/agentes/configurar_agente.php:1614 -#: ../../include/functions_api.php:7659 -msgid "Save by Pandora Console" -msgstr "Save from Pandora Console" - -#: ../../godmode/agentes/configurar_agente.php:1629 -#: ../../include/functions_api.php:7660 -msgid "Update by Pandora Console" -msgstr "Update from Pandora Console" - -#: ../../godmode/agentes/configurar_agente.php:1642 -#: ../../include/functions_api.php:7661 -msgid "Insert by Pandora Console" -msgstr "Insert from Pandora Console" - -#: ../../godmode/agentes/configurar_agente.php:1696 -#: ../../godmode/agentes/configurar_agente.php:1706 -msgid "Invalid tab specified" -msgstr "Invalid tab specified" - -#: ../../godmode/agentes/configure_field.php:36 -msgid "Update agent custom field" -msgstr "Update agent's custom fields" - -#: ../../godmode/agentes/configure_field.php:39 -msgid "Create agent custom field" -msgstr "Create agent custom field" - -#: ../../godmode/agentes/configure_field.php:51 -#: ../../godmode/agentes/fields_manager.php:96 -#: ../../operation/agentes/custom_fields.php:61 -msgid "Display on front" -msgstr "Display up front" - -#: ../../godmode/agentes/configure_field.php:51 -#: ../../godmode/agentes/fields_manager.php:96 -#: ../../operation/agentes/custom_fields.php:62 -msgid "" -"The fields with display on front enabled will be displayed into the agent " -"details" -msgstr "" -"The fields with up front display enabled will be shown on the agent's details" - -#: ../../godmode/agentes/fields_manager.php:31 -msgid "Agents custom fields manager" -msgstr "Agent's custom field manager" - -#: ../../godmode/agentes/fields_manager.php:44 -msgid "The name must not be empty" -msgstr "Name cannot be left empty" - -#: ../../godmode/agentes/fields_manager.php:47 -msgid "The name must be unique" -msgstr "Name must be unique" - -#: ../../godmode/agentes/fields_manager.php:52 -msgid "Field successfully created" -msgstr "Custom field successfully created" - -#: ../../godmode/agentes/fields_manager.php:69 -msgid "Field successfully updated" -msgstr "Field successfully updated" - -#: ../../godmode/agentes/fields_manager.php:72 -msgid "There was a problem modifying field" -msgstr "There was a problem modifying field" - -#: ../../godmode/agentes/fields_manager.php:82 -msgid "There was a problem deleting field" -msgstr "There was an issue deleting the field" - -#: ../../godmode/agentes/fields_manager.php:84 -msgid "Field successfully deleted" -msgstr "Field successfully deleted" - -#: ../../godmode/agentes/fields_manager.php:95 -#: ../../godmode/alerts/alert_view.php:441 -#: ../../godmode/alerts/alert_view.php:531 -#: ../../operation/agentes/custom_fields.php:59 -msgid "Field" -msgstr "Field" - -#: ../../godmode/agentes/fields_manager.php:138 -msgid "Create field" -msgstr "Create field" - -#: ../../godmode/agentes/modificar_agente.php:62 -msgid "Agents defined in Pandora" -msgstr "Agents defined in Pandora" - -#: ../../godmode/agentes/modificar_agente.php:87 -msgid "Success deleted agent." -msgstr "Success deleting agent." - -#: ../../godmode/agentes/modificar_agente.php:87 -msgid "Could not be deleted." -msgstr "Agent could not be deleted" - -#: ../../godmode/agentes/modificar_agente.php:94 -msgid "Maybe the files conf or md5 could not be deleted" -msgstr "It's possible the .conf or md5 files couldn't be deleted" - -#: ../../godmode/agentes/modificar_agente.php:154 -msgid "Show Agents" -msgstr "Show Agents" - -#: ../../godmode/agentes/modificar_agente.php:156 -msgid "Everyone" -msgstr "Everyone" - -#: ../../godmode/agentes/modificar_agente.php:157 -#: ../../operation/agentes/status_monitor.php:398 -msgid "Only disabled" -msgstr "Only disabled" - -#: ../../godmode/agentes/modificar_agente.php:158 -#: ../../operation/agentes/status_monitor.php:398 -msgid "Only enabled" -msgstr "Only enabled" - -#: ../../godmode/agentes/modificar_agente.php:165 -#: ../../godmode/agentes/planned_downtime.editor.php:706 -#: ../../operation/agentes/estado_agente.php:175 -#: ../../enterprise/godmode/policies/policies.php:233 -msgid "Recursion" -msgstr "Recursion" - -#: ../../godmode/agentes/modificar_agente.php:481 -msgid "Remote agent configuration" -msgstr "Remote agent configuration" - -#: ../../godmode/agentes/modificar_agente.php:481 -msgid "R" -msgstr "R" - -#: ../../godmode/agentes/modificar_agente.php:597 -msgid "Edit remote config" -msgstr "Edit remote configuration" - -#: ../../godmode/agentes/modificar_agente.php:624 -msgid "Enable agent" -msgstr "Enable agent" - -#: ../../godmode/agentes/modificar_agente.php:629 -msgid "Disable agent" -msgstr "Disable agent" - -#: ../../godmode/agentes/modificar_agente.php:646 -#: ../../operation/agentes/estado_agente.php:643 -#: ../../operation/agentes/group_view.php:430 -msgid "There are no defined agents" -msgstr "There are no defined agents" - -#: ../../godmode/agentes/modificar_agente.php:654 -#: ../../operation/agentes/estado_agente.php:627 -#: ../../operation/agentes/estado_agente.php:647 -#: ../../operation/snmpconsole/snmp_statistics.php:151 -#: ../../operation/snmpconsole/snmp_view.php:674 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:75 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:199 -msgid "Create agent" -msgstr "Create agent" - -#: ../../godmode/agentes/module_manager.php:78 -msgid "Create a new data server module" -msgstr "Create a new data server module" - -#: ../../godmode/agentes/module_manager.php:80 -msgid "Create a new network server module" -msgstr "Create a new network server module" - -#: ../../godmode/agentes/module_manager.php:82 -msgid "Create a new plugin server module" -msgstr "Create a new plug-in server module" - -#: ../../godmode/agentes/module_manager.php:84 -msgid "Create a new WMI server module" -msgstr "Create a new WMI server module" - -#: ../../godmode/agentes/module_manager.php:86 -msgid "Create a new prediction server module" -msgstr "Create a new prediction server module" - -#: ../../godmode/agentes/module_manager.php:120 -#: ../../operation/agentes/estado_monitores.php:472 -msgid "Show in hierachy mode" -msgstr "Show in hierarchy mode" - -#: ../../godmode/agentes/module_manager.php:148 -msgid "Get more modules in Pandora FMS Library" -msgstr "Get more modules on the Pandora FMS Library" - -#: ../../godmode/agentes/module_manager.php:175 -msgid "Nice try buddy" -msgstr "Nice try, buddy!" - -#: ../../godmode/agentes/module_manager.php:272 -#, php-format -msgid "There was a problem deleting %s modules, none deleted." -msgstr "There was a problem deleting %s modules, none deleted." - -#: ../../godmode/agentes/module_manager.php:277 -msgid "All Modules deleted succesfully" -msgstr "All Modules deleted succesfully" - -#: ../../godmode/agentes/module_manager.php:281 -#, php-format -msgid "There was a problem only deleted %s modules of %s total." -msgstr "There was a problem only deleted %s modules of %s total." - -#: ../../godmode/agentes/module_manager.php:523 -#: ../../include/ajax/module.php:345 -#: ../../operation/agentes/datos_agente.php:286 -msgid "No available data to show" -msgstr "No available data to show" - -#: ../../godmode/agentes/module_manager.php:551 -#: ../../godmode/alerts/alert_view.php:123 ../../include/ajax/module.php:735 -#: ../../operation/agentes/alerts_status.php:412 -#: ../../operation/agentes/alerts_status.php:459 -#: ../../operation/agentes/status_monitor.php:946 -#: ../../enterprise/extensions/resource_exportation/functions.php:17 -#: ../../enterprise/godmode/agentes/collection_manager.php:162 -#: ../../enterprise/godmode/agentes/inventory_manager.php:231 -#: ../../enterprise/godmode/agentes/plugins_manager.php:144 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:91 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:83 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:82 -#: ../../enterprise/godmode/policies/policy_queue.php:331 -#: ../../enterprise/godmode/policies/policy_queue.php:374 -#: ../../enterprise/include/functions_policies.php:3789 -#: ../../enterprise/meta/advanced/policymanager.queue.php:212 -#: ../../enterprise/meta/advanced/policymanager.queue.php:256 -#: ../../enterprise/meta/advanced/policymanager.sync.php:306 -#: ../../enterprise/operation/agentes/collection_view.php:62 -#: ../../enterprise/operation/agentes/policy_view.php:48 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:201 -msgid "Policy" -msgstr "Policy" - -#: ../../godmode/agentes/module_manager.php:551 -#: ../../godmode/reporting/reporting_builder.list_items.php:288 -#: ../../godmode/snmpconsole/snmp_alert.php:1148 -#: ../../include/ajax/module.php:735 -#: ../../operation/agentes/alerts_status.php:413 -#: ../../operation/agentes/alerts_status.php:459 -#: ../../operation/agentes/status_monitor.php:946 -#: ../../enterprise/godmode/agentes/collection_manager.php:162 -#: ../../enterprise/godmode/agentes/inventory_manager.php:232 -#: ../../enterprise/operation/agentes/collection_view.php:62 -msgid "P." -msgstr "P." - -#: ../../godmode/agentes/module_manager.php:554 -#: ../../include/functions_events.php:898 -#: ../../mobile/operation/agents.php:322 -#: ../../operation/agentes/alerts_status.php:417 -#: ../../operation/agentes/alerts_status.php:462 -#: ../../operation/agentes/alerts_status.php:497 -#: ../../operation/agentes/alerts_status.php:532 -#: ../../enterprise/godmode/admin_access_logs.php:22 -#: ../../enterprise/godmode/policies/policy_agents.php:379 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:217 -#: ../../enterprise/operation/agentes/policy_view.php:47 -#: ../../enterprise/operation/agentes/policy_view.php:134 -#: ../../enterprise/operation/agentes/policy_view.php:193 -#: ../../enterprise/operation/agentes/policy_view.php:198 -msgid "S." -msgstr "S." - -#: ../../godmode/agentes/module_manager.php:565 -#: ../../include/ajax/module.php:748 -#: ../../operation/agentes/status_monitor.php:980 -msgid "Warn" -msgstr "Warn" - -#: ../../godmode/agentes/module_manager.php:569 -#: ../../enterprise/godmode/policies/policy_agents.php:383 -msgid "D." -msgstr "D." - -#: ../../godmode/agentes/module_manager.php:679 -#: ../../godmode/agentes/module_manager.php:689 -#: ../../include/ajax/module.php:836 ../../include/ajax/module.php:846 -msgid "Adopted" -msgstr "Adopted" - -#: ../../godmode/agentes/module_manager.php:689 -#: ../../godmode/agentes/module_manager.php:693 -#: ../../godmode/massive/massive_edit_modules.php:572 -#: ../../include/ajax/module.php:846 ../../include/ajax/module.php:850 -msgid "Unlinked" -msgstr "Not linked" - -#: ../../godmode/agentes/module_manager.php:716 -#: ../../enterprise/operation/agentes/policy_view.php:355 -msgid "Non initialized module" -msgstr "Non initialised module" - -#: ../../godmode/agentes/module_manager.php:733 -#: ../../godmode/agentes/module_manager_editor_common.php:398 -msgid "" -"The policy modules of data type will only update their intervals when policy " -"is applied." -msgstr "" -"The policy modules for the data type will only update their intervals when a " -"policy is applied." - -#: ../../godmode/agentes/module_manager.php:749 -#: ../../enterprise/godmode/policies/policy_modules.php:1241 -#: ../../enterprise/godmode/policies/policy_modules.php:1242 -msgid "Enable module" -msgstr "Enable module" - -#: ../../godmode/agentes/module_manager.php:754 -#: ../../enterprise/godmode/policies/policy_modules.php:1247 -#: ../../enterprise/godmode/policies/policy_modules.php:1248 -msgid "Disable module" -msgstr "Disable module" - -#: ../../godmode/agentes/module_manager.php:761 -#: ../../godmode/alerts/alert_templates.php:338 -#: ../../godmode/modules/manage_network_components.php:613 -#: ../../godmode/snmpconsole/snmp_alert.php:1226 -#: ../../enterprise/godmode/modules/local_components.php:525 -#: ../../enterprise/godmode/policies/policy_modules.php:1255 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:365 -msgid "Duplicate" -msgstr "Duplicate" - -#: ../../godmode/agentes/module_manager.php:769 -msgid "Normalize" -msgstr "Normalize" - -#: ../../godmode/agentes/module_manager.php:775 -msgid "Normalize (Disabled)" -msgstr "Normalize (Disabled)" - -#: ../../godmode/agentes/module_manager.php:784 -#: ../../include/functions_snmp_browser.php:475 -msgid "Create network component" -msgstr "Create network component" - -#: ../../godmode/agentes/module_manager.php:789 -msgid "Create network component (Disabled)" -msgstr "Create network component (Disabled)" - -#: ../../godmode/agentes/module_manager_editor.php:390 -#: ../../enterprise/godmode/policies/policies.php:191 -#: ../../enterprise/godmode/policies/policy_agents.php:80 -#: ../../enterprise/godmode/policies/policy_alerts.php:60 -#: ../../enterprise/godmode/policies/policy_collections.php:37 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:52 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:53 -#: ../../enterprise/godmode/policies/policy_linking.php:32 -#: ../../enterprise/godmode/policies/policy_modules.php:486 -msgid "This policy is applying and cannot be modified" -msgstr "This policy is being applied and cannot be modified" - -#: ../../godmode/agentes/module_manager_editor.php:394 -#: ../../enterprise/include/functions_policies.php:3050 -msgid "Module will be linked in the next application" -msgstr "Module will be linked upon next use" - -#: ../../godmode/agentes/module_manager_editor.php:402 -#: ../../enterprise/include/functions_policies.php:3055 -msgid "Module will be unlinked in the next application" -msgstr "Module will be unlinked upon next use" - -#: ../../godmode/agentes/module_manager_editor.php:490 -#, php-format -msgid "DEBUG: Invalid module type specified in %s:%s" -msgstr "DEBUG: Invalid module type specified in %s:%s" - -#: ../../godmode/agentes/module_manager_editor.php:491 -msgid "" -"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 "" -"Most likely you've recently upgraded from an earlier version of Pandora and " -"you 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" - -#: ../../godmode/agentes/module_manager_editor.php:517 -#: ../../godmode/agentes/module_manager_editor_common.php:667 -msgid "Custom macros" -msgstr "Custom macros" - -#: ../../godmode/agentes/module_manager_editor.php:519 -msgid "Module relations" -msgstr "Module relations" - -#: ../../godmode/agentes/module_manager_editor.php:565 -#: ../../enterprise/godmode/policies/policy_modules.php:1357 -msgid "No module name provided" -msgstr "No module name provided" - -#: ../../godmode/agentes/module_manager_editor.php:566 -#: ../../enterprise/godmode/policies/policy_modules.php:1358 -msgid "No target IP provided" -msgstr "No target IP provided" - -#: ../../godmode/agentes/module_manager_editor.php:567 -#: ../../enterprise/godmode/policies/policy_modules.php:1359 -msgid "No SNMP OID provided" -msgstr "No SNMP OID provided" - -#: ../../godmode/agentes/module_manager_editor.php:568 -msgid "No module to predict" -msgstr "No module to predict" - -#: ../../godmode/agentes/module_manager_editor.php:569 -msgid "No plug-in provided" -msgstr "No plug-in provided" - -#: ../../godmode/agentes/module_manager_editor.php:592 -msgid "" -"Error, The field name and name in module_name in data configuration are " -"different." -msgstr "" -"Error: field name and name in the module_name string under data " -"configuration are different." - -#: ../../godmode/agentes/module_manager_editor_common.php:70 -msgid "Using module component" -msgstr "Using module component" - -#: ../../godmode/agentes/module_manager_editor_common.php:76 -#: ../../godmode/agentes/module_manager_editor_common.php:85 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:54 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:64 -msgid "Manual setup" -msgstr "Manual setup" - -#: ../../godmode/agentes/module_manager_editor_common.php:161 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1423 -msgid "Delete module" -msgstr "Delete module" - -#: ../../godmode/agentes/module_manager_editor_common.php:176 -#: ../../godmode/agentes/module_manager_editor_common.php:182 -#: ../../godmode/massive/massive_edit_modules.php:521 -#: ../../include/functions_graph.php:5310 -#: ../../include/functions_treeview.php:118 -#: ../../operation/agentes/status_monitor.php:312 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1382 -msgid "Not assigned" -msgstr "Not assigned" - -#: ../../godmode/agentes/module_manager_editor_common.php:180 -msgid "Module parent" -msgstr "Module parent" - -#: ../../godmode/agentes/module_manager_editor_common.php:256 -msgid "Dynamic Threshold Interval" -msgstr "Dynamic Threshold Interval" - -#: ../../godmode/agentes/module_manager_editor_common.php:258 -#: ../../godmode/modules/manage_network_components_form_common.php:109 -#: ../../enterprise/godmode/modules/configure_local_component.php:228 -msgid "Advanced options Dynamic Threshold" -msgstr "Advanced options Dynamic Threshold" - -#: ../../godmode/agentes/module_manager_editor_common.php:268 -msgid "Dynamic Threshold Min. " -msgstr "Dynamic Threshold Min. " - -#: ../../godmode/agentes/module_manager_editor_common.php:271 -msgid "Dynamic Threshold Max. " -msgstr "Dynamic Threshold Max. " - -#: ../../godmode/agentes/module_manager_editor_common.php:274 -msgid "Dynamic Threshold Two Tailed: " -msgstr "Dynamic Threshold Two Tailed: " - -#: ../../godmode/agentes/module_manager_editor_common.php:278 -#: ../../godmode/massive/massive_edit_modules.php:368 -#: ../../godmode/modules/manage_network_components_form_common.php:118 -#: ../../include/functions_alerts.php:573 -#: ../../include/functions_treeview.php:98 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:237 -#: ../../enterprise/godmode/modules/configure_local_component.php:237 -msgid "Warning status" -msgstr "Warning status" - -#: ../../godmode/agentes/module_manager_editor_common.php:280 -#: ../../godmode/agentes/module_manager_editor_common.php:301 -msgid "Min. " -msgstr "Min. " - -#: ../../godmode/agentes/module_manager_editor_common.php:283 -#: ../../godmode/agentes/module_manager_editor_common.php:304 -#: ../../godmode/alerts/configure_alert_template.php:625 -#: ../../godmode/massive/massive_edit_modules.php:381 -#: ../../godmode/massive/massive_edit_modules.php:427 -#: ../../godmode/massive/massive_edit_modules.php:516 -#: ../../godmode/modules/manage_network_components_form_common.php:122 -#: ../../godmode/modules/manage_network_components_form_common.php:139 -#: ../../include/functions_alerts.php:569 -#: ../../include/functions_graph.php:4322 -#: ../../include/functions_reporting_html.php:3141 -#: ../../include/functions_treeview.php:94 -#: ../../include/functions_treeview.php:107 -#: ../../enterprise/dashboard/widgets/top_n.php:78 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:250 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:279 -#: ../../enterprise/godmode/modules/configure_local_component.php:241 -#: ../../enterprise/godmode/modules/configure_local_component.php:258 -msgid "Max." -msgstr "Max." - -#: ../../godmode/agentes/module_manager_editor_common.php:288 -#: ../../godmode/agentes/module_manager_editor_common.php:309 -#: ../../godmode/massive/massive_edit_modules.php:390 -#: ../../godmode/massive/massive_edit_modules.php:436 -#: ../../godmode/modules/manage_network_components_form_common.php:125 -#: ../../godmode/modules/manage_network_components_form_common.php:142 -#: ../../include/functions_treeview.php:91 -#: ../../include/functions_treeview.php:104 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:258 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:287 -#: ../../enterprise/godmode/modules/configure_local_component.php:244 -#: ../../enterprise/godmode/modules/configure_local_component.php:261 -msgid "Str." -msgstr "Str." - -#: ../../godmode/agentes/module_manager_editor_common.php:292 -#: ../../godmode/agentes/module_manager_editor_common.php:314 -#: ../../godmode/massive/massive_edit_modules.php:400 -#: ../../godmode/massive/massive_edit_modules.php:446 -#: ../../godmode/modules/manage_network_components_form_common.php:128 -#: ../../godmode/modules/manage_network_components_form_common.php:145 -#: ../../enterprise/godmode/modules/configure_local_component.php:247 -#: ../../enterprise/godmode/modules/configure_local_component.php:264 -#: ../../enterprise/meta/include/functions_wizard_meta.php:844 -#: ../../enterprise/meta/include/functions_wizard_meta.php:853 -#: ../../enterprise/meta/include/functions_wizard_meta.php:930 -#: ../../enterprise/meta/include/functions_wizard_meta.php:939 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1131 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1140 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1347 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1356 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1428 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1437 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1544 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1553 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1569 -msgid "Inverse interval" -msgstr "Inverse interval" - -#: ../../godmode/agentes/module_manager_editor_common.php:299 -#: ../../godmode/massive/massive_edit_modules.php:414 -#: ../../godmode/modules/manage_network_components_form_common.php:135 -#: ../../include/functions_alerts.php:574 -#: ../../include/functions_treeview.php:110 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../enterprise/godmode/modules/configure_local_component.php:254 -msgid "Critical status" -msgstr "Critical status" - -#: ../../godmode/agentes/module_manager_editor_common.php:318 -#: ../../godmode/massive/massive_edit_modules.php:543 -#: ../../godmode/modules/manage_network_components_form_common.php:148 -#: ../../enterprise/godmode/modules/configure_local_component.php:267 -msgid "FF threshold" -msgstr "FF threshold" - -#: ../../godmode/agentes/module_manager_editor_common.php:321 -#: ../../godmode/massive/massive_edit_modules.php:545 -#: ../../godmode/massive/massive_edit_modules.php:546 -#: ../../godmode/modules/manage_network_components_form_common.php:150 -#: ../../enterprise/godmode/modules/configure_local_component.php:269 -msgid "All state changing" -msgstr "Change all statuses" - -#: ../../godmode/agentes/module_manager_editor_common.php:324 -#: ../../godmode/massive/massive_edit_modules.php:545 -#: ../../godmode/massive/massive_edit_modules.php:547 -#: ../../godmode/modules/manage_network_components_form_common.php:153 -#: ../../enterprise/godmode/modules/configure_local_component.php:272 -msgid "Each state changing" -msgstr "Change each status" - -#: ../../godmode/agentes/module_manager_editor_common.php:325 -#: ../../godmode/massive/massive_edit_modules.php:548 -#: ../../godmode/modules/manage_network_components_form_common.php:154 -#: ../../enterprise/godmode/modules/configure_local_component.php:273 -msgid "To normal" -msgstr "To 'normal'" - -#: ../../godmode/agentes/module_manager_editor_common.php:328 -#: ../../godmode/massive/massive_edit_modules.php:549 -#: ../../godmode/modules/manage_network_components_form_common.php:156 -#: ../../enterprise/godmode/modules/configure_local_component.php:275 -msgid "To warning" -msgstr "To 'warning'" - -#: ../../godmode/agentes/module_manager_editor_common.php:331 -#: ../../godmode/massive/massive_edit_modules.php:550 -#: ../../godmode/modules/manage_network_components_form_common.php:158 -#: ../../enterprise/godmode/modules/configure_local_component.php:277 -msgid "To critical" -msgstr "To 'critical'" - -#: ../../godmode/agentes/module_manager_editor_common.php:334 -#: ../../godmode/massive/massive_edit_modules.php:557 -#: ../../godmode/modules/manage_network_components_form_common.php:161 -#: ../../include/functions_reporting.php:2346 -#: ../../enterprise/godmode/modules/configure_local_component.php:281 -msgid "Historical data" -msgstr "Historical data" - -#: ../../godmode/agentes/module_manager_editor_common.php:366 -#: ../../godmode/massive/massive_edit_modules.php:538 -#: ../../godmode/modules/manage_network_components_form_common.php:168 -#: ../../include/functions_netflow.php:1131 -#: ../../include/functions_netflow.php:1141 -#: ../../include/functions_netflow.php:1159 -#: ../../include/functions_netflow.php:1167 -#: ../../include/functions_netflow.php:1190 -#: ../../include/functions_netflow.php:1248 -#: ../../include/functions_netflow.php:1254 -#: ../../include/functions_netflow.php:1286 -#: ../../include/functions_reporting_html.php:2117 -#: ../../enterprise/godmode/modules/configure_local_component.php:296 -#: ../../enterprise/include/functions_reporting_pdf.php:2368 -#: ../../enterprise/meta/include/functions_wizard_meta.php:786 -#: ../../enterprise/meta/include/functions_wizard_meta.php:904 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1082 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1365 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1446 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 -msgid "Unit" -msgstr "Unit" - -#: ../../godmode/agentes/module_manager_editor_common.php:385 -#: ../../godmode/agentes/module_manager_editor_common.php:388 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:113 -#, php-format -msgid "Agent interval x %s" -msgstr "Agent interval x %s" - -#: ../../godmode/agentes/module_manager_editor_common.php:412 -#: ../../godmode/massive/massive_edit_modules.php:475 -#: ../../godmode/modules/manage_network_components_form_network.php:80 -#: ../../godmode/modules/manage_network_components_form_plugin.php:27 -#: ../../godmode/modules/manage_network_components_form_wmi.php:56 -#: ../../godmode/setup/snmp_wizard.php:42 -#: ../../enterprise/godmode/modules/configure_local_component.php:301 -msgid "Post process" -msgstr "Post process" - -#: ../../godmode/agentes/module_manager_editor_common.php:419 -#: ../../godmode/modules/manage_network_components_form_common.php:164 -#: ../../include/functions_reports.php:568 -#: ../../include/functions_graph.php:705 -#: ../../include/functions_graph.php:3934 -#: ../../include/functions_reporting.php:3705 -#: ../../enterprise/godmode/modules/configure_local_component.php:289 -#: ../../enterprise/include/functions_reporting_csv.php:723 -#: ../../enterprise/include/functions_reporting_csv.php:739 -#: ../../enterprise/include/functions_reporting_csv.php:746 -msgid "Min. Value" -msgstr "Min. Value" - -#: ../../godmode/agentes/module_manager_editor_common.php:422 -msgid "Any value below this number is discarted." -msgstr "Any value below this number is discarded" - -#: ../../godmode/agentes/module_manager_editor_common.php:423 -#: ../../godmode/modules/manage_network_components_form_common.php:166 -#: ../../include/functions_reports.php:566 -#: ../../include/functions_graph.php:703 -#: ../../include/functions_graph.php:3933 -#: ../../include/functions_reporting.php:3702 -#: ../../enterprise/godmode/modules/configure_local_component.php:294 -#: ../../enterprise/include/functions_reporting_csv.php:759 -#: ../../enterprise/include/functions_reporting_csv.php:775 -#: ../../enterprise/include/functions_reporting_csv.php:782 -msgid "Max. Value" -msgstr "Max. Value" - -#: ../../godmode/agentes/module_manager_editor_common.php:424 -msgid "Any value over this number is discarted." -msgstr "Any value larger than this number is discarded" - -#: ../../godmode/agentes/module_manager_editor_common.php:427 -#: ../../godmode/massive/massive_edit_modules.php:532 -msgid "Export target" -msgstr "Export target" - -#: ../../godmode/agentes/module_manager_editor_common.php:433 -msgid "Not needed" -msgstr "Not needed" - -#: ../../godmode/agentes/module_manager_editor_common.php:437 -msgid "" -"In case you use an Export server you can link this module and export data to " -"one these." -msgstr "" -"In case you're using an Export server you can link this module and export " -"data to one of these." - -#: ../../godmode/agentes/module_manager_editor_common.php:451 -#: ../../godmode/massive/massive_edit_modules.php:581 -#: ../../godmode/modules/manage_network_components_form_common.php:171 -msgid "Discard unknown events" -msgstr "Discard unknown events" - -#: ../../godmode/agentes/module_manager_editor_common.php:456 -#: ../../godmode/massive/massive_edit_modules.php:552 -msgid "FF interval" -msgstr "FF interval" - -#: ../../godmode/agentes/module_manager_editor_common.php:459 -#: ../../godmode/massive/massive_edit_modules.php:553 -msgid "Module execution flip flop time interval (in secs)." -msgstr "Module execution flip flop time interval (in secs)." - -#: ../../godmode/agentes/module_manager_editor_common.php:462 -#: ../../godmode/massive/massive_edit_modules.php:554 -#: ../../enterprise/godmode/modules/configure_local_component.php:284 -msgid "FF timeout" -msgstr "FlipFlop timeout" - -#: ../../godmode/agentes/module_manager_editor_common.php:468 -#: ../../godmode/massive/massive_edit_modules.php:555 -#: ../../enterprise/godmode/modules/configure_local_component.php:286 -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 "" -"Timeout in seconds to the start of flip flop counting. If this value is " -"exceeded, the FF counter is reset. Please set it to '0' for no timeout." - -#: ../../godmode/agentes/module_manager_editor_common.php:471 -#: ../../enterprise/godmode/modules/configure_local_component.php:287 -msgid "This value can be set only in the async modules." -msgstr "This value can only be set in conjunction with asynchronous modules." - -#: ../../godmode/agentes/module_manager_editor_common.php:478 -#: ../../godmode/modules/manage_network_components_form_common.php:212 -#: ../../enterprise/godmode/modules/configure_local_component.php:387 -msgid "Tags available" -msgstr "Tags available" - -#: ../../godmode/agentes/module_manager_editor_common.php:540 -#: ../../godmode/modules/manage_network_components_form_common.php:219 -#: ../../enterprise/godmode/modules/configure_local_component.php:394 -msgid "Add tags to module" -msgstr "Add tags to module" - -#: ../../godmode/agentes/module_manager_editor_common.php:541 -#: ../../godmode/modules/manage_network_components_form_common.php:220 -#: ../../enterprise/godmode/modules/configure_local_component.php:396 -msgid "Delete tags to module" -msgstr "Delete tags from module" - -#: ../../godmode/agentes/module_manager_editor_common.php:543 -#: ../../godmode/modules/manage_network_components_form_common.php:222 -#: ../../enterprise/godmode/modules/configure_local_component.php:398 -msgid "Tags selected" -msgstr "Tags selected" - -#: ../../godmode/agentes/module_manager_editor_common.php:554 -msgid "Tags from policy" -msgstr "Tags from policy" - -#: ../../godmode/agentes/module_manager_editor_common.php:567 -msgid "The module still stores data but the alerts and events will be stop" -msgstr "Module will still store data but alerts and events will be stopped." - -#: ../../godmode/agentes/module_manager_editor_common.php:572 -#: ../../godmode/massive/massive_edit_modules.php:589 -#: ../../godmode/modules/manage_network_components_form_common.php:175 -#: ../../enterprise/godmode/modules/configure_local_component.php:344 -msgid "Critical instructions" -msgstr "Critical instructions" - -#: ../../godmode/agentes/module_manager_editor_common.php:573 -#: ../../godmode/massive/massive_edit_modules.php:589 -#: ../../godmode/modules/manage_network_components_form_common.php:175 -#: ../../enterprise/godmode/modules/configure_local_component.php:345 -msgid "Instructions when the status is critical" -msgstr "Instructions when status is critical" - -#: ../../godmode/agentes/module_manager_editor_common.php:578 -#: ../../godmode/massive/massive_edit_modules.php:593 -#: ../../godmode/modules/manage_network_components_form_common.php:179 -#: ../../enterprise/godmode/modules/configure_local_component.php:350 -msgid "Warning instructions" -msgstr "Warning instructions" - -#: ../../godmode/agentes/module_manager_editor_common.php:579 -#: ../../godmode/massive/massive_edit_modules.php:593 -#: ../../godmode/modules/manage_network_components_form_common.php:179 -#: ../../enterprise/godmode/modules/configure_local_component.php:351 -msgid "Instructions when the status is warning" -msgstr "Instructions when warning status is active" - -#: ../../godmode/agentes/module_manager_editor_common.php:583 -#: ../../godmode/massive/massive_edit_modules.php:597 -#: ../../godmode/modules/manage_network_components_form_common.php:183 -#: ../../enterprise/godmode/modules/configure_local_component.php:356 -msgid "Unknown instructions" -msgstr "Unknown instructions" - -#: ../../godmode/agentes/module_manager_editor_common.php:583 -#: ../../godmode/massive/massive_edit_modules.php:597 -#: ../../godmode/modules/manage_network_components_form_common.php:183 -#: ../../enterprise/godmode/modules/configure_local_component.php:357 -msgid "Instructions when the status is unknown" -msgstr "Instructions when status is unknown" - -#: ../../godmode/agentes/module_manager_editor_common.php:590 -#: ../../godmode/agentes/module_manager_editor_common.php:600 -#: ../../godmode/agentes/module_manager_editor_common.php:611 -msgid "Cron from" -msgstr "Cron from" - -#: ../../godmode/agentes/module_manager_editor_common.php:591 -#: ../../godmode/agentes/module_manager_editor_common.php:601 -#: ../../godmode/agentes/module_manager_editor_common.php:612 -msgid "" -"If cron is set the module interval is ignored and the module runs on the " -"specified date and time" -msgstr "" -"If cron is set, the module's interval is ignored and the module runs on the " -"specified date and time" - -#: ../../godmode/agentes/module_manager_editor_common.php:595 -#: ../../godmode/agentes/module_manager_editor_common.php:605 -#: ../../godmode/agentes/module_manager_editor_common.php:616 -msgid "Cron to" -msgstr "Cron to" - -#: ../../godmode/agentes/module_manager_editor_common.php:621 -#: ../../godmode/massive/massive_edit_modules.php:606 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:68 -msgid "Timeout" -msgstr "Timeout" - -#: ../../godmode/agentes/module_manager_editor_common.php:622 -#: ../../godmode/massive/massive_edit_modules.php:610 -msgid "Seconds that agent will wait for the execution of the module." -msgstr "Seconds that the agent will wait for the module to run." - -#: ../../godmode/agentes/module_manager_editor_common.php:624 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:65 -msgid "Retries" -msgstr "Retries" - -#: ../../godmode/agentes/module_manager_editor_common.php:625 -msgid "Number of retries that the module will attempt to run." -msgstr "Number of module launch retry attempts" - -#: ../../godmode/agentes/module_manager_editor_common.php:629 -#: ../../godmode/massive/massive_edit_modules.php:565 -#: ../../godmode/modules/manage_network_components_form_common.php:190 -#: ../../enterprise/godmode/modules/configure_local_component.php:366 -msgid "Category" -msgstr "Category" - -#: ../../godmode/agentes/module_manager_editor_common.php:657 -#: ../../godmode/alerts/configure_alert_template.php:602 -#: ../../godmode/massive/massive_edit_modules.php:513 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1317 -#: ../../godmode/reporting/visual_console_builder.wizard.php:237 -#: ../../godmode/setup/setup_visuals.php:703 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 -#: ../../include/functions_graph.php:5454 -#: ../../include/functions_reporting_html.php:732 -#: ../../include/functions_reporting_html.php:1488 -#: ../../include/functions_reporting_html.php:2594 -#: ../../include/functions_reporting_html.php:3107 #: ../../include/functions_snmp_browser.php:406 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:271 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1611 -#: ../../enterprise/include/functions_reporting_csv.php:523 -#: ../../enterprise/include/functions_reporting_csv.php:558 -#: ../../enterprise/include/functions_reporting_csv.php:594 -#: ../../enterprise/include/functions_reporting_csv.php:631 -#: ../../enterprise/include/functions_reporting_csv.php:699 -#: ../../enterprise/include/functions_reporting_csv.php:735 -#: ../../enterprise/include/functions_reporting_csv.php:771 -#: ../../enterprise/include/functions_reporting_csv.php:807 -#: ../../enterprise/include/functions_reporting_pdf.php:776 -#: ../../enterprise/include/functions_reporting_pdf.php:837 -#: ../../enterprise/include/functions_reporting_pdf.php:929 -#: ../../enterprise/operation/services/services.list.php:341 -#: ../../enterprise/operation/services/services.service.php:137 +#: ../../include/functions_graph.php:5452 +#: ../../include/functions_reporting_html.php:732 +#: ../../include/functions_reporting_html.php:1482 +#: ../../include/functions_reporting_html.php:2584 +#: ../../include/functions_reporting_html.php:3097 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 +#: ../../godmode/alerts/configure_alert_template.php:602 +#: ../../godmode/setup/setup_visuals.php:677 +#: ../../godmode/massive/massive_edit_modules.php:513 +#: ../../godmode/reporting/visual_console_builder.wizard.php:237 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1312 +#: ../../godmode/agentes/module_manager_editor_common.php:657 msgid "Value" msgstr "Value" -#: ../../godmode/agentes/module_manager_editor_common.php:701 -msgid "Add relationship" -msgstr "Add relation" +#: ../../include/functions_snmp_browser.php:420 +msgid "Syntax" +msgstr "Syntax" -#: ../../godmode/agentes/module_manager_editor_common.php:719 -msgid "Changes" -msgstr "Changes" +#: ../../include/functions_snmp_browser.php:425 +msgid "Display hint" +msgstr "Display hint" -#: ../../godmode/agentes/module_manager_editor_common.php:719 -msgid "Activate this to prevent the relation from being updated or deleted" -msgstr "Activate this to prevent the relation from being updated or deleted" +#: ../../include/functions_snmp_browser.php:430 +msgid "Max access" +msgstr "Max. access" -#: ../../godmode/agentes/module_manager_editor_common.php:1248 -#: ../../godmode/modules/manage_network_components_form_common.php:379 -#: ../../enterprise/godmode/modules/configure_local_component.php:740 -msgid "Normal Status" -msgstr "Normal Status" +#: ../../include/functions_snmp_browser.php:445 +msgid "OID Information" +msgstr "OID Information" -#: ../../godmode/agentes/module_manager_editor_common.php:1249 -#: ../../godmode/modules/manage_network_components_form_common.php:380 -#: ../../enterprise/godmode/modules/configure_local_component.php:741 -msgid "Warning Status" -msgstr "Warning Status" +#: ../../include/functions_snmp_browser.php:475 +#: ../../godmode/agentes/module_manager.php:784 +msgid "Create network component" +msgstr "Create network component" -#: ../../godmode/agentes/module_manager_editor_common.php:1250 -#: ../../godmode/modules/manage_network_components_form_common.php:381 -#: ../../enterprise/godmode/modules/configure_local_component.php:742 -msgid "Critical Status" -msgstr "Critical Status" +#: ../../include/functions_snmp_browser.php:510 +msgid "Starting OID" +msgstr "Starting OID" -#: ../../godmode/agentes/module_manager_editor_common.php:1471 -#: ../../godmode/modules/manage_network_components_form_common.php:602 -#: ../../enterprise/godmode/modules/configure_local_component.php:963 -msgid "Please introduce a maximum warning higher than the minimun warning" -msgstr "Please introduce a maximum warning higher than the minimum warning" +#: ../../include/functions_snmp_browser.php:521 +msgid "Browse" +msgstr "Browse" -#: ../../godmode/agentes/module_manager_editor_common.php:1472 -#: ../../godmode/modules/manage_network_components_form_common.php:603 -#: ../../enterprise/godmode/modules/configure_local_component.php:964 -msgid "Please introduce a maximum critical higher than the minimun critical" -msgstr "Please introduce a maximum critical higher than the minimum critical" - -#: ../../godmode/agentes/module_manager_editor_data.php:17 -#: ../../operation/agentes/status_monitor.php:380 -msgid "Data server module" -msgstr "Data server module" - -#: ../../godmode/agentes/module_manager_editor_network.php:27 -#: ../../include/functions_snmp_browser.php:603 -msgid "Search matches" -msgstr "Search matches" - -#: ../../godmode/agentes/module_manager_editor_network.php:64 -#: ../../operation/agentes/status_monitor.php:382 -msgid "Network server module" -msgstr "Network server module" - -#: ../../godmode/agentes/module_manager_editor_network.php:85 -#: ../../godmode/massive/massive_edit_modules.php:484 -#: ../../include/ajax/events.php:481 -#: ../../enterprise/godmode/services/services.service.php:258 -#: ../../enterprise/meta/include/functions_wizard_meta.php:390 -#: ../../enterprise/operation/services/services.list.php:190 -#: ../../enterprise/operation/services/services.table_services.php:159 -msgid "Auto" -msgstr "Auto" - -#: ../../godmode/agentes/module_manager_editor_network.php:86 -#: ../../godmode/massive/massive_edit_modules.php:485 -#: ../../enterprise/meta/include/functions_wizard_meta.php:391 -msgid "Force primary key" -msgstr "Force primary key" - -#: ../../godmode/agentes/module_manager_editor_network.php:87 -#: ../../godmode/massive/massive_edit_modules.php:486 -#: ../../include/functions_html.php:647 ../../include/functions_html.php:648 -#: ../../include/functions_html.php:771 ../../include/functions_html.php:772 -#: ../../enterprise/extensions/cron/functions.php:227 -#: ../../enterprise/godmode/setup/setup_acl.php:146 -#: ../../enterprise/godmode/setup/setup_acl.php:390 -#: ../../enterprise/include/functions_backup.php:483 -#: ../../enterprise/include/functions_backup.php:484 -#: ../../enterprise/meta/include/functions_wizard_meta.php:392 -msgid "Custom" -msgstr "Custom" - -#: ../../godmode/agentes/module_manager_editor_network.php:152 -msgid "SNMP OID" -msgstr "SNMP OID" - -#: ../../godmode/agentes/module_manager_editor_network.php:171 -#: ../../godmode/modules/manage_network_components_form_network.php:90 -msgid "TCP send" -msgstr "TCP send" - -#: ../../godmode/agentes/module_manager_editor_network.php:177 -#: ../../godmode/modules/manage_network_components_form_network.php:97 -msgid "TCP receive" -msgstr "TCP receive" +#: ../../include/functions_snmp_browser.php:530 +#: ../../godmode/massive/massive_edit_modules.php:497 +#: ../../godmode/modules/manage_network_components_form_network.php:57 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:369 +#: ../../godmode/agentes/module_manager_editor_network.php:216 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:731 +msgid "Auth user" +msgstr "Authenticate user" +#: ../../include/functions_snmp_browser.php:532 +#: ../../godmode/massive/massive_edit_modules.php:500 +#: ../../godmode/modules/manage_network_components_form_network.php:59 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:371 #: ../../godmode/agentes/module_manager_editor_network.php:219 -#: ../../godmode/agentes/module_manager_editor_network.php:229 -#: ../../godmode/massive/massive_edit_modules.php:501 -#: ../../godmode/massive/massive_edit_modules.php:505 -msgid "The pass length must be eight character minimum." -msgstr "The pass length must be eight character minimum." +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:733 +msgid "Auth password" +msgstr "Authenticate password" -#: ../../godmode/agentes/module_manager_editor_network.php:229 +#: ../../include/functions_snmp_browser.php:536 +#: ../../godmode/massive/massive_edit_modules.php:503 +#: ../../godmode/modules/manage_network_components_form_network.php:65 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:375 +#: ../../godmode/agentes/module_manager_editor_network.php:227 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:737 +msgid "Privacy method" +msgstr "Privacy method" + +#: ../../include/functions_snmp_browser.php:537 +#: ../../godmode/massive/massive_edit_modules.php:504 +#: ../../godmode/modules/manage_network_components_form_network.php:66 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:376 +#: ../../godmode/agentes/module_manager_editor_network.php:228 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:738 +msgid "DES" +msgstr "DES" + +#: ../../include/functions_snmp_browser.php:537 +#: ../../godmode/massive/massive_edit_modules.php:504 +#: ../../godmode/modules/manage_network_components_form_network.php:66 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:376 +#: ../../godmode/agentes/module_manager_editor_network.php:228 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:738 +msgid "AES" +msgstr "AES" + +#: ../../include/functions_snmp_browser.php:538 #: ../../godmode/massive/massive_edit_modules.php:505 #: ../../godmode/modules/manage_network_components_form_network.php:67 -#: ../../include/functions_snmp_browser.php:538 +#: ../../godmode/agentes/module_manager_editor_network.php:229 msgid "Privacy pass" msgstr "Privacy pass" -#: ../../godmode/agentes/module_manager_editor_plugin.php:47 -#: ../../operation/agentes/status_monitor.php:384 -msgid "Plugin server module" -msgstr "Plug-in server module" +#: ../../include/functions_snmp_browser.php:541 +#: ../../godmode/massive/massive_edit_modules.php:507 +#: ../../godmode/modules/manage_network_components_form_network.php:72 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:380 +#: ../../godmode/agentes/module_manager_editor_network.php:237 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:742 +msgid "Auth method" +msgstr "Authentication method" -#: ../../godmode/agentes/module_manager_editor_prediction.php:88 -#: ../../operation/agentes/status_monitor.php:388 -msgid "Prediction server module" -msgstr "Prediction server module" +#: ../../include/functions_snmp_browser.php:542 +#: ../../godmode/massive/massive_edit_modules.php:508 +#: ../../godmode/modules/manage_network_components_form_network.php:73 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:381 +#: ../../godmode/agentes/module_manager_editor_network.php:238 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:743 +msgid "MD5" +msgstr "MD5" -#: ../../godmode/agentes/module_manager_editor_prediction.php:91 -msgid "Source module" -msgstr "Source module" +#: ../../include/functions_snmp_browser.php:542 +#: ../../godmode/massive/massive_edit_modules.php:508 +#: ../../godmode/modules/manage_network_components_form_network.php:73 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:381 +#: ../../godmode/agentes/module_manager_editor_network.php:238 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:743 +msgid "SHA" +msgstr "SHA" -#: ../../godmode/agentes/module_manager_editor_prediction.php:119 -#: ../../godmode/agentes/module_manager_editor_prediction.php:144 -msgid "Select Module" -msgstr "Select Module" +#: ../../include/functions_snmp_browser.php:543 +#: ../../godmode/massive/massive_edit_modules.php:509 +#: ../../godmode/modules/manage_network_components_form_network.php:74 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:382 +#: ../../godmode/agentes/module_manager_editor_network.php:239 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:744 +msgid "Security level" +msgstr "Security level" -#: ../../godmode/agentes/module_manager_editor_prediction.php:150 -#: ../../godmode/reporting/graph_builder.main.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:748 -#: ../../godmode/reporting/visual_console_builder.elements.php:80 -#: ../../godmode/reporting/visual_console_builder.wizard.php:185 -#: ../../include/functions_visual_map_editor.php:438 -#: ../../enterprise/dashboard/widgets/custom_graph.php:36 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:70 -#: ../../enterprise/dashboard/widgets/single_graph.php:72 -#: ../../enterprise/dashboard/widgets/sla_percent.php:67 -#: ../../enterprise/dashboard/widgets/top_n.php:59 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:97 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1273 -#: ../../enterprise/include/functions_reporting_csv.php:257 -#: ../../enterprise/include/functions_reporting_csv.php:260 -#: ../../enterprise/include/functions_reporting_csv.php:376 -#: ../../enterprise/include/functions_reporting_csv.php:403 -#: ../../enterprise/include/functions_reporting_csv.php:429 -#: ../../enterprise/include/functions_reporting_csv.php:495 -#: ../../enterprise/include/functions_reporting_csv.php:523 -#: ../../enterprise/include/functions_reporting_csv.php:558 -#: ../../enterprise/include/functions_reporting_csv.php:594 -#: ../../enterprise/include/functions_reporting_csv.php:631 -#: ../../enterprise/include/functions_reporting_csv.php:699 -#: ../../enterprise/include/functions_reporting_csv.php:735 -#: ../../enterprise/include/functions_reporting_csv.php:771 -#: ../../enterprise/include/functions_reporting_csv.php:807 -#: ../../enterprise/include/functions_reporting_csv.php:843 -#: ../../enterprise/include/functions_reporting_csv.php:920 -msgid "Period" -msgstr "Periodicity" +#: ../../include/functions_snmp_browser.php:544 +#: ../../godmode/massive/massive_edit_modules.php:510 +#: ../../godmode/modules/manage_network_components_form_network.php:75 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:383 +#: ../../godmode/agentes/module_manager_editor_network.php:240 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:745 +msgid "Not auth and not privacy method" +msgstr "Non-authenticated and non-private method" -#: ../../godmode/agentes/module_manager_editor_prediction.php:152 -#: ../../godmode/agentes/planned_downtime.editor.php:533 -#: ../../enterprise/extensions/cron/functions.php:195 -#: ../../enterprise/extensions/vmware/functions.php:27 -msgid "Weekly" -msgstr "Weekly" +#: ../../include/functions_snmp_browser.php:545 +#: ../../godmode/massive/massive_edit_modules.php:511 +#: ../../godmode/modules/manage_network_components_form_network.php:76 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:384 +#: ../../godmode/agentes/module_manager_editor_network.php:241 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:746 +msgid "Auth and not privacy method" +msgstr "Authenticated and non-private method" -#: ../../godmode/agentes/module_manager_editor_prediction.php:153 -#: ../../godmode/agentes/planned_downtime.editor.php:534 -#: ../../enterprise/extensions/cron/functions.php:196 -#: ../../enterprise/extensions/vmware/functions.php:28 -msgid "Monthly" -msgstr "Monthly" +#: ../../include/functions_snmp_browser.php:545 +#: ../../godmode/massive/massive_edit_modules.php:511 +#: ../../godmode/modules/manage_network_components_form_network.php:76 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:384 +#: ../../godmode/agentes/module_manager_editor_network.php:241 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:746 +msgid "Auth and privacy method" +msgstr "Authenticated and private method" -#: ../../godmode/agentes/module_manager_editor_prediction.php:154 -#: ../../enterprise/extensions/cron/functions.php:194 -#: ../../enterprise/extensions/vmware/functions.php:26 -msgid "Daily" -msgstr "Daily" +#: ../../include/functions_snmp_browser.php:558 +msgid "First match" +msgstr "First match" -#: ../../godmode/agentes/module_manager_editor_wmi.php:32 -#: ../../operation/agentes/status_monitor.php:386 -msgid "WMI server module" -msgstr "WMI server module" +#: ../../include/functions_snmp_browser.php:560 +msgid "Previous match" +msgstr "Previous match" -#: ../../godmode/agentes/module_manager_editor_wmi.php:64 -#: ../../godmode/modules/manage_network_components_form_wmi.php:32 -msgid "WMI query" -msgstr "WMI query" +#: ../../include/functions_snmp_browser.php:562 +msgid "Next match" +msgstr "Next match" -#: ../../godmode/agentes/module_manager_editor_wmi.php:73 -#: ../../godmode/modules/manage_network_components_form_wmi.php:34 -msgid "Key string" -msgstr "Key string" +#: ../../include/functions_snmp_browser.php:564 +msgid "Last match" +msgstr "Last match" -#: ../../godmode/agentes/module_manager_editor_wmi.php:77 -#: ../../godmode/modules/manage_network_components_form_wmi.php:40 -msgid "Field number" -msgstr "Field number" +#: ../../include/functions_snmp_browser.php:569 +msgid "Expand the tree (can be slow)" +msgstr "Expand the tree (can be slow)" -#: ../../godmode/agentes/planned_downtime.editor.php:38 -#: ../../godmode/alerts/alert_list.php:326 -#: ../../godmode/category/category.php:58 ../../include/functions_html.php:660 -#: ../../include/functions_html.php:661 ../../include/functions_html.php:786 -#: ../../include/functions_html.php:787 ../../operation/events/events.php:405 -#: ../../operation/snmpconsole/snmp_statistics.php:55 -#: ../../operation/snmpconsole/snmp_view.php:74 -#: ../../enterprise/include/functions_backup.php:496 -#: ../../enterprise/include/functions_backup.php:497 -msgid "List" -msgstr "list" +#: ../../include/functions_snmp_browser.php:571 +msgid "Collapse the tree" +msgstr "Collapse the tree" -#: ../../godmode/agentes/planned_downtime.editor.php:115 -#: ../../godmode/agentes/planned_downtime.editor.php:187 -#: ../../godmode/agentes/planned_downtime.editor.php:942 -msgid "This elements cannot be modified while the downtime is being executed" -msgstr "These items cannot be modified while downtime is taking place" +#: ../../include/functions_snmp_browser.php:590 +msgid "SNMP v3 options" +msgstr "SNMP v3 settings" -#: ../../godmode/agentes/planned_downtime.editor.php:212 -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:678 +#: ../../include/functions_snmp_browser.php:593 +msgid "Search options" +msgstr "Search options" + +#: ../../include/functions_snmp_browser.php:603 +#: ../../godmode/agentes/module_manager_editor_network.php:27 +msgid "Search matches" +msgstr "Search matches" + +#: ../../include/help/clippy/homepage.php:59 +msgid "Hi, can I help you?" +msgstr "Hi! How can I help you?" + +#: ../../include/help/clippy/homepage.php:60 msgid "" -"Not created. Error inserting data. Start time must be higher than the " -"current time" +"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 "" -"Couldn't be created: error during data insertion. Start time must be higher " -"than the current time." +"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." -#: ../../godmode/agentes/planned_downtime.editor.php:215 -#: ../../godmode/agentes/planned_downtime.editor.php:218 -#: ../../godmode/agentes/planned_downtime.editor.php:223 -#: ../../godmode/agentes/planned_downtime.editor.php:226 -#: ../../include/functions_planned_downtimes.php:45 -#: ../../include/functions_planned_downtimes.php:50 -#: ../../include/functions_planned_downtimes.php:53 -#: ../../include/functions_planned_downtimes.php:682 -#: ../../include/functions_planned_downtimes.php:687 -#: ../../include/functions_planned_downtimes.php:695 -#: ../../include/functions_planned_downtimes.php:702 -msgid "Not created. Error inserting data" -msgstr "Not created. Error inserting data" +#: ../../include/help/clippy/homepage.php:67 +msgid "Close this wizard and don't open it again." +msgstr "Close this wizard and don't open it again." -#: ../../godmode/agentes/planned_downtime.editor.php:215 -#: ../../include/functions_planned_downtimes.php:45 -#: ../../include/functions_planned_downtimes.php:683 -msgid "The end date must be higher than the start date" -msgstr "The end date cannot be earlier than the start date" +#: ../../include/help/clippy/homepage.php:81 +msgid "Which task would you like to do first?" +msgstr "Which task would you like to tackle first?" -#: ../../godmode/agentes/planned_downtime.editor.php:218 -#: ../../include/functions_planned_downtimes.php:688 -msgid "The end date must be higher than the current time" -msgstr "End date must be after current time" +#: ../../include/help/clippy/homepage.php:85 +msgid "Ping to a Linux or Windows server with a Pandora FMS agent" +msgstr "Ping a Linux or Windows server using a Pandora FMS agent." -#: ../../godmode/agentes/planned_downtime.editor.php:223 -#: ../../godmode/agentes/planned_downtime.editor.php:592 -#: ../../godmode/agentes/planned_downtime.editor.php:600 -#: ../../include/functions_planned_downtimes.php:50 -#: ../../include/functions_planned_downtimes.php:696 -msgid "The end time must be higher than the start time" -msgstr "End time must be after start time" +#: ../../include/help/clippy/homepage.php:90 +msgid "Create a alert by email in a critical module." +msgstr "Create an email alert for a module in critical status" -#: ../../godmode/agentes/planned_downtime.editor.php:226 -#: ../../godmode/agentes/planned_downtime.editor.php:581 -#: ../../include/functions_planned_downtimes.php:53 -#: ../../include/functions_planned_downtimes.php:703 -msgid "The end day must be higher than the start day" -msgstr "The end date cannot be earlier than the start date" - -#: ../../godmode/agentes/planned_downtime.editor.php:275 -#: ../../include/functions_planned_downtimes.php:94 -#: ../../include/functions_planned_downtimes.php:717 -msgid "Each planned downtime must have a different name" -msgstr "Each planned downtime must have a different name" - -#: ../../godmode/agentes/planned_downtime.editor.php:280 -#: ../../godmode/agentes/planned_downtime.editor.php:307 -#: ../../include/functions_planned_downtimes.php:100 -#: ../../include/functions_planned_downtimes.php:722 -msgid "Planned downtime must have a name" -msgstr "Planned downtime must have a name" - -#: ../../godmode/agentes/planned_downtime.editor.php:318 -msgid "Cannot be modified while the downtime is being executed" -msgstr "Cannot be modified while downtime is taking place" - -#: ../../godmode/agentes/planned_downtime.editor.php:359 -#: ../../godmode/alerts/alert_actions.php:263 -#: ../../godmode/alerts/alert_list.php:196 -#: ../../godmode/alerts/alert_special_days.php:207 -#: ../../godmode/alerts/alert_templates.php:152 -#: ../../godmode/alerts/configure_alert_command.php:94 -#: ../../godmode/alerts/configure_alert_template.php:445 -#: ../../godmode/massive/massive_edit_modules.php:153 -#: ../../godmode/modules/manage_network_components.php:346 -#: ../../godmode/setup/gis.php:41 -#: ../../include/functions_planned_downtimes.php:122 -#: ../../operation/agentes/pandora_networkmap.php:247 -#: ../../operation/incidents/incident.php:111 -#: ../../operation/snmpconsole/snmp_view.php:115 -#: ../../enterprise/extensions/ipam/ipam_action.php:128 -#: ../../enterprise/extensions/ipam/ipam_massive.php:42 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:99 -#: ../../enterprise/godmode/alerts/alert_events.php:375 -#: ../../enterprise/godmode/alerts/alert_events_list.php:95 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:159 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:106 -#: ../../enterprise/godmode/modules/local_components.php:309 -#: ../../enterprise/godmode/policies/policies.php:159 -#: ../../enterprise/godmode/policies/policy_modules.php:1039 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:67 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:52 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:130 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:121 -#: ../../enterprise/operation/agentes/transactional_map.php:112 -msgid "Could not be updated" -msgstr "Could not be updated" - -#: ../../godmode/agentes/planned_downtime.editor.php:485 -msgid "Quiet: Modules will not generate events or fire alerts." -msgstr "Quiet: Modules will not generate events or fire alerts." - -#: ../../godmode/agentes/planned_downtime.editor.php:486 -msgid "Disable Agents: Disables the selected agents." -msgstr "Disable Agents: Disables the selected agents." - -#: ../../godmode/agentes/planned_downtime.editor.php:487 -msgid "Disable Alerts: Disable alerts for the selected agents." -msgstr "Disable Alerts: disables alerts for the selected agents." - -#: ../../godmode/agentes/planned_downtime.editor.php:489 -#: ../../godmode/agentes/planned_downtime.list.php:428 -msgid "Disabled Agents" -msgstr "Disable Agents" - -#: ../../godmode/agentes/planned_downtime.editor.php:490 -#: ../../godmode/agentes/planned_downtime.list.php:429 -msgid "Disabled only Alerts" -msgstr "Disable only Alerts" - -#: ../../godmode/agentes/planned_downtime.editor.php:493 -#: ../../godmode/agentes/planned_downtime.list.php:395 -#: ../../include/functions_reporting_html.php:3821 -#: ../../enterprise/include/functions_reporting.php:4560 -#: ../../enterprise/include/functions_reporting_pdf.php:2422 -msgid "Execution" -msgstr "Execution" - -#: ../../godmode/agentes/planned_downtime.editor.php:494 -#: ../../godmode/agentes/planned_downtime.list.php:153 -msgid "Once" -msgstr "Once" - -#: ../../godmode/agentes/planned_downtime.editor.php:495 -#: ../../godmode/agentes/planned_downtime.list.php:153 -#: ../../godmode/agentes/planned_downtime.list.php:434 -msgid "Periodically" -msgstr "Periodically" - -#: ../../godmode/agentes/planned_downtime.editor.php:500 -msgid "Configure the time" -msgstr "Set time" - -#: ../../godmode/agentes/planned_downtime.editor.php:506 -#: ../../include/functions_reporting_html.php:63 -#: ../../include/functions_reporting_html.php:3394 -msgid "From:" -msgstr "From:" - -#: ../../godmode/agentes/planned_downtime.editor.php:510 -#: ../../godmode/agentes/planned_downtime.editor.php:521 -#: ../../operation/netflow/nf_live_view.php:240 -#: ../../enterprise/extensions/cron/main.php:331 -#: ../../enterprise/operation/log/log_viewer.php:218 -#: ../../enterprise/operation/log/log_viewer.php:226 -msgid "Date format in Pandora is year/month/day" -msgstr "Date format for Pandora FMS is YY/MM/DD" - -#: ../../godmode/agentes/planned_downtime.editor.php:512 -#: ../../godmode/agentes/planned_downtime.editor.php:523 -#: ../../godmode/agentes/planned_downtime.editor.php:591 -#: ../../godmode/agentes/planned_downtime.editor.php:599 -#: ../../godmode/alerts/configure_alert_template.php:540 -#: ../../godmode/alerts/configure_alert_template.php:544 -#: ../../godmode/reporting/reporting_builder.item_editor.php:848 -#: ../../godmode/reporting/reporting_builder.item_editor.php:857 -#: ../../operation/netflow/nf_live_view.php:242 -#: ../../enterprise/extensions/cron/main.php:333 -#: ../../enterprise/operation/log/log_viewer.php:220 -#: ../../enterprise/operation/log/log_viewer.php:228 -msgid "Time format in Pandora is hours(24h):minutes:seconds" -msgstr "Watch format in Pandora FMS is hours (24h):minutes:seconds" - -#: ../../godmode/agentes/planned_downtime.editor.php:517 -#: ../../include/functions_reporting_html.php:64 -#: ../../include/functions_reporting_html.php:3395 -msgid "To:" -msgstr "To:" - -#: ../../godmode/agentes/planned_downtime.editor.php:531 -msgid "Type Periodicity:" -msgstr "Periodicity type:" - -#: ../../godmode/agentes/planned_downtime.editor.php:544 -#: ../../godmode/alerts/alert_special_days.php:327 -#: ../../godmode/alerts/alert_view.php:208 -#: ../../godmode/alerts/configure_alert_template.php:521 -#: ../../include/functions.php:913 ../../include/functions_reporting.php:10006 -#: ../../enterprise/godmode/alerts/alert_events.php:431 -#: ../../enterprise/include/functions_reporting.php:4596 -msgid "Mon" -msgstr "Mon" - -#: ../../godmode/agentes/planned_downtime.editor.php:547 -#: ../../godmode/alerts/alert_special_days.php:328 -#: ../../godmode/alerts/alert_view.php:209 -#: ../../godmode/alerts/configure_alert_template.php:523 -#: ../../include/functions.php:915 ../../include/functions_reporting.php:10010 -#: ../../enterprise/godmode/alerts/alert_events.php:433 -#: ../../enterprise/include/functions_reporting.php:4600 -msgid "Tue" -msgstr "Tue" - -#: ../../godmode/agentes/planned_downtime.editor.php:550 -#: ../../godmode/alerts/alert_special_days.php:329 -#: ../../godmode/alerts/alert_view.php:210 -#: ../../godmode/alerts/configure_alert_template.php:525 -#: ../../include/functions.php:917 ../../include/functions_reporting.php:10014 -#: ../../enterprise/godmode/alerts/alert_events.php:435 -#: ../../enterprise/include/functions_reporting.php:4604 -msgid "Wed" -msgstr "Wed" - -#: ../../godmode/agentes/planned_downtime.editor.php:553 -#: ../../godmode/alerts/alert_special_days.php:330 -#: ../../godmode/alerts/alert_view.php:211 -#: ../../godmode/alerts/configure_alert_template.php:527 -#: ../../include/functions.php:919 ../../include/functions_reporting.php:10018 -#: ../../enterprise/godmode/alerts/alert_events.php:437 -#: ../../enterprise/include/functions_reporting.php:4608 -msgid "Thu" -msgstr "Thu" - -#: ../../godmode/agentes/planned_downtime.editor.php:556 -#: ../../godmode/alerts/alert_special_days.php:331 -#: ../../godmode/alerts/alert_view.php:212 -#: ../../godmode/alerts/configure_alert_template.php:529 -#: ../../include/functions.php:921 ../../include/functions_reporting.php:10022 -#: ../../enterprise/godmode/alerts/alert_events.php:439 -#: ../../enterprise/include/functions_reporting.php:4612 -msgid "Fri" -msgstr "Fri" - -#: ../../godmode/agentes/planned_downtime.editor.php:559 -#: ../../godmode/alerts/alert_special_days.php:332 -#: ../../godmode/alerts/alert_view.php:213 -#: ../../godmode/alerts/configure_alert_template.php:531 -#: ../../include/functions.php:923 ../../include/functions_reporting.php:10026 -#: ../../enterprise/godmode/alerts/alert_events.php:441 -#: ../../enterprise/include/functions_reporting.php:4616 -msgid "Sat" -msgstr "Sat" - -#: ../../godmode/agentes/planned_downtime.editor.php:562 -#: ../../godmode/alerts/alert_special_days.php:326 -#: ../../godmode/alerts/alert_view.php:214 -#: ../../godmode/alerts/configure_alert_template.php:533 -#: ../../include/functions.php:925 ../../include/functions_reporting.php:10030 -#: ../../enterprise/godmode/alerts/alert_events.php:443 -#: ../../enterprise/include/functions_reporting.php:4620 -msgid "Sun" -msgstr "Sun" - -#: ../../godmode/agentes/planned_downtime.editor.php:569 -msgid "From day:" -msgstr "set start date" - -#: ../../godmode/agentes/planned_downtime.editor.php:575 -msgid "To day:" -msgstr "Set end date" - -#: ../../godmode/agentes/planned_downtime.editor.php:586 -msgid "From hour:" -msgstr "Set start time" - -#: ../../godmode/agentes/planned_downtime.editor.php:594 -msgid "To hour:" -msgstr "Set end time" - -#: ../../godmode/agentes/planned_downtime.editor.php:637 -msgid "Available agents" -msgstr "Available agents" - -#: ../../godmode/agentes/planned_downtime.editor.php:714 -msgid "Available modules:" -msgstr "Available modules:" - -#: ../../godmode/agentes/planned_downtime.editor.php:715 -msgid "Only for type Quiet for downtimes." -msgstr "Only for quiet type downtimes" - -#: ../../godmode/agentes/planned_downtime.editor.php:729 -msgid "Agents planned for this downtime" -msgstr "Selected agents for this downtime" - -#: ../../godmode/agentes/planned_downtime.editor.php:744 -msgid "There are no agents" -msgstr "There are no agents" - -#: ../../godmode/agentes/planned_downtime.editor.php:756 -#: ../../godmode/users/user_list.php:272 ../../include/ajax/module.php:751 -#: ../../include/functions_events.php:2038 -#: ../../include/functions_treeview.php:602 -#: ../../mobile/operation/agent.php:161 ../../mobile/operation/agents.php:85 -#: ../../mobile/operation/agents.php:337 ../../mobile/operation/agents.php:339 -#: ../../mobile/operation/agents.php:341 ../../mobile/operation/agents.php:342 -#: ../../operation/agentes/estado_agente.php:531 -#: ../../operation/agentes/estado_generalagente.php:205 -#: ../../operation/agentes/ver_agente.php:696 -#: ../../operation/gis_maps/ajax.php:219 ../../operation/gis_maps/ajax.php:321 -#: ../../operation/search_agents.php:66 ../../operation/search_users.php:47 -#: ../../enterprise/meta/agentsearch.php:100 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1149 -#: ../../enterprise/operation/agentes/policy_view.php:309 -#: ../../enterprise/operation/agentes/ver_agente.php:75 -msgid "Last contact" -msgstr "Last contact" - -#: ../../godmode/agentes/planned_downtime.editor.php:780 -msgid "All alerts" -msgstr "All alerts" - -#: ../../godmode/agentes/planned_downtime.editor.php:783 -msgid "Entire agent" -msgstr "Entire agent" - -#: ../../godmode/agentes/planned_downtime.editor.php:787 -#: ../../godmode/agentes/planned_downtime.editor.php:892 -msgid "All modules" -msgstr "All modules" - -#: ../../godmode/agentes/planned_downtime.editor.php:790 -#: ../../godmode/agentes/planned_downtime.editor.php:884 -#: ../../godmode/agentes/planned_downtime.editor.php:888 -msgid "Some modules" -msgstr "Some modules" - -#: ../../godmode/agentes/planned_downtime.editor.php:856 -msgid "Add Module:" -msgstr "Add Module:" - -#: ../../godmode/agentes/planned_downtime.editor.php:1072 -msgid "Please select a module." -msgstr "Please select a module." - -#: ../../godmode/agentes/planned_downtime.editor.php:1204 +#: ../../include/help/clippy/homepage.php:209 msgid "" -"WARNING: If you edit this planned downtime, the data of future SLA reports " -"may be altered" +"The first thing you have to do is to setup the config email in the Pandora " +"FMS Server." msgstr "" -"WARNING: if you edit this planned downtime, it may alter the data on future " -"SLA reports." +"The first thing you have to do is to setup the e-mail config on the Pandora " +"FMS Server." -#: ../../godmode/agentes/planned_downtime.export_csv.php:199 -#: ../../godmode/agentes/planned_downtime.list.php:358 -msgid "No planned downtime" -msgstr "No planned downtime" +#: ../../include/help/clippy/homepage.php:213 +msgid "If you have it already configured you can go to the next step." +msgstr "If you've already configured it, you can go to the next step." -#: ../../godmode/agentes/planned_downtime.list.php:46 -msgid "An error occurred while migrating the malformed planned downtimes" -msgstr "An error occurred while migrating faulty planned downtimes" +#: ../../include/help/clippy/homepage.php:218 +msgid "Now, pull down the Manage alerts menu and click on Actions. " +msgstr "Now, pull down the 'Manage Alerts' menu, and click on 'Actions'. " -#: ../../godmode/agentes/planned_downtime.list.php:47 -msgid "Please run the migration again or contact with the administrator" -msgstr "Please run the migration again or contact the administrator" - -#: ../../godmode/agentes/planned_downtime.list.php:79 -msgid "An error occurred stopping the planned downtime" -msgstr "An error occurred when attempting to stop planned downtime." - -#: ../../godmode/agentes/planned_downtime.list.php:101 -msgid "This planned downtime is running" -msgstr "This planned downtime is running" - -#: ../../godmode/agentes/planned_downtime.list.php:108 -#: ../../godmode/events/event_filter.php:57 -#: ../../godmode/events/event_filter.php:78 -#: ../../godmode/modules/manage_nc_groups.php:123 -#: ../../godmode/netflow/nf_edit.php:77 ../../godmode/netflow/nf_edit.php:101 -#: ../../godmode/netflow/nf_item_list.php:106 -#: ../../godmode/netflow/nf_item_list.php:127 -#: ../../godmode/reporting/graphs.php:88 ../../godmode/reporting/graphs.php:98 -#: ../../godmode/reporting/graphs.php:137 -#: ../../godmode/reporting/map_builder.php:94 -#: ../../operation/reporting/graph_viewer.php:46 -#: ../../operation/reporting/graph_viewer.php:53 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:99 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:120 -#: ../../enterprise/godmode/reporting/graph_template_list.php:87 -#: ../../enterprise/godmode/reporting/graph_template_list.php:107 -msgid "Not deleted. Error deleting data" -msgstr "Could not be deleted. Error deleting data." - -#: ../../godmode/agentes/planned_downtime.list.php:143 -#: ../../godmode/alerts/alert_list.list.php:532 -#: ../../godmode/alerts/alert_list.list.php:536 -#: ../../godmode/alerts/alert_templates.php:94 -#: ../../operation/agentes/gis_view.php:181 -#: ../../operation/reporting/reporting_viewer.php:194 -#: ../../enterprise/godmode/alerts/alert_events_list.php:559 -#: ../../enterprise/godmode/policies/policy_alerts.php:336 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:222 -#: ../../enterprise/include/functions_reporting_pdf.php:2217 -#: ../../enterprise/include/functions_reporting_pdf.php:2253 -#: ../../enterprise/include/functions_reporting_pdf.php:2291 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:148 -msgid "From" -msgstr "From" - -#: ../../godmode/agentes/planned_downtime.list.php:145 -#: ../../operation/agentes/gis_view.php:182 -#: ../../enterprise/include/functions_reporting_pdf.php:2254 -#: ../../enterprise/include/functions_reporting_pdf.php:2292 -msgid "To" -msgstr "To" - -#: ../../godmode/agentes/planned_downtime.list.php:154 -msgid "Execution type" -msgstr "Execution type" - -#: ../../godmode/agentes/planned_downtime.list.php:156 -msgid "Show past downtimes" -msgstr "Show past downtimes" - -#: ../../godmode/agentes/planned_downtime.list.php:391 -msgid "Name #Ag." -msgstr "Name #Ag." - -#: ../../godmode/agentes/planned_downtime.list.php:396 -#: ../../godmode/menu.php:131 ../../godmode/setup/setup.php:138 -#: ../../include/functions_reports.php:637 -#: ../../include/functions_reports.php:639 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:210 -#: ../../enterprise/godmode/modules/configure_local_component.php:311 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:166 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:83 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:101 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:71 -msgid "Configuration" -msgstr "Configuration" - -#: ../../godmode/agentes/planned_downtime.list.php:397 -#: ../../godmode/agentes/planned_downtime.list.php:446 -#: ../../enterprise/extensions/backup/main.php:136 -#: ../../enterprise/operation/agentes/transactional_map.php:197 -msgid "Running" -msgstr "Running" - -#: ../../godmode/agentes/planned_downtime.list.php:400 -#: ../../godmode/agentes/planned_downtime.list.php:456 -msgid "Stop downtime" -msgstr "Stop downtime" - -#: ../../godmode/agentes/planned_downtime.list.php:433 -msgid "once" -msgstr "once" - -#: ../../godmode/agentes/planned_downtime.list.php:442 -msgid "Not running" -msgstr "Not running" - -#: ../../godmode/agentes/planned_downtime.list.php:477 -#: ../../godmode/alerts/alert_view.php:113 ../../godmode/extensions.php:193 -#: ../../godmode/extensions.php:209 -#: ../../godmode/modules/manage_network_components.php:583 -#: ../../include/functions.php:946 ../../include/functions.php:952 -#: ../../include/functions.php:955 ../../include/functions_db.php:156 -#: ../../include/functions_events.php:1778 -#: ../../include/functions_events.php:1946 -#: ../../include/functions_events.php:2013 -#: ../../include/functions_events.php:2029 -#: ../../include/functions_events.php:2039 -#: ../../include/functions_events.php:2044 -#: ../../include/functions_events.php:2062 -#: ../../include/functions_events.php:2141 -#: ../../include/functions_events.php:2195 -#: ../../include/functions_events.php:2207 -#: ../../include/functions_events.php:2219 -#: ../../include/functions_events.php:2241 -#: ../../include/functions_events.php:2256 -#: ../../include/functions_events.php:2266 -#: ../../include/functions_events.php:2355 -#: ../../include/functions_events.php:2432 -#: ../../include/functions_events.php:2454 -#: ../../include/functions_events.php:2464 -#: ../../include/functions_reporting_html.php:488 -#: ../../include/functions_reporting_html.php:567 -#: ../../include/functions_reporting_html.php:3173 -#: ../../include/functions_reporting_html.php:3211 -#: ../../include/functions_treeview.php:158 -#: ../../include/functions_treeview.php:392 -#: ../../include/functions_ui.php:2007 ../../include/functions_ui.php:2017 -#: ../../mobile/operation/agent.php:153 ../../mobile/operation/agent.php:167 -#: ../../mobile/operation/events.php:148 ../../mobile/operation/events.php:159 -#: ../../mobile/operation/events.php:167 ../../mobile/operation/events.php:240 -#: ../../mobile/operation/events.php:267 ../../mobile/operation/events.php:275 -#: ../../operation/agentes/estado_generalagente.php:151 -#: ../../operation/agentes/estado_generalagente.php:163 -#: ../../operation/agentes/estado_generalagente.php:176 -#: ../../operation/agentes/estado_generalagente.php:280 -#: ../../operation/agentes/estado_generalagente.php:359 -#: ../../operation/snmpconsole/snmp_view.php:691 -#: ../../operation/snmpconsole/snmp_view.php:710 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:159 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:181 -#: ../../enterprise/extensions/ipam/ipam_network.php:559 -#: ../../enterprise/extensions/ipam/ipam_network.php:594 -#: ../../enterprise/include/functions_reporting.php:4444 -#: ../../enterprise/include/functions_reporting.php:4776 -#: ../../enterprise/include/functions_reporting_pdf.php:1314 -#: ../../enterprise/include/functions_reporting_pdf.php:1395 -#: ../../enterprise/include/functions_reporting_pdf.php:2060 -#: ../../enterprise/include/functions_servicemap.php:265 -#: ../../enterprise/include/functions_services.php:1012 -#: ../../enterprise/include/functions_services.php:1219 -#: ../../enterprise/include/functions_services.php:1697 -#: ../../enterprise/include/functions_visual_map.php:277 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:437 -msgid "N/A" -msgstr "N/A" - -#: ../../godmode/agentes/planned_downtime.list.php:508 -#: ../../godmode/modules/manage_network_templates.php:216 -#: ../../include/graphs/functions_flot.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:350 -#: ../../enterprise/operation/log/log_viewer.php:239 -#: ../../enterprise/operation/reporting/custom_reporting.php:59 -msgid "Export to CSV" -msgstr "Export to CSV" - -#: ../../godmode/agentes/planned_downtime.list.php:535 +#: ../../include/help/clippy/modules_not_learning_mode.php:40 msgid "" -"WARNING: If you delete this planned downtime, it will not be taken into " -"account in future SLA reports" +"Please note that you have your agent setup to do not add new modules coming " +"from the data XML." msgstr "" -"WARNING: If you delete this planned downtime, it will not be taken into " -"account in future SLA reports" +"Please note that if you have your agent set up you mustn't add new modules " +"coming from the data XML." -#: ../../godmode/agentes/planned_downtime.list.php:541 -msgid "WARNING: There are malformed planned downtimes" -msgstr "WARNING: there are faulty planned downtimes" +#: ../../include/help/clippy/modules_not_learning_mode.php:41 +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 "" +"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)." -#: ../../godmode/agentes/planned_downtime.list.php:541 -msgid "Do you want to migrate automatically the malformed items?" -msgstr "Do you want to automatically migrate the faulty items" +#: ../../include/help/clippy/modules_not_learning_mode.php:42 +msgid "" +"You should use the \"normal\" mode (non learn) only when you don't intend to " +"add more modules to the agent." +msgstr "" +"You should use \"normal\" mode (not 'learning' mode) only when you don't " +"intend to add more modules to the agent." -#: ../../godmode/alerts/alert_actions.php:66 -#: ../../godmode/alerts/alert_actions.php:92 -#: ../../godmode/alerts/alert_actions.php:110 -#: ../../godmode/alerts/alert_actions.php:127 -#: ../../godmode/alerts/alert_actions.php:207 -#: ../../godmode/alerts/alert_actions.php:218 -#: ../../godmode/alerts/alert_actions.php:287 -#: ../../godmode/alerts/alert_actions.php:306 -#: ../../godmode/alerts/alert_actions.php:319 -msgid "Alert actions" -msgstr "Alert actions" +#: ../../include/help/clippy/interval_agent_min.php:39 +msgid "Interval Agent." +msgstr "Interval Agent." -#: ../../godmode/alerts/alert_actions.php:140 -#: ../../godmode/reporting/map_builder.php:183 -#: ../../godmode/reporting/map_builder.php:192 -#: ../../include/functions_agents.php:684 -#: ../../enterprise/godmode/policies/policies.php:180 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:254 -msgid "Successfully copied" -msgstr "Successfully copied" +#: ../../include/help/clippy/interval_agent_min.php:44 +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 "" +"Please note that having agents with a monitoring interval below 300 seconds " +"is not recommended. This will seriously impact the server's performance. " +"For example, having 200 agents with a 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." -#: ../../godmode/alerts/alert_actions.php:141 -#: ../../enterprise/godmode/policies/policies.php:181 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:255 -msgid "Could not be copied" -msgstr "Could not be copied" +#: ../../include/help/clippy/agent_out_of_limits.php:39 +msgid "Agent contact date passed it's ETA!." +msgstr "Agent contact date passed it's ETA!." -#: ../../godmode/alerts/alert_actions.php:342 -#: ../../godmode/massive/massive_copy_modules.php:224 -#: ../../godmode/reporting/map_builder.php:214 -#: ../../operation/agentes/pandora_networkmap.php:406 -#: ../../operation/agentes/pandora_networkmap.php:483 -#: ../../enterprise/dashboard/dashboards.php:96 -#: ../../enterprise/dashboard/dashboards.php:134 -#: ../../enterprise/godmode/policies/policies.php:434 -#: ../../enterprise/godmode/policies/policy_modules.php:1333 -msgid "Copy" -msgstr "Copy" +#: ../../include/help/clippy/agent_out_of_limits.php:44 +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 "" +"This occurs when your agent has stopped reporting, or the server has any " +"issues (overloaded or downed). You should also check the connectivity " +"between agent and server." -#: ../../godmode/alerts/alert_actions.php:398 -msgid "No alert actions configured" -msgstr "No alert actions established" +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:36 +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 "" +"Let me show you how to set up email actions: click on the 'Create' button, " +"and fill out the form shown in the following screen." -#: ../../godmode/alerts/alert_commands.php:105 -#: ../../godmode/alerts/alert_commands.php:109 -#: ../../godmode/alerts/alert_commands.php:127 -#: ../../godmode/alerts/alert_commands.php:135 -#: ../../godmode/alerts/alert_view.php:471 -#: ../../godmode/alerts/alert_view.php:548 -#: ../../godmode/alerts/configure_alert_template.php:684 -#: ../../enterprise/godmode/alerts/alert_events.php:474 +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:51 +msgid "" +"Now, you have to go to the monitors list and look for a critical module to " +"apply the alert." +msgstr "" +"Now, head over to the monitor list and look for a module in critical status " +"to apply the alert to." + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:56 +msgid "" +"Click on the arrow to drop down the Monitoring submenu and select Monitor " +"Detail." +msgstr "" +"Click on the arrow to display the Monitoring submenu and select 'Monitor " +"Detail'." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:35 +msgid "" +"Now, you have to go to the monitors list and look for a \"critical\" module " +"to apply the alert." +msgstr "" +"Now, you must go to the monitor list and look for a \"critical\" module to " +"apply the alert to." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:39 +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 "" +"If you know the agent name or the name of the module in critical status, " +"type it in this field in order to shorten the list of modules.You can write " +"the name entirely or partially." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:44 +msgid "Click on Show button to get the modules list filtered." +msgstr "Click on Show button to get the modules list filtered." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:60 +msgid "" +"Now, to edit the module, click on the wrench that appears in the type column." +msgstr "" +"In order to edit the module, click on the wrench icon that can be seen in " +"the 'Type' column." + +#: ../../include/help/clippy/extension_cron_send_email.php:39 +msgid "The configuration of email for the task email is in the file:" +msgstr "The configuration of e-mail for the task e-mail is in the file:" + +#: ../../include/help/clippy/extension_cron_send_email.php:41 +msgid "Please check if the email configuration is correct." +msgstr "Please check if the e-mail configuration is correct." + +#: ../../include/help/clippy/data_configuration_module.php:39 +msgid "Data Configuration Module." +msgstr "Data Configuration Module." + +#: ../../include/help/clippy/data_configuration_module.php:44 +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 "" +"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." + +#: ../../include/help/clippy/data_configuration_module.php:50 +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 "" +"The information imported the FIRST time form the XML file will be the " +"information visible on the console. After the first import, the system will " +"ignore any updates coming from the XML/agent." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:35 +msgid "I'm going to show you how to monitor a server." +msgstr "I'm going to show you how to monitor a server." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:39 +msgid "Please, type an agent to save the modules for monitoring a server." +msgstr "Please, type an agent to save the modules for monitoring a server." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:44 +msgid "If you have typed the name correctly you will see the agent." +msgstr "If the name is entered correctly, the agent will be shown." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:60 +msgid "Now, please choose the agent you searched." +msgstr "Now, select the agent you searched for." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:65 +msgid "Choose the agent and click on the name." +msgstr "Select the agent and click on its name." + +#: ../../include/help/clippy/topology_group.php:39 +msgid "Topology Group" +msgstr "Topology Group" + +#: ../../include/help/clippy/topology_group.php:44 +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 "" +"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. " + +#: ../../include/help/clippy/modules_not_init.php:39 +msgid "You have non initialized modules" +msgstr "You have non initialised modules" + +#: ../../include/help/clippy/modules_not_init.php:44 +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 "" +"This happens when you have just created a module and it wasn't executed on " +"the first time. Usually after a few seconds the status should change to " +"\"initialized\" and you'll be able to see it on the main view." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:35 +msgid "Fill the name of your action." +msgstr "Provide the name for your action." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:39 +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 "" +"Select the group from the drop-down list and filter by ACL (other users in " +"this group can use your action to create an alert)." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:43 +msgid "In the command field select \"email\"." +msgstr "In the 'Command' field, select \"email\"." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:47 +msgid "" +"In the threshold field enter the seconds. The help icon show more " +"information." +msgstr "" +"In the 'Threshold' field, enter the time (seconds). The help icon displays " +"more details." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:53 +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 "" +"In the first field, enter the email address(es) to which the alerts should " +"be sent. Multiple addresses must be separated by commas (,) or blank spaces." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:58 +msgid "" +"In the \"Subject\" field you can use the macros _agent_ or _module_ for " +"each name." +msgstr "" +"In the 'Subject' field you can use the \"_agent_\" or \"_module_\" macros " +"for each name." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:63 +msgid "" +"In the text field, you can also use macros. Get more information about the " +"macros by clicking on the help icon." +msgstr "" +"In the text field, you can also use macros. Get more information about the " +"macros by clicking on the help icon." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:69 +msgid "Click on Create button to create the action." +msgstr "Click on the 'Create' button to create the action" + +#: ../../include/help/clippy/servers_down.php:39 +msgid "All servers down" +msgstr "All servers down" + +#: ../../include/help/clippy/servers_down.php:44 +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 "" +"You must boot up all servers. Go to the Linux terminal and run the following " +"command: \"sudo /etc/init.d/pandora_server restart\". You'll have to provide " +"root user credentials." + +#: ../../include/help/clippy/operation_agentes_ver_agente.php:36 +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 "" +"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 e-mail." + +#: ../../include/help/clippy/operation_agentes_ver_agente.php:37 +msgid "" +"And restart your pandora server to read again general configuration tokens." +msgstr "" +"After, restart your Pandora Server to reread the general configuration " +"tokens." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:35 +msgid "Now you must go to Modules. Don't worry I'll lead you." +msgstr "Now you must go to Modules. Don't worry, I'll lead you." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:40 +msgid "Click in this tab.." +msgstr "Click on this tab.." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:56 +msgid "Now you must create the module. Don't worry, i'll teach you." +msgstr "Now you must create the module. Don't worry, i'll teach you." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:60 +msgid "Choose the network server module." +msgstr "Choose the network server module." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:64 +msgid "And click the button." +msgstr "And click the button." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:80 +msgid "Now you must create the module. Don't worry, i'll teach you ." +msgstr "Now you must create the module. Don't worry, i'll teach you ." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:84 +msgid "Now we are going to fill the form." +msgstr "Now, we'll proceed to fill out the form." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:88 +msgid "Please choose Network Management." +msgstr "Please choose Network Management." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:92 +msgid "Choose the component named \"Host alive\"." +msgstr "Choose the component named \"Host alive\"." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:96 +msgid "You can change the name if you want." +msgstr "You can change this name if you want." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:100 +msgid "Check if the IP showed is the IP of your machine." +msgstr "Check if the IP shown is the same as your device's IP" + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:104 +msgid "And only to finish it is clicking this button." +msgstr "And only to finish it is clicking this button." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:121 +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 "" +"Congrats! Your module has been created.
    Its status color is " +"blue.
    which means that the module hasn't been executed for the " +"first time. In a few seconds, if there is no problem, the status color will " +"turn into red or green." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:137 +msgid "Click on alerts tab and then fill the form to add an alert." +msgstr "" +"Click on the 'alerts' tab and then fill out the form to add a new alert." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:152 +msgid "Select the critical module." +msgstr "Select the critical module." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 +msgid "In template select \"Critical Condition\"." +msgstr "On the template select \"Critical Condition\"." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:160 +msgid "Now, select the action created before." +msgstr "Now, select the previously created action." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:165 +msgid "Click on Add Alert button to create the alert." +msgstr "Click on the 'Add Alert' button to create the alert." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:181 +msgid "" +"To test the alert you've just created go to the main view by clicking on the " +"eye tab." +msgstr "" +"To test the alert you've just created go to the main view by clicking on the " +"eye tab." + +#: ../../include/help/clippy/server_queued_modules.php:39 +msgid "Excesive Queued." +msgstr "Too many modules queued" + +#: ../../include/help/clippy/server_queued_modules.php:44 +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 "" +"You have too many items in the processing queue. This can happen if your " +"server is overloaded and/or improperly configured. This could be something " +"temporary, or a bottleneck. A possible solution is to increase the number of " +"server threads, but you should consider getting support (or contact our " +"support for Enterprise Edition users)." + +#: ../../include/help/clippy/module_unknow.php:39 +msgid "You have unknown modules in this agent." +msgstr "You have unknown modules in this agent." + +#: ../../include/help/clippy/module_unknow.php:44 +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 "" +"Unknown modules are those which have received data normally at least on one " +"occasion, but that aren't receiving data right now. Please check our " +"troubleshooting page to help you determine why you have modules in unknown " +"status." + +#: ../../include/functions_pandora_networkmap.php:740 #, php-format -msgid "Field %s" -msgstr "Field %s" +msgid "Edit node %s" +msgstr "Edit node %s" -#: ../../godmode/alerts/alert_commands.php:149 -#: ../../godmode/alerts/alert_commands.php:159 -#: ../../godmode/alerts/configure_alert_template.php:689 -#: ../../godmode/alerts/configure_alert_template.php:703 -#: ../../godmode/alerts/configure_alert_template.php:775 -#: ../../godmode/modules/manage_network_components_form_common.php:59 -#: ../../godmode/users/configure_user.php:532 -#: ../../enterprise/godmode/modules/configure_local_component.php:157 -#: ../../enterprise/meta/advanced/metasetup.setup.php:107 -msgid "Basic" -msgstr "Basic" +#: ../../include/functions_pandora_networkmap.php:741 +msgid "Holding Area" +msgstr "Holding Area" -#: ../../godmode/alerts/alert_commands.php:152 -#: ../../godmode/alerts/alert_commands.php:162 -#: ../../godmode/alerts/configure_alert_template.php:693 -#: ../../godmode/alerts/configure_alert_template.php:707 -#: ../../godmode/alerts/configure_alert_template.php:776 -#: ../../godmode/modules/manage_network_components_form_common.php:60 -#: ../../godmode/netflow/nf_edit_form.php:208 -#: ../../godmode/users/configure_user.php:533 -#: ../../operation/netflow/nf_live_view.php:323 -#: ../../enterprise/godmode/modules/configure_local_component.php:158 -#: ../../enterprise/meta/general/logon_ok.php:64 -#: ../../enterprise/meta/general/main_header.php:232 -#: ../../enterprise/meta/general/main_header.php:303 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245 -msgid "Advanced" -msgstr "Advanced" +#: ../../include/functions_pandora_networkmap.php:742 +msgid "Show details and options" +msgstr "Show details and options" -#: ../../godmode/alerts/alert_commands.php:249 -msgid "Alert commands" -msgstr "Alert commands" +#: ../../include/functions_pandora_networkmap.php:743 +msgid "Add a interface link" +msgstr "Add an interface link" -#: ../../godmode/alerts/alert_commands.php:372 -msgid "No alert commands configured" -msgstr "No alert commands configured" +#: ../../include/functions_pandora_networkmap.php:744 +msgid "Set parent interface" +msgstr "Set parent interface" -#: ../../godmode/alerts/alert_list.builder.php:78 -msgid "Latest value" -msgstr "Latest value" +#: ../../include/functions_pandora_networkmap.php:745 +msgid "Set as children" +msgstr "Define as children element" -#: ../../godmode/alerts/alert_list.builder.php:94 -#: ../../godmode/alerts/configure_alert_template.php:564 -msgid "Default action" -msgstr "Default action" +#: ../../include/functions_pandora_networkmap.php:746 +msgid "Set parent" +msgstr "Define as parent element" -#: ../../godmode/alerts/alert_list.builder.php:97 -#: ../../godmode/alerts/alert_list.list.php:615 -#: ../../godmode/massive/massive_add_action_alerts.php:183 -#: ../../include/ajax/alert_list.ajax.php:155 -#: ../../enterprise/godmode/alerts/alert_events_list.php:599 -#: ../../enterprise/godmode/policies/policy_alerts.php:465 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:278 -msgid "Number of alerts match from" -msgstr "Number of alerts match from" +#: ../../include/functions_pandora_networkmap.php:747 +#: ../../include/functions_pandora_networkmap.php:754 +msgid "Abort the action of set relationship" +msgstr "Abort the action of set relationship" -#: ../../godmode/alerts/alert_list.builder.php:99 -#: ../../godmode/alerts/alert_list.list.php:533 -#: ../../godmode/alerts/alert_list.list.php:619 -#: ../../godmode/alerts/alert_templates.php:96 -#: ../../godmode/massive/massive_add_action_alerts.php:185 -#: ../../include/ajax/alert_list.ajax.php:159 -#: ../../include/functions_reporting.php:9994 -#: ../../operation/reporting/reporting_viewer.php:198 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:107 -#: ../../enterprise/godmode/alerts/alert_events_list.php:560 -#: ../../enterprise/godmode/alerts/alert_events_list.php:601 -#: ../../enterprise/godmode/policies/policy_alerts.php:337 -#: ../../enterprise/godmode/policies/policy_alerts.php:469 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:223 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:280 -#: ../../enterprise/include/functions_reporting.php:4587 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:150 -msgid "to" -msgstr "to" +#: ../../include/functions_pandora_networkmap.php:749 +#: ../../include/functions_pandora_networkmap.php:1525 +msgid "Add node" +msgstr "Add node" -#: ../../godmode/alerts/alert_list.builder.php:109 -#: ../../godmode/alerts/configure_alert_action.php:101 -#: ../../enterprise/godmode/alerts/alert_events.php:517 -msgid "Create Action" -msgstr "Create Action" +#: ../../include/functions_pandora_networkmap.php:750 +msgid "Set center" +msgstr "Set centre" -#: ../../godmode/alerts/alert_list.builder.php:131 -#: ../../godmode/alerts/configure_alert_template.php:499 -msgid "Create Template" -msgstr "Create Template" +#: ../../include/functions_pandora_networkmap.php:752 +msgid "Refresh Holding area" +msgstr "Refresh Holding Area" -#: ../../godmode/alerts/alert_list.builder.php:134 -#: ../../godmode/alerts/alert_list.list.php:539 -#: ../../godmode/alerts/alert_list.list.php:625 -#: ../../godmode/alerts/alert_view.php:391 -#: ../../godmode/alerts/configure_alert_action.php:142 -#: ../../include/ajax/alert_list.ajax.php:165 -#: ../../include/functions_reporting_html.php:2113 -#: ../../include/functions_reporting_html.php:3108 -#: ../../enterprise/godmode/alerts/alert_events_list.php:563 -#: ../../enterprise/godmode/alerts/alert_events_list.php:604 -#: ../../enterprise/include/functions_reporting_pdf.php:2364 -msgid "Threshold" -msgstr "Threshold" +#: ../../include/functions_pandora_networkmap.php:753 +msgid "Abort the action of set interface relationship" +msgstr "Abort 'set interface relationship'" -#: ../../godmode/alerts/alert_list.builder.php:144 -msgid "Add alert" -msgstr "Add alert" +#: ../../include/functions_pandora_networkmap.php:939 +#: ../../include/functions_maps.php:62 +msgid "Copy of " +msgstr "Copy of " -#: ../../godmode/alerts/alert_list.builder.php:209 -#: ../../godmode/massive/massive_copy_modules.php:80 -#: ../../godmode/massive/massive_copy_modules.php:193 -#: ../../godmode/massive/massive_delete_agents.php:116 -#: ../../godmode/massive/massive_delete_modules.php:456 -#: ../../godmode/massive/massive_delete_modules.php:470 -#: ../../godmode/massive/massive_edit_agents.php:219 -#: ../../godmode/massive/massive_edit_modules.php:299 -#: ../../godmode/massive/massive_edit_modules.php:330 -#: ../../include/ajax/module.php:824 ../../include/functions.php:1032 -#: ../../include/functions_reports.php:426 -#: ../../include/functions_alerts.php:593 -#: ../../include/functions_visual_map.php:1580 -#: ../../include/functions_visual_map.php:1601 -#: ../../include/functions_visual_map.php:1617 -#: ../../include/functions_visual_map.php:1633 -#: ../../include/functions_events.php:1392 -#: ../../include/functions_events.php:2855 -#: ../../include/functions_filemanager.php:706 -#: ../../include/functions_graph.php:773 -#: ../../include/functions_graph.php:2189 -#: ../../include/functions_graph.php:3959 -#: ../../include/functions_groups.php:803 -#: ../../include/functions_groups.php:805 -#: ../../include/functions_groups.php:807 -#: ../../include/functions_groups.php:808 -#: ../../include/functions_groups.php:809 ../../include/functions_maps.php:46 -#: ../../include/graphs/functions_flot.php:461 -#: ../../include/functions_reporting.php:3441 -#: ../../include/functions_reporting_html.php:490 -#: ../../include/functions_reporting_html.php:569 -#: ../../include/functions_reporting_html.php:1558 -#: ../../include/functions_reporting_html.php:1579 -#: ../../include/functions_reporting_html.php:2042 -#: ../../include/functions_reporting_html.php:2204 -#: ../../include/functions_ui.php:449 ../../include/functions_ui.php:450 -#: ../../mobile/operation/agents.php:36 ../../mobile/operation/modules.php:42 -#: ../../operation/agentes/estado_agente.php:189 -#: ../../operation/agentes/estado_monitores.php:453 -#: ../../operation/agentes/group_view.php:166 -#: ../../operation/agentes/group_view.php:169 -#: ../../operation/agentes/pandora_networkmap.view.php:245 -#: ../../operation/agentes/status_monitor.php:302 -#: ../../operation/agentes/tactical.php:153 ../../operation/tree.php:134 -#: ../../operation/tree.php:159 ../../operation/tree.php:293 -#: ../../enterprise/dashboard/widgets/events_list.php:185 -#: ../../enterprise/dashboard/widgets/service_map.php:87 -#: ../../enterprise/dashboard/widgets/tree_view.php:56 -#: ../../enterprise/dashboard/widgets/tree_view.php:69 -#: ../../enterprise/dashboard/widgets/tree_view.php:217 -#: ../../enterprise/extensions/cron/functions.php:229 -#: ../../enterprise/include/functions_reporting.php:1288 -#: ../../enterprise/include/functions_reporting.php:2080 -#: ../../enterprise/include/functions_reporting.php:2857 -#: ../../enterprise/include/functions_reporting.php:3759 -#: ../../enterprise/include/functions_reporting.php:4446 -#: ../../enterprise/include/functions_reporting.php:4777 -#: ../../enterprise/include/functions_reporting_pdf.php:331 -#: ../../enterprise/include/functions_reporting_pdf.php:692 -#: ../../enterprise/include/functions_reporting_pdf.php:710 -#: ../../enterprise/include/functions_reporting_pdf.php:1316 -#: ../../enterprise/include/functions_reporting_pdf.php:1397 -#: ../../enterprise/include/functions_reporting_pdf.php:1641 -#: ../../enterprise/include/functions_reporting_pdf.php:2062 -#: ../../enterprise/include/functions_reporting_pdf.php:2097 -#: ../../enterprise/meta/monitoring/group_view.php:146 -#: ../../enterprise/meta/monitoring/group_view.php:150 -#: ../../enterprise/meta/monitoring/tactical.php:281 -#: ../../enterprise/operation/agentes/transactional_map.php:270 -#: ../../enterprise/operation/agentes/transactional_map.php:287 -#: ../../enterprise/operation/services/services.list.php:173 -#: ../../enterprise/operation/services/services.list.php:415 -#: ../../enterprise/operation/services/services.service.php:193 -#: ../../enterprise/operation/services/services.service_map.php:129 -#: ../../enterprise/operation/services/services.table_services.php:142 -msgid "Unknown" -msgstr "Unknown" +#: ../../include/functions_pandora_networkmap.php:1262 +msgid "Open Minimap" +msgstr "Open Minimap" -#: ../../godmode/alerts/alert_list.builder.php:212 -#: ../../godmode/alerts/configure_alert_template.php:915 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../godmode/modules/manage_network_components_form_plugin.php:29 -#: ../../godmode/modules/manage_network_components_form_wmi.php:58 -#: ../../include/functions.php:2036 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:464 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:744 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:951 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:96 -#: ../../enterprise/operation/agentes/policy_view.php:146 -#: ../../enterprise/operation/agentes/policy_view.php:210 -#: ../../enterprise/operation/agentes/policy_view.php:442 -msgid "Empty" -msgstr "Empty" +#: ../../include/functions_pandora_networkmap.php:1269 +msgid "Hide Labels" +msgstr "Hide Labels" -#: ../../godmode/alerts/alert_list.list.php:58 -#: ../../enterprise/godmode/reporting/graph_template_list.php:124 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1484 -msgid "Template name" -msgstr "Template name" +#: ../../include/functions_pandora_networkmap.php:1360 +msgid "Edit node" +msgstr "Edit node" -#: ../../godmode/alerts/alert_list.list.php:124 -msgid "Field content" -msgstr "Field content" +#: ../../include/functions_pandora_networkmap.php:1371 +msgid "Adresses" +msgstr "Addresses" -#: ../../godmode/alerts/alert_list.list.php:133 -msgid "Enabled / Disabled" -msgstr "Enabled / Disabled" +#: ../../include/functions_pandora_networkmap.php:1373 +msgid "OS type" +msgstr "OS type" -#: ../../godmode/alerts/alert_list.list.php:135 -#: ../../godmode/alerts/alert_list.list.php:793 -#: ../../godmode/extensions.php:273 ../../godmode/users/user_list.php:466 -#: ../../enterprise/godmode/agentes/plugins_manager.php:146 -#: ../../enterprise/godmode/agentes/plugins_manager.php:193 -#: ../../enterprise/godmode/alerts/alert_events_list.php:715 -#: ../../enterprise/godmode/policies/policy_alerts.php:564 -msgid "Enable" -msgstr "Enable" +#: ../../include/functions_pandora_networkmap.php:1378 +#: ../../include/functions_pandora_networkmap.php:1379 +msgid "Node Details" +msgstr "Node Details" -#: ../../godmode/alerts/alert_list.list.php:136 -#: ../../godmode/alerts/alert_list.list.php:784 -#: ../../godmode/extensions.php:277 ../../godmode/users/user_list.php:463 -#: ../../include/functions.php:2582 -#: ../../enterprise/godmode/agentes/plugins_manager.php:146 -#: ../../enterprise/godmode/agentes/plugins_manager.php:206 -#: ../../enterprise/godmode/alerts/alert_events_list.php:707 -#: ../../enterprise/godmode/policies/policy_alerts.php:556 -msgid "Disable" -msgstr "Disable" +#: ../../include/functions_pandora_networkmap.php:1388 +msgid "Ip" +msgstr "Ip" -#: ../../godmode/alerts/alert_list.list.php:138 -#: ../../operation/agentes/alerts_status.functions.php:103 -#: ../../operation/agentes/alerts_status.php:416 -#: ../../operation/agentes/alerts_status.php:462 -#: ../../operation/agentes/alerts_status.php:497 -#: ../../operation/agentes/alerts_status.php:532 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1487 -#: ../../enterprise/operation/agentes/policy_view.php:193 -msgid "Standby" -msgstr "Stand by" +#: ../../include/functions_pandora_networkmap.php:1389 +msgid "MAC" +msgstr "MAC" -#: ../../godmode/alerts/alert_list.list.php:140 -#: ../../include/functions_ui.php:826 ../../mobile/operation/alerts.php:44 -#: ../../operation/agentes/alerts_status.functions.php:80 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:898 -#: ../../enterprise/operation/agentes/policy_view.php:221 -msgid "Standby on" -msgstr "Standby on" +#: ../../include/functions_pandora_networkmap.php:1398 +#: ../../include/functions_pandora_networkmap.php:1399 +msgid "Interface Information (SNMP)" +msgstr "Interface Information (SNMP)" -#: ../../godmode/alerts/alert_list.list.php:141 -#: ../../mobile/operation/alerts.php:45 -#: ../../operation/agentes/alerts_status.functions.php:81 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:900 -msgid "Standby off" -msgstr "Standby off" +#: ../../include/functions_pandora_networkmap.php:1406 +msgid "Shape" +msgstr "Shape" -#: ../../godmode/alerts/alert_list.list.php:163 -#: ../../operation/agentes/alerts_status.php:396 -msgid "Alert control filter" -msgstr "Alert control filter" +#: ../../include/functions_pandora_networkmap.php:1408 +msgid "Circle" +msgstr "Circle" -#: ../../godmode/alerts/alert_list.list.php:163 -#: ../../godmode/snmpconsole/snmp_alert.php:1019 -#: ../../godmode/users/user_list.php:249 -#: ../../operation/agentes/alerts_status.php:396 -#: ../../operation/agentes/graphs.php:163 -#: ../../operation/snmpconsole/snmp_view.php:559 -#: ../../enterprise/godmode/policies/policy_queue.php:277 -#: ../../enterprise/godmode/policies/policy_queue.php:364 -msgid "Toggle filter(s)" -msgstr "Toggle filter(s)" +#: ../../include/functions_pandora_networkmap.php:1409 +msgid "Square" +msgstr "Square" -#: ../../godmode/alerts/alert_list.list.php:412 -#: ../../godmode/massive/massive_copy_modules.php:133 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129 -#: ../../enterprise/godmode/alerts/alert_events_list.php:427 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:412 -#: ../../enterprise/godmode/policies/policy_alerts.php:242 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:308 -msgid "Operations" -msgstr "Operations" +#: ../../include/functions_pandora_networkmap.php:1410 +msgid "Rhombus" +msgstr "Rhomb" -#: ../../godmode/alerts/alert_list.list.php:412 -#: ../../godmode/alerts/alert_templates.php:302 -#: ../../godmode/reporting/graphs.php:163 -#: ../../godmode/reporting/reporting_builder.list_items.php:308 -#: ../../godmode/reporting/reporting_builder.php:567 -#: ../../godmode/reporting/reporting_builder.php:687 -#: ../../godmode/servers/plugin.php:739 -#: ../../godmode/servers/servers.build_table.php:76 -#: ../../godmode/users/profile_list.php:327 -#: ../../godmode/users/user_list.php:278 -#: ../../operation/gis_maps/gis_map.php:94 -#: ../../enterprise/godmode/alerts/alert_events_list.php:427 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:412 -#: ../../enterprise/godmode/modules/local_components.php:484 -#: ../../enterprise/godmode/policies/policies.php:261 -#: ../../enterprise/godmode/policies/policy_alerts.php:242 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:255 -#: ../../enterprise/meta/advanced/servers.build_table.php:71 -msgid "Op." -msgstr "Op." +#: ../../include/functions_pandora_networkmap.php:1420 +#: ../../include/functions_pandora_networkmap.php:1581 +msgid "name fictional node" +msgstr "Name fictional node" -#: ../../godmode/alerts/alert_list.list.php:505 -#: ../../godmode/alerts/alert_view.php:356 -msgid "" -"The default actions will be executed every time that the alert is fired and " -"no other action is executed" +#: ../../include/functions_pandora_networkmap.php:1421 +#: ../../include/functions_pandora_networkmap.php:1582 +msgid "Networkmap to link" +msgstr "Networkmap to link" + +#: ../../include/functions_pandora_networkmap.php:1427 +msgid "Update fictional node" +msgstr "Update fictional node" + +#: ../../include/functions_pandora_networkmap.php:1430 +#: ../../include/functions_pandora_networkmap.php:1431 +msgid "Node options" +msgstr "Node Options" + +#: ../../include/functions_pandora_networkmap.php:1438 +#: ../../include/functions_pandora_networkmap.php:1493 +msgid "Node source" +msgstr "Node Source" + +#: ../../include/functions_pandora_networkmap.php:1439 +#: ../../include/functions_pandora_networkmap.php:1494 +msgid "Interface source" +msgstr "Interface Source" + +#: ../../include/functions_pandora_networkmap.php:1440 +#: ../../include/functions_pandora_networkmap.php:1495 +msgid "Interface Target" +msgstr "Interface Target" + +#: ../../include/functions_pandora_networkmap.php:1442 +#: ../../include/functions_pandora_networkmap.php:1496 +msgid "Node target" +msgstr "Node Target" + +#: ../../include/functions_pandora_networkmap.php:1443 +msgid "E." +msgstr "E." + +#: ../../include/functions_pandora_networkmap.php:1474 +msgid "There are not relations" +msgstr "There are no relations." + +#: ../../include/functions_pandora_networkmap.php:1481 +#: ../../include/functions_pandora_networkmap.php:1482 +msgid "Relations" +msgstr "Relations" + +#: ../../include/functions_pandora_networkmap.php:1517 +msgid "Add interface link" +msgstr "Add interface link" + +#: ../../include/functions_pandora_networkmap.php:1544 +#: ../../include/functions_pandora_networkmap.php:1548 +#: ../../include/functions_pandora_networkmap.php:1549 +#: ../../include/functions_pandora_networkmap.php:1569 +#: ../../include/functions_pandora_networkmap.php:1574 +#: ../../include/functions_pandora_networkmap.php:1592 +msgid "Add agent node" +msgstr "Add Agent Node" + +#: ../../include/functions_pandora_networkmap.php:1573 +msgid "Add agent node (filter by group)" +msgstr "Add Agent Node (filter by group)" + +#: ../../include/functions_pandora_networkmap.php:1588 +msgid "Add fictional node" +msgstr "Add Fictional Node" + +#: ../../include/functions_pandora_networkmap.php:1591 +msgid "Add fictional point" +msgstr "Add fictional point" + +#: ../../include/class/Tree.class.php:1492 +msgid "NO DATA" +msgstr "NO DATA" + +#: ../../include/class/Tree.class.php:1578 +msgid "Module alerts" +msgstr "Module alerts" + +#: ../../include/functions_servers.php:363 +msgid "Data server" +msgstr "Data server" + +#: ../../include/functions_servers.php:368 +msgid "Network server" +msgstr "Network server" + +#: ../../include/functions_servers.php:373 +msgid "SNMP Trap server" +msgstr "SNMP Trap server" + +#: ../../include/functions_servers.php:383 +msgid "Plugin server" +msgstr "Plug-in server" + +#: ../../include/functions_servers.php:388 +msgid "Prediction server" +msgstr "Prediction server" + +#: ../../include/functions_servers.php:393 +msgid "WMI server" +msgstr "WMI server" + +#: ../../include/functions_servers.php:398 +msgid "Export server" +msgstr "Export server" + +#: ../../include/functions_servers.php:403 +msgid "Inventory server" +msgstr "Inventory server" + +#: ../../include/functions_servers.php:408 +msgid "Web server" +msgstr "Web server" + +#: ../../include/functions_servers.php:413 +msgid "Event server" +msgstr "Event server" + +#: ../../include/functions_servers.php:418 +msgid "Enterprise ICMP server" +msgstr "Enterprise ICMP server" + +#: ../../include/functions_servers.php:423 +msgid "Enterprise SNMP server" +msgstr "Enterprise SNMP server" + +#: ../../include/functions_servers.php:428 +msgid "Enterprise Satellite server" +msgstr "Enterprise Satellite server" + +#: ../../include/functions_servers.php:433 +msgid "Enterprise Transactional server" +msgstr "Enterprise Transactional server" + +#: ../../include/functions_servers.php:438 +msgid "Mainframe server" msgstr "" -"Default actions will run every time an alert is fired and no other action is " -"executed." -#: ../../godmode/alerts/alert_list.list.php:524 -#: ../../godmode/alerts/alert_view.php:195 -#: ../../include/functions_alerts.php:577 -#: ../../enterprise/godmode/alerts/alert_events_list.php:551 -#: ../../enterprise/godmode/policies/policy_alerts.php:328 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:214 -msgid "Always" -msgstr "Always" - -#: ../../godmode/alerts/alert_list.list.php:526 -#: ../../enterprise/godmode/alerts/alert_events_list.php:553 -#: ../../enterprise/godmode/policies/policy_alerts.php:330 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:216 -msgid "On" -msgstr "On" - -#: ../../godmode/alerts/alert_list.list.php:530 -#: ../../enterprise/godmode/alerts/alert_events_list.php:557 -#: ../../enterprise/godmode/policies/policy_alerts.php:334 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:220 -msgid "Until" -msgstr "Until" - -#: ../../godmode/alerts/alert_list.list.php:552 -msgid "Delete action" -msgstr "Delete action" - -#: ../../godmode/alerts/alert_list.list.php:559 -#: ../../godmode/alerts/alert_list.list.php:871 -msgid "Update action" -msgstr "Update action" - -#: ../../godmode/alerts/alert_list.list.php:703 -#: ../../godmode/alerts/alert_list.list.php:707 -#: ../../godmode/alerts/alert_list.list.php:841 -#: ../../godmode/snmpconsole/snmp_alert.php:1234 -#: ../../enterprise/godmode/alerts/alert_events_list.php:582 -#: ../../enterprise/godmode/alerts/alert_events_list.php:584 -#: ../../enterprise/godmode/policies/policy_alerts.php:596 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:242 -msgid "Add action" -msgstr "Add action" - -#: ../../godmode/alerts/alert_list.list.php:718 -msgid "View alert advanced details" -msgstr "View the alert's advanced details" - -#: ../../godmode/alerts/alert_list.list.php:729 -msgid "No alerts defined" -msgstr "No alerts defined" - -#: ../../godmode/alerts/alert_list.list.php:802 -#: ../../enterprise/godmode/alerts/alert_events_list.php:724 -#: ../../enterprise/godmode/policies/policy_alerts.php:573 -msgid "Set off standby" -msgstr "Turn off standby" - -#: ../../godmode/alerts/alert_list.list.php:811 -#: ../../enterprise/godmode/alerts/alert_events_list.php:733 -#: ../../enterprise/godmode/policies/policy_alerts.php:582 -msgid "Set standby" -msgstr "Set standby" - -#: ../../godmode/alerts/alert_list.php:80 -msgid "Already added" -msgstr "Already added" - -#: ../../godmode/alerts/alert_list.php:170 -#: ../../godmode/massive/massive_add_action_alerts.php:112 -#: ../../godmode/massive/massive_add_alerts.php:112 -#: ../../godmode/massive/massive_add_tags.php:88 -#: ../../operation/incidents/incident_detail.php:67 -#: ../../enterprise/godmode/alerts/alert_events_list.php:186 -#: ../../enterprise/godmode/policies/policy_agents.php:144 -msgid "Successfully added" -msgstr "Successfully added" - -#: ../../godmode/alerts/alert_list.php:170 -#: ../../godmode/massive/massive_add_action_alerts.php:59 -#: ../../godmode/massive/massive_add_action_alerts.php:96 -#: ../../godmode/massive/massive_add_action_alerts.php:112 -#: ../../godmode/massive/massive_add_action_alerts.php:116 -#: ../../godmode/massive/massive_add_action_alerts.php:120 -#: ../../godmode/massive/massive_add_alerts.php:113 -#: ../../godmode/massive/massive_add_tags.php:89 -#: ../../godmode/massive/massive_delete_action_alerts.php:119 -#: ../../operation/incidents/incident_detail.php:68 -#: ../../enterprise/godmode/alerts/alert_events_list.php:187 -#: ../../enterprise/godmode/policies/policy_agents.php:145 -#: ../../enterprise/godmode/policies/policy_alerts.php:188 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:121 -msgid "Could not be added" -msgstr "Could not be added" - -#: ../../godmode/alerts/alert_list.php:264 -#: ../../godmode/massive/massive_standby_alerts.php:96 -#: ../../enterprise/godmode/alerts/alert_events_list.php:255 -#: ../../enterprise/godmode/policies/policy_alerts.php:122 -msgid "Successfully set standby" -msgstr "Succesfully set to standby mode" - -#: ../../godmode/alerts/alert_list.php:264 -#: ../../godmode/massive/massive_standby_alerts.php:96 -#: ../../enterprise/godmode/alerts/alert_events_list.php:256 -#: ../../enterprise/godmode/policies/policy_alerts.php:122 -msgid "Could not be set standby" -msgstr "Could not be set to standby mode" - -#: ../../godmode/alerts/alert_list.php:281 -#: ../../godmode/massive/massive_standby_alerts.php:78 -#: ../../enterprise/godmode/alerts/alert_events_list.php:272 -#: ../../enterprise/godmode/policies/policy_alerts.php:139 -msgid "Successfully set off standby" -msgstr "Successfully turned off standby" - -#: ../../godmode/alerts/alert_list.php:281 -#: ../../godmode/massive/massive_standby_alerts.php:78 -#: ../../enterprise/godmode/alerts/alert_events_list.php:273 -#: ../../enterprise/godmode/policies/policy_alerts.php:139 -msgid "Could not be set off standby" -msgstr "Standby mode could not be deactivated" - -#: ../../godmode/alerts/alert_list.php:313 -#: ../../godmode/alerts/alert_view.php:61 -#: ../../godmode/alerts/alert_view.php:62 -#: ../../godmode/alerts/alert_view.php:63 -msgid "List alerts" -msgstr "List alerts" - -#: ../../godmode/alerts/alert_list.php:317 -msgid "Builder alert" -msgstr "Builder alert" - -#: ../../godmode/alerts/alert_list.php:326 -#: ../../godmode/alerts/alert_list.php:329 -#: ../../godmode/users/configure_profile.php:268 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:456 -msgid "Manage alerts" -msgstr "Manage alerts" - -#: ../../godmode/alerts/alert_special_days.php:44 ../../godmode/menu.php:164 -#: ../../godmode/menu.php:165 -msgid "Special days list" -msgstr "List of special days" - -#: ../../godmode/alerts/alert_special_days.php:86 -msgid "Skipped dates: " -msgstr "Skipped dates: " - -#: ../../godmode/alerts/alert_special_days.php:106 -msgid "Success to upload iCalendar" -msgstr "Success to upload iCalendar" - -#: ../../godmode/alerts/alert_special_days.php:106 -msgid "Fail to upload iCalendar" -msgstr "Fail to upload iCalendar" - -#: ../../godmode/alerts/alert_special_days.php:232 -msgid "iCalendar(.ics) file" -msgstr "iCalendar(.ics) file" - -#: ../../godmode/alerts/alert_special_days.php:235 -#: ../../godmode/alerts/configure_alert_special_days.php:79 -msgid "Same day of the week" -msgstr "Same day of the week" - -#: ../../godmode/alerts/alert_special_days.php:237 -#: ../../godmode/alerts/alert_special_days.php:425 -#: ../../godmode/alerts/alert_templates.php:65 -#: ../../godmode/alerts/configure_alert_special_days.php:81 -#: ../../godmode/reporting/reporting_builder.item_editor.php:803 -#: ../../include/functions_html.php:849 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1336 -#: ../../enterprise/include/functions_reporting.php:1175 -#: ../../enterprise/include/functions_reporting.php:1666 -#: ../../enterprise/include/functions_reporting.php:1969 -#: ../../enterprise/include/functions_reporting.php:2391 -#: ../../enterprise/include/functions_reporting.php:3173 -#: ../../enterprise/include/functions_reporting_pdf.php:1525 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:120 -msgid "Monday" -msgstr "Monday" - -#: ../../godmode/alerts/alert_special_days.php:238 -#: ../../godmode/alerts/alert_special_days.php:428 -#: ../../godmode/alerts/alert_templates.php:66 -#: ../../godmode/alerts/configure_alert_special_days.php:82 -#: ../../godmode/reporting/reporting_builder.item_editor.php:809 -#: ../../include/functions_html.php:850 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1342 -#: ../../enterprise/include/functions_reporting.php:1176 -#: ../../enterprise/include/functions_reporting.php:1667 -#: ../../enterprise/include/functions_reporting.php:1970 -#: ../../enterprise/include/functions_reporting.php:2392 -#: ../../enterprise/include/functions_reporting.php:3174 -#: ../../enterprise/include/functions_reporting_pdf.php:1526 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:121 -msgid "Tuesday" -msgstr "Tuesday" - -#: ../../godmode/alerts/alert_special_days.php:239 -#: ../../godmode/alerts/alert_special_days.php:431 -#: ../../godmode/alerts/alert_templates.php:67 -#: ../../godmode/alerts/configure_alert_special_days.php:83 -#: ../../godmode/reporting/reporting_builder.item_editor.php:815 -#: ../../include/functions_html.php:851 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1348 -#: ../../enterprise/include/functions_reporting.php:1177 -#: ../../enterprise/include/functions_reporting.php:1668 -#: ../../enterprise/include/functions_reporting.php:1971 -#: ../../enterprise/include/functions_reporting.php:2393 -#: ../../enterprise/include/functions_reporting.php:3175 -#: ../../enterprise/include/functions_reporting_pdf.php:1527 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 -msgid "Wednesday" -msgstr "Wednesday" - -#: ../../godmode/alerts/alert_special_days.php:240 -#: ../../godmode/alerts/alert_special_days.php:434 -#: ../../godmode/alerts/alert_templates.php:68 -#: ../../godmode/alerts/configure_alert_special_days.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:821 -#: ../../include/functions_html.php:852 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1354 -#: ../../enterprise/include/functions_reporting.php:1178 -#: ../../enterprise/include/functions_reporting.php:1669 -#: ../../enterprise/include/functions_reporting.php:1972 -#: ../../enterprise/include/functions_reporting.php:2394 -#: ../../enterprise/include/functions_reporting.php:3176 -#: ../../enterprise/include/functions_reporting_pdf.php:1528 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:123 -msgid "Thursday" -msgstr "Thursday" - -#: ../../godmode/alerts/alert_special_days.php:241 -#: ../../godmode/alerts/alert_special_days.php:437 -#: ../../godmode/alerts/alert_templates.php:69 -#: ../../godmode/alerts/configure_alert_special_days.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:827 -#: ../../include/functions_html.php:853 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1360 -#: ../../enterprise/include/functions_reporting.php:1179 -#: ../../enterprise/include/functions_reporting.php:1670 -#: ../../enterprise/include/functions_reporting.php:1973 -#: ../../enterprise/include/functions_reporting.php:2395 -#: ../../enterprise/include/functions_reporting.php:3177 -#: ../../enterprise/include/functions_reporting_pdf.php:1529 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:124 -msgid "Friday" -msgstr "Friday" - -#: ../../godmode/alerts/alert_special_days.php:242 -#: ../../godmode/alerts/alert_special_days.php:440 -#: ../../godmode/alerts/alert_templates.php:70 -#: ../../godmode/alerts/configure_alert_special_days.php:86 -#: ../../godmode/reporting/reporting_builder.item_editor.php:833 -#: ../../include/functions_html.php:854 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1366 -#: ../../enterprise/include/functions_reporting.php:1180 -#: ../../enterprise/include/functions_reporting.php:1671 -#: ../../enterprise/include/functions_reporting.php:1974 -#: ../../enterprise/include/functions_reporting.php:2396 -#: ../../enterprise/include/functions_reporting.php:3178 -#: ../../enterprise/include/functions_reporting_pdf.php:1530 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:125 -msgid "Saturday" -msgstr "Saturday" - -#: ../../godmode/alerts/alert_special_days.php:243 -#: ../../godmode/alerts/alert_special_days.php:443 -#: ../../godmode/alerts/alert_templates.php:71 -#: ../../godmode/alerts/configure_alert_special_days.php:87 -#: ../../godmode/reporting/reporting_builder.item_editor.php:839 -#: ../../include/functions_html.php:848 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1372 -#: ../../enterprise/include/functions_reporting.php:1181 -#: ../../enterprise/include/functions_reporting.php:1672 -#: ../../enterprise/include/functions_reporting.php:1975 -#: ../../enterprise/include/functions_reporting.php:2397 -#: ../../enterprise/include/functions_reporting.php:3179 -#: ../../enterprise/include/functions_reporting_pdf.php:1531 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:126 -msgid "Sunday" -msgstr "Sunday" - -#: ../../godmode/alerts/alert_special_days.php:254 -msgid "Overwrite" -msgstr "Overwrite" - -#: ../../godmode/alerts/alert_special_days.php:255 -msgid "Check this box, if you want to overwrite existing same days." -msgstr "Check this box, if you want to overwrite existing same days." - -#: ../../godmode/alerts/alert_special_days.php:273 -msgid "Display range: " -msgstr "Display range: " - -#: ../../godmode/alerts/alert_special_days.php:347 -#: ../../enterprise/include/functions_reporting.php:1213 -#: ../../enterprise/include/functions_reporting.php:2010 -#: ../../enterprise/include/functions_reporting.php:2788 -#: ../../enterprise/include/functions_reporting_pdf.php:1562 -msgid "January" -msgstr "January" - -#: ../../godmode/alerts/alert_special_days.php:350 -#: ../../enterprise/include/functions_reporting.php:1216 -#: ../../enterprise/include/functions_reporting.php:2013 -#: ../../enterprise/include/functions_reporting.php:2791 -#: ../../enterprise/include/functions_reporting_pdf.php:1565 -msgid "February" -msgstr "February" - -#: ../../godmode/alerts/alert_special_days.php:353 -#: ../../enterprise/include/functions_reporting.php:1219 -#: ../../enterprise/include/functions_reporting.php:2016 -#: ../../enterprise/include/functions_reporting.php:2794 -#: ../../enterprise/include/functions_reporting_pdf.php:1568 -msgid "March" -msgstr "March" - -#: ../../godmode/alerts/alert_special_days.php:356 -#: ../../enterprise/include/functions_reporting.php:1222 -#: ../../enterprise/include/functions_reporting.php:2019 -#: ../../enterprise/include/functions_reporting.php:2797 -#: ../../enterprise/include/functions_reporting_pdf.php:1571 -msgid "April" -msgstr "April" - -#: ../../godmode/alerts/alert_special_days.php:359 -#: ../../enterprise/include/functions_reporting.php:1225 -#: ../../enterprise/include/functions_reporting.php:2022 -#: ../../enterprise/include/functions_reporting.php:2800 -#: ../../enterprise/include/functions_reporting_pdf.php:1574 -msgid "May" -msgstr "May" - -#: ../../godmode/alerts/alert_special_days.php:362 -#: ../../enterprise/include/functions_reporting.php:1228 -#: ../../enterprise/include/functions_reporting.php:2025 -#: ../../enterprise/include/functions_reporting.php:2803 -#: ../../enterprise/include/functions_reporting_pdf.php:1577 -msgid "June" -msgstr "June" - -#: ../../godmode/alerts/alert_special_days.php:365 -#: ../../enterprise/include/functions_reporting.php:1231 -#: ../../enterprise/include/functions_reporting.php:2028 -#: ../../enterprise/include/functions_reporting.php:2806 -#: ../../enterprise/include/functions_reporting_pdf.php:1580 -msgid "July" -msgstr "July" - -#: ../../godmode/alerts/alert_special_days.php:368 -#: ../../enterprise/include/functions_reporting.php:1234 -#: ../../enterprise/include/functions_reporting.php:2031 -#: ../../enterprise/include/functions_reporting.php:2809 -#: ../../enterprise/include/functions_reporting_pdf.php:1583 -msgid "August" -msgstr "August" - -#: ../../godmode/alerts/alert_special_days.php:371 -#: ../../enterprise/include/functions_reporting.php:1237 -#: ../../enterprise/include/functions_reporting.php:2034 -#: ../../enterprise/include/functions_reporting.php:2812 -#: ../../enterprise/include/functions_reporting_pdf.php:1586 -msgid "September" -msgstr "September" - -#: ../../godmode/alerts/alert_special_days.php:374 -#: ../../enterprise/include/functions_reporting.php:1240 -#: ../../enterprise/include/functions_reporting.php:2037 -#: ../../enterprise/include/functions_reporting.php:2815 -#: ../../enterprise/include/functions_reporting_pdf.php:1589 -msgid "October" -msgstr "October" - -#: ../../godmode/alerts/alert_special_days.php:377 -#: ../../enterprise/include/functions_reporting.php:1243 -#: ../../enterprise/include/functions_reporting.php:2040 -#: ../../enterprise/include/functions_reporting.php:2818 -#: ../../enterprise/include/functions_reporting_pdf.php:1592 -msgid "November" -msgstr "November" - -#: ../../godmode/alerts/alert_special_days.php:380 -#: ../../enterprise/include/functions_reporting.php:1246 -#: ../../enterprise/include/functions_reporting.php:2043 -#: ../../enterprise/include/functions_reporting.php:2821 -#: ../../enterprise/include/functions_reporting_pdf.php:1595 -msgid "December" -msgstr "December" - -#: ../../godmode/alerts/alert_special_days.php:422 -msgid "Same as " -msgstr "Same as " - -#: ../../godmode/alerts/alert_special_days.php:452 -#: ../../godmode/events/event_edit_filter.php:361 -#: ../../godmode/events/event_edit_filter.php:376 -#: ../../operation/events/events_list.php:338 -#: ../../operation/events/events_list.php:365 -#: ../../enterprise/godmode/agentes/collection_manager.php:167 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:115 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:113 -#: ../../enterprise/godmode/policies/policy_collections.php:125 -msgid "Remove" -msgstr "Remove" - -#: ../../godmode/alerts/alert_templates.php:62 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:117 -msgid "Everyday" -msgstr "Everyday" - -#: ../../godmode/alerts/alert_templates.php:73 -#: ../../include/functions_config.php:703 -#: ../../enterprise/extensions/ipam/ipam_editor.php:95 -#: ../../enterprise/godmode/setup/setup_history.php:68 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:128 -msgid "Days" -msgstr "Days" - -#: ../../godmode/alerts/alert_templates.php:73 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:128 -msgid "Every" -msgstr "Every" - -#: ../../godmode/alerts/alert_templates.php:83 -#: ../../enterprise/dashboard/widgets/tactical.php:32 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:138 -msgid "and" -msgstr "and" - -#: ../../godmode/alerts/alert_templates.php:89 -#: ../../godmode/alerts/alert_view.php:306 -#: ../../godmode/alerts/configure_alert_template.php:549 -#: ../../godmode/snmpconsole/snmp_alert.php:919 -#: ../../enterprise/godmode/alerts/alert_events.php:453 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:143 -msgid "Time threshold" -msgstr "Time threshold" - -#: ../../godmode/alerts/alert_templates.php:268 -#: ../../godmode/modules/manage_network_components.php:532 -#: ../../godmode/reporting/reporting_builder.list_items.php:209 -#: ../../godmode/tag/tag.php:176 ../../godmode/tag/tag.php:281 -#: ../../godmode/users/user_list.php:243 -#: ../../operation/agentes/alerts_status.php:390 -#: ../../operation/agentes/status_monitor.php:533 -#: ../../operation/events/events_list.php:640 ../../operation/tree.php:184 -#: ../../enterprise/godmode/alerts/alert_events_list.php:382 -#: ../../enterprise/godmode/modules/local_components.php:457 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:148 -#: ../../enterprise/meta/advanced/policymanager.queue.php:244 -#: ../../enterprise/meta/agentsearch.php:72 -msgid "Show Options" -msgstr "Show Options" - -#: ../../godmode/alerts/alert_templates.php:359 -msgid "No alert templates defined" -msgstr "No alert templates defined" - -#: ../../godmode/alerts/alert_view.php:49 -#: ../../godmode/alerts/alert_view.php:324 -#: ../../include/functions_events.php:2140 -msgid "Alert details" -msgstr "Alert details" - -#: ../../godmode/alerts/alert_view.php:106 -#: ../../mobile/operation/alerts.php:96 ../../mobile/operation/alerts.php:97 -#: ../../mobile/operation/alerts.php:203 ../../mobile/operation/alerts.php:204 -msgid "Stand by" -msgstr "Stand by" - -#: ../../godmode/alerts/alert_view.php:144 -#: ../../godmode/alerts/configure_alert_template.php:844 -#: ../../include/functions_ui.php:1012 -msgid "" -"The alert would fire when the value matches " +#: ../../include/functions_servers.php:443 +msgid "Sync server" msgstr "" -"The alert is triggered when the value matches " -#: ../../godmode/alerts/alert_view.php:147 ../../include/functions_ui.php:1015 -msgid "" -"The alert would fire when the value doesn't match " -msgstr "" -"The alert is triggered when the value doesn't match " - -#: ../../godmode/alerts/alert_view.php:152 -#: ../../godmode/alerts/configure_alert_template.php:846 -#: ../../include/functions_ui.php:1003 -msgid "The alert would fire when the value is " -msgstr "" -"The alert is triggered when the value is equal to " - -#: ../../godmode/alerts/alert_view.php:156 -#: ../../godmode/alerts/configure_alert_template.php:847 -#: ../../include/functions_ui.php:1007 -msgid "The alert would fire when the value is not " -msgstr "" -"The alert is triggered when the value is different to " - -#: ../../godmode/alerts/alert_view.php:161 -#: ../../godmode/alerts/configure_alert_template.php:848 -#: ../../include/functions_ui.php:1021 -msgid "" -"The alert would fire when the value is between and " -"" -msgstr "" -"The alert is triggered when the value is between " -"and " - -#: ../../godmode/alerts/alert_view.php:164 ../../include/functions_ui.php:1024 -msgid "" -"The alert would fire when the value is not between " -"and " -msgstr "" -"The alert is triggered when the value isn't between " -"and " - -#: ../../godmode/alerts/alert_view.php:170 -#: ../../godmode/alerts/configure_alert_template.php:850 -msgid "The alert would fire when the value is below " -msgstr "" -"The alert is triggered when the value is below " - -#: ../../godmode/alerts/alert_view.php:174 -#: ../../godmode/alerts/configure_alert_template.php:851 -msgid "The alert would fire when the value is above " -msgstr "" -"The alert is triggered when the value is over " - -#: ../../godmode/alerts/alert_view.php:179 -#: ../../godmode/alerts/configure_alert_template.php:854 -msgid "The alert would fire when the module value changes" -msgstr "The alert is triggered when the module's value changes" - -#: ../../godmode/alerts/alert_view.php:182 -#: ../../godmode/alerts/configure_alert_template.php:855 -msgid "The alert would fire when the module value does not change" -msgstr "The alert is triggered when the module's value remains the same" - -#: ../../godmode/alerts/alert_view.php:186 -#: ../../godmode/alerts/configure_alert_template.php:852 -#: ../../include/functions_ui.php:1038 -msgid "The alert would fire when the module is in warning status" -msgstr "The alert is triggered when the module is in warning status" - -#: ../../godmode/alerts/alert_view.php:189 -#: ../../godmode/alerts/configure_alert_template.php:853 -#: ../../include/functions_ui.php:1043 -msgid "The alert would fire when the module is in critical status" -msgstr "The alert is triggered when the module is in critical status" - -#: ../../godmode/alerts/alert_view.php:192 -#: ../../godmode/alerts/configure_alert_template.php:856 -msgid "The alert would fire when the module is in unknown status" -msgstr "The alert is triggered when the module is in unknown status" - -#: ../../godmode/alerts/alert_view.php:298 -#: ../../godmode/alerts/configure_alert_template.php:536 -msgid "Use special days list" -msgstr "Use special days list" - -#: ../../godmode/alerts/alert_view.php:310 -msgid "Number of alerts" -msgstr "Number of alerts" - -#: ../../godmode/alerts/alert_view.php:310 -#: ../../godmode/reporting/reporting_builder.item_editor.php:779 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1291 -#: ../../include/functions_graph.php:758 ../../include/functions_graph.php:759 -#: ../../include/functions_graph.php:760 ../../include/functions_graph.php:763 -#: ../../include/functions_graph.php:1435 -#: ../../include/functions_graph.php:3949 -#: ../../include/functions_graph.php:3954 -#: ../../include/functions_graph.php:4672 -#: ../../include/functions_graph.php:4675 -#: ../../include/functions_graph.php:4678 -#: ../../include/graphs/functions_pchart.php:208 -#: ../../include/graphs/functions_pchart.php:1182 -#: ../../include/functions_reporting.php:956 -#: ../../include/functions_ui.php:2001 -#: ../../enterprise/dashboard/widgets/top_n.php:477 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:199 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:261 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1314 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1592 -#: ../../enterprise/meta/include/functions_wizard_meta.php:840 -#: ../../enterprise/meta/include/functions_wizard_meta.php:849 -#: ../../enterprise/meta/include/functions_wizard_meta.php:926 -#: ../../enterprise/meta/include/functions_wizard_meta.php:935 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1127 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1136 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1343 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1352 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1424 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1433 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1540 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1549 -msgid "Min" -msgstr "Min." - -#: ../../godmode/alerts/alert_view.php:310 -#: ../../godmode/reporting/reporting_builder.item_editor.php:781 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1289 -#: ../../include/functions_graph.php:758 ../../include/functions_graph.php:759 -#: ../../include/functions_graph.php:760 ../../include/functions_graph.php:763 -#: ../../include/functions_graph.php:1433 -#: ../../include/functions_graph.php:3949 -#: ../../include/functions_graph.php:3954 -#: ../../include/functions_graph.php:4672 -#: ../../include/functions_graph.php:4675 -#: ../../include/functions_graph.php:4678 -#: ../../include/graphs/functions_pchart.php:202 -#: ../../include/graphs/functions_pchart.php:1184 -#: ../../include/functions_reporting.php:953 -#: ../../include/functions_ui.php:2001 -#: ../../enterprise/dashboard/widgets/top_n.php:474 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:204 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:258 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1590 -#: ../../enterprise/meta/include/functions_wizard_meta.php:842 -#: ../../enterprise/meta/include/functions_wizard_meta.php:851 -#: ../../enterprise/meta/include/functions_wizard_meta.php:928 -#: ../../enterprise/meta/include/functions_wizard_meta.php:937 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1129 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1138 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1345 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1354 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1426 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1435 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1542 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1551 -msgid "Max" -msgstr "Max." - -#: ../../godmode/alerts/alert_view.php:325 -msgid "Firing conditions" -msgstr "Firing conditions" - -#: ../../godmode/alerts/alert_view.php:348 -#: ../../godmode/alerts/alert_view.php:370 -msgid "Every time that the alert is fired" -msgstr "Every time that the alert is fired" - -#: ../../godmode/alerts/alert_view.php:414 -msgid "" -"Select the desired action and mode to see the Firing/Recovery fields for " -"this action" -msgstr "" -"Select the desired action and mode to view the Firing/Recovery fields for " -"this action" - -#: ../../godmode/alerts/alert_view.php:417 -msgid "Select the action" -msgstr "Choose an action" - -#: ../../godmode/alerts/alert_view.php:420 -#: ../../godmode/alerts/configure_alert_action.php:148 -msgid "Firing" -msgstr "Firing" - -#: ../../godmode/alerts/alert_view.php:421 -msgid "Recovering" -msgstr "Recovering" - -#: ../../godmode/alerts/alert_view.php:423 -#: ../../godmode/massive/massive_edit_modules.php:545 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:243 -#: ../../enterprise/godmode/services/services.service.php:253 -#: ../../enterprise/operation/services/services.list.php:192 -#: ../../enterprise/operation/services/services.table_services.php:161 -msgid "Mode" -msgstr "Mode" - -#: ../../godmode/alerts/alert_view.php:438 -#: ../../godmode/alerts/alert_view.php:532 -#: ../../godmode/alerts/configure_alert_template.php:670 -msgid "Firing fields" -msgstr "Triggering fields" - -#: ../../godmode/alerts/alert_view.php:439 -msgid "" -"Fields passed to the command executed by this action when the alert is fired" -msgstr "" -"When the alert is triggered, action definining fields will be passed to the " -"command." - -#: ../../godmode/alerts/alert_view.php:442 -#: ../../godmode/alerts/alert_view.php:531 -msgid "Fields configured on the command associated to the action" -msgstr "Fields configured on the command associated to the action" - -#: ../../godmode/alerts/alert_view.php:443 -msgid "Template fields" -msgstr "Template fields" - -#: ../../godmode/alerts/alert_view.php:444 -msgid "Triggering fields configured in template" -msgstr "Triggering fields configured in template" - -#: ../../godmode/alerts/alert_view.php:445 -msgid "Action fields" -msgstr "Action fields" - -#: ../../godmode/alerts/alert_view.php:446 -msgid "Triggering fields configured in action" -msgstr "Triggering fields configured in action" - -#: ../../godmode/alerts/alert_view.php:448 -msgid "Executed on firing" -msgstr "Executed upon triggering" - -#: ../../godmode/alerts/alert_view.php:449 -#: ../../godmode/alerts/alert_view.php:532 -msgid "Fields used on execution when the alert is fired" -msgstr "Fields used on execution when the alert is fired" - -#: ../../godmode/alerts/alert_view.php:508 -#: ../../godmode/alerts/alert_view.php:595 -#: ../../godmode/alerts/configure_alert_action.php:153 -#: ../../godmode/servers/plugin.php:381 -msgid "Command preview" -msgstr "Command preview" - -#: ../../godmode/alerts/alert_view.php:516 -msgid "The alert recovering is disabled on this template." -msgstr "Alert recovery is disabled for this template" - -#: ../../godmode/alerts/alert_view.php:529 -msgid "Recovering fields" -msgstr "Recovery fields" - -#: ../../godmode/alerts/alert_view.php:529 -msgid "" -"Fields passed to the command executed by this action when the alert is " -"recovered" -msgstr "" -"Fields passed to the command executed by this action when the alert is " -"recovered" - -#: ../../godmode/alerts/alert_view.php:533 -msgid "Template recovery fields" -msgstr "Template recovery fields" - -#: ../../godmode/alerts/alert_view.php:533 -msgid "Recovery fields configured in alert template" -msgstr "Recovery fields configured on alert templates" - -#: ../../godmode/alerts/alert_view.php:534 -msgid "Action recovery fields" -msgstr "Action recovery fields" - -#: ../../godmode/alerts/alert_view.php:534 -msgid "Recovery fields configured in alert action" -msgstr "Recovery fields configured on alert action" - -#: ../../godmode/alerts/alert_view.php:535 -msgid "Executed on recovery" -msgstr "Executed upon recovery" - -#: ../../godmode/alerts/alert_view.php:535 -msgid "Fields used on execution when the alert is recovered" -msgstr "Fields used upon execution when the alert is recovered" - -#: ../../godmode/alerts/configure_alert_action.php:57 -#: ../../godmode/alerts/configure_alert_action.php:66 -msgid "Configure alert action" -msgstr "Configure alert action" - -#: ../../godmode/alerts/configure_alert_action.php:98 -msgid "Update Action" -msgstr "Update Action" - -#: ../../godmode/alerts/configure_alert_action.php:128 -#: ../../godmode/alerts/configure_alert_command.php:150 -#: ../../godmode/events/event_responses.editor.php:114 -#: ../../godmode/events/event_responses.editor.php:121 -#: ../../godmode/events/event_responses.editor.php:124 -#: ../../godmode/massive/massive_edit_plugins.php:437 -#: ../../godmode/servers/plugin.php:388 ../../godmode/servers/plugin.php:394 -#: ../../godmode/servers/plugin.php:737 -#: ../../godmode/servers/recon_script.php:370 -msgid "Command" -msgstr "Command" - -#: ../../godmode/alerts/configure_alert_action.php:136 -#: ../../godmode/alerts/configure_alert_command.php:130 -msgid "Create Command" -msgstr "Create Command" - -#: ../../godmode/alerts/configure_alert_action.php:149 -msgid "Recovery" -msgstr "Recovery" - -#: ../../godmode/alerts/configure_alert_command.php:42 -msgid "Configure alert command" -msgstr "Configure alert command" - -#: ../../godmode/alerts/configure_alert_command.php:127 -msgid "Update Command" -msgstr "Update Command" - -#: ../../godmode/alerts/configure_alert_command.php:160 -#, php-format -msgid "Field %s description" -msgstr "%s field description" - -#: ../../godmode/alerts/configure_alert_command.php:175 -#, php-format -msgid "Field %s values" -msgstr "%s field values" - -#: ../../godmode/alerts/configure_alert_special_days.php:55 -msgid "Configure special day" -msgstr "Configure special day" - -#: ../../godmode/alerts/configure_alert_template.php:63 -#: ../../godmode/alerts/configure_alert_template.php:82 -#: ../../godmode/alerts/configure_alert_template.php:100 -#: ../../include/functions_menu.php:483 -msgid "Configure alert template" -msgstr "Configure alert template" - -#: ../../godmode/alerts/configure_alert_template.php:118 -#: ../../godmode/modules/manage_network_components.php:160 -#: ../../enterprise/godmode/modules/local_components.php:106 -#, php-format -msgid "Successfully created from %s" -msgstr "Successfully created from %s" - -#: ../../godmode/alerts/configure_alert_template.php:147 -#: ../../godmode/alerts/configure_alert_template.php:152 -#: ../../godmode/alerts/configure_alert_template.php:167 -#: ../../godmode/alerts/configure_alert_template.php:172 -#: ../../godmode/alerts/configure_alert_template.php:187 -#: ../../godmode/alerts/configure_alert_template.php:192 -#: ../../include/functions_config.php:707 -#: ../../enterprise/godmode/alerts/alert_events.php:96 -#: ../../enterprise/godmode/alerts/alert_events.php:101 -#: ../../enterprise/godmode/alerts/alert_events.php:116 -#: ../../enterprise/godmode/alerts/alert_events.php:121 -#: ../../enterprise/godmode/alerts/alert_events.php:136 -#: ../../enterprise/godmode/alerts/alert_events.php:141 -#: ../../enterprise/godmode/setup/setup_history.php:71 -msgid "Step" -msgstr "Step" - -#: ../../godmode/alerts/configure_alert_template.php:148 -#: ../../godmode/alerts/configure_alert_template.php:153 -#: ../../godmode/servers/plugin.php:326 ../../godmode/servers/plugin.php:332 -#: ../../godmode/setup/setup.php:74 ../../godmode/setup/setup.php:112 -#: ../../include/ajax/events.php:299 ../../include/functions_reports.php:581 -#: ../../include/functions_reporting.php:5483 -#: ../../enterprise/godmode/alerts/alert_events.php:97 -#: ../../enterprise/godmode/alerts/alert_events.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 -#: ../../enterprise/include/functions_reporting_csv.php:483 -#: ../../enterprise/meta/include/functions_wizard_meta.php:184 -#: ../../enterprise/meta/include/functions_wizard_meta.php:416 -#: ../../enterprise/meta/include/functions_wizard_meta.php:485 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1014 -msgid "General" -msgstr "General" - -#: ../../godmode/alerts/configure_alert_template.php:168 -#: ../../godmode/alerts/configure_alert_template.php:173 -#: ../../enterprise/godmode/alerts/alert_events.php:117 -#: ../../enterprise/godmode/alerts/alert_events.php:122 -msgid "Conditions" -msgstr "Conditions" - -#: ../../godmode/alerts/configure_alert_template.php:188 -#: ../../godmode/alerts/configure_alert_template.php:193 -#: ../../enterprise/godmode/alerts/alert_events.php:137 -#: ../../enterprise/godmode/alerts/alert_events.php:142 -msgid "Advanced fields" -msgstr "Advanced fields" - -#: ../../godmode/alerts/configure_alert_template.php:520 -#: ../../enterprise/godmode/alerts/alert_events.php:430 -msgid "Days of week" -msgstr "Days of week" - -#: ../../godmode/alerts/configure_alert_template.php:539 -#: ../../godmode/reporting/reporting_builder.item_editor.php:847 -#: ../../enterprise/godmode/alerts/alert_events.php:446 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1380 -msgid "Time from" -msgstr "Set initial time" - -#: ../../godmode/alerts/configure_alert_template.php:543 -#: ../../godmode/reporting/reporting_builder.item_editor.php:856 -#: ../../enterprise/godmode/alerts/alert_events.php:449 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1388 -msgid "Time to" -msgstr "Set end time" - -#: ../../godmode/alerts/configure_alert_template.php:553 -#: ../../godmode/snmpconsole/snmp_alert.php:911 -#: ../../enterprise/godmode/alerts/alert_events.php:457 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:253 -msgid "Min. number of alerts" -msgstr "Min. number of alerts" - -#: ../../godmode/alerts/configure_alert_template.php:557 -msgid "Reset counter for non-sustained alerts" -msgstr "Reset counter for non-sustained alerts" - -#: ../../godmode/alerts/configure_alert_template.php:557 -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 "" -"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" - -#: ../../godmode/alerts/configure_alert_template.php:560 -#: ../../godmode/snmpconsole/snmp_alert.php:914 -#: ../../enterprise/godmode/alerts/alert_events.php:460 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:255 -msgid "Max. number of alerts" -msgstr "Max. number of alerts" - -#: ../../godmode/alerts/configure_alert_template.php:588 -msgid "" -"Unless they're left blank, the fields from the action will override those " -"set on the template." -msgstr "" -"Unless they're left blank, the fields from the action will override those " -"set on the template." - -#: ../../godmode/alerts/configure_alert_template.php:590 -msgid "Condition type" -msgstr "Condition type" - -#: ../../godmode/alerts/configure_alert_template.php:597 -msgid "Trigger when matches the value" -msgstr "Triggered when the value matches" - -#: ../../godmode/alerts/configure_alert_template.php:609 -msgid "The regular expression is valid" -msgstr "The regular expression is valid" - -#: ../../godmode/alerts/configure_alert_template.php:614 -msgid "The regular expression is not valid" -msgstr "The regular expression is not valid" - -#: ../../godmode/alerts/configure_alert_template.php:620 -#: ../../godmode/massive/massive_edit_modules.php:372 -#: ../../godmode/massive/massive_edit_modules.php:418 -#: ../../godmode/massive/massive_edit_modules.php:514 -#: ../../godmode/modules/manage_network_components_form_common.php:119 -#: ../../godmode/modules/manage_network_components_form_common.php:136 -#: ../../include/functions_alerts.php:570 -#: ../../include/functions_graph.php:4322 -#: ../../include/functions_reporting_html.php:3140 -#: ../../include/functions_treeview.php:94 -#: ../../include/functions_treeview.php:107 -#: ../../enterprise/dashboard/widgets/top_n.php:79 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:241 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:270 -#: ../../enterprise/godmode/modules/configure_local_component.php:238 -#: ../../enterprise/godmode/modules/configure_local_component.php:255 -msgid "Min." -msgstr "Min." - -#: ../../godmode/alerts/configure_alert_template.php:662 -msgid "Alert recovery" -msgstr "Alert recovery" - -#: ../../godmode/alerts/configure_alert_template.php:663 -#: ../../include/functions_groups.php:2158 -#: ../../include/functions_reporting_html.php:2092 -#: ../../operation/agentes/estado_generalagente.php:297 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:196 -#: ../../enterprise/extensions/ipam/ipam_massive.php:79 -#: ../../enterprise/extensions/ipam/ipam_network.php:542 -#: ../../enterprise/include/functions_reporting_pdf.php:2344 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:892 -msgid "Enabled" -msgstr "Enabled" - -#: ../../godmode/alerts/configure_alert_template.php:671 -msgid "Recovery fields" -msgstr "Recovery fields" - -#: ../../godmode/alerts/configure_alert_template.php:772 -#: ../../godmode/modules/manage_network_components_form_common.php:58 -#: ../../enterprise/godmode/modules/configure_local_component.php:155 -msgid "Wizard level" -msgstr "Wizard level" - -#: ../../godmode/alerts/configure_alert_template.php:774 -msgid "No wizard" -msgstr "No wizard" - -#: ../../godmode/alerts/configure_alert_template.php:821 -#: ../../godmode/alerts/configure_alert_template.php:825 -#: ../../enterprise/dashboard/full_dashboard.php:210 -#: ../../enterprise/dashboard/public_dashboard.php:226 -#: ../../enterprise/godmode/alerts/alert_events.php:552 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:163 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:183 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:212 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:173 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:90 -msgid "Next" -msgstr "Next" - -#: ../../godmode/alerts/configure_alert_template.php:845 -#, php-format -msgid "The alert would fire when the value doesn\\'t match %s" -msgstr "The alert is triggered when the value doesn't match %s" - -#: ../../godmode/alerts/configure_alert_template.php:849 -msgid "" -"The alert would fire when the value is not between and " -msgstr "" -"The alert will activate when the value is not between and " - -#: ../../godmode/alerts/configure_alert_template.php:857 -msgid "" -"The alert template cannot have the same value for min and max thresholds." -msgstr "" -"The alert template cannot have the same value for min and max thresholds." - -#: ../../godmode/category/category.php:44 -#: ../../godmode/category/category.php:51 -#: ../../godmode/category/edit_category.php:43 -#: ../../godmode/category/edit_category.php:50 -msgid "List categories" -msgstr "List categories" - -#: ../../godmode/category/category.php:58 -#: ../../godmode/category/category.php:61 -#: ../../godmode/category/edit_category.php:57 -#: ../../godmode/category/edit_category.php:60 -msgid "Categories configuration" -msgstr "Category settings" - -#: ../../godmode/category/category.php:72 -msgid "Error deleting category" -msgstr "Error deleting category" - -#: ../../godmode/category/category.php:76 -msgid "Successfully deleted category" -msgstr "Successfully deleted category" - -#: ../../godmode/category/category.php:110 -msgid "Category name" -msgstr "Category name" - -#: ../../godmode/category/category.php:141 -msgid "No categories found" -msgstr "No categories found" - -#: ../../godmode/category/category.php:150 -#: ../../godmode/category/edit_category.php:146 -msgid "Create category" -msgstr "Create category" - -#: ../../godmode/category/edit_category.php:57 -msgid "Editor" -msgstr "Editor" - -#: ../../godmode/category/edit_category.php:76 -msgid "Error updating category" -msgstr "Error updating category" - -#: ../../godmode/category/edit_category.php:80 -msgid "Successfully updated category" -msgstr "Category successfully updated" - -#: ../../godmode/category/edit_category.php:99 -msgid "Error creating category" -msgstr "Error creating category" - -#: ../../godmode/category/edit_category.php:105 -msgid "Successfully created category" -msgstr "Category successfully created" - -#: ../../godmode/category/edit_category.php:137 -msgid "Update category" -msgstr "Update category" - -#: ../../godmode/db/db_audit.php:19 ../../godmode/db/db_event.php:21 -#: ../../godmode/db/db_info.php:32 ../../godmode/db/db_purge.php:37 -#: ../../godmode/db/db_refine.php:33 -msgid "Database maintenance" -msgstr "Database maintenance" - -#: ../../godmode/db/db_audit.php:19 -msgid "Database audit purge" -msgstr "Purge audit data" - -#: ../../godmode/db/db_audit.php:70 -msgid "Success data deleted" -msgstr "Data deleted sucessfully" - -#: ../../godmode/db/db_audit.php:72 -msgid "Error deleting data" -msgstr "Error deleting data" - -#: ../../godmode/db/db_audit.php:80 ../../godmode/db/db_event.php:61 -#: ../../include/functions_reporting_html.php:1556 -#: ../../include/functions_reporting_html.php:1571 -#: ../../operation/agentes/gis_view.php:194 -#: ../../operation/agentes/group_view.php:165 ../../operation/tree.php:273 -#: ../../enterprise/dashboard/widgets/tree_view.php:197 -#: ../../enterprise/include/functions_inventory.php:323 -#: ../../enterprise/include/functions_reporting_pdf.php:691 -#: ../../enterprise/include/functions_reporting_pdf.php:706 -#: ../../enterprise/meta/monitoring/group_view.php:145 -#: ../../enterprise/operation/agentes/agent_inventory.php:230 -msgid "Total" -msgstr "Total" - -#: ../../godmode/db/db_audit.php:81 ../../godmode/db/db_event.php:62 -msgid "Records" -msgstr "Records" - -#: ../../godmode/db/db_audit.php:84 ../../godmode/db/db_event.php:64 -msgid "First date" -msgstr "First date" - -#: ../../godmode/db/db_audit.php:88 -msgid "Latest date" -msgstr "Latest date" - -#: ../../godmode/db/db_audit.php:92 ../../godmode/db/db_event.php:73 -#: ../../godmode/db/db_purge.php:335 -msgid "Purge data" -msgstr "Purge data" - -#: ../../godmode/db/db_audit.php:97 -msgid "Purge audit data over 90 days" -msgstr "Purge audit data from last 90 days" - -#: ../../godmode/db/db_audit.php:98 -msgid "Purge audit data over 30 days" -msgstr "Purge audit data from last 30 days" - -#: ../../godmode/db/db_audit.php:99 -msgid "Purge audit data over 14 days" -msgstr "Purge audit data from last 14 days" - -#: ../../godmode/db/db_audit.php:100 -msgid "Purge audit data over 7 days" -msgstr "Purge audit data from last 7 days" - -#: ../../godmode/db/db_audit.php:101 -msgid "Purge audit data over 3 days" -msgstr "Purge audit data from last 3 days" - -#: ../../godmode/db/db_audit.php:102 -msgid "Purge audit data over 1 day" -msgstr "Purge audit data from last day" - -#: ../../godmode/db/db_audit.php:103 -msgid "Purge all audit data" -msgstr "Purge all audit data" - -#: ../../godmode/db/db_audit.php:107 ../../godmode/db/db_event.php:92 -msgid "Do it!" -msgstr "Do it!" - -#: ../../godmode/db/db_event.php:22 -msgid "Event database cleanup" -msgstr "Database events cleanup" - -#: ../../godmode/db/db_event.php:40 -msgid "Successfully deleted old events" -msgstr "Successfully deleted old events" - -#: ../../godmode/db/db_event.php:43 -msgid "Error deleting old events" -msgstr "Error deleting old events" - -#: ../../godmode/db/db_event.php:67 -msgid "Latest data" -msgstr "Latest data" - -#: ../../godmode/db/db_event.php:81 -msgid "Purge event data over 90 days" -msgstr "Purge event data from last 90 days" - -#: ../../godmode/db/db_event.php:82 -msgid "Purge event data over 30 days" -msgstr "Purge event data from last 30 days" - -#: ../../godmode/db/db_event.php:83 -msgid "Purge event data over 14 days" -msgstr "Purge event data from last 14 days" - -#: ../../godmode/db/db_event.php:84 -msgid "Purge event data over 7 days" -msgstr "Purge event data from last 7 days" - -#: ../../godmode/db/db_event.php:85 -msgid "Purge event data over 3 days" -msgstr "Purge event data from last 3 days" - -#: ../../godmode/db/db_event.php:86 -msgid "Purge event data over 1 day" -msgstr "Purge event data from last day" - -#: ../../godmode/db/db_event.php:87 -msgid "Purge all event data" -msgstr "Purge all event data" - -#: ../../godmode/db/db_info.php:32 -msgid "Database information" -msgstr "Database information" - -#: ../../godmode/db/db_info.php:34 -msgid "Module data received" -msgstr "Module data received" - -#: ../../godmode/db/db_main.php:69 -msgid "Current database maintenance setup" -msgstr "Current setup for database maintenance" - -#: ../../godmode/db/db_main.php:76 -msgid "Database setup" -msgstr "Database setup" - -#: ../../godmode/db/db_main.php:80 -msgid "Max. time before compact data" -msgstr "Max. time before compacting data" - -#: ../../godmode/db/db_main.php:82 ../../godmode/db/db_main.php:88 -#: ../../godmode/setup/setup_visuals.php:740 ../../include/functions.php:431 -#: ../../include/functions.php:565 ../../include/functions_html.php:731 -#: ../../enterprise/meta/advanced/metasetup.visual.php:143 -msgid "days" -msgstr "days" - -#: ../../godmode/db/db_main.php:86 -msgid "Max. time before purge" -msgstr "Max. time before purging" - -#: ../../godmode/db/db_main.php:95 -msgid "Database size stats" -msgstr "Database size stats" - -#: ../../godmode/db/db_main.php:99 ../../include/functions_reporting.php:7248 -#: ../../include/functions_reporting_html.php:3469 -#: ../../mobile/operation/groups.php:125 ../../operation/tree.php:271 -#: ../../enterprise/dashboard/widgets/tree_view.php:195 -#: ../../enterprise/include/functions_reporting_csv.php:456 -msgid "Total agents" -msgstr "Total amount of agents" - -#: ../../godmode/db/db_main.php:105 ../../include/functions_reporting.php:9898 -msgid "Total events" -msgstr "Total amount of events" - -#: ../../godmode/db/db_main.php:111 -msgid "Total data items (tagente_datos)" -msgstr "Total data items (tagente_datos)" - -#: ../../godmode/db/db_main.php:123 -msgid "Total log4x items (tagente_datos_log4x)" -msgstr "Total log4x items (tagente_datos_log4x)" - -#: ../../godmode/db/db_main.php:135 -msgid "Total data string items (tagente_datos_string)" -msgstr "Total number of data string items" - -#: ../../godmode/db/db_main.php:141 -msgid "Total modules configured" -msgstr "Total amount of modules configured" - -#: ../../godmode/db/db_main.php:149 -msgid "Total agent access records" -msgstr "Total agent access records" - -#: ../../godmode/db/db_main.php:160 -msgid "Database sanity" -msgstr "Database health status" - -#: ../../godmode/db/db_main.php:164 -msgid "Total uknown agents" -msgstr "Total number of unknown agents" - -#: ../../godmode/db/db_main.php:170 -msgid "Total non-init modules" -msgstr "Total amount of non-init modules" - -#: ../../godmode/db/db_main.php:179 -msgid "Last time on DB maintance" -msgstr "Last time on DB maintance" - -#: ../../godmode/db/db_main.php:183 -#: ../../godmode/snmpconsole/snmp_alert.php:1217 -#: ../../include/functions_treeview.php:595 ../../include/functions_ui.php:449 -#: ../../operation/agentes/estado_generalagente.php:210 -#: ../../operation/gis_maps/ajax.php:323 ../../operation/gis_maps/ajax.php:334 -#: ../../enterprise/extensions/cron/main.php:291 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:229 -#: ../../enterprise/extensions/ipam/ipam_list.php:223 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1155 -msgid "Never" -msgstr "Never" - -#: ../../godmode/db/db_main.php:200 -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" -msgstr "" -"Please make sure your Pandora 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 " -"Pandora FMS." - -#: ../../godmode/db/db_purge.php:38 ../../godmode/menu.php:316 -msgid "Database purge" -msgstr "Database purge" - -#: ../../godmode/db/db_purge.php:43 -msgid "Get data from agent" -msgstr "Retrieve data from agent" - -#: ../../godmode/db/db_purge.php:75 -#, php-format -msgid "Purge task launched for agent %s :: Data older than %s" -msgstr "Purge task launched for agent %s :: Data older than %s" - -#: ../../godmode/db/db_purge.php:78 -msgid "" -"Please be patient. This operation can take a long time depending on the " -"amount of modules." -msgstr "" -"Please be patient, this operation can take a long time depending on the " -"amount of modules" - -#: ../../godmode/db/db_purge.php:92 -#, php-format -msgid "Deleting records for module %s" -msgstr "Deleting records for module %s" - -#: ../../godmode/db/db_purge.php:140 -#, php-format -msgid "Total errors: %s" -msgstr "Total amount of errors: %s" - -#: ../../godmode/db/db_purge.php:141 ../../godmode/db/db_purge.php:144 -#, php-format -msgid "Total records deleted: %s" -msgstr "Total number of records deleted: %s" - -#: ../../godmode/db/db_purge.php:149 -msgid "Deleting records for all agents" -msgstr "Deleting records for all agents" - -#: ../../godmode/db/db_purge.php:166 -msgid "Choose agent" -msgstr "Choose agent" - -#: ../../godmode/db/db_purge.php:167 -#: ../../operation/incidents/incident.php:279 -msgid "All agents" -msgstr "All agents" - -#: ../../godmode/db/db_purge.php:172 -msgid "Select the agent you want information about" -msgstr "Choose the agent you wish to view information about" - -#: ../../godmode/db/db_purge.php:174 -msgid "Get data" -msgstr "Retrieve data" - -#: ../../godmode/db/db_purge.php:175 -msgid "Click here to get the data from the agent specified in the select box" -msgstr "Click here to retrieve data from the agent specified." - -#: ../../godmode/db/db_purge.php:179 -#, php-format -msgid "Information on agent %s in the database" -msgstr "Information on agent %s in the database" - -#: ../../godmode/db/db_purge.php:182 -msgid "Information on all agents in the database" -msgstr "Information on all agents from the database" - -#: ../../godmode/db/db_purge.php:317 -msgid "Packets less than three months old" -msgstr "Packages less than three months old" - -#: ../../godmode/db/db_purge.php:319 -msgid "Packets less than one month old" -msgstr "Packages less than one month old" - -#: ../../godmode/db/db_purge.php:321 -msgid "Packets less than two weeks old" -msgstr "Packages less than two weeks old" - -#: ../../godmode/db/db_purge.php:323 -msgid "Packets less than one week old" -msgstr "Packages less than one week old" - -#: ../../godmode/db/db_purge.php:325 -msgid "Packets less than three days old" -msgstr "Packages less than three days old" - -#: ../../godmode/db/db_purge.php:327 -msgid "Packets less than one day old" -msgstr "Packages less than one day old" - -#: ../../godmode/db/db_purge.php:329 -msgid "Total number of packets" -msgstr "Total number of packages" - -#: ../../godmode/db/db_purge.php:340 -msgid "Purge data over 3 months" -msgstr "Purge data from the last 3 months" - -#: ../../godmode/db/db_purge.php:341 -msgid "Purge data over 1 month" -msgstr "Purge data from the last month" - -#: ../../godmode/db/db_purge.php:342 -msgid "Purge data over 2 weeks" -msgstr "Purge data from the last 2 weeks" - -#: ../../godmode/db/db_purge.php:343 -msgid "Purge data over 1 week" -msgstr "Purge data from the last week" - -#: ../../godmode/db/db_purge.php:344 -msgid "Purge data over 3 days" -msgstr "Purge data from the last 3 days" - -#: ../../godmode/db/db_purge.php:345 -msgid "Purge data over 1 day" -msgstr "Purge data from last day" - -#: ../../godmode/db/db_purge.php:346 -msgid "All data until now" -msgstr "All data until now" - -#: ../../godmode/db/db_purge.php:350 -msgid "Purge" -msgstr "Purge" - -#: ../../godmode/db/db_refine.php:33 ../../godmode/menu.php:317 -#: ../../include/functions_db.php:1499 -msgid "Database debug" -msgstr "Database debug" - -#: ../../godmode/db/db_refine.php:42 -msgid "Maximum is equal to minimum" -msgstr "Maximum is equal to minimum" - -#: ../../godmode/db/db_refine.php:47 -#: ../../godmode/massive/massive_copy_modules.php:447 -#: ../../include/functions_agents.php:565 -msgid "No modules have been selected" -msgstr "No modules have been selected" - -#: ../../godmode/db/db_refine.php:56 -msgid "Filtering data module" -msgstr "Filtering data module" - -#: ../../godmode/db/db_refine.php:76 -msgid "Filtering completed" -msgstr "Filtering completed" - -#: ../../godmode/db/db_refine.php:83 -#: ../../operation/agentes/exportdata.php:244 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:154 -msgid "Source agent" -msgstr "Source agent" - -#: ../../godmode/db/db_refine.php:88 -msgid "No agent selected" -msgstr "No agent selected" - -#: ../../godmode/db/db_refine.php:92 -msgid "Get Info" -msgstr "Get Info" - -#: ../../godmode/db/db_refine.php:105 -msgid "Purge data out of these limits" -msgstr "Purge data out of these limits" - -#: ../../godmode/db/db_refine.php:107 ../../godmode/db/db_refine.php:109 -#: ../../include/functions_reporting.php:5704 -msgid "Minimum" -msgstr "Minimum" - -#: ../../godmode/db/db_refine.php:112 ../../godmode/db/db_refine.php:114 -#: ../../include/functions_reporting.php:5707 -msgid "Maximum" -msgstr "Maximum" - -#: ../../godmode/events/custom_events.php:68 -#: ../../godmode/events/custom_events.php:152 -#: ../../include/functions_events.php:34 -#: ../../include/functions_events.php:1581 -#: ../../enterprise/meta/include/functions_events_meta.php:55 -msgid "Event id" -msgstr "Choose between the users who have validated an event." - -#: ../../godmode/events/custom_events.php:71 -#: ../../godmode/events/custom_events.php:153 -#: ../../include/functions_events.php:35 -#: ../../include/functions_events.php:905 -#: ../../include/functions_events.php:2338 -#: ../../include/functions_reporting_html.php:1022 -#: ../../include/functions_reporting_html.php:1032 -#: ../../include/functions_reporting_html.php:2825 -#: ../../enterprise/meta/include/functions_events_meta.php:58 -msgid "Event name" -msgstr "Event name" - -#: ../../godmode/events/custom_events.php:86 -#: ../../godmode/events/custom_events.php:158 ../../godmode/setup/news.php:223 -#: ../../include/ajax/events.php:466 ../../include/functions_events.php:40 -#: ../../include/functions_events.php:912 -#: ../../include/functions_events.php:2343 -#: ../../include/functions_events.php:3542 -#: ../../include/functions_netflow.php:287 -#: ../../include/functions_reporting_html.php:813 -#: ../../include/functions_reporting_html.php:822 -#: ../../include/functions_reporting_html.php:1026 -#: ../../include/functions_reporting_html.php:1035 -#: ../../include/functions_reporting_html.php:1650 -#: ../../include/functions_reporting_html.php:2827 -#: ../../mobile/operation/events.php:473 -#: ../../mobile/operation/modules.php:548 -#: ../../mobile/operation/modules.php:756 -#: ../../operation/agentes/estado_generalagente.php:402 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/exportdata.php:99 -#: ../../operation/agentes/status_monitor.php:990 -#: ../../operation/events/events.build_table.php:167 -#: ../../operation/events/events.php:87 -#: ../../operation/messages/message_list.php:127 -#: ../../operation/search_modules.php:54 -#: ../../operation/snmpconsole/snmp_view.php:623 -#: ../../enterprise/include/functions_inventory.php:65 -#: ../../enterprise/include/functions_inventory.php:241 -#: ../../enterprise/include/functions_reporting_csv.php:349 -#: ../../enterprise/include/functions_reporting_csv.php:879 -#: ../../enterprise/meta/include/functions_events_meta.php:73 -msgid "Timestamp" -msgstr "Timestamp" - -#: ../../godmode/events/custom_events.php:89 -#: ../../godmode/events/custom_events.php:159 -#: ../../godmode/events/event_edit_filter.php:235 -#: ../../godmode/events/event_filter.php:110 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1413 -#: ../../include/functions_events.php:41 -#: ../../include/functions_events.php:3562 -#: ../../operation/events/events.build_table.php:191 -#: ../../operation/events/events_list.php:563 -#: ../../enterprise/dashboard/widgets/events_list.php:36 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:210 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1683 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:296 -#: ../../enterprise/include/functions_events.php:97 -#: ../../enterprise/meta/include/functions_events_meta.php:76 -msgid "Event type" -msgstr "Event type" - -#: ../../godmode/events/custom_events.php:92 -#: ../../godmode/events/custom_events.php:160 -#: ../../include/functions_events.php:42 -#: ../../enterprise/meta/include/functions_events_meta.php:79 -msgid "Agent module" -msgstr "Agent module" - -#: ../../godmode/events/custom_events.php:98 -#: ../../godmode/events/custom_events.php:162 -#: ../../godmode/events/event_edit_filter.php:239 -#: ../../godmode/events/event_filter.php:112 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1401 -#: ../../include/functions_events.php:44 -#: ../../include/functions_events.php:898 -#: ../../include/functions_events.php:2387 -#: ../../include/functions_events.php:3579 -#: ../../include/functions_reporting_html.php:811 -#: ../../include/functions_reporting_html.php:820 -#: ../../include/functions_reporting_html.php:1024 -#: ../../include/functions_reporting_html.php:1034 -#: ../../include/functions_reporting_html.php:1648 -#: ../../mobile/operation/events.php:373 ../../mobile/operation/events.php:374 -#: ../../mobile/operation/events.php:489 ../../mobile/operation/events.php:632 -#: ../../mobile/operation/events.php:633 -#: ../../operation/events/events.build_table.php:211 -#: ../../operation/events/events_list.php:569 -#: ../../operation/snmpconsole/snmp_view.php:399 -#: ../../enterprise/dashboard/widgets/events_list.php:54 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1671 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:285 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:320 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 -#: ../../enterprise/include/functions_events.php:104 -#: ../../enterprise/include/functions_reporting.php:1397 -#: ../../enterprise/include/functions_reporting_pdf.php:1761 -#: ../../enterprise/meta/include/functions_events_meta.php:85 -msgid "Severity" -msgstr "Severity" - -#: ../../godmode/events/custom_events.php:101 -#: ../../godmode/events/custom_events.php:163 -#: ../../include/functions_events.php:45 -#: ../../include/functions_events.php:1751 -#: ../../include/functions_events.php:3584 -#: ../../include/functions_events.php:3929 -#: ../../operation/events/events.build_table.php:217 -#: ../../operation/events/events.build_table.php:583 -#: ../../enterprise/meta/include/functions_events_meta.php:88 -msgid "Comment" -msgstr "Comment" - -#: ../../godmode/events/custom_events.php:110 -#: ../../godmode/events/custom_events.php:166 -#: ../../include/functions_events.php:48 -#: ../../include/functions_events.php:2251 -#: ../../enterprise/meta/include/functions_events_meta.php:97 -msgid "Extra id" -msgstr "Extra ID" - -#: ../../godmode/events/custom_events.php:116 -#: ../../godmode/events/custom_events.php:168 -#: ../../include/functions_events.php:50 -#: ../../include/functions_events.php:3604 -#: ../../operation/events/events.build_table.php:241 -#: ../../enterprise/meta/include/functions_events_meta.php:103 -msgid "ACK Timestamp" -msgstr "ACK Timestamp" - -#: ../../godmode/events/custom_events.php:119 -#: ../../godmode/events/custom_events.php:169 -#: ../../include/functions_events.php:51 -#: ../../include/functions_events.php:2190 -#: ../../include/functions_events.php:2202 -#: ../../include/functions_events.php:2214 -#: ../../include/functions_events.php:2226 -#: ../../include/functions_events.php:2231 -#: ../../include/functions_events.php:2236 -#: ../../include/functions_events.php:2240 -#: ../../include/functions_events.php:3609 -#: ../../operation/events/events.build_table.php:247 -#: ../../enterprise/meta/include/functions_events_meta.php:106 -msgid "Instructions" -msgstr "Instructions" - -#: ../../godmode/events/custom_events.php:122 -#: ../../godmode/events/custom_events.php:170 -#: ../../include/functions_events.php:52 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:171 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:247 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:307 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:387 -#: ../../enterprise/meta/include/functions_events_meta.php:109 -msgid "Server name" -msgstr "Server name" - -#: ../../godmode/events/custom_events.php:131 -#: ../../enterprise/meta/event/custom_events.php:191 -msgid "Show event fields" -msgstr "Show event fields" - -#: ../../godmode/events/custom_events.php:133 -msgid "Load default event fields" -msgstr "Load default event fields" - -#: ../../godmode/events/custom_events.php:133 -msgid "Default event fields will be loaded. Do you want to continue?" -msgstr "Default event fields will be loaded. Continue?" - -#: ../../godmode/events/custom_events.php:181 -#: ../../enterprise/meta/event/custom_events.php:169 -msgid "Fields available" -msgstr "Fields available" - -#: ../../godmode/events/custom_events.php:185 -#: ../../enterprise/meta/event/custom_events.php:178 -msgid "Add fields to select" -msgstr "Add fields to select" - -#: ../../godmode/events/custom_events.php:189 -#: ../../enterprise/meta/event/custom_events.php:183 -msgid "Delete fields to select" -msgstr "Delete fields to select" - -#: ../../godmode/events/custom_events.php:193 -#: ../../enterprise/meta/event/custom_events.php:171 -msgid "Fields selected" -msgstr "Fields selected" - -#: ../../godmode/events/event_edit_filter.php:166 -#: ../../godmode/modules/manage_nc_groups.php:83 -#: ../../godmode/netflow/nf_edit_form.php:110 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:120 -msgid "Not updated. Blank name" -msgstr "Couldn't update. Blank name." - -#: ../../godmode/events/event_edit_filter.php:174 -#: ../../godmode/modules/manage_nc_groups.php:99 -#: ../../godmode/netflow/nf_edit_form.php:132 ../../godmode/setup/news.php:88 -msgid "Not updated. Error updating data" -msgstr "Couldn't update. Error updating data." - -#: ../../godmode/events/event_edit_filter.php:203 -msgid "Update Filter" -msgstr "Update Filter" - -#: ../../godmode/events/event_edit_filter.php:206 -msgid "Create Filter" -msgstr "Create Filter" - -#: ../../godmode/events/event_edit_filter.php:215 -#: ../../operation/events/events_list.php:225 -msgid "Filter name" -msgstr "Filter name" - -#: ../../godmode/events/event_edit_filter.php:219 -msgid "Save in group" -msgstr "Save in group" - -#: ../../godmode/events/event_edit_filter.php:220 -msgid "" -"This group will be use to restrict the visibility of this filter with ACLs" -msgstr "" -"This group will be used to restrict visibility for this filter with ACLs." - -#: ../../godmode/events/event_edit_filter.php:233 -#: ../../godmode/massive/massive_copy_modules.php:81 -#: ../../godmode/massive/massive_copy_modules.php:194 -#: ../../godmode/massive/massive_delete_agents.php:117 -#: ../../godmode/massive/massive_delete_modules.php:457 -#: ../../godmode/massive/massive_delete_modules.php:471 -#: ../../godmode/massive/massive_edit_agents.php:220 -#: ../../godmode/massive/massive_edit_modules.php:300 -#: ../../godmode/massive/massive_edit_modules.php:331 -#: ../../include/functions.php:1083 ../../include/functions_events.php:1428 -#: ../../mobile/operation/modules.php:43 -#: ../../operation/agentes/estado_agente.php:190 -#: ../../operation/agentes/status_monitor.php:303 -#: ../../operation/events/events_list.php:566 -#: ../../enterprise/dashboard/widgets/events_list.php:34 -msgid "Not normal" -msgstr "Not normal" - -#: ../../godmode/events/event_edit_filter.php:245 -#: ../../godmode/events/event_filter.php:111 -#: ../../operation/events/events_list.php:576 -#: ../../enterprise/dashboard/widgets/events_list.php:46 -#: ../../enterprise/include/functions_events.php:83 -msgid "Event status" -msgstr "Event status" - -#: ../../godmode/events/event_edit_filter.php:249 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1499 -#: ../../godmode/snmpconsole/snmp_alert.php:999 -#: ../../mobile/operation/agents.php:194 ../../mobile/operation/alerts.php:188 -#: ../../mobile/operation/events.php:642 -#: ../../mobile/operation/modules.php:254 -#: ../../operation/events/events_list.php:409 -#: ../../operation/snmpconsole/snmp_view.php:413 -#: ../../enterprise/extensions/ipam/ipam_network.php:281 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:165 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1889 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:347 -#: ../../enterprise/include/functions_events.php:90 -msgid "Free search" -msgstr "Free search" - -#: ../../godmode/events/event_edit_filter.php:253 -#: ../../operation/events/events_list.php:411 -#: ../../enterprise/meta/agentsearch.php:28 -#: ../../enterprise/meta/agentsearch.php:32 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:242 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:331 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:401 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:509 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:590 -msgid "Agent search" -msgstr "Agent search" - -#: ../../godmode/events/event_edit_filter.php:276 -#: ../../godmode/setup/setup_visuals.php:62 -#: ../../godmode/users/configure_user.php:519 -#: ../../include/functions_config.php:457 -#: ../../operation/events/events_list.php:469 -#: ../../operation/snmpconsole/snmp_view.php:388 -#: ../../operation/users/user_edit.php:238 -#: ../../enterprise/meta/advanced/metasetup.visual.php:117 -#: ../../enterprise/meta/include/functions_meta.php:1071 -msgid "Block size for pagination" -msgstr "Block size for pagination" - -#: ../../godmode/events/event_edit_filter.php:285 -#: ../../operation/events/events_list.php:431 -#: ../../enterprise/include/functions_events.php:128 -msgid "User ack." -msgstr "User ack." - -#: ../../godmode/events/event_edit_filter.php:286 -msgid "Choose between the users who have validated an event. " -msgstr "Choose among the users who have validated an event. " - -#: ../../godmode/events/event_edit_filter.php:299 -#: ../../operation/events/events_list.php:582 -#: ../../enterprise/godmode/setup/setup.php:90 -msgid "All events" -msgstr "All events" - -#: ../../godmode/events/event_edit_filter.php:300 -#: ../../operation/events/events_list.php:583 -msgid "Group events" -msgstr "Group events" - -#: ../../godmode/events/event_edit_filter.php:305 -#: ../../operation/events/events_list.php:480 -#: ../../enterprise/include/functions_events.php:142 -msgid "Date from" -msgstr "From (date)" - -#: ../../godmode/events/event_edit_filter.php:308 -#: ../../operation/events/events_list.php:486 -#: ../../enterprise/include/functions_events.php:135 -msgid "Date to" -msgstr "To (date)" - -#: ../../godmode/events/event_edit_filter.php:350 -#: ../../operation/events/events_list.php:506 -#: ../../operation/events/events_list.php:520 -#: ../../enterprise/include/functions_events.php:180 -msgid "Events with following tags" -msgstr "Events with following tags" - -#: ../../godmode/events/event_edit_filter.php:365 -#: ../../operation/events/events_list.php:512 -#: ../../operation/events/events_list.php:526 -#: ../../enterprise/include/functions_events.php:197 -msgid "Events without following tags" -msgstr "Events without follow-up tags" - -#: ../../godmode/events/event_edit_filter.php:379 -#: ../../operation/events/events_list.php:462 -#: ../../enterprise/include/functions_events.php:156 -msgid "Alert events" -msgstr "Alert events" - -#: ../../godmode/events/event_edit_filter.php:383 -#: ../../operation/events/events_list.php:465 -msgid "Filter alert events" -msgstr "Filter alert events" - -#: ../../godmode/events/event_edit_filter.php:384 -#: ../../operation/events/events_list.php:466 -msgid "Only alert events" -msgstr "Only alert events" - -#: ../../godmode/events/event_edit_filter.php:388 -#: ../../operation/events/events_list.php:443 -msgid "Module search" -msgstr "Module search" - -#: ../../godmode/events/event_filter.php:167 -#: ../../godmode/netflow/nf_edit.php:162 -msgid "There are no defined filters" -msgstr "There are no filters set" - -#: ../../godmode/events/event_filter.php:175 -#: ../../godmode/netflow/nf_edit.php:167 -#: ../../godmode/netflow/nf_edit_form.php:182 -#: ../../godmode/snmpconsole/snmp_filters.php:38 -#: ../../enterprise/meta/event/custom_events.php:43 -msgid "Create filter" -msgstr "Create new filter" - -#: ../../godmode/events/event_responses.editor.php:63 -msgid "Edit event responses" -msgstr "Edit event responses" - -#: ../../godmode/events/event_responses.editor.php:93 -msgid "For Command type Modal Window mode is enforced" -msgstr "For Command type Modal Window mode is enforced" - -#: ../../godmode/events/event_responses.editor.php:94 -msgid "Modal window" -msgstr "Modal window" - -#: ../../godmode/events/event_responses.editor.php:94 -msgid "New window" -msgstr "New window" - -#: ../../godmode/events/event_responses.editor.php:104 -#: ../../godmode/reporting/graph_builder.main.php:137 -#: ../../godmode/reporting/visual_console_builder.wizard.php:134 -#: ../../godmode/setup/gis_step_2.php:257 -#: ../../include/functions_visual_map_editor.php:84 -#: ../../include/functions_visual_map_editor.php:386 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:172 -msgid "Width" -msgstr "Width" - -#: ../../godmode/events/event_responses.editor.php:106 -#: ../../godmode/reporting/graph_builder.main.php:141 -#: ../../godmode/reporting/visual_console_builder.wizard.php:137 -#: ../../godmode/setup/gis_step_2.php:259 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:176 -msgid "Height" -msgstr "Height" - -#: ../../godmode/events/event_responses.editor.php:111 -#: ../../include/functions_events.php:1817 -#: ../../enterprise/extensions/cron/main.php:334 -msgid "Parameters" -msgstr "Parameters" - -#: ../../godmode/events/event_responses.list.php:38 -msgid "No responses found" -msgstr "No responses found" - -#: ../../godmode/events/event_responses.list.php:76 -msgid "Create response" -msgstr "Create response" - -#: ../../godmode/events/event_responses.php:52 -msgid "Response added succesfully" -msgstr "Response added succesfully" - -#: ../../godmode/events/event_responses.php:55 -msgid "Response cannot be added" -msgstr "Response cannot be added" - -#: ../../godmode/events/event_responses.php:81 -msgid "Response updated succesfully" -msgstr "Response successfully updated" - -#: ../../godmode/events/event_responses.php:84 -msgid "Response cannot be updated" -msgstr "Response cannot be updated" - -#: ../../godmode/events/event_responses.php:93 -msgid "Response deleted succesfully" -msgstr "Response successfully deleted" - -#: ../../godmode/events/event_responses.php:96 -msgid "Response cannot be deleted" -msgstr "Response cannot be deleted" - -#: ../../godmode/events/events.php:37 ../../operation/events/events.php:334 -#: ../../operation/users/user_edit.php:278 -msgid "Event list" -msgstr "Event list" - -#: ../../godmode/events/events.php:42 -#: ../../godmode/netflow/nf_edit_form.php:55 -msgid "Filter list" -msgstr "Filter list" - -#: ../../godmode/events/events.php:48 ../../godmode/menu.php:187 -#: ../../enterprise/meta/event/custom_events.php:48 -msgid "Event responses" -msgstr "Event responses" - -#: ../../godmode/events/events.php:65 ../../godmode/events/events.php:80 -#: ../../godmode/reporting/reporting_builder.list_items.php:182 -#: ../../enterprise/meta/event/custom_events.php:65 -#: ../../enterprise/meta/event/custom_events.php:80 -#: ../../enterprise/meta/general/main_header.php:214 -msgid "Filters" -msgstr "Filters" - -#: ../../godmode/events/events.php:73 ../../include/ajax/events.php:306 -#: ../../enterprise/meta/event/custom_events.php:73 -msgid "Responses" -msgstr "Responses" - -#: ../../godmode/events/events.php:85 ../../godmode/events/events.php:88 -#: ../../godmode/users/configure_profile.php:283 -#: ../../operation/events/events.php:365 -msgid "Manage events" -msgstr "Manage events" - -#: ../../godmode/extensions.php:27 -#: ../../enterprise/meta/general/main_header.php:320 -msgid "Extensions" -msgstr "Extensions" - -#: ../../godmode/extensions.php:27 -msgid "Defined extensions" -msgstr "Defined extensions" - -#: ../../godmode/extensions.php:32 -msgid "There are no extensions defined" -msgstr "There are no extensions defined" - -#: ../../godmode/extensions.php:145 ../../enterprise/godmode/menu.php:162 -#: ../../enterprise/include/functions_setup.php:27 -#: ../../enterprise/include/functions_setup.php:55 -msgid "Enterprise" -msgstr "Enterprise" - -#: ../../godmode/extensions.php:146 -msgid "Godmode Function" -msgstr "Godmode Function" - -#: ../../godmode/extensions.php:147 -msgid "Godmode Menu" -msgstr "Godmode Menu" - -#: ../../godmode/extensions.php:148 -msgid "Operation Menu" -msgstr "Operation Menu" - -#: ../../godmode/extensions.php:149 -msgid "Operation Function" -msgstr "Operation Function" - -#: ../../godmode/extensions.php:150 -msgid "Login Function" -msgstr "Login Function" - -#: ../../godmode/extensions.php:151 -msgid "Agent operation tab" -msgstr "Agent operation tab" - -#: ../../godmode/extensions.php:152 -msgid "Agent godmode tab" -msgstr "Agent godmode tab" - -#: ../../godmode/gis_maps/configure_gis_map.php:111 -msgid "Map successfully created" -msgstr "Map created successfully" - -#: ../../godmode/gis_maps/configure_gis_map.php:112 -msgid "Map could not be created" -msgstr "Could not create map" - -#: ../../godmode/gis_maps/configure_gis_map.php:201 -msgid "Map successfully update" -msgstr "Map updated successfully" - -#: ../../godmode/gis_maps/configure_gis_map.php:202 -msgid "Map could not be updated" -msgstr "Could not update map" - -#: ../../godmode/gis_maps/configure_gis_map.php:214 -#: ../../operation/gis_maps/gis_map.php:29 -msgid "GIS Maps list" -msgstr "List of GIS maps" - -#: ../../godmode/gis_maps/configure_gis_map.php:219 -msgid "View GIS" -msgstr "View GIS" - -#: ../../godmode/gis_maps/configure_gis_map.php:222 -msgid "GIS Maps builder" -msgstr "GIS map builder" - -#: ../../godmode/gis_maps/configure_gis_map.php:329 -msgid "Map Name" -msgstr "Map Name" - -#: ../../godmode/gis_maps/configure_gis_map.php:329 -msgid "Descriptive name for the map" -msgstr "Name for descriptive map" - -#: ../../godmode/gis_maps/configure_gis_map.php:348 -msgid "Add Map connection" -msgstr "Add Map connection" - -#: ../../godmode/gis_maps/configure_gis_map.php:348 -msgid "" -"At least one map connection must be defined, it will be possible to change " -"between the connections in the map" -msgstr "" -"At least one map connection has to be defined. It's possible to change " -"between connections on the map." - -#: ../../godmode/gis_maps/configure_gis_map.php:366 -msgid "Group that owns the map" -msgstr "Group that owns the map" - -#: ../../godmode/gis_maps/configure_gis_map.php:369 -msgid "Default zoom" -msgstr "Default zoom" - -#: ../../godmode/gis_maps/configure_gis_map.php:369 -msgid "Default zoom level when opening the map" -msgstr "Default zoom level when opening the map" - -#: ../../godmode/gis_maps/configure_gis_map.php:372 -msgid "Center Latitude" -msgstr "Centre Latitude" - -#: ../../godmode/gis_maps/configure_gis_map.php:375 -msgid "Center Longitude" -msgstr "Centre Longitude" - -#: ../../godmode/gis_maps/configure_gis_map.php:378 -msgid "Center Altitude" -msgstr "Center Altitude" - -#: ../../godmode/gis_maps/configure_gis_map.php:381 -msgid "Default Latitude" -msgstr "Default Latitude" - -#: ../../godmode/gis_maps/configure_gis_map.php:384 -msgid "Default Longitude" -msgstr "Default Longitude" - -#: ../../godmode/gis_maps/configure_gis_map.php:387 -msgid "Default Altitude" -msgstr "Default Altitude" - -#: ../../godmode/gis_maps/configure_gis_map.php:392 -msgid "Layers" -msgstr "Layers" - -#: ../../godmode/gis_maps/configure_gis_map.php:392 -msgid "" -"Each layer can show agents from one group or the agents added to that layer " -"or both." -msgstr "" -"Each layer can show agents from one group, agents added to that layer, or " -"both." - -#: ../../godmode/gis_maps/configure_gis_map.php:398 -msgid "List of layers" -msgstr "List of layers" - -#: ../../godmode/gis_maps/configure_gis_map.php:398 -msgid "It is possible to edit, delete and reorder the layers." -msgstr "It is possible to edit, delete and reorder the layers." - -#: ../../godmode/gis_maps/configure_gis_map.php:399 -msgid "New layer" -msgstr "New layer" - -#: ../../godmode/gis_maps/configure_gis_map.php:407 -msgid "Layer name" -msgstr "Layer name" - -#: ../../godmode/gis_maps/configure_gis_map.php:409 -msgid "Visible" -msgstr "Visible" - -#: ../../godmode/gis_maps/configure_gis_map.php:413 -msgid "Show agents from group" -msgstr "Show agents from group" - -#: ../../godmode/gis_maps/configure_gis_map.php:425 -msgid "Add agent" -msgstr "Add agent" - -#: ../../godmode/gis_maps/configure_gis_map.php:441 -msgid "List of Agents to be shown in the layer" -msgstr "List of Agents to be shown in the layer" - -#: ../../godmode/gis_maps/configure_gis_map.php:448 -#: ../../godmode/gis_maps/configure_gis_map.php:624 -#: ../../godmode/gis_maps/configure_gis_map.php:635 -msgid "Save Layer" -msgstr "Save Layer" - -#: ../../godmode/gis_maps/configure_gis_map.php:464 -#: ../../godmode/gis_maps/configure_gis_map.php:471 -msgid "Save map" -msgstr "Save map" - -#: ../../godmode/gis_maps/configure_gis_map.php:467 -msgid "Update map" -msgstr "Update map" - -#: ../../godmode/gis_maps/configure_gis_map.php:668 -#: ../../godmode/gis_maps/configure_gis_map.php:724 -msgid "Update Layer" -msgstr "Update Layer" - -#: ../../godmode/gis_maps/configure_gis_map.php:790 -msgid "Do you want to use the default data from the connection?" -msgstr "Do you want to use the default data from the connection?" - -#: ../../godmode/gis_maps/configure_gis_map.php:825 -msgid "The connection" -msgstr "The connection" - -#: ../../godmode/gis_maps/configure_gis_map.php:825 -msgid "just added previously." -msgstr "just added previously." - -#: ../../godmode/groups/configure_group.php:70 -#: ../../godmode/groups/configure_modu_group.php:51 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1256 -msgid "There was a problem loading group" -msgstr "There was a problem loading group" - -#: ../../godmode/groups/configure_group.php:92 -msgid "Update group" -msgstr "Update group" - -#: ../../godmode/groups/configure_group.php:94 -#: ../../godmode/groups/group_list.php:396 -msgid "Create group" -msgstr "Create group" - -#: ../../godmode/groups/configure_group.php:106 -msgid "Update Group" -msgstr "Update Group" - -#: ../../godmode/groups/configure_group.php:108 -msgid "Create Group" -msgstr "Create Group" - -#: ../../godmode/groups/configure_group.php:119 -#: ../../godmode/groups/group_list.php:338 -#: ../../godmode/modules/module_list.php:57 -#: ../../godmode/reporting/visual_console_builder.elements.php:183 -#: ../../godmode/setup/os.builder.php:39 -#: ../../include/functions_visual_map.php:2765 -#: ../../include/functions_visual_map_editor.php:60 -#: ../../include/functions_visual_map_editor.php:655 -#: ../../enterprise/dashboard/widgets/module_icon.php:84 -#: ../../enterprise/dashboard/widgets/module_status.php:84 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:76 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1283 -msgid "Icon" -msgstr "Icon" - -#: ../../godmode/groups/configure_group.php:144 -msgid "You have not access to the parent." -msgstr "You don't have access to the parent" - -#: ../../godmode/groups/configure_group.php:166 -msgid "Group Password" -msgstr "Group Password" - -#: ../../godmode/groups/configure_group.php:174 -msgid "Propagate ACL" -msgstr "Propagate ACL" - -#: ../../godmode/groups/configure_group.php:174 -msgid "Propagate the same ACL security into the child subgroups." -msgstr "Propagate the same ACL security onto the child subgroups" - -#: ../../godmode/groups/configure_group.php:186 -msgid "Contact" -msgstr "Contact" - -#: ../../godmode/groups/configure_group.php:186 -msgid "Contact information accessible through the _groupcontact_ macro" -msgstr "Contact information can be accessed using the _groupcontact_ macro" - -#: ../../godmode/groups/configure_group.php:190 -msgid "Information accessible through the _group_other_ macro" -msgstr "Information can be accessed using the _group_other_ macro" - -#: ../../godmode/groups/configure_group.php:196 -#: ../../godmode/users/configure_user.php:509 -#: ../../operation/users/user_edit.php:322 -msgid "Skin" -msgstr "Skin" - -#: ../../godmode/groups/configure_group.php:238 -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. " -msgstr "" -"WARNING: you're trying to create a group on a node that is part of a " -"metaconsole. \\n\\nThis group and all of its content will not be visible on " -"the metaconsole. \\n\\nIf you wish to create a visible group, you will have " -"to do it from the metaconsole and propagate it on to the node. " - -#: ../../godmode/groups/configure_modu_group.php:32 -msgid "Module group management" -msgstr "Module group management" - -#: ../../godmode/groups/group_list.php:158 -msgid "Edit or delete groups can cause problems with synchronization" -msgstr "Editing or deleting groups can cause problems with synchronization" - -#: ../../godmode/groups/group_list.php:164 -msgid "Groups defined in Pandora" -msgstr "Groups defined in Pandora" - -#: ../../godmode/groups/group_list.php:210 -#: ../../godmode/groups/modu_group_list.php:75 -msgid "Group successfully created" -msgstr "Group successfully created" - -#: ../../godmode/groups/group_list.php:213 -#: ../../godmode/groups/modu_group_list.php:78 -msgid "There was a problem creating group" -msgstr "There was a problem creating the group" - -#: ../../godmode/groups/group_list.php:217 -msgid "Each group must have a different name" -msgstr "Each group must have a different name" - -#: ../../godmode/groups/group_list.php:222 -msgid "Group must have a name" -msgstr "Group must have a name" - -#: ../../godmode/groups/group_list.php:266 -#: ../../godmode/groups/modu_group_list.php:106 -msgid "Group successfully updated" -msgstr "Group successfully updated" - -#: ../../godmode/groups/group_list.php:269 -#: ../../godmode/groups/modu_group_list.php:109 -msgid "There was a problem modifying group" -msgstr "There was a problem modifying the group" - -#: ../../godmode/groups/group_list.php:294 -#, php-format -msgid "The group is not empty. It is use in %s." -msgstr "The group isn't empty. It's used in %s." - -#: ../../godmode/groups/group_list.php:298 -#: ../../godmode/groups/modu_group_list.php:138 -msgid "Group successfully deleted" -msgstr "Group successfully deleted" - -#: ../../godmode/groups/group_list.php:301 -#: ../../godmode/groups/modu_group_list.php:136 -msgid "There was a problem deleting group" -msgstr "There was a problem deleting group" - -#: ../../godmode/groups/group_list.php:390 -msgid "There are no defined groups" -msgstr "There are no groups defined" - -#: ../../godmode/groups/modu_group_list.php:55 -msgid "Module groups defined in Pandora" -msgstr "Module groups defined in Pandora" - -#: ../../godmode/groups/modu_group_list.php:82 -#: ../../godmode/groups/modu_group_list.php:113 -msgid "Each module group must have a different name" -msgstr "Each module group must have a different name" - -#: ../../godmode/groups/modu_group_list.php:86 -#: ../../godmode/groups/modu_group_list.php:117 -msgid "Module group must have a name" -msgstr "The module group must be named" - -#: ../../godmode/groups/modu_group_list.php:208 -msgid "There are no defined module groups" -msgstr "There are no module groups defined" - -#: ../../godmode/groups/modu_group_list.php:213 -msgid "Create module group" -msgstr "Create module group" - -#: ../../godmode/massive/massive_add_action_alerts.php:59 -#: ../../godmode/massive/massive_add_alerts.php:73 -#: ../../godmode/massive/massive_add_tags.php:33 -#: ../../godmode/massive/massive_delete_agents.php:33 -#: ../../godmode/massive/massive_delete_alerts.php:83 -#: ../../godmode/massive/massive_delete_modules.php:61 -#: ../../godmode/massive/massive_delete_tags.php:97 -#: ../../godmode/massive/massive_edit_agents.php:92 -#: ../../include/functions_visual_map.php:1665 -#: ../../include/functions_visual_map.php:1898 -#: ../../enterprise/godmode/policies/policy_agents.php:520 -msgid "No agents selected" -msgstr "No agents selected" - -#: ../../godmode/massive/massive_add_action_alerts.php:96 -msgid "No alerts selected" -msgstr "No alerts selected" - -#: ../../godmode/massive/massive_add_action_alerts.php:120 -msgid "No actions selected" -msgstr "No actions selected" - -#: ../../godmode/massive/massive_add_action_alerts.php:154 -#: ../../godmode/massive/massive_add_alerts.php:154 -#: ../../godmode/massive/massive_copy_modules.php:74 -#: ../../godmode/massive/massive_copy_modules.php:185 -#: ../../godmode/massive/massive_delete_action_alerts.php:154 -#: ../../godmode/massive/massive_delete_agents.php:108 -#: ../../godmode/massive/massive_delete_alerts.php:215 -#: ../../godmode/massive/massive_delete_modules.php:441 -#: ../../godmode/massive/massive_edit_agents.php:210 -#: ../../godmode/massive/massive_edit_modules.php:285 -#: ../../godmode/massive/massive_enable_disable_alerts.php:138 -#: ../../godmode/massive/massive_standby_alerts.php:139 -#: ../../enterprise/godmode/policies/policy_agents.php:243 -#: ../../enterprise/godmode/policies/policy_agents.php:259 -#: ../../enterprise/godmode/policies/policy_agents.php:363 -msgid "Group recursion" -msgstr "Group recursion" - -#: ../../godmode/massive/massive_add_action_alerts.php:157 -#: ../../godmode/massive/massive_delete_action_alerts.php:158 -msgid "Agents with templates" -msgstr "Agents with templates" - -#: ../../godmode/massive/massive_add_action_alerts.php:168 -#: ../../godmode/massive/massive_add_alerts.php:167 -#: ../../godmode/massive/massive_delete_action_alerts.php:169 -#: ../../godmode/massive/massive_delete_alerts.php:227 -#: ../../godmode/massive/massive_delete_modules.php:499 -#: ../../godmode/massive/massive_edit_modules.php:346 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:225 -msgid "When select agents" -msgstr "When selecting agents" - -#: ../../godmode/massive/massive_add_action_alerts.php:172 -#: ../../godmode/massive/massive_delete_action_alerts.php:173 -#: ../../godmode/massive/massive_delete_modules.php:501 -#: ../../godmode/massive/massive_edit_modules.php:350 -msgid "Show unknown and not init modules" -msgstr "Show unknown and not init modules" - -#: ../../godmode/massive/massive_add_action_alerts.php:228 -#: ../../godmode/massive/massive_add_alerts.php:213 -#: ../../godmode/massive/massive_copy_modules.php:424 -#: ../../godmode/massive/massive_delete_agents.php:163 -#: ../../godmode/massive/massive_delete_alerts.php:266 -#: ../../godmode/massive/massive_delete_modules.php:727 -#: ../../godmode/massive/massive_edit_agents.php:553 -#: ../../godmode/massive/massive_edit_modules.php:653 -msgid "" -"Unsucessful sending the data, please contact with your administrator or make " -"with less elements." -msgstr "" -"Data sending unsuccessful, please contact your administrator or try again " -"with less items." - -#: ../../godmode/massive/massive_add_alerts.php:78 -#: ../../godmode/massive/massive_delete_alerts.php:78 -msgid "No alert selected" -msgstr "No alert selected" - -#: ../../godmode/massive/massive_add_profiles.php:72 -msgid "Profiles added successfully" -msgstr "Successfully added profiles" - -#: ../../godmode/massive/massive_add_profiles.php:73 -msgid "Profiles cannot be added" -msgstr "Profiles cannot be added" - -#: ../../godmode/massive/massive_add_profiles.php:88 -#: ../../godmode/massive/massive_delete_profiles.php:102 -#: ../../godmode/users/configure_profile.php:242 -#: ../../godmode/users/configure_user.php:623 -#: ../../operation/users/user_edit.php:504 -#: ../../enterprise/godmode/setup/setup_acl.php:223 -msgid "Profile name" -msgstr "Profile name" - -#: ../../godmode/massive/massive_add_profiles.php:90 -#: ../../godmode/massive/massive_delete_profiles.php:104 -#: ../../include/functions_reporting.php:7312 -#: ../../operation/search_results.php:84 -#: ../../enterprise/meta/advanced/synchronizing.user.php:520 -msgid "Users" -msgstr "Users" - -#: ../../godmode/massive/massive_add_tags.php:43 -msgid "No tags selected" -msgstr "No tags selected" - -#: ../../godmode/massive/massive_copy_modules.php:77 -#: ../../godmode/massive/massive_copy_modules.php:190 -#: ../../godmode/massive/massive_delete_agents.php:113 -#: ../../godmode/massive/massive_delete_modules.php:453 -#: ../../godmode/massive/massive_delete_modules.php:467 -#: ../../godmode/massive/massive_edit_agents.php:216 -#: ../../godmode/massive/massive_edit_modules.php:296 -#: ../../godmode/massive/massive_edit_modules.php:327 -#: ../../godmode/netflow/nf_edit_form.php:207 ../../include/functions.php:873 -#: ../../include/functions.php:1077 ../../include/functions.php:1084 -#: ../../include/functions.php:1114 ../../include/functions_events.php:1465 -#: ../../include/functions_graph.php:2188 -#: ../../include/functions_graph.php:3286 -#: ../../include/functions_graph.php:3287 -#: ../../include/functions_graph.php:5233 -#: ../../include/functions_groups.php:821 -#: ../../include/functions_groups.php:823 -#: ../../include/functions_groups.php:825 -#: ../../include/functions_groups.php:826 -#: ../../include/functions_groups.php:827 -#: ../../include/functions_groups.php:835 -#: ../../include/functions_reporting_html.php:1573 -#: ../../mobile/operation/agents.php:34 ../../mobile/operation/modules.php:39 -#: ../../operation/agentes/estado_agente.php:186 -#: ../../operation/agentes/estado_monitores.php:450 -#: ../../operation/agentes/group_view.php:171 -#: ../../operation/agentes/status_monitor.php:299 -#: ../../operation/agentes/tactical.php:152 -#: ../../operation/netflow/nf_live_view.php:322 ../../operation/tree.php:131 -#: ../../operation/tree.php:156 ../../operation/tree.php:303 -#: ../../enterprise/dashboard/widgets/tree_view.php:53 -#: ../../enterprise/dashboard/widgets/tree_view.php:66 -#: ../../enterprise/dashboard/widgets/tree_view.php:227 -#: ../../enterprise/include/functions_reporting_pdf.php:707 -#: ../../enterprise/include/functions_services.php:1258 -#: ../../enterprise/meta/monitoring/group_view.php:152 -#: ../../enterprise/meta/monitoring/tactical.php:280 -msgid "Normal" -msgstr "Normal" - -#: ../../godmode/massive/massive_copy_modules.php:78 -#: ../../godmode/massive/massive_copy_modules.php:191 -#: ../../godmode/massive/massive_delete_agents.php:114 -#: ../../godmode/massive/massive_delete_modules.php:454 -#: ../../godmode/massive/massive_delete_modules.php:468 -#: ../../godmode/massive/massive_edit_agents.php:217 -#: ../../godmode/massive/massive_edit_agents.php:407 -#: ../../godmode/massive/massive_edit_modules.php:297 -#: ../../godmode/massive/massive_edit_modules.php:328 -#: ../../godmode/servers/manage_recontask_form.php:193 -#: ../../godmode/setup/setup_netflow.php:70 ../../include/functions.php:876 -#: ../../include/functions.php:1079 ../../include/functions.php:1082 -#: ../../include/functions.php:1117 ../../include/functions_events.php:1468 -#: ../../include/functions_graph.php:2187 -#: ../../include/functions_graph.php:3294 -#: ../../include/functions_graph.php:3295 -#: ../../include/functions_graph.php:5236 -#: ../../include/functions_groups.php:830 -#: ../../include/functions_groups.php:832 -#: ../../include/functions_groups.php:834 -#: ../../include/functions_groups.php:835 -#: ../../include/functions_groups.php:836 -#: ../../include/functions_reporting_html.php:1577 -#: ../../include/functions_ui.php:234 ../../include/functions_ui.php:2001 -#: ../../mobile/operation/agents.php:35 ../../mobile/operation/modules.php:40 -#: ../../operation/agentes/estado_agente.php:187 -#: ../../operation/agentes/estado_monitores.php:452 -#: ../../operation/agentes/group_view.php:172 -#: ../../operation/agentes/status_monitor.php:300 -#: ../../operation/agentes/tactical.php:151 -#: ../../operation/gis_maps/render_view.php:150 -#: ../../operation/netflow/nf_live_view.php:273 ../../operation/tree.php:132 -#: ../../operation/tree.php:157 ../../operation/tree.php:288 -#: ../../enterprise/dashboard/widgets/service_map.php:85 -#: ../../enterprise/dashboard/widgets/tree_view.php:54 -#: ../../enterprise/dashboard/widgets/tree_view.php:67 -#: ../../enterprise/dashboard/widgets/tree_view.php:212 -#: ../../enterprise/godmode/services/services.service.php:274 -#: ../../enterprise/include/functions_login.php:23 -#: ../../enterprise/include/functions_reporting.php:3749 -#: ../../enterprise/include/functions_reporting_pdf.php:709 -#: ../../enterprise/include/functions_reporting_pdf.php:2363 -#: ../../enterprise/include/functions_services.php:1267 -#: ../../enterprise/meta/include/functions_wizard_meta.php:839 -#: ../../enterprise/meta/include/functions_wizard_meta.php:925 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1126 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1146 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1342 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1423 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1539 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1559 -#: ../../enterprise/meta/monitoring/group_view.php:153 -#: ../../enterprise/meta/monitoring/tactical.php:279 -#: ../../enterprise/operation/agentes/transactional_map.php:265 -#: ../../enterprise/operation/services/services.list.php:171 -#: ../../enterprise/operation/services/services.list.php:340 -#: ../../enterprise/operation/services/services.list.php:409 -#: ../../enterprise/operation/services/services.service.php:136 -#: ../../enterprise/operation/services/services.service.php:188 -#: ../../enterprise/operation/services/services.service_map.php:127 -#: ../../enterprise/operation/services/services.table_services.php:140 -msgid "Warning" -msgstr "Warning" - -#: ../../godmode/massive/massive_copy_modules.php:79 -#: ../../godmode/massive/massive_copy_modules.php:192 -#: ../../godmode/massive/massive_delete_agents.php:115 -#: ../../godmode/massive/massive_delete_modules.php:455 -#: ../../godmode/massive/massive_delete_modules.php:469 -#: ../../godmode/massive/massive_edit_agents.php:218 -#: ../../godmode/massive/massive_edit_modules.php:298 -#: ../../godmode/massive/massive_edit_modules.php:329 -#: ../../include/functions.php:879 ../../include/functions.php:1081 -#: ../../include/functions.php:1082 ../../include/functions.php:1084 -#: ../../include/functions.php:1120 ../../include/functions_events.php:1471 -#: ../../include/functions_graph.php:2186 -#: ../../include/functions_graph.php:3302 -#: ../../include/functions_graph.php:3303 -#: ../../include/functions_graph.php:5239 -#: ../../include/functions_groups.php:839 -#: ../../include/functions_groups.php:841 -#: ../../include/functions_groups.php:843 -#: ../../include/functions_groups.php:844 -#: ../../include/functions_groups.php:845 -#: ../../include/functions_reporting_html.php:680 -#: ../../include/functions_reporting_html.php:1575 -#: ../../include/functions_reporting_html.php:2536 -#: ../../include/functions_ui.php:2001 ../../mobile/operation/agents.php:33 -#: ../../mobile/operation/modules.php:41 -#: ../../operation/agentes/estado_agente.php:188 -#: ../../operation/agentes/estado_monitores.php:448 -#: ../../operation/agentes/group_view.php:168 -#: ../../operation/agentes/group_view.php:173 -#: ../../operation/agentes/status_monitor.php:301 -#: ../../operation/agentes/tactical.php:150 -#: ../../operation/gis_maps/render_view.php:149 ../../operation/tree.php:133 -#: ../../operation/tree.php:158 ../../operation/tree.php:283 -#: ../../enterprise/dashboard/widgets/service_map.php:84 -#: ../../enterprise/dashboard/widgets/tree_view.php:55 -#: ../../enterprise/dashboard/widgets/tree_view.php:68 -#: ../../enterprise/dashboard/widgets/tree_view.php:207 -#: ../../enterprise/godmode/services/services.elements.php:410 -#: ../../enterprise/godmode/services/services.service.php:270 -#: ../../enterprise/include/functions_reporting.php:2264 -#: ../../enterprise/include/functions_reporting.php:3033 -#: ../../enterprise/include/functions_reporting.php:3754 -#: ../../enterprise/include/functions_reporting_pdf.php:708 -#: ../../enterprise/include/functions_reporting_pdf.php:1504 -#: ../../enterprise/include/functions_reporting_pdf.php:2363 -#: ../../enterprise/include/functions_services.php:1264 -#: ../../enterprise/include/functions_services.php:1423 -#: ../../enterprise/meta/include/functions_wizard_meta.php:848 -#: ../../enterprise/meta/include/functions_wizard_meta.php:934 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1135 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1152 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1351 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1432 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1548 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1566 -#: ../../enterprise/meta/monitoring/group_view.php:154 -#: ../../enterprise/meta/monitoring/tactical.php:278 -#: ../../enterprise/operation/services/services.list.php:172 -#: ../../enterprise/operation/services/services.list.php:339 -#: ../../enterprise/operation/services/services.list.php:404 -#: ../../enterprise/operation/services/services.service.php:135 -#: ../../enterprise/operation/services/services.service.php:183 -#: ../../enterprise/operation/services/services.service_map.php:126 -#: ../../enterprise/operation/services/services.table_services.php:141 -msgid "Critical" -msgstr "Critical" - -#: ../../godmode/massive/massive_copy_modules.php:82 -#: ../../godmode/massive/massive_copy_modules.php:195 -#: ../../godmode/massive/massive_delete_agents.php:118 -#: ../../godmode/massive/massive_delete_modules.php:458 -#: ../../godmode/massive/massive_delete_modules.php:472 -#: ../../godmode/massive/massive_edit_agents.php:221 -#: ../../godmode/massive/massive_edit_modules.php:301 -#: ../../godmode/massive/massive_edit_modules.php:332 -#: ../../include/functions_graph.php:2192 -#: ../../include/functions_groups.php:812 -#: ../../include/functions_groups.php:814 -#: ../../include/functions_groups.php:816 -#: ../../include/functions_groups.php:817 -#: ../../include/functions_groups.php:818 -#: ../../include/functions_reporting_html.php:1581 -#: ../../mobile/operation/modules.php:44 -#: ../../operation/agentes/estado_agente.php:191 -#: ../../operation/agentes/group_view.php:167 -#: ../../operation/agentes/status_monitor.php:304 -#: ../../operation/agentes/tactical.php:154 ../../operation/tree.php:135 -#: ../../operation/tree.php:160 ../../operation/tree.php:298 -#: ../../enterprise/dashboard/widgets/tree_view.php:57 -#: ../../enterprise/dashboard/widgets/tree_view.php:70 -#: ../../enterprise/dashboard/widgets/tree_view.php:222 -#: ../../enterprise/include/functions_reporting_pdf.php:711 -#: ../../enterprise/meta/monitoring/group_view.php:147 -#: ../../enterprise/meta/monitoring/group_view.php:151 -#: ../../enterprise/meta/monitoring/tactical.php:282 -#: ../../enterprise/operation/agentes/transactional_map.php:275 -msgid "Not init" -msgstr "Not initialized" - -#: ../../godmode/massive/massive_copy_modules.php:136 -#: ../../enterprise/godmode/policies/policy_modules.php:1315 -msgid "Copy modules" -msgstr "Copy modules" - -#: ../../godmode/massive/massive_copy_modules.php:141 -msgid "Copy alerts" -msgstr "Copy alerts" - -#: ../../godmode/massive/massive_copy_modules.php:150 -msgid "No modules for this agent" -msgstr "No modules for this agent" - -#: ../../godmode/massive/massive_copy_modules.php:159 -msgid "No alerts for this agent" -msgstr "No alerts for this agent" - -#: ../../godmode/massive/massive_copy_modules.php:168 -#: ../../enterprise/meta/advanced/policymanager.sync.php:308 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:344 -#: ../../enterprise/meta/advanced/synchronizing.component.php:320 -#: ../../enterprise/meta/advanced/synchronizing.group.php:157 -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:101 -#: ../../enterprise/meta/advanced/synchronizing.os.php:101 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:101 -msgid "Targets" -msgstr "Targets" - -#: ../../godmode/massive/massive_copy_modules.php:217 -msgid "To agent(s)" -msgstr "To agent(s)" - -#: ../../godmode/massive/massive_copy_modules.php:434 #: ../../include/functions_agents.php:535 +#: ../../godmode/massive/massive_copy_modules.php:434 msgid "No source agent to copy" msgstr "No source agent to copy" -#: ../../godmode/massive/massive_copy_modules.php:442 -msgid "No operation selected" -msgstr "No operation selected" - -#: ../../godmode/massive/massive_copy_modules.php:452 #: ../../include/functions_agents.php:540 +#: ../../godmode/massive/massive_copy_modules.php:452 msgid "No destiny agent(s) to copy" msgstr "No destiny agent(s) to copy" -#: ../../godmode/massive/massive_delete_action_alerts.php:56 -msgid "Could not be deleted. No agents selected" -msgstr "Could not be deleted. No agents selected" +#: ../../include/functions_agents.php:565 +#: ../../godmode/massive/massive_copy_modules.php:447 +#: ../../godmode/db/db_refine.php:47 +msgid "No modules have been selected" +msgstr "No modules have been selected" -#: ../../godmode/massive/massive_delete_action_alerts.php:81 -msgid "Could not be deleted. No alerts selected" -msgstr "Could not be deleted. No alerts selected" - -#: ../../godmode/massive/massive_delete_action_alerts.php:124 -msgid "Could not be deleted. No action selected" -msgstr "Could not be deleted. No action selected" - -#: ../../godmode/massive/massive_delete_agents.php:57 -#, php-format +#: ../../include/functions_agents.php:672 msgid "" -"There was an error deleting the agent, the operation has been cancelled " -"Could not delete agent %s" +"There was an error copying the agent configuration, the copy has been " +"cancelled" msgstr "" -"There was an error deleting the agent. The operation has been cancelled, " -"could not delete agent %s" - -#: ../../godmode/massive/massive_delete_agents.php:63 -#, php-format -msgid "Successfully deleted (%s)" -msgstr "Successfully deleted (%s)" - -#: ../../godmode/massive/massive_delete_agents.php:123 -#: ../../godmode/massive/massive_edit_agents.php:225 -msgid "Show agents" -msgstr "Show agents" - -#: ../../godmode/massive/massive_delete_modules.php:56 -msgid "No module selected" -msgstr "No module selected" - -#: ../../godmode/massive/massive_delete_modules.php:230 -msgid "" -"There was an error deleting the modules, the operation has been cancelled" -msgstr "" -"There was an error deleting the selected modules. The operation has been " +"There was an error copying the agent's configuration, the copy has been " "cancelled." -#: ../../godmode/massive/massive_delete_modules.php:396 -#: ../../godmode/massive/massive_edit_modules.php:239 -msgid "Selection mode" -msgstr "Selection mode" - -#: ../../godmode/massive/massive_delete_modules.php:397 -#: ../../godmode/massive/massive_edit_modules.php:240 -msgid "Select modules first " -msgstr "Select modules first " - -#: ../../godmode/massive/massive_delete_modules.php:399 -#: ../../godmode/massive/massive_edit_modules.php:242 -msgid "Select agents first " -msgstr "Select agents first " - -#: ../../godmode/massive/massive_delete_modules.php:405 -#: ../../godmode/massive/massive_edit_modules.php:249 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1387 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:144 -msgid "Module type" -msgstr "Module type" - -#: ../../godmode/massive/massive_delete_modules.php:414 -#: ../../godmode/massive/massive_edit_modules.php:258 -msgid "Select all modules of this type" -msgstr "Select all modules of the same type" - -#: ../../godmode/massive/massive_delete_modules.php:435 -#: ../../godmode/massive/massive_edit_modules.php:279 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:202 -msgid "Agent group" -msgstr "Agent group" - -#: ../../godmode/massive/massive_delete_modules.php:443 -#: ../../godmode/massive/massive_edit_modules.php:287 -msgid "Select all modules of this group" -msgstr "Select all modules from this group" - -#: ../../godmode/massive/massive_delete_modules.php:464 -#: ../../godmode/massive/massive_edit_modules.php:293 -msgid "Module Status" -msgstr "Module Status" - -#: ../../godmode/massive/massive_delete_modules.php:483 -#: ../../godmode/massive/massive_edit_modules.php:311 -msgid "When select modules" -msgstr "When selecting modules" - -#: ../../godmode/massive/massive_delete_modules.php:486 -#: ../../godmode/massive/massive_edit_modules.php:314 -msgid "Show common agents" -msgstr "Show common agents" - -#: ../../godmode/massive/massive_delete_modules.php:487 -#: ../../godmode/massive/massive_edit_modules.php:315 -msgid "Show all agents" -msgstr "Show all agents" - -#: ../../godmode/massive/massive_delete_profiles.php:61 -msgid "Not deleted. You must select an existing user" -msgstr "Could not be deleted. An existing user must be chosen." - -#: ../../godmode/massive/massive_delete_profiles.php:87 -msgid "Profiles deleted successfully" -msgstr "Profiles deleted successfully" - -#: ../../godmode/massive/massive_delete_profiles.php:88 -msgid "Profiles cannot be deleted" -msgstr "Profiles cannot be deleted" - -#: ../../godmode/massive/massive_delete_tags.php:107 -msgid "No tag selected" -msgstr "No tag selected" - -#: ../../godmode/massive/massive_edit_agents.php:97 -msgid "No values changed" -msgstr "No values changed" - -#: ../../godmode/massive/massive_edit_agents.php:126 -msgid "Configuration files deleted successfully" -msgstr "Configuration files deleted successfully" - -#: ../../godmode/massive/massive_edit_agents.php:127 -msgid "Configuration files cannot be deleted" -msgstr "Configuration files cannot be deleted" - -#: ../../godmode/massive/massive_edit_agents.php:185 -msgid "Agents updated successfully" -msgstr "Agents updated successfully" - -#: ../../godmode/massive/massive_edit_agents.php:186 -msgid "Agents cannot be updated" -msgstr "Agents cannot be updated" - -#: ../../godmode/massive/massive_edit_agents.php:294 -#: ../../godmode/massive/massive_edit_agents.php:299 -#: ../../godmode/massive/massive_edit_agents.php:303 -#: ../../godmode/massive/massive_edit_agents.php:307 -#: ../../godmode/massive/massive_edit_agents.php:318 -#: ../../godmode/massive/massive_edit_agents.php:357 -#: ../../godmode/massive/massive_edit_agents.php:363 -#: ../../godmode/massive/massive_edit_agents.php:402 -#: ../../godmode/massive/massive_edit_agents.php:411 -#: ../../godmode/massive/massive_edit_agents.php:418 -#: ../../godmode/massive/massive_edit_modules.php:406 -#: ../../godmode/massive/massive_edit_modules.php:451 -#: ../../godmode/massive/massive_edit_modules.php:466 -#: ../../godmode/massive/massive_edit_modules.php:470 -#: ../../godmode/massive/massive_edit_modules.php:490 -#: ../../godmode/massive/massive_edit_modules.php:496 -#: ../../godmode/massive/massive_edit_modules.php:504 -#: ../../godmode/massive/massive_edit_modules.php:508 -#: ../../godmode/massive/massive_edit_modules.php:511 -#: ../../godmode/massive/massive_edit_modules.php:524 -#: ../../godmode/massive/massive_edit_modules.php:537 -#: ../../godmode/massive/massive_edit_modules.php:545 -#: ../../godmode/massive/massive_edit_modules.php:558 -#: ../../godmode/massive/massive_edit_modules.php:566 -#: ../../godmode/massive/massive_edit_modules.php:572 -#: ../../godmode/massive/massive_edit_modules.php:584 -#: ../../godmode/massive/massive_edit_modules.php:603 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:27 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:259 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:278 -msgid "No change" -msgstr "No change" - -#: ../../godmode/massive/massive_edit_agents.php:371 -msgid "Delete available remote configurations" -msgstr "Delete the available remote configurations" - -#: ../../godmode/massive/massive_edit_agents.php:403 -msgid "Without status" -msgstr "Without status" - -#: ../../godmode/massive/massive_edit_agents.php:405 -#: ../../godmode/update_manager/update_manager.offline.php:66 -#: ../../include/functions_update_manager.php:366 -#: ../../include/functions_config.php:547 -#: ../../include/functions_config.php:1600 -#: ../../operation/gis_maps/render_view.php:151 -#: ../../enterprise/dashboard/widgets/service_map.php:86 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:355 -#: ../../enterprise/include/functions_update_manager.php:198 -#: ../../enterprise/load_enterprise.php:1 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:37 -#: ../../enterprise/operation/agentes/transactional_map.php:255 -#: ../../enterprise/operation/services/services.list.php:170 -#: ../../enterprise/operation/services/services.list.php:399 -#: ../../enterprise/operation/services/services.service.php:177 -#: ../../enterprise/operation/services/services.service_map.php:128 -#: ../../enterprise/operation/services/services.table_services.php:139 -msgid "Ok" -msgstr "Ok" - -#: ../../godmode/massive/massive_edit_agents.php:406 -#: ../../enterprise/dashboard/widgets/maps_status.php:77 -msgid "Bad" -msgstr "Bad" - -#: ../../godmode/massive/massive_edit_modules.php:324 -msgid "Agent Status" -msgstr "Agent Status" - -#: ../../godmode/massive/massive_edit_modules.php:357 -#: ../../godmode/modules/manage_network_components_form_common.php:107 -#: ../../enterprise/godmode/modules/configure_local_component.php:226 -msgid "Dynamic Interval" -msgstr "Dynamic Interval" - -#: ../../godmode/massive/massive_edit_modules.php:359 -msgid "Dynamic Min." -msgstr "Dynamic Min." - -#: ../../godmode/massive/massive_edit_modules.php:362 -#: ../../godmode/modules/manage_network_components_form_common.php:113 -#: ../../enterprise/godmode/modules/configure_local_component.php:232 -msgid "Dynamic Max." -msgstr "Dynamic Max." - -#: ../../godmode/massive/massive_edit_modules.php:365 -#: ../../godmode/modules/manage_network_components_form_common.php:115 -#: ../../enterprise/godmode/modules/configure_local_component.php:234 -msgid "Dynamic Two Tailed: " -msgstr "Dynamic Two Tailed: " - -#: ../../godmode/massive/massive_edit_modules.php:479 -msgid "SMNP community" -msgstr "SMNP community" - -#: ../../godmode/massive/massive_edit_modules.php:571 -msgid "Policy linking status" -msgstr "Policy linking status" - -#: ../../godmode/massive/massive_edit_modules.php:571 -msgid "This field only has sense in modules adopted by a policy." -msgstr "This field only makes sense in modules adopted by a policy" - -#: ../../godmode/massive/massive_edit_modules.php:572 -msgid "Linked" -msgstr "Linked" - -#: ../../godmode/massive/massive_edit_modules.php:602 -msgid "The module still store data but the alerts and events will be stop" -msgstr "" -"The module will still store data, but alerts and events will be stopped." - -#: ../../godmode/massive/massive_edit_plugins.php:151 -msgid "Error retrieving the plugin macros" -msgstr "Error retrieving plugin macros" - -#: ../../godmode/massive/massive_edit_plugins.php:158 -msgid "Error retrieving the modified macros" -msgstr "Error retrieving modified macros" - -#: ../../godmode/massive/massive_edit_plugins.php:172 -msgid "Error retrieving the module plugin macros" -msgstr "Error retrieving module plugin macros" - -#: ../../godmode/massive/massive_edit_plugins.php:190 -msgid "Error retrieving the module plugin macros data" -msgstr "Error retrieving data from module plugin macros" - -#: ../../godmode/massive/massive_edit_plugins.php:224 -msgid "Error building the new macros" -msgstr "Error creating new macros" - -#: ../../godmode/massive/massive_edit_plugins.php:253 -#, php-format -msgid "%d modules updated" -msgstr "%d modules updated" - -#: ../../godmode/massive/massive_edit_plugins.php:272 -msgid "There are not registered plugins" -msgstr "There are no registered plugins" - -#: ../../godmode/massive/massive_edit_plugins.php:421 -msgid "Invalid plugin data" -msgstr "Invalid plugin data" - -#: ../../godmode/massive/massive_edit_plugins.php:528 -msgid "Clear" -msgstr "Clear" - -#: ../../godmode/massive/massive_edit_plugins.php:556 -msgid "Invalid macros array" -msgstr "Invalid array of macros" - -#: ../../godmode/massive/massive_edit_plugins.php:581 -msgid "Multiple values" -msgstr "Multiple values" - -#: ../../godmode/massive/massive_edit_plugins.php:613 -#: ../../godmode/massive/massive_edit_plugins.php:750 -#: ../../godmode/massive/massive_edit_plugins.php:766 -msgid "Invalid agents array" -msgstr "Invalid array of agents" - -#: ../../godmode/massive/massive_edit_plugins.php:629 -msgid "Invalid agent element" -msgstr "Invalid agent item" - -#: ../../godmode/massive/massive_edit_plugins.php:640 -msgid "Invalid modules array" -msgstr "Invalid array of modules" - -#: ../../godmode/massive/massive_edit_plugins.php:668 -msgid "Invalid module element" -msgstr "Invalid module item" - -#: ../../godmode/massive/massive_edit_plugins.php:876 -msgid "There are no modules using this plugin" -msgstr "There are no modules using this plugin" - -#: ../../godmode/massive/massive_edit_plugins.php:955 -msgid "There was a problem loading the module plugin macros data" -msgstr "There was a problem loading the data from the module plugin macros" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:154 -msgid "Enabled alerts" -msgstr "Alerts enabled" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:154 -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -#: ../../godmode/massive/massive_standby_alerts.php:154 -#: ../../godmode/massive/massive_standby_alerts.php:171 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:93 -msgid "Format" -msgstr "Format" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:165 -msgid "Disable selected alerts" -msgstr "Disable the selected alerts" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:169 -msgid "Enable selected alerts" -msgstr "Enable selected alerts" - -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -msgid "Disabled alerts" -msgstr "Disabled alerts" - -#: ../../godmode/massive/massive_operations.php:36 -msgid "Bulk alert add" -msgstr "Add alerts in bulk" - -#: ../../godmode/massive/massive_operations.php:37 -msgid "Bulk alert delete" -msgstr "Delete alerts in bulk" - -#: ../../godmode/massive/massive_operations.php:38 -msgid "Bulk alert actions add" -msgstr "Add alert actions in bulk" - -#: ../../godmode/massive/massive_operations.php:39 -msgid "Bulk alert actions delete" -msgstr "Delete alert actions in bulk" - -#: ../../godmode/massive/massive_operations.php:40 -msgid "Bulk alert enable/disable" -msgstr "Enable/disable alerts in bulk" - -#: ../../godmode/massive/massive_operations.php:41 -msgid "Bulk alert setting standby" -msgstr "Set alerts standby in bulk" - -#: ../../godmode/massive/massive_operations.php:44 -msgid "Bulk agent edit" -msgstr "Edit agents in bulk" - -#: ../../godmode/massive/massive_operations.php:45 -msgid "Bulk agent delete" -msgstr "Delete agents in bulk" - -#: ../../godmode/massive/massive_operations.php:49 -msgid "Bulk profile add" -msgstr "Add profiles in bulk" - -#: ../../godmode/massive/massive_operations.php:50 -msgid "Bulk profile delete" -msgstr "Delete profiles in bulk" - -#: ../../godmode/massive/massive_operations.php:57 -msgid "Bulk module delete" -msgstr "Delete modules in bulk" - -#: ../../godmode/massive/massive_operations.php:58 -msgid "Bulk module edit" -msgstr "Edit modules in bulk" - -#: ../../godmode/massive/massive_operations.php:59 -msgid "Bulk module copy" -msgstr "Copy modules in bulk" - -#: ../../godmode/massive/massive_operations.php:62 -msgid "Bulk plugin edit" -msgstr "Edit plugins in bulk" - -#: ../../godmode/massive/massive_operations.php:155 ../../godmode/menu.php:122 -msgid "Alerts operations" -msgstr "Alert operations" - -#: ../../godmode/massive/massive_operations.php:160 ../../godmode/menu.php:120 -msgid "Users operations" -msgstr "User operations" - -#: ../../godmode/massive/massive_operations.php:165 ../../godmode/menu.php:116 -msgid "Agents operations" -msgstr "Agent operations" - -#: ../../godmode/massive/massive_operations.php:170 ../../godmode/menu.php:117 -msgid "Modules operations" -msgstr "Module operations" - -#: ../../godmode/massive/massive_operations.php:175 ../../godmode/menu.php:118 -msgid "Plugins operations" -msgstr "Plugin operations" - -#: ../../godmode/massive/massive_operations.php:215 -#: ../../enterprise/extensions/ipam.php:197 -msgid "Massive operations" -msgstr "Massive operations" - -#: ../../godmode/massive/massive_operations.php:223 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:202 -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 "" -"In order to perform massive operations PHP needs to be have timeout " -"parameters set correctly. Please open the PHP configuration file (php.ini) " -"for example: sudo vi /etc/php5/apache2/php.ini;
    And set the " -"timeout parameters to the correct value:
    max_execution_time = 0 " -"and max_input_time = -1" - -#: ../../godmode/massive/massive_operations.php:239 -msgid "Please wait..." -msgstr "Please wait..." - -#: ../../godmode/massive/massive_operations.php:276 -msgid "The blank fields will not be updated" -msgstr "Fields left blank will not be updated" - -#: ../../godmode/massive/massive_standby_alerts.php:154 -msgid "Not standby alerts" -msgstr "Not standby alerts" - -#: ../../godmode/massive/massive_standby_alerts.php:165 -#: ../../godmode/massive/massive_standby_alerts.php:169 -msgid "Set standby selected alerts" -msgstr "Set selected alerts to standby" - -#: ../../godmode/massive/massive_standby_alerts.php:171 -msgid "Standby alerts" -msgstr "Standby alerts" - -#: ../../godmode/menu.php:29 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:200 -msgid "Manage agents" -msgstr "Manage agents" - -#: ../../godmode/menu.php:39 -#: ../../enterprise/meta/include/functions_components_meta.php:48 -#: ../../enterprise/meta/include/functions_components_meta.php:66 -msgid "Component groups" -msgstr "Component groups" - -#: ../../godmode/menu.php:42 -msgid "Module categories" -msgstr "Module categories" - -#: ../../godmode/menu.php:46 -msgid "Module types" -msgstr "Module types" - -#: ../../godmode/menu.php:56 ../../godmode/netflow/nf_edit.php:48 -#: ../../godmode/netflow/nf_edit.php:52 -#: ../../godmode/netflow/nf_edit_form.php:66 -#: ../../godmode/netflow/nf_edit_form.php:71 -msgid "Netflow filters" -msgstr "Netflow filters" - -#: ../../godmode/menu.php:62 -msgid "Resources" -msgstr "Resources" - -#: ../../godmode/menu.php:70 -msgid "Manage agents groups" -msgstr "Manage agent groups" - -#: ../../godmode/menu.php:76 -#: ../../enterprise/extensions/disabled/check_acls.php:122 -msgid "Module tags" -msgstr "Module tags" - -#: ../../godmode/menu.php:83 ../../godmode/users/profile_list.php:312 -#: ../../enterprise/extensions/disabled/check_acls.php:51 -#: ../../enterprise/extensions/disabled/check_acls.php:131 -msgid "Users management" -msgstr "Manage users" - -#: ../../godmode/menu.php:85 ../../godmode/users/configure_profile.php:45 -#: ../../godmode/users/configure_user.php:86 -#: ../../godmode/users/profile_list.php:49 -#: ../../godmode/users/user_list.php:117 -#: ../../enterprise/meta/include/functions_users_meta.php:172 -#: ../../enterprise/meta/include/functions_users_meta.php:193 -msgid "Profile management" -msgstr "Profile management" - -#: ../../godmode/menu.php:91 ../../godmode/users/profile_list.php:302 -#: ../../enterprise/godmode/setup/setup_auth.php:427 -#: ../../enterprise/godmode/setup/setup_auth.php:468 -#: ../../enterprise/meta/advanced/synchronizing.user.php:564 -msgid "Profiles" -msgstr "Profiles" - -#: ../../godmode/menu.php:98 -#: ../../enterprise/meta/include/functions_components_meta.php:56 -#: ../../enterprise/meta/include/functions_components_meta.php:72 -msgid "Network components" -msgstr "Network components" - -#: ../../godmode/menu.php:111 -msgid "Bulk operations" -msgstr "Bulk operations" - -#: ../../godmode/menu.php:145 -msgid "List of Alerts" -msgstr "List of Alerts" - -#: ../../godmode/menu.php:160 -#: ../../enterprise/meta/include/functions_alerts_meta.php:115 -#: ../../enterprise/meta/include/functions_alerts_meta.php:131 -msgid "Commands" -msgstr "Commands" - -#: ../../godmode/menu.php:170 ../../include/functions_menu.php:512 -msgid "SNMP alerts" -msgstr "SNMP alerts" - -#: ../../godmode/menu.php:180 -msgid "Event filters" -msgstr "Event filters" - -#: ../../godmode/menu.php:185 -msgid "Custom events" -msgstr "Custom events" - -#: ../../godmode/menu.php:192 ../../include/functions_reports.php:620 -#: ../../include/functions_reports.php:622 -#: ../../include/functions_reports.php:624 -#: ../../include/functions_graph.php:744 -#: ../../include/functions_graph.php:3938 -#: ../../include/functions_graph.php:4664 -#: ../../include/functions_reporting_html.php:1621 -#: ../../mobile/include/functions_web.php:24 -#: ../../mobile/operation/events.php:564 ../../mobile/operation/home.php:44 -#: ../../operation/events/events.php:420 ../../operation/events/events.php:429 -#: ../../operation/menu.php:268 -#: ../../enterprise/dashboard/widgets/events_list.php:26 -#: ../../enterprise/extensions/ipam/ipam_massive.php:76 -#: ../../enterprise/extensions/ipam/ipam_network.php:539 -#: ../../enterprise/include/functions_reporting_pdf.php:753 -#: ../../enterprise/meta/general/logon_ok.php:43 -#: ../../enterprise/meta/general/main_header.php:123 -#: ../../enterprise/meta/monitoring/tactical.php:312 -msgid "Events" -msgstr "Events" - -#: ../../godmode/menu.php:201 -#: ../../godmode/reporting/visual_console_builder.wizard.php:246 -#: ../../mobile/include/functions_web.php:27 -#: ../../enterprise/meta/advanced/policymanager.apply.php:202 -msgid "Servers" -msgstr "Servers" - -#: ../../godmode/menu.php:207 -msgid "Manage servers" -msgstr "Manage servers" - -#: ../../godmode/menu.php:212 ../../include/functions_groups.php:92 -#: ../../operation/agentes/pandora_networkmap.editor.php:197 -msgid "Recon task" -msgstr "Recon task" - -#: ../../godmode/menu.php:215 -#: ../../enterprise/godmode/agentes/plugins_manager.php:143 -#: ../../enterprise/godmode/policies/policy_plugins.php:87 -msgid "Plugins" -msgstr "Plugins" - -#: ../../godmode/menu.php:218 -#: ../../godmode/servers/manage_recontask_form.php:281 -msgid "Recon script" -msgstr "Recon script" - -#: ../../godmode/menu.php:244 -msgid "General Setup" -msgstr "General Setup" - -#: ../../godmode/menu.php:253 ../../godmode/setup/setup.php:82 -#: ../../godmode/setup/setup.php:116 -#: ../../enterprise/meta/advanced/metasetup.php:70 -#: ../../enterprise/meta/advanced/metasetup.php:122 -msgid "Authentication" -msgstr "Authentication" - -#: ../../godmode/menu.php:256 ../../godmode/setup/setup.php:86 -#: ../../godmode/setup/setup.php:120 -#: ../../enterprise/meta/advanced/metasetup.performance.php:73 -msgid "Performance" -msgstr "Performance" - -#: ../../godmode/menu.php:259 ../../godmode/setup/setup.php:90 -#: ../../godmode/setup/setup.php:125 -msgid "Visual styles" -msgstr "Visual styles" - -#: ../../godmode/menu.php:264 ../../godmode/setup/setup.php:96 -#: ../../godmode/setup/setup.php:129 ../../include/functions_reports.php:641 -#: ../../include/functions_reports.php:643 -#: ../../include/functions_reports.php:645 -#: ../../include/functions_reports.php:647 -#: ../../include/functions_reports.php:649 -#: ../../enterprise/include/functions_enterprise.php:289 -#: ../../enterprise/meta/general/main_header.php:199 -msgid "Netflow" -msgstr "Netflow" - -#: ../../godmode/menu.php:269 ../../godmode/setup/setup.php:102 -#: ../../godmode/setup/setup.php:133 -#: ../../operation/agentes/ver_agente.php:1089 -msgid "eHorus" -msgstr "eHorus" - -#: ../../godmode/menu.php:273 ../../godmode/setup/gis.php:32 -msgid "Map conections GIS" -msgstr "GIS map connection" - -#: ../../godmode/menu.php:277 ../../godmode/setup/os.php:143 -msgid "Edit OS" -msgstr "Edit OS" - -#: ../../godmode/menu.php:279 -#: ../../enterprise/meta/general/main_header.php:288 -msgid "License" -msgstr "Licence" - -#: ../../godmode/menu.php:288 -msgid "Admin tools" -msgstr "Admin tools" - -#: ../../godmode/menu.php:296 -msgid "System audit log" -msgstr "System audit log" - -#: ../../godmode/menu.php:300 -msgid "Diagnostic info" -msgstr "Diagnostic info" - -#: ../../godmode/menu.php:302 -msgid "Site news" -msgstr "Site news" - -#: ../../godmode/menu.php:304 ../../godmode/setup/file_manager.php:30 -#: ../../enterprise/meta/advanced/metasetup.php:85 -#: ../../enterprise/meta/advanced/metasetup.php:131 -msgid "File manager" -msgstr "File manager" - -#: ../../godmode/menu.php:309 -msgid "DB maintenance" -msgstr "DB maintenance" - -#: ../../godmode/menu.php:315 -msgid "DB information" -msgstr "DB information" - -#: ../../godmode/menu.php:318 -msgid "Database audit" -msgstr "Database audit" - -#: ../../godmode/menu.php:319 -msgid "Database event" -msgstr "Database events" - -#: ../../godmode/menu.php:401 -msgid "Extension manager view" +#: ../../include/functions_agents.php:684 +#: ../../godmode/alerts/alert_actions.php:140 +#: ../../godmode/reporting/map_builder.php:183 +#: ../../godmode/reporting/map_builder.php:192 +msgid "Successfully copied" +msgstr "Successfully copied" + +#: ../../include/functions_agents.php:2185 +#: ../../include/functions_agents.php:2210 +#: ../../include/functions_agents.php:2235 +msgid "No Monitors" +msgstr "No Monitors" + +#: ../../include/functions_agents.php:2189 +#: ../../include/functions_agents.php:2214 +#: ../../include/functions_agents.php:2239 +#: ../../include/functions_reporting.php:7947 +msgid "At least one module in CRITICAL status" +msgstr "At least one module is in CRITICAL status." + +#: ../../include/functions_agents.php:2193 +#: ../../include/functions_agents.php:2218 +#: ../../include/functions_agents.php:2243 +#: ../../include/functions_reporting.php:7951 +msgid "At least one module in WARNING status" +msgstr "At least one module is in WARNING status" + +#: ../../include/functions_agents.php:2197 +#: ../../include/functions_agents.php:2222 +#: ../../include/functions_agents.php:2247 +#: ../../include/functions_reporting.php:7955 +msgid "At least one module is in UKNOWN status" +msgstr "At least one module is in UNKNOWN status" + +#: ../../include/functions_agents.php:2201 +#: ../../include/functions_agents.php:2226 +#: ../../include/functions_agents.php:2251 +#: ../../include/functions_reporting.php:7959 +msgid "All Monitors OK" +msgstr "All monitors are OK" + +#: ../../include/ajax/update_manager.ajax.php:74 +msgid "There was an error extracting the file '" +msgstr "There was an error extracting the file '" + +#: ../../include/ajax/update_manager.ajax.php:90 +msgid "The package was not extracted." +msgstr "The package couldn't be extracted" + +#: ../../include/ajax/update_manager.ajax.php:96 +msgid "Invalid extension. The package must have the extension .oum." +msgstr "Invalid extension. The package is required to be in '.oum' format." + +#: ../../include/ajax/update_manager.ajax.php:103 +msgid "The file was not uploaded succesfully." +msgstr "The file wasn't uploaded successfully." + +#: ../../include/ajax/update_manager.ajax.php:172 +#: ../../include/ajax/update_manager.ajax.php:176 +#: ../../include/ajax/update_manager.ajax.php:203 +#: ../../include/functions_update_manager.php:128 +#: ../../include/functions_update_manager.php:132 +#: ../../include/functions_update_manager.php:158 +msgid "Some of your files might not be recovered." +msgstr "Some of your files may be unrecoverable." + +#: ../../include/ajax/update_manager.ajax.php:180 +#: ../../include/ajax/update_manager.ajax.php:197 +#: ../../include/functions_update_manager.php:136 +#: ../../include/functions_update_manager.php:152 +msgid "Some of your old files might not be recovered." +msgstr "Some of your old files may be unrecoverable." + +#: ../../include/ajax/update_manager.ajax.php:218 +#: ../../include/functions_update_manager.php:173 +msgid "An error ocurred while reading a file." +msgstr "An error ocurred while reading a file." + +#: ../../include/ajax/update_manager.ajax.php:225 +#: ../../include/functions_update_manager.php:180 +msgid "The package does not exist" +msgstr "The package does not exist." + +#: ../../include/ajax/update_manager.ajax.php:239 +msgid "Package not accepted" msgstr "" -#: ../../godmode/menu.php:405 -msgid "Extension manager" -msgstr "Extension manager" +#: ../../include/ajax/update_manager.ajax.php:411 +msgid "Fail to update to the last package." +msgstr "Failed to update to the latest package." -#: ../../godmode/menu.php:433 -msgid "Update manager" -msgstr "Update manager" +#: ../../include/ajax/update_manager.ajax.php:419 +msgid "Starting to update to the last package." +msgstr "Starting to update to the latest package." -#: ../../godmode/menu.php:439 -msgid "Update Manager offline" -msgstr "Update Manager offline" - -#: ../../godmode/menu.php:442 -msgid "Update Manager online" -msgstr "Update Manager online" - -#: ../../godmode/menu.php:444 -msgid "Update Manager options" -msgstr "Update Manager options" - -#: ../../godmode/menu.php:457 ../../operation/menu.php:373 -#: ../../operation/messages/message_edit.php:46 -#: ../../operation/messages/message_list.php:43 -msgid "Messages" -msgstr "Messages" - -#: ../../godmode/modules/manage_nc_groups.php:40 -#: ../../godmode/modules/manage_network_components.php:50 -#: ../../godmode/modules/manage_network_templates.php:39 -#: ../../godmode/modules/manage_network_templates_form.php:32 -#: ../../godmode/modules/module_list.php:28 -#: ../../enterprise/godmode/modules/local_components.php:89 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:27 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:28 -#: ../../enterprise/meta/general/main_header.php:253 -msgid "Module management" -msgstr "Module management" - -#: ../../godmode/modules/manage_nc_groups.php:40 -msgid "Component group management" -msgstr "Component group management" - -#: ../../godmode/modules/manage_nc_groups.php:58 -msgid "Could not be created. Blank name" -msgstr "Could not be created. Name left blank" - -#: ../../godmode/modules/manage_nc_groups.php:154 -#: ../../godmode/modules/manage_network_components.php:399 -#: ../../godmode/modules/manage_network_templates.php:85 -#: ../../enterprise/godmode/modules/local_components.php:355 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:136 -msgid "Successfully multiple deleted" -msgstr "Multi-deletion successful" - -#: ../../godmode/modules/manage_nc_groups.php:155 -#: ../../godmode/modules/manage_network_components.php:400 -#: ../../godmode/modules/manage_network_templates.php:86 -#: ../../enterprise/godmode/modules/local_components.php:356 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:137 -msgid "Not deleted. Error deleting multiple data" -msgstr "Not deleted. Error deleting multiple data" - -#: ../../godmode/modules/manage_nc_groups.php:238 -msgid "There are no defined component groups" -msgstr "There are no component groups defined" - -#: ../../godmode/modules/manage_nc_groups_form.php:54 -msgid "Update Group Component" -msgstr "Update Group Component" - -#: ../../godmode/modules/manage_nc_groups_form.php:57 -msgid "Create Group Component" -msgstr "Create Group Component" - -#: ../../godmode/modules/manage_network_components.php:51 -msgid "Network component management" -msgstr "Network component management" - -#: ../../godmode/modules/manage_network_components.php:261 -#: ../../godmode/servers/recon_script.php:320 -#: ../../enterprise/godmode/modules/local_components.php:253 -msgid "Created successfully" -msgstr "Created successfully" - -#: ../../godmode/modules/manage_network_components.php:352 -#: ../../godmode/servers/recon_script.php:274 -#: ../../enterprise/godmode/modules/local_components.php:315 -msgid "Updated successfully" -msgstr "Updated successfully" - -#: ../../godmode/modules/manage_network_components.php:516 -#: ../../enterprise/godmode/modules/local_components.php:440 -msgid "Free Search" -msgstr "Free Search" - -#: ../../godmode/modules/manage_network_components.php:517 -msgid "Search by name, description, tcp send or tcp rcv, list matches." -msgstr "" -"Search by: name, description, TCP sending or TCP receiving, list matches." - -#: ../../godmode/modules/manage_network_components.php:569 -msgid "Max/Min" -msgstr "Max/Min" - -#: ../../godmode/modules/manage_network_components.php:595 -msgid "Network module" -msgstr "Network module" - -#: ../../godmode/modules/manage_network_components.php:599 -msgid "WMI module" -msgstr "WMI module" - -#: ../../godmode/modules/manage_network_components.php:603 -msgid "Plug-in module" -msgstr "Plug-in module" - -#: ../../godmode/modules/manage_network_components.php:634 -msgid "There are no defined network components" -msgstr "There are no network components defined" - -#: ../../godmode/modules/manage_network_components.php:641 -msgid "Create a new network component" -msgstr "Create a new network component" - -#: ../../godmode/modules/manage_network_components.php:642 -msgid "Create a new plugin component" -msgstr "Create a new plug-in component" - -#: ../../godmode/modules/manage_network_components.php:643 -msgid "Create a new WMI component" -msgstr "Create a new WMI component" - -#: ../../godmode/modules/manage_network_components_form.php:253 -msgid "Update Network Component" -msgstr "Update Network Components" - -#: ../../godmode/modules/manage_network_components_form.php:256 -msgid "Create Network Component" -msgstr "Create Network Components" - -#: ../../godmode/modules/manage_network_components_form_common.php:111 -#: ../../enterprise/godmode/modules/configure_local_component.php:230 -msgid "Dynamic Min. " -msgstr "Dynamic Min. " - -#: ../../godmode/modules/manage_network_components_form_common.php:165 -#: ../../enterprise/godmode/modules/configure_local_component.php:289 -msgid "Any value below this number is discarted" -msgstr "Any value below this number is discarded" - -#: ../../godmode/modules/manage_network_components_form_common.php:167 -#: ../../enterprise/godmode/modules/configure_local_component.php:294 -msgid "Any value over this number is discarted" -msgstr "Any value over this number is discarded" - -#: ../../godmode/modules/manage_network_components_form_network.php:47 -msgid "SNMP Enterprise String" -msgstr "Enterprise SNMP String" - -#: ../../godmode/modules/manage_network_templates.php:39 -#: ../../godmode/modules/manage_network_templates_form.php:32 -msgid "Module template management" -msgstr "Module template management" - -#: ../../godmode/modules/manage_network_templates.php:61 -msgid "Template successfully deleted" -msgstr "Template successfully deleted" - -#: ../../godmode/modules/manage_network_templates.php:62 -msgid "Error deleting template" -msgstr "Error deleting template" - -#: ../../godmode/modules/manage_network_templates.php:94 -msgid "This template does not exist" -msgstr "This template does not exist" - -#: ../../godmode/modules/manage_network_templates.php:232 -msgid "There are no defined network profiles" -msgstr "There are no network profiles defined" - -#: ../../godmode/modules/manage_network_templates_form.php:54 -msgid "Successfully deleted module from profile" -msgstr "Successfully deleted module from profile" - -#: ../../godmode/modules/manage_network_templates_form.php:55 -msgid "Error deleting module from profile" -msgstr "Error deleting module from profile" - -#: ../../godmode/modules/manage_network_templates_form.php:70 -msgid "Successfully added module to profile" -msgstr "Successfully added module to profile" - -#: ../../godmode/modules/manage_network_templates_form.php:71 -msgid "Error adding module to profile" -msgstr "Error adding module to profile" - -#: ../../godmode/modules/manage_network_templates_form.php:96 -msgid "Successfully updated network profile" -msgstr "Network profile updated successfully" - -#: ../../godmode/modules/manage_network_templates_form.php:97 -msgid "Error updating network profile" -msgstr "Error updating the network profile" - -#: ../../godmode/modules/manage_network_templates_form.php:112 -msgid "Successfully added network profile" -msgstr "Network profile added successfully" - -#: ../../godmode/modules/manage_network_templates_form.php:113 -msgid "Error adding network profile" -msgstr "Error adding network profile" - -#: ../../godmode/modules/manage_network_templates_form.php:118 -msgid "Cannot create a template without name" -msgstr "Cannot create a template without a name" - -#: ../../godmode/modules/manage_network_templates_form.php:186 -msgid "No modules for this profile" -msgstr "No modules for this profile" - -#: ../../godmode/modules/manage_network_templates_form.php:226 -#: ../../enterprise/dashboard/widgets/top_n.php:346 -msgid "Add modules" -msgstr "Add modules" - -#: ../../godmode/modules/manage_network_templates_form.php:304 -#: ../../enterprise/meta/include/functions_wizard_meta.php:239 -msgid "Components" -msgstr "Components" - -#: ../../godmode/modules/module_list.php:28 -msgid "Defined modules" -msgstr "Defined modules" - -#: ../../godmode/modules/module_list.php:50 -msgid "Problem modifying module" -msgstr "There was a problem modifying the module" - -#: ../../godmode/modules/module_list.php:52 -msgid "Module updated successfully" -msgstr "Module updated successfully" - -#: ../../godmode/netflow/nf_edit.php:39 -msgid "Manage Netflow Filter" -msgstr "Manage Netflow Filter" - -#: ../../godmode/netflow/nf_edit.php:43 -#: ../../godmode/setup/setup_general.php:110 -#: ../../operation/netflow/nf_live_view.php:113 -#: ../../enterprise/extensions/backup/main.php:67 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:31 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:33 -#: ../../enterprise/operation/log/log_viewer.php:155 -msgid "Not supported in Windows systems" -msgstr "Not supported for Windows systems" - -#: ../../godmode/netflow/nf_edit.php:47 -#: ../../godmode/netflow/nf_edit_form.php:65 -#: ../../godmode/netflow/nf_item_list.php:57 -#: ../../operation/agentes/ver_agente.php:961 -#: ../../operation/netflow/nf_live_view.php:132 -#: ../../enterprise/meta/advanced/agents_setup.php:35 -#: ../../enterprise/meta/advanced/policymanager.php:35 -#: ../../enterprise/meta/advanced/synchronizing.php:33 -#: ../../enterprise/meta/agentsearch.php:26 -#: ../../enterprise/meta/general/logon_ok.php:15 -#: ../../enterprise/meta/index.php:496 -#: ../../enterprise/meta/monitoring/group_view.php:32 -#: ../../enterprise/meta/monitoring/tactical.php:35 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:37 -msgid "Main" -msgstr "Main" - -#: ../../godmode/netflow/nf_edit_form.php:59 -#: ../../godmode/netflow/nf_edit_form.php:67 -msgid "Add filter" -msgstr "Add filter" - -#: ../../godmode/netflow/nf_edit_form.php:62 -msgid "Netflow Filter" -msgstr "Netflow Filter" - -#: ../../godmode/netflow/nf_edit_form.php:180 -#: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../operation/events/events_list.php:219 -#: ../../operation/events/events_list.php:250 -msgid "Update filter" -msgstr "Update filter" - -#: ../../godmode/netflow/nf_edit_form.php:206 -msgid "Filter:" -msgstr "Filter:" - -#: ../../godmode/netflow/nf_edit_form.php:210 -#: ../../operation/netflow/nf_live_view.php:349 -msgid "Dst Ip" -msgstr "DST IP" - -#: ../../godmode/netflow/nf_edit_form.php:210 -#: ../../operation/netflow/nf_live_view.php:349 -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 "" -"Destination IP: a list of destined IPs separated by commas. Leaving this " -"field blank will show all IPs. Example: filter by IP number: " -"
    25.46.157.214,160.253.135.249" - -#: ../../godmode/netflow/nf_edit_form.php:213 -#: ../../operation/netflow/nf_live_view.php:358 -msgid "Src Ip" -msgstr "SRC IP" - -#: ../../godmode/netflow/nf_edit_form.php:213 -#: ../../operation/netflow/nf_live_view.php:358 -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 "" -"Source IP: a list of source IPs separated by commas. Leaving this field " -"blank will show all IPs. Example: filter by IP " -"number:
    25.46.157.214,160.253.135.249" - -#: ../../godmode/netflow/nf_edit_form.php:216 -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../operation/netflow/nf_live_view.php:370 -#: ../../operation/netflow/nf_live_view.php:399 -msgid "Dst Port" -msgstr "DST port" - -#: ../../godmode/netflow/nf_edit_form.php:216 -#: ../../operation/netflow/nf_live_view.php:370 -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 "" -"Destination port: a list of possible destination ports, separated by commas. " -"If we leave this field blank, all ports will be shown. Example: filtering by " -"ports 80 and 22:
    80,22" - -#: ../../godmode/netflow/nf_edit_form.php:219 -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../operation/netflow/nf_live_view.php:379 -#: ../../operation/netflow/nf_live_view.php:399 -msgid "Src Port" -msgstr "SRC Port" - -#: ../../godmode/netflow/nf_edit_form.php:219 -#: ../../operation/netflow/nf_live_view.php:379 -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 "" -"Source Port: a list of possible source ports, separated by commas. If we " -"leave this field blank, all ports will be shown. Example: filter by ports 80 " -"and 22:
    80,22" - -#: ../../godmode/netflow/nf_edit_form.php:225 -#: ../../operation/netflow/nf_live_view.php:397 -msgid "Aggregate by" -msgstr "Aggregate by" - -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../include/functions_netflow.php:1660 -#: ../../operation/netflow/nf_live_view.php:399 -msgid "Protocol" -msgstr "Protocol" - -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../operation/netflow/nf_live_view.php:399 -msgid "Src Ip Address" -msgstr "SRC IP address" - -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../operation/netflow/nf_live_view.php:399 -msgid "Dst Ip Address" -msgstr "DST IP address" - -#: ../../godmode/netflow/nf_edit_form.php:230 -#: ../../operation/netflow/nf_live_view.php:405 -msgid "Output format" -msgstr "Output format" - -#: ../../godmode/netflow/nf_edit_form.php:231 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Kilobytes" -msgstr "Kilobytes" - -#: ../../godmode/netflow/nf_edit_form.php:231 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Megabytes" -msgstr "Megabytes" - -#: ../../godmode/netflow/nf_edit_form.php:231 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Kilobytes per second" -msgstr "Kilobytes per second" - -#: ../../godmode/netflow/nf_edit_form.php:231 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Megabytes per second" -msgstr "Megabytes per second" - -#: ../../godmode/netflow/nf_item_list.php:39 -#: ../../operation/reporting/reporting_viewer.php:77 -msgid "Report list" -msgstr "Report list" - -#: ../../godmode/netflow/nf_item_list.php:44 -#: ../../godmode/netflow/nf_item_list.php:54 -msgid "Report items" -msgstr "Report items" - -#: ../../godmode/netflow/nf_item_list.php:49 -msgid "Edit report" -msgstr "Edit report" - -#: ../../godmode/netflow/nf_item_list.php:58 -msgid "Netflow reports" -msgstr "Netflow reports" - -#: ../../godmode/netflow/nf_item_list.php:59 -msgid "Item list" -msgstr "List of Items" - -#: ../../godmode/netflow/nf_item_list.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1259 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1473 -#: ../../enterprise/dashboard/widgets/top_n.php:69 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1565 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1744 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 -msgid "Order" -msgstr "Order" - -#: ../../godmode/netflow/nf_item_list.php:150 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1281 -#: ../../operation/netflow/nf_live_view.php:258 -msgid "Max. values" -msgstr "Max. values" - -#: ../../godmode/netflow/nf_item_list.php:151 -msgid "Chart type" -msgstr "Chart type" - -#: ../../godmode/netflow/nf_item_list.php:203 -#: ../../godmode/netflow/nf_item_list.php:210 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:300 -msgid "Move to down" -msgstr "Move down" - -#: ../../godmode/netflow/nf_item_list.php:206 -#: ../../godmode/netflow/nf_item_list.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:290 -msgid "Move to up" -msgstr "Move up" - -#: ../../godmode/netflow/nf_item_list.php:255 -msgid "There are no defined items" -msgstr "There are no items defined" - -#: ../../godmode/netflow/nf_item_list.php:260 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1514 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1910 -msgid "Create item" -msgstr "Create item" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:86 -#: ../../godmode/reporting/reporting_builder.item_editor.php:693 -#: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.elements.php:178 -#: ../../godmode/reporting/visual_console_builder.wizard.php:300 -#: ../../include/functions_visual_map.php:2757 -#: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:167 -#: ../../include/functions_visual_map_editor.php:654 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:40 -#: ../../enterprise/dashboard/widgets/module_icon.php:49 -#: ../../enterprise/dashboard/widgets/module_status.php:49 -#: ../../enterprise/dashboard/widgets/module_value.php:49 -#: ../../enterprise/dashboard/widgets/sla_percent.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1232 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:234 -msgid "Label" -msgstr "Label" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:87 -#: ../../godmode/reporting/graph_builder.graph_editor.php:156 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:147 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:205 -msgid "Weight" -msgstr "Weight" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:140 -#: ../../operation/events/events_list.php:230 -#: ../../enterprise/godmode/policies/policy_agents.php:233 -#: ../../enterprise/godmode/policies/policy_agents.php:250 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:152 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:93 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:436 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:313 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:341 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:92 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:102 -#: ../../enterprise/meta/event/custom_events.php:149 -msgid "Filter group" -msgstr "Filter group" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:185 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:357 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:102 -msgid "Please, select a module" -msgstr "Please select a module" - -#: ../../godmode/reporting/graph_builder.main.php:151 -#: ../../include/functions_visual_map_editor.php:322 -msgid "Type of graph" -msgstr "Type of graph" - -#: ../../godmode/reporting/graph_builder.main.php:157 -#: ../../godmode/setup/setup_visuals.php:507 -#: ../../godmode/setup/setup_visuals.php:516 -#: ../../include/functions_visual_map_editor.php:325 -#: ../../operation/reporting/graph_viewer.php:227 -#: ../../enterprise/dashboard/widgets/custom_graph.php:39 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 -#: ../../enterprise/meta/advanced/metasetup.visual.php:129 -msgid "Area" -msgstr "Area" - -#: ../../godmode/reporting/graph_builder.main.php:158 -#: ../../operation/reporting/graph_viewer.php:228 -#: ../../enterprise/dashboard/widgets/custom_graph.php:40 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:209 -msgid "Stacked area" -msgstr "Stacked area" - -#: ../../godmode/reporting/graph_builder.main.php:159 -#: ../../godmode/reporting/visual_console_builder.elements.php:198 -#: ../../godmode/setup/setup_visuals.php:510 -#: ../../godmode/setup/setup_visuals.php:519 -#: ../../include/functions_visual_map_editor.php:63 -#: ../../include/functions_visual_map_editor.php:324 -#: ../../include/functions_visual_map_editor.php:658 -#: ../../operation/reporting/graph_viewer.php:229 -#: ../../enterprise/dashboard/widgets/custom_graph.php:41 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:210 -#: ../../enterprise/meta/advanced/metasetup.visual.php:132 -msgid "Line" -msgstr "Line" - -#: ../../godmode/reporting/graph_builder.main.php:160 -#: ../../operation/reporting/graph_viewer.php:230 -#: ../../enterprise/dashboard/widgets/custom_graph.php:42 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:211 -msgid "Stacked line" -msgstr "Stacked line" - -#: ../../godmode/reporting/graph_builder.main.php:161 -#: ../../operation/reporting/graph_viewer.php:231 -#: ../../enterprise/dashboard/widgets/custom_graph.php:43 -msgid "Bullet chart" -msgstr "Bullet chart" - -#: ../../godmode/reporting/graph_builder.main.php:162 -#: ../../operation/reporting/graph_viewer.php:232 -#: ../../enterprise/dashboard/widgets/custom_graph.php:44 -msgid "Gauge" -msgstr "Gauge" - -#: ../../godmode/reporting/graph_builder.main.php:163 -msgid "Horizontal bars" -msgstr "Horizontal bars" - -#: ../../godmode/reporting/graph_builder.main.php:164 -msgid "Vertical bars" -msgstr "Vertical bars" - -#: ../../godmode/reporting/graph_builder.main.php:165 -#: ../../operation/reporting/graph_viewer.php:235 -#: ../../enterprise/dashboard/widgets/custom_graph.php:47 -msgid "Pie" -msgstr "Pie chart" - -#: ../../godmode/reporting/graph_builder.main.php:169 -#: ../../operation/reporting/graph_viewer.php:240 -msgid "Equalize maximum thresholds" -msgstr "Equalize maximum thresholds" - -#: ../../godmode/reporting/graph_builder.main.php:170 -#: ../../operation/reporting/graph_viewer.php:241 -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 "" -"If an option is selected, all graphs will have the highest value from all " -"modules included in the graph as a maximum threshold" - -#: ../../godmode/reporting/graph_builder.main.php:177 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1313 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1605 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:266 -msgid "Percentil" -msgstr "Percentile" - -#: ../../godmode/reporting/graph_builder.php:214 -#: ../../godmode/reporting/graphs.php:43 ../../godmode/reporting/graphs.php:53 -#: ../../operation/reporting/graph_viewer.php:147 -#: ../../enterprise/godmode/reporting/graph_template_list.php:32 -#: ../../enterprise/godmode/reporting/graph_template_list.php:43 -#: ../../enterprise/godmode/reporting/graph_template_list.php:53 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:79 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:89 -msgid "Graph list" -msgstr "Graph list" - -#: ../../godmode/reporting/graph_builder.php:217 -#: ../../godmode/reporting/reporting_builder.main.php:51 -#: ../../godmode/reporting/reporting_builder.php:1957 -#: ../../godmode/reporting/reporting_builder.php:1985 -#: ../../godmode/reporting/visual_console_builder.php:668 -#: ../../operation/reporting/graph_viewer.php:150 -#: ../../operation/reporting/reporting_viewer.php:82 -#: ../../operation/visual_console/pure_ajax.php:110 -#: ../../operation/visual_console/render_view.php:113 -#: ../../enterprise/meta/screens/screens.visualmap.php:181 -#: ../../enterprise/meta/screens/screens.visualmap.php:206 -msgid "Main data" -msgstr "Main data" - -#: ../../godmode/reporting/graph_builder.php:220 -#: ../../operation/reporting/graph_viewer.php:153 -msgid "Graph editor" -msgstr "Graph editor" - -#: ../../godmode/reporting/graph_builder.php:223 -#: ../../operation/reporting/graph_viewer.php:159 -msgid "View graph" -msgstr "View graph" - -#: ../../godmode/reporting/graph_builder.php:235 -msgid "Graph builder" -msgstr "Graph builder" - -#: ../../godmode/reporting/graph_builder.php:255 -msgid "Graph stored successfully" -msgstr "Graph stored successfully" - -#: ../../godmode/reporting/graph_builder.php:255 -msgid "There was a problem storing Graph" -msgstr "There was a problem storing Graph" - -#: ../../godmode/reporting/graph_builder.php:258 -msgid "There was a problem adding Module" -msgstr "There was a problem adding Module" - -#: ../../godmode/reporting/graph_builder.php:261 -msgid "Update the graph" -msgstr "Update the graph" - -#: ../../godmode/reporting/graph_builder.php:261 -msgid "Bad update the graph" -msgstr "Bad update the graph" - -#: ../../godmode/reporting/graph_builder.php:264 -msgid "Graph deleted successfully" -msgstr "Graph deleted successfully" - -#: ../../godmode/reporting/graph_builder.php:264 -msgid "There was a problem deleting Graph" -msgstr "There was a problem deleting the graph" - -#: ../../godmode/reporting/graphs.php:75 -#: ../../godmode/reporting/map_builder.php:39 -#: ../../godmode/reporting/reporting_builder.php:359 -#: ../../godmode/reporting/reporting_builder.php:364 -#: ../../godmode/reporting/reporting_builder.php:1924 -#: ../../godmode/reporting/reporting_builder.php:1929 -#: ../../godmode/reporting/reporting_builder.php:1995 -#: ../../godmode/reporting/reporting_builder.php:2000 -#: ../../operation/menu.php:235 -#: ../../operation/reporting/custom_reporting.php:27 -#: ../../operation/reporting/graph_viewer.php:327 -#: ../../operation/reporting/reporting_viewer.php:119 -#: ../../operation/reporting/reporting_viewer.php:124 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:180 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:183 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:195 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:210 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:213 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:226 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:229 -#: ../../enterprise/meta/general/logon_ok.php:48 -msgid "Reporting" -msgstr "Reporting" - -#: ../../godmode/reporting/graphs.php:75 ../../operation/menu.php:249 -msgid "Custom graphs" -msgstr "Custom graphs" - -#: ../../godmode/reporting/graphs.php:152 -#: ../../operation/reporting/graph_viewer.php:338 -#: ../../operation/search_graphs.php:33 -msgid "Graph name" -msgstr "Graph name" - -#: ../../godmode/reporting/graphs.php:154 -msgid "Number of Graphs" -msgstr "Number of Graphs" - -#: ../../godmode/reporting/graphs.php:213 -msgid "Create graph" -msgstr "Create graph" - -#: ../../godmode/reporting/map_builder.php:187 -#: ../../godmode/reporting/map_builder.php:197 -msgid "Not copied. Error copying data" -msgstr "Not copied. Error copying data" - -#: ../../godmode/reporting/map_builder.php:207 -msgid "Map name" -msgstr "Map name" - -#: ../../godmode/reporting/map_builder.php:209 -#: ../../enterprise/dashboard/widgets/top_n.php:82 -msgid "Items" -msgstr "Items" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:35 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:49 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:164 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:42 -msgid "Only table" -msgstr "Only table" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:36 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:50 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:165 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:43 -msgid "Table & Graph" -msgstr "Chart & graph" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:44 -msgid "Only graph" -msgstr "Only graph" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:41 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1262 -#: ../../enterprise/dashboard/widgets/top_n.php:72 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:170 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1568 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:188 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:48 -msgid "Ascending" -msgstr "Ascending" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:42 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1265 -#: ../../enterprise/dashboard/widgets/top_n.php:71 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:171 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1571 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:190 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:49 -msgid "Descending" -msgstr "Descending" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:611 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1185 -msgid "Item Editor" -msgstr "Item Editor" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:639 -msgid "Not valid" -msgstr "Not valid" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:644 -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 "" -"This type of report implies a lot of data loading, and is therefore " -"recommended for scheduled reports, not real-time view." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:705 -#: ../../godmode/reporting/reporting_builder.list_items.php:305 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1244 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:251 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:88 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:106 -msgid "Time lapse" -msgstr "Time lapse" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:706 -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 "" -"This is the range, or time-period, over which the report renders the " -"information for this type of report. E.g. a week means data from a week ago. " - -#: ../../godmode/reporting/reporting_builder.item_editor.php:720 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:149 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1258 -msgid "Last value" -msgstr "Last value" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:721 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3203 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:151 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:606 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3108 -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 "" -"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" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:735 -#: ../../include/functions_netflow.php:1134 -#: ../../include/functions_netflow.php:1144 -#: ../../include/functions_netflow.php:1161 -#: ../../include/functions_netflow.php:1169 -#: ../../include/functions_netflow.php:1193 -#: ../../operation/netflow/nf_live_view.php:248 -msgid "Resolution" -msgstr "Resolution" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:766 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1292 -msgid "Projection period" -msgstr "Projected period" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:776 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1306 -msgid "Data range" -msgstr "Data range" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:787 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1320 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226 -msgid "Only display wrong SLAs" -msgstr "Only display wrong SLAs" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:796 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1329 -msgid "Working time" -msgstr "Work time" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1011 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1684 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1719 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1880 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1908 -#: ../../enterprise/dashboard/widgets/top_n.php:179 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2078 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2267 -msgid "Select an Agent first" -msgstr "Select an Agent first" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1042 -msgid "Show modules" -msgstr "Show modules" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1132 -#: ../../include/functions_graph.php:754 -#: ../../include/functions_graph.php:3949 -#: ../../include/functions_graph.php:3954 -#: ../../include/functions_graph.php:4672 -#: ../../include/functions_graph.php:4675 -#: ../../include/functions_graph.php:4678 -#: ../../enterprise/operation/inventory/inventory.php:227 -msgid "Last" -msgstr "Last" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1139 -#: ../../godmode/reporting/visual_console_builder.elements.php:78 -#: ../../godmode/reporting/visual_console_builder.elements.php:380 -#: ../../include/functions_reports.php:429 -#: ../../include/functions_reports.php:505 -#: ../../include/functions_reports.php:507 -#: ../../include/functions_visual_map_editor.php:254 -#: ../../include/functions_visual_map_editor.php:264 -#: ../../include/functions_reporting.php:5780 -#: ../../enterprise/dashboard/widgets/custom_graph.php:25 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1498 -msgid "Custom graph" -msgstr "Custom graph" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1180 -msgid "Target server" -msgstr "Target server" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1201 -#: ../../godmode/setup/news.php:181 ../../godmode/setup/setup_visuals.php:705 -#: ../../include/functions_reports.php:603 -#: ../../include/functions_reporting.php:3878 -#: ../../enterprise/dashboard/widgets/post.php:25 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1524 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:321 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 -#: ../../enterprise/include/functions_netflow_pdf.php:208 -msgid "Text" -msgstr "Text" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1208 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1539 -msgid "Custom SQL template" -msgstr "Custom SQL template" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1213 -#: ../../include/functions_reports.php:592 -msgid "SQL query" -msgstr "SQL query" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1229 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1405 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1407 -msgid "Select server" -msgstr "Select server" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1238 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1534 -msgid "Serialized header" -msgstr "Serialised header" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1238 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1534 -msgid "The separator character is |" -msgstr "The separation character is |" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1247 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1553 -msgid "Field separator" -msgstr "Field separator" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1247 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1553 -msgid "Separator for different fields in the serialized text chain" -msgstr "Separator for different fields in the serialised text string" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1251 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1557 -msgid "Line separator" -msgstr "Line break" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1251 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1557 -msgid "" -"Separator in different lines (composed by fields) of the serialized text " -"chain" -msgstr "" -"Separator in different lines (composed by fields) of the serialised text " -"chain" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1255 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1561 -msgid "Group by agent" -msgstr "Group by agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1268 -#: ../../enterprise/dashboard/widgets/top_n.php:73 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:235 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1574 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:192 -msgid "By agent name" -msgstr "By agent name" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1276 -#: ../../enterprise/dashboard/widgets/top_n.php:67 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:241 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1582 -msgid "Quantity (n)" -msgstr "Quantity (n)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1286 -#: ../../operation/agentes/ver_agente.php:1101 -#: ../../enterprise/dashboard/widgets/top_n.php:75 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:249 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1587 -msgid "Display" -msgstr "Display" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1293 -#: ../../include/functions_graph.php:755 ../../include/functions_graph.php:758 -#: ../../include/functions_graph.php:759 ../../include/functions_graph.php:760 -#: ../../include/functions_graph.php:763 -#: ../../include/functions_graph.php:1437 -#: ../../include/functions_graph.php:3949 -#: ../../include/functions_graph.php:3954 -#: ../../include/functions_graph.php:4672 -#: ../../include/functions_graph.php:4675 -#: ../../include/functions_graph.php:4678 -#: ../../include/functions_reporting.php:961 -#: ../../enterprise/dashboard/widgets/top_n.php:482 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1594 -msgid "Avg" -msgstr "Avg." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1300 -#: ../../mobile/operation/module_graph.php:418 -#: ../../operation/agentes/stat_win.php:383 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:246 -msgid "Time compare (Overlapped)" -msgstr "Time comparison (overlapped)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1309 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1601 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:256 -msgid "Only average" -msgstr "Only average" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1326 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:279 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1615 -msgid "Condition" -msgstr "Condition" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1331 -#: ../../include/functions_reporting.php:1746 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:282 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1618 -msgid "Everything" -msgstr "Everything" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1332 -msgid "Greater or equal (>=)" -msgstr "Greater or equal to (>=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1333 -msgid "Less or equal (<=)" -msgstr "Lesser or equal to (<=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1334 -msgid "Less (<)" -msgstr "Lesser than (<)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1335 -msgid "Greater (>)" -msgstr "Greater than (>)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1336 -msgid "Equal (=)" -msgstr "Equal to (=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1337 -msgid "Not equal (!=)" -msgstr "Unequal to (!=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1338 -#: ../../include/functions_db.php:1529 -#: ../../include/functions_reporting_html.php:496 -#: ../../include/functions_reporting_html.php:575 -#: ../../include/functions_reporting_html.php:675 -#: ../../include/functions_reporting_html.php:2049 -#: ../../include/functions_reporting_html.php:2531 -#: ../../enterprise/dashboard/widgets/maps_status.php:74 -#: ../../enterprise/extensions/backup/main.php:163 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:288 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1624 -#: ../../enterprise/include/functions_reporting.php:1282 -#: ../../enterprise/include/functions_reporting.php:2074 -#: ../../enterprise/include/functions_reporting.php:2259 -#: ../../enterprise/include/functions_reporting.php:2851 -#: ../../enterprise/include/functions_reporting.php:3028 -#: ../../enterprise/include/functions_reporting.php:3744 -#: ../../enterprise/include/functions_reporting.php:4440 -#: ../../enterprise/include/functions_reporting.php:4782 -#: ../../enterprise/include/functions_reporting_csv.php:964 -#: ../../enterprise/include/functions_reporting_csv.php:1011 -#: ../../enterprise/include/functions_reporting_pdf.php:1322 -#: ../../enterprise/include/functions_reporting_pdf.php:1403 -#: ../../enterprise/include/functions_reporting_pdf.php:1502 -#: ../../enterprise/include/functions_reporting_pdf.php:1635 -#: ../../enterprise/include/functions_reporting_pdf.php:2056 -#: ../../enterprise/include/functions_reporting_pdf.php:2106 -#: ../../enterprise/include/functions_services.php:1700 -#: ../../enterprise/operation/agentes/ux_console_view.php:101 -#: ../../enterprise/operation/agentes/ux_console_view.php:263 -msgid "OK" -msgstr "OK" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1339 -#: ../../include/functions_reporting_html.php:2055 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:290 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1626 -#: ../../enterprise/include/functions_reporting_pdf.php:2109 -msgid "Not OK" -msgstr "Not OK" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1361 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:296 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1633 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:232 -msgid "Show graph" -msgstr "Show graph" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1369 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1640 -msgid "Show address instead module name." -msgstr "Show address instead of module name." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1370 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1641 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:219 -msgid "Show the main address of agent." -msgstr "Show the agent's main address." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1382 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:304 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1653 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:202 -msgid "Show resume" -msgstr "Show summary" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1382 -msgid "" -"Show a summary chart with max, min and average number of total modules at " -"the end of the report and Checks." -msgstr "" -"Show a summary chart with max, min and average number of total modules at " -"the end of the report and Checks." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1392 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1662 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:277 -msgid "Show Summary group" -msgstr "Show Summary group" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1696 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:307 -msgid "Event Status" -msgstr "Event Status" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1437 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1708 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:318 -msgid "Event graphs" -msgstr "Event graphs" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1441 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1712 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:322 -msgid "By agent" -msgstr "By agent" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1447 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1718 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:328 -msgid "By user validator" -msgstr "By user validation" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1453 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1724 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:334 -msgid "By criticity" -msgstr "By priority" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1459 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1730 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:340 -msgid "Validated vs unvalidated" -msgstr "Validated vs unvalidated" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1467 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1738 -msgid "Show in two columns" -msgstr "Show in two columns" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1473 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1744 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 -msgid "SLA items sorted by fulfillment value" -msgstr "SLA items sorted by fulfillment value" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1478 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1749 -msgid "Show in landscape" -msgstr "Show in landscape" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1489 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1760 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 -msgid "Hide not init agents" -msgstr "Hide not init agents" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1548 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1949 -msgid "SLA Min. (value)" -msgstr "SLA Min. (value)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1549 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1950 -msgid "SLA Max. (value)" -msgstr "SLA Max. (value)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1550 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1951 -msgid "SLA Limit (%)" -msgstr "SLA Limit (%)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1559 -msgid "Please save the SLA for start to add items in this list." -msgstr "Please save the SLA for start to add items in this list." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1731 -msgid "rate" -msgstr "rate" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1732 -#: ../../enterprise/dashboard/widgets/top_n.php:115 -#: ../../enterprise/dashboard/widgets/top_n.php:298 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:74 -msgid "max" -msgstr "max" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1733 -#: ../../enterprise/dashboard/widgets/top_n.php:116 -#: ../../enterprise/dashboard/widgets/top_n.php:299 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:75 -msgid "min" -msgstr "min" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1734 -#: ../../enterprise/dashboard/widgets/top_n.php:117 -#: ../../enterprise/dashboard/widgets/top_n.php:300 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:76 -msgid "sum" -msgstr "sum" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1754 -msgid "" -"Please be careful, when the module have diferent intervals in their life, " -"the summatory maybe get bad result." -msgstr "" -"Please be careful: when the module has different intervals during its life, " -"the sum may return mistaken results." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1768 -msgid "Please save the report to start adding items into the list." -msgstr "Please save the report to start adding items onto the list" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2077 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2097 -msgid "Please select Agent" -msgstr "Please select Agent" - -#: ../../godmode/reporting/reporting_builder.list_items.php:288 -#: ../../godmode/reporting/visual_console_builder.elements.php:80 -#: ../../godmode/snmpconsole/snmp_alert.php:966 -#: ../../godmode/snmpconsole/snmp_alert.php:1148 -#: ../../include/functions_visual_map_editor.php:500 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:280 -msgid "Position" -msgstr "Position" - -#: ../../godmode/reporting/reporting_builder.list_items.php:291 -#: ../../godmode/reporting/reporting_builder.list_items.php:296 -#: ../../godmode/reporting/reporting_builder.list_items.php:302 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:225 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:236 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:246 -msgid "Ascendent" -msgstr "Ascendent" - -#: ../../godmode/reporting/reporting_builder.list_items.php:292 -#: ../../godmode/reporting/reporting_builder.list_items.php:297 -#: ../../godmode/reporting/reporting_builder.list_items.php:303 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:229 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:249 -msgid "Descent" -msgstr "Descendent" - -#: ../../godmode/reporting/reporting_builder.list_items.php:314 -#: ../../godmode/reporting/reporting_builder.list_items.php:514 -#: ../../enterprise/extensions/ipam/ipam_network.php:269 -#: ../../enterprise/godmode/alerts/alert_events_list.php:420 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:406 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:217 -msgid "Sort" -msgstr "Sort" - -#: ../../godmode/reporting/reporting_builder.list_items.php:320 -#: ../../include/functions_custom_graphs.php:226 -msgid "No items." -msgstr "No items." - -#: ../../godmode/reporting/reporting_builder.list_items.php:500 -#: ../../godmode/reporting/reporting_builder.list_items.php:505 -msgid "Sort items" -msgstr "Sort items" - -#: ../../godmode/reporting/reporting_builder.list_items.php:507 -msgid "Sort selected items from position: " -msgstr "Sort selected items from position: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:509 -msgid "Move before to" -msgstr "Move before to" - -#: ../../godmode/reporting/reporting_builder.list_items.php:509 -msgid "Move after to" -msgstr "Move after to" - -#: ../../godmode/reporting/reporting_builder.list_items.php:531 -#: ../../godmode/reporting/reporting_builder.list_items.php:536 -msgid "Delete items" -msgstr "Delete items" - -#: ../../godmode/reporting/reporting_builder.list_items.php:538 -msgid "Delete selected items from position: " -msgstr "Delete selected items from position: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:540 -msgid "Delete above to" -msgstr "Delete above to" - -#: ../../godmode/reporting/reporting_builder.list_items.php:540 -msgid "Delete below to" -msgstr "Delete below to" - -#: ../../godmode/reporting/reporting_builder.list_items.php:578 -msgid "" -"Are you sure to sort the items into the report?\\nThis action change the " -"sorting of items into data base." -msgstr "" -"Are you sure you wish to sort the items into the report?\\nThis action " -"changes how items are sorted into the database." - -#: ../../godmode/reporting/reporting_builder.list_items.php:599 -msgid "Please select any item to order" -msgstr "Please select any item to sort" - -#: ../../godmode/reporting/reporting_builder.list_items.php:629 -msgid "Are you sure to delete the items into the report?\\n" -msgstr "Are you sure to delete the items into the report?" - -#: ../../godmode/reporting/reporting_builder.list_items.php:651 -msgid "Please select any item to delete" -msgstr "Please select an item to delete it" - -#: ../../godmode/reporting/reporting_builder.main.php:85 -msgid "Only the group can view the report" -msgstr "Only the group can view the report" - -#: ../../godmode/reporting/reporting_builder.main.php:86 -msgid "The next group can edit the report" -msgstr "The next group can edit the report" - -#: ../../godmode/reporting/reporting_builder.main.php:87 -msgid "Only the user and admin user can edit the report" -msgstr "Only the user and admin user can edit the report" - -#: ../../godmode/reporting/reporting_builder.main.php:89 -msgid "Write Access" -msgstr "Writing Access" - -#: ../../godmode/reporting/reporting_builder.main.php:90 -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 "" -"For example, you want a report that people from \"All\" groups can see, but " -"you want only yourself or your group to be able to edit." - -#: ../../godmode/reporting/reporting_builder.main.php:110 -msgid "Non interactive report" -msgstr "Non-interactive Report" - -#: ../../godmode/reporting/reporting_builder.php:80 -msgid "" -"Your report has been planned, and the system will email you a PDF with the " -"report as soon as its finished" -msgstr "" -"Your report has been scheduled and the system will send a PDF file of the " -"report as soon as it's finished." - -#: ../../godmode/reporting/reporting_builder.php:81 -msgid "An error has ocurred" -msgstr "An error has ocurred." - -#: ../../godmode/reporting/reporting_builder.php:335 -#: ../../godmode/reporting/reporting_builder.php:1902 -#: ../../godmode/reporting/reporting_builder.php:1954 -msgid "Reports list" -msgstr "Reports list" - -#: ../../godmode/reporting/reporting_builder.php:346 -#: ../../godmode/reporting/reporting_builder.php:368 -#: ../../godmode/reporting/reporting_builder.php:1911 -#: ../../operation/menu.php:242 -#: ../../operation/reporting/custom_reporting.php:27 -msgid "Custom reporting" -msgstr "Custom reports" - -#: ../../godmode/reporting/reporting_builder.php:435 -msgid "Free text for search: " -msgstr "Free text for search: " - -#: ../../godmode/reporting/reporting_builder.php:436 -msgid "Search by report name or description, list matches." -msgstr "Search by report name or description, list matches." - -#: ../../godmode/reporting/reporting_builder.php:446 -msgid "Show Option" -msgstr "Show Option" - -#: ../../godmode/reporting/reporting_builder.php:532 -#: ../../operation/reporting/custom_reporting.php:38 -#: ../../operation/search_reports.php:38 -#: ../../enterprise/extensions/cron/functions.php:47 -#: ../../enterprise/extensions/cron/main.php:250 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:271 -#: ../../enterprise/include/functions_reporting_csv.php:1503 -#: ../../enterprise/include/functions_reporting_csv.php:1507 -msgid "Report name" -msgstr "Report name" - -#: ../../godmode/reporting/reporting_builder.php:534 -#: ../../operation/reporting/custom_reporting.php:40 -#: ../../operation/search_reports.php:40 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289 -msgid "HTML" -msgstr "HTML" - -#: ../../godmode/reporting/reporting_builder.php:535 -#: ../../operation/reporting/custom_reporting.php:41 -#: ../../operation/search_reports.php:41 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:290 -msgid "XML" -msgstr "XML" - -#: ../../godmode/reporting/reporting_builder.php:554 -#: ../../enterprise/dashboard/main_dashboard.php:298 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:287 -msgid "Private" -msgstr "Private" - -#: ../../godmode/reporting/reporting_builder.php:610 -msgid "This report exceeds the item limit for realtime operations" -msgstr "This report exceeds the item limit for realtime operations" - -#: ../../godmode/reporting/reporting_builder.php:615 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:342 -msgid "HTML view" -msgstr "HTML view" - -#: ../../godmode/reporting/reporting_builder.php:616 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:344 -msgid "Export to XML" -msgstr "Export to XML" - -#: ../../godmode/reporting/reporting_builder.php:727 -#: ../../include/functions_reporting.php:1631 -#: ../../enterprise/operation/agentes/agent_inventory.php:242 -#: ../../enterprise/operation/inventory/inventory.php:253 -#: ../../enterprise/operation/log/log_viewer.php:428 -msgid "No data found." -msgstr "No data found." - -#: ../../godmode/reporting/reporting_builder.php:735 -msgid "Create report" -msgstr "Create report" - -#: ../../godmode/reporting/reporting_builder.php:1960 -#: ../../operation/reporting/reporting_viewer.php:86 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:115 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:138 -msgid "List items" -msgstr "List items" - -#: ../../godmode/reporting/reporting_builder.php:1963 -#: ../../operation/reporting/reporting_viewer.php:90 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:108 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:143 -#: ../../enterprise/include/functions_reporting.php:6192 -#: ../../enterprise/include/functions_reporting.php:6242 -msgid "Item editor" -msgstr "Item editor" - -#: ../../godmode/reporting/reporting_builder.php:1972 -#: ../../operation/reporting/reporting_viewer.php:98 -msgid "View report" -msgstr "View report" - -#: ../../godmode/reporting/reporting_builder.php:2020 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1164 -msgid "Successfull action" -msgstr "Succesful action" - -#: ../../godmode/reporting/reporting_builder.php:2020 -msgid "Unsuccessfull action

    " -msgstr "Unsuccessfull action

    " - -#: ../../godmode/reporting/visual_console_builder.data.php:91 -msgid "Create visual console" -msgstr "Create a new visual console" - -#: ../../godmode/reporting/visual_console_builder.data.php:102 -#: ../../godmode/setup/os.builder.php:34 -#: ../../enterprise/godmode/agentes/collections.data.php:318 -msgid "Name:" -msgstr "Name:" - -#: ../../godmode/reporting/visual_console_builder.data.php:103 -msgid "" -"Use [ or ( as first character, for example '[*] Map name', to render this " -"map name in main menu" -msgstr "" -"Use [ or ( as first character, for example '[*] Map name', to render this " -"map name in main menu" - -#: ../../godmode/reporting/visual_console_builder.data.php:122 -#: ../../enterprise/godmode/agentes/collections.data.php:358 -msgid "Group:" -msgstr "Group:" - -#: ../../godmode/reporting/visual_console_builder.data.php:139 -#: ../../godmode/reporting/visual_console_builder.elements.php:111 -#: ../../include/functions_visual_map_editor.php:53 -#: ../../include/functions_visual_map_editor.php:359 -#: ../../enterprise/dashboard/widget.php:65 -msgid "Background" -msgstr "Background" - -#: ../../godmode/reporting/visual_console_builder.data.php:142 -msgid "Background image" -msgstr "Background image" - -#: ../../godmode/reporting/visual_console_builder.data.php:144 -#: ../../include/functions_visual_map_editor.php:237 -msgid "Background color" -msgstr "Background colour" - -#: ../../godmode/reporting/visual_console_builder.data.php:164 -msgid "Layout size" +#: ../../include/ajax/update_manager.ajax.php:463 +msgid "Package not accepted." msgstr "" -#: ../../godmode/reporting/visual_console_builder.data.php:168 -msgid "Set custom size" -msgstr "Set custom size" - -#: ../../godmode/reporting/visual_console_builder.data.php:177 -msgid "Get default image size" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:134 -msgid "Min allowed size is 1024x768" -msgstr "" - -#: ../../godmode/reporting/visual_console_builder.editor.php:138 -#: ../../godmode/reporting/visual_console_builder.editor.php:143 -#: ../../godmode/reporting/visual_console_builder.editor.php:148 -#: ../../enterprise/dashboard/main_dashboard.php:348 -msgid "Action in progress" -msgstr "Action in progress" - -#: ../../godmode/reporting/visual_console_builder.editor.php:139 -#: ../../enterprise/dashboard/main_dashboard.php:349 -msgid "Loading in progress" -msgstr "Loading in progress" - -#: ../../godmode/reporting/visual_console_builder.editor.php:144 -msgid "Saving in progress" -msgstr "Saving in progress" - -#: ../../godmode/reporting/visual_console_builder.editor.php:149 -msgid "Deletion in progress" -msgstr "Deletion in progress" - -#: ../../godmode/reporting/visual_console_builder.elements.php:78 -#: ../../godmode/reporting/visual_console_builder.wizard.php:118 -#: ../../include/functions_visual_map_editor.php:198 -#: ../../include/functions_filemanager.php:682 -msgid "Image" -msgstr "Image" - -#: ../../godmode/reporting/visual_console_builder.elements.php:79 -msgid "Width x Height
    Max value" -msgstr "Width x Height
    Max value" - -#: ../../godmode/reporting/visual_console_builder.elements.php:81 -#: ../../include/functions_visual_map_editor.php:540 -msgid "Map linked" -msgstr "Map linked" - -#: ../../godmode/reporting/visual_console_builder.elements.php:86 -#: ../../mobile/operation/agents.php:324 -#: ../../enterprise/godmode/admin_access_logs.php:25 -#: ../../enterprise/godmode/policies/policy_agents.php:381 -msgid "A." -msgstr "A." - -#: ../../godmode/reporting/visual_console_builder.elements.php:138 -#: ../../godmode/reporting/visual_console_builder.wizard.php:104 -#: ../../include/functions_visual_map_editor.php:54 -#: ../../include/functions_visual_map_editor.php:650 -msgid "Static Graph" -msgstr "Static Graph" - -#: ../../godmode/reporting/visual_console_builder.elements.php:143 -msgid "Percentile Bar" -msgstr "Percentile Bar" - -#: ../../godmode/reporting/visual_console_builder.elements.php:148 -msgid "Percentile Bubble" -msgstr "Percentile Bubble" - -#: ../../godmode/reporting/visual_console_builder.elements.php:153 -#: ../../include/functions_visual_map_editor.php:652 -#: ../../mobile/operation/events.php:506 -msgid "Module Graph" -msgstr "Module Graph" - -#: ../../godmode/reporting/visual_console_builder.elements.php:158 -#: ../../include/functions_visual_map.php:2753 -#: ../../include/functions_visual_map_editor.php:653 -msgid "Simple Value" -msgstr "Simple Value" - -#: ../../godmode/reporting/visual_console_builder.elements.php:163 -msgid "Simple Value (Process Max)" -msgstr "Simple Value (Process Max)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:168 -msgid "Simple Value (Process Min)" -msgstr "Simple Value (Process Min)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:173 -msgid "Simple Value (Process Avg)" -msgstr "Simple Value (Process Avg)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:188 -#: ../../include/functions_visual_map.php:2736 -#: ../../include/functions_visual_map_editor.php:62 -#: ../../include/functions_visual_map_editor.php:657 -msgid "Box" -msgstr "Box" - -#: ../../godmode/reporting/visual_console_builder.elements.php:226 -#: ../../godmode/reporting/visual_console_builder.elements.php:619 -msgid "Edit label" -msgstr "Edit label" - -#: ../../godmode/reporting/visual_console_builder.php:159 -msgid "This file isn't image" -msgstr "Invalid image file" - -#: ../../godmode/reporting/visual_console_builder.php:160 -msgid "This file isn't image." -msgstr "Invalid image file" - -#: ../../godmode/reporting/visual_console_builder.php:164 -#: ../../godmode/reporting/visual_console_builder.php:165 -msgid "File already are exists." -msgstr "File already exists." - -#: ../../godmode/reporting/visual_console_builder.php:171 -#: ../../godmode/reporting/visual_console_builder.php:172 -msgid "The file have not image extension." -msgstr "The file doesn't have an image extension" - -#: ../../godmode/reporting/visual_console_builder.php:183 -#: ../../godmode/reporting/visual_console_builder.php:184 -#: ../../godmode/reporting/visual_console_builder.php:191 -#: ../../godmode/reporting/visual_console_builder.php:194 -msgid "Problems with move file to target." -msgstr "Problems moving file to target location" - -#: ../../godmode/reporting/visual_console_builder.php:223 -msgid "Successfully update." -msgstr "Successfully updated" - -#: ../../godmode/reporting/visual_console_builder.php:235 -msgid "Could not be update." -msgstr "Could not be updated" - -#: ../../godmode/reporting/visual_console_builder.php:250 -#: ../../enterprise/meta/screens/screens.visualmap.php:120 -msgid "Successfully created." -msgstr "Successfully created." - -#: ../../godmode/reporting/visual_console_builder.php:263 -#: ../../enterprise/meta/screens/screens.visualmap.php:123 -msgid "Could not be created." -msgstr "Could not be created." - -#: ../../godmode/reporting/visual_console_builder.php:304 -msgid "Successfully multiple delete." -msgstr "Successfully multiple delete." - -#: ../../godmode/reporting/visual_console_builder.php:305 -msgid "Unsuccessfull multiple delete." -msgstr "Unsuccessfull multiple delete." - -#: ../../godmode/reporting/visual_console_builder.php:387 -msgid "Successfully delete." -msgstr "Successfully delete." - -#: ../../godmode/reporting/visual_console_builder.php:662 -#: ../../operation/visual_console/pure_ajax.php:96 -#: ../../operation/visual_console/render_view.php:96 -#: ../../enterprise/meta/screens/screens.visualmap.php:196 -msgid "Visual consoles list" -msgstr "Visual consoles list" - -#: ../../godmode/reporting/visual_console_builder.php:665 -#: ../../operation/gis_maps/render_view.php:128 -#: ../../operation/visual_console/pure_ajax.php:105 -#: ../../operation/visual_console/render_view.php:108 -#: ../../enterprise/meta/screens/screens.visualmap.php:188 -msgid "Show link to public Visual Console" -msgstr "Show link to public Visual Console" - -#: ../../godmode/reporting/visual_console_builder.php:671 -#: ../../operation/visual_console/pure_ajax.php:113 -#: ../../operation/visual_console/render_view.php:116 -#: ../../enterprise/meta/screens/screens.visualmap.php:177 -msgid "List elements" -msgstr "List elements" - -#: ../../godmode/reporting/visual_console_builder.php:676 -#: ../../operation/visual_console/pure_ajax.php:118 -#: ../../operation/visual_console/render_view.php:121 -msgid "Services wizard" -msgstr "Services wizard" - -#: ../../godmode/reporting/visual_console_builder.php:681 -#: ../../godmode/reporting/visual_console_builder.wizard.php:354 -#: ../../operation/visual_console/pure_ajax.php:123 -#: ../../operation/visual_console/render_view.php:126 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:71 -#: ../../enterprise/include/functions_reporting.php:32 -#: ../../enterprise/include/functions_reporting.php:6162 -#: ../../enterprise/include/functions_reporting.php:6184 -#: ../../enterprise/meta/general/logon_ok.php:38 -#: ../../enterprise/meta/general/main_header.php:114 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:42 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:82 -#: ../../enterprise/meta/screens/screens.visualmap.php:173 -msgid "Wizard" -msgstr "Wizard" - -#: ../../godmode/reporting/visual_console_builder.php:684 -#: ../../operation/visual_console/pure_ajax.php:126 -#: ../../operation/visual_console/render_view.php:129 -#: ../../enterprise/meta/screens/screens.visualmap.php:169 -msgid "Builder" -msgstr "Builder" - -#: ../../godmode/reporting/visual_console_builder.php:693 -#: ../../enterprise/meta/screens/screens.visualmap.php:208 -msgid "New visual console" -msgstr "New visual console" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:105 -#: ../../include/functions_visual_map_editor.php:55 -#: ../../include/functions_visual_map_editor.php:651 -msgid "Percentile Item" -msgstr "Percentile Item" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:106 -#: ../../include/functions_visual_map.php:2740 -#: ../../include/functions_visual_map_editor.php:251 -#: ../../mobile/operation/home.php:78 -msgid "Module graph" -msgstr "Module graph" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:107 -#: ../../include/functions_visual_map_editor.php:57 -msgid "Simple value" -msgstr "Simple value" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:125 -msgid "Range between elements (px)" -msgstr "Range between elements (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:132 -msgid "Size (px)" -msgstr "Size (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:170 -#: ../../enterprise/extensions/vmware/vmware_view.php:1333 -msgid "Font" -msgstr "Font" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:178 -#: ../../godmode/setup/setup_visuals.php:344 -#: ../../include/functions_config.php:467 -msgid "Font size" -msgstr "Font size" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:196 -#: ../../include/functions_visual_map_editor.php:350 -msgid "Min value" -msgstr "Min value" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:197 -#: ../../godmode/reporting/visual_console_builder.wizard.php:210 -#: ../../include/functions_visual_map_editor.php:351 -#: ../../include/functions_visual_map_editor.php:393 -msgid "Max value" -msgstr "Max value" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:198 -#: ../../include/functions_visual_map_editor.php:352 -msgid "Avg value" -msgstr "Avg value" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:204 -msgid "Width (px)" -msgstr "Width (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:218 -#: ../../godmode/setup/setup_visuals.php:532 -msgid "Percentile" -msgstr "Percentile" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:223 -msgid "Bubble" -msgstr "Bubble" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:230 -#: ../../include/functions_visual_map_editor.php:409 -#: ../../include/functions_visual_map_editor.php:428 -msgid "Value to show" -msgstr "Value to show" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:232 -msgid "Percent" -msgstr "Percent" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:267 -msgid "One item per agent" -msgstr "One item per agent" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:301 -#: ../../godmode/reporting/visual_console_builder.wizard.php:604 -msgid "Agent - Module" -msgstr "Agent - Module" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:310 -msgid "Enable link agent" -msgstr "Enable agent link" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:322 -msgid "Set Parent" -msgstr "Set Parent" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:324 -msgid "Item created in the visualmap" -msgstr "Iteam created on the visual map" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:325 -msgid "Use the agents relationship (from selected agents)" -msgstr "Use the agents relationship (from selected agents)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:328 -msgid "Item in the map" -msgstr "Item on the map" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:331 -msgid "The parent relationships in Pandora will be drawn in the map." -msgstr "The parenting relationships in Pandora will be drawn on the map." - -#: ../../godmode/reporting/visual_console_builder.wizard.php:344 -#: ../../godmode/reporting/visual_console_builder.wizard.php:349 -msgid "Are you sure to add many elements\\nin visual map?" -msgstr "Are you sure you wish to add this many elements\\non the visual map?" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:377 -#: ../../mobile/operation/agent.php:305 ../../mobile/operation/agents.php:381 -#: ../../mobile/operation/events.php:797 -#: ../../mobile/operation/module_graph.php:467 -#: ../../mobile/operation/modules.php:706 -#: ../../mobile/operation/tactical.php:215 -#: ../../mobile/operation/visualmap.php:118 -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:74 -#: ../../enterprise/mobile/operation/dashboard.php:118 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:149 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:152 -msgid "Loading..." -msgstr "Loading..." - -#: ../../godmode/reporting/visual_console_builder.wizard.php:525 -msgid "Please select any module or modules." -msgstr "Please select any module or modules." - -#: ../../godmode/servers/manage_recontask.php:43 -#: ../../godmode/servers/manage_recontask_form.php:186 -#: ../../include/functions_menu.php:473 -msgid "Manage recontask" -msgstr "Manage recon task" - -#: ../../godmode/servers/manage_recontask.php:55 -msgid "Successfully deleted recon task" -msgstr "Successfully deleted recon task" - -#: ../../godmode/servers/manage_recontask.php:58 -msgid "Error deleting recon task" -msgstr "Error deleting recon task" - -#: ../../godmode/servers/manage_recontask.php:68 -#: ../../godmode/servers/manage_recontask.php:182 -msgid "Successfully updated recon task" -msgstr "Recon task successfully updated" - -#: ../../godmode/servers/manage_recontask.php:75 -#: ../../godmode/servers/manage_recontask.php:185 -msgid "Error updating recon task" -msgstr "Error updating recon task" - -#: ../../godmode/servers/manage_recontask.php:166 -#: ../../godmode/servers/manage_recontask.php:239 -msgid "Wrong format in Subnet field" -msgstr "Wrong format in the Subnet field" - -#: ../../godmode/servers/manage_recontask.php:235 -msgid "Recon-task name already exists and incorrect format in Subnet field" -msgstr "" -"The recon task's name already exists and the format is incorrect for the " -"Subnet field." - -#: ../../godmode/servers/manage_recontask.php:243 -#: ../../godmode/servers/manage_recontask.php:252 -msgid "Recon-task name already exists" -msgstr "The recon task's name already exists" - -#: ../../godmode/servers/manage_recontask.php:266 -msgid "Successfully created recon task" -msgstr "Recon task successfully created" - -#: ../../godmode/servers/manage_recontask.php:269 -msgid "Error creating recon task" -msgstr "Error creating recon task" - -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:248 -#: ../../operation/servers/recon_view.php:95 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:136 -#: ../../enterprise/extensions/ipam/ipam_editor.php:69 -#: ../../enterprise/extensions/ipam/ipam_list.php:148 -msgid "Network" -msgstr "Network" - -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:306 -msgid "Ports" -msgstr "Ports" - -#: ../../godmode/servers/manage_recontask.php:319 -#: ../../operation/servers/recon_view.php:145 -msgid "Network recon task" -msgstr "Network recon task" - -#: ../../godmode/servers/manage_recontask.php:351 -#: ../../godmode/servers/manage_recontask_form.php:262 -#: ../../enterprise/extensions/ipam/ipam_list.php:217 -#: ../../enterprise/extensions/ipam/ipam_network.php:127 -#: ../../enterprise/godmode/services/services.service.php:255 -#: ../../enterprise/operation/services/services.list.php:189 -#: ../../enterprise/operation/services/services.table_services.php:158 -msgid "Manual" -msgstr "Manual" - -#: ../../godmode/servers/manage_recontask.php:392 -msgid "There are no recon task configured" -msgstr "There are no recon tasks set up" - -#: ../../godmode/servers/manage_recontask_form.php:193 -msgid "" -"By default, in Windows, Pandora FMS only support Standard network sweep, not " -"custom scripts" -msgstr "" -"On Windows Pandora FMS only supports standard network sweeps by default, not " -"custom scripts." - -#: ../../godmode/servers/manage_recontask_form.php:224 -#: ../../operation/servers/recon_view.php:89 -msgid "Task name" -msgstr "Task name" - -#: ../../godmode/servers/manage_recontask_form.php:230 -msgid "" -"You must select a Recon Server for the Task, otherwise the Recon Task will " -"never run" -msgstr "" -"You must appoint a recon server for the task, otherwise the recon task won't " -"run." - -#: ../../godmode/servers/manage_recontask_form.php:238 -msgid "Network sweep" -msgstr "Network sweep" - -#: ../../godmode/servers/manage_recontask_form.php:240 -#: ../../enterprise/extensions/cron/functions.php:69 -#: ../../enterprise/extensions/cron/main.php:255 -msgid "Custom script" -msgstr "Custom script" - -#: ../../godmode/servers/manage_recontask_form.php:249 -msgid "" -"You can specify several networks, separated by commas, for example: " -"192.168.50.0/24,192.168.60.0/24" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:260 -msgid "Manual interval means that it will be executed only On-demand" -msgstr "Manual interval means that it's going to run only on demand." - -#: ../../godmode/servers/manage_recontask_form.php:262 -#: ../../include/functions_reporting_html.php:1602 -#: ../../enterprise/include/functions_reporting_pdf.php:733 -msgid "Defined" -msgstr "Defined" - -#: ../../godmode/servers/manage_recontask_form.php:267 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "The minimum recommended interval for a recon task is 5 minutes" - -#: ../../godmode/servers/manage_recontask_form.php:272 -msgid "Module template" -msgstr "Module template" - -#: ../../godmode/servers/manage_recontask_form.php:309 -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 "" -"Defined ports such as 80 or 80,443,512 or even 0-1024 (same format as Nmap " -"command line) are left blank if you don't want to perform a sweep using " -"portscan." - -#: ../../godmode/servers/manage_recontask_form.php:320 -msgid "Choose if the discovery of a new system creates an incident or not." -msgstr "Choose if the discovery of a new system creates an incident or not." - -#: ../../godmode/servers/manage_recontask_form.php:323 -msgid "SNMP enabled" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:327 -msgid "SNMP Default community" -msgstr "SNMP Default community" - -#: ../../godmode/servers/manage_recontask_form.php:328 -msgid "" -"You can specify several values, separated by commas, for example: " -"public,mysecret,1234" -msgstr "" - -#: ../../godmode/servers/manage_recontask_form.php:334 -msgid "Explanation" -msgstr "Explanation" - -#: ../../godmode/servers/manage_recontask_form.php:375 -msgid "OS detection" -msgstr "OS detection" - -#: ../../godmode/servers/manage_recontask_form.php:379 -msgid "Name resolution" -msgstr "Name resolution" - -#: ../../godmode/servers/manage_recontask_form.php:383 -msgid "Parent detection" -msgstr "Parent detection" - -#: ../../godmode/servers/manage_recontask_form.php:387 -msgid "Parent recursion" -msgstr "Parent recursion" - -#: ../../godmode/servers/manage_recontask_form.php:388 -msgid "" -"Maximum number of parent hosts that will be created if parent detection is " -"enabled." -msgstr "" -"Maximum number of parent hosts that will be created if parent detection is " -"enabled." - -#: ../../godmode/servers/manage_recontask_form.php:391 -msgid "Vlan enabled" -msgstr "" - -#: ../../godmode/servers/modificar_server.php:35 -msgid "Update Server" -msgstr "Update Server" - -#: ../../godmode/servers/modificar_server.php:61 -msgid "Remote Configuration" -msgstr "Remote Configuration" - -#: ../../godmode/servers/modificar_server.php:66 -msgid "Pandora servers" -msgstr "Pandora servers" - -#: ../../godmode/servers/modificar_server.php:73 -#: ../../godmode/servers/modificar_server.php:85 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1164 -msgid "Unsuccessfull action" -msgstr "Unsuccesful action" - -#: ../../godmode/servers/modificar_server.php:76 -#: ../../godmode/servers/modificar_server.php:88 -#: ../../enterprise/godmode/alerts/alert_events_list.php:328 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:357 -msgid "Successfully action" -msgstr "Action successfully processed" - -#: ../../godmode/servers/modificar_server.php:98 -#: ../../enterprise/meta/advanced/servers.php:39 -msgid "Server deleted successfully" -msgstr "Server deleted successfully" - -#: ../../godmode/servers/modificar_server.php:101 -#: ../../enterprise/meta/advanced/servers.php:42 -msgid "There was a problem deleting the server" -msgstr "There was a problem deleting the server" - -#: ../../godmode/servers/modificar_server.php:112 -msgid "Server updated successfully" -msgstr "Server updated successfully" - -#: ../../godmode/servers/modificar_server.php:115 -msgid "There was a problem updating the server" -msgstr "There was a problem updating the server" - -#: ../../godmode/servers/plugin.php:53 -msgid "Network Components" -msgstr "Network Components" - -#: ../../godmode/servers/plugin.php:151 -#: ../../include/functions_filemanager.php:759 -#: ../../enterprise/godmode/agentes/collections.editor.php:111 -#: ../../enterprise/godmode/agentes/collections.editor.php:172 -msgid "Edit file" -msgstr "Edit file" - -#: ../../godmode/servers/plugin.php:170 -#: ../../enterprise/godmode/agentes/collections.editor.php:193 -msgid "Compatibility mode" -msgstr "Compatibility mode" - -#: ../../godmode/servers/plugin.php:224 -#: ../../godmode/setup/file_manager.php:63 -#: ../../include/functions_filemanager.php:561 -#, php-format -msgid "Index of %s" -msgstr "Index of %s" - -#: ../../godmode/servers/plugin.php:266 -msgid "Plugin creation" -msgstr "Plug-in creation" - -#: ../../godmode/servers/plugin.php:269 -msgid "Plugin update" -msgstr "Plug-in update" - -#: ../../godmode/servers/plugin.php:299 -msgid "Plugin type" -msgstr "Plug-in type" - -#: ../../godmode/servers/plugin.php:300 ../../godmode/servers/plugin.php:759 -msgid "Standard" -msgstr "Standard" - -#: ../../godmode/servers/plugin.php:301 ../../godmode/servers/plugin.php:761 -msgid "Nagios" -msgstr "Nagios" - -#: ../../godmode/servers/plugin.php:306 -msgid "Max. timeout" -msgstr "Max. timeout" - -#: ../../godmode/servers/plugin.php:306 -msgid "" -"This value only will be applied if is minor than the server general " -"configuration plugin timeout" -msgstr "" -"This value will only be applied if it's less than the timeout for the " -"server's general configuration plugin." - -#: ../../godmode/servers/plugin.php:306 -msgid "" -"If you set a 0 seconds timeout, the server plugin timeout will be used" -msgstr "" -"If you set the timeout to 0 seconds, the server's plugin timeout will be " -"used." - -#: ../../godmode/servers/plugin.php:362 -msgid "Plugin command" -msgstr "Plug-in command" - -#: ../../godmode/servers/plugin.php:373 -msgid "Plug-in parameters" -msgstr "Plug-in parameters" - -#: ../../godmode/servers/plugin.php:451 -#: ../../godmode/servers/recon_script.php:161 -#: ../../enterprise/godmode/modules/configure_local_component.php:446 -msgid "Default value" -msgstr "Default value" - -#: ../../godmode/servers/plugin.php:464 -#: ../../godmode/servers/recon_script.php:174 -msgid "Hide value" -msgstr "Hide Value" - -#: ../../godmode/servers/plugin.php:464 -#: ../../godmode/servers/recon_script.php:174 -msgid "This field will show up as dots like a password" -msgstr "This field is only going to display dots like a password window." - -#: ../../godmode/servers/plugin.php:473 -#: ../../godmode/servers/recon_script.php:183 -#: ../../include/functions_ui.php:1080 -#: ../../enterprise/godmode/modules/configure_local_component.php:452 -#: ../../enterprise/meta/general/login_page.php:50 -msgid "Help" -msgstr "Help" - -#: ../../godmode/servers/plugin.php:491 -#: ../../godmode/servers/recon_script.php:199 -#: ../../enterprise/godmode/modules/configure_local_component.php:462 -msgid "Add macro" -msgstr "Add macro" - -#: ../../godmode/servers/plugin.php:506 -#: ../../godmode/servers/recon_script.php:206 -#: ../../enterprise/godmode/modules/configure_local_component.php:470 -msgid "Delete macro" -msgstr "Delete macro" - -#: ../../godmode/servers/plugin.php:524 ../../godmode/servers/plugin.php:531 -msgid "Parameters macros" -msgstr "Macro parameters" - -#: ../../godmode/servers/plugin.php:564 -msgid "Plugins registered in Pandora FMS" -msgstr "Plug-ins registered on Pandora FMS" - -#: ../../godmode/servers/plugin.php:569 -msgid "You need to create your own plugins with Windows compatibility" -msgstr "You'll need to create your own Windows-compatible plugins" - -#: ../../godmode/servers/plugin.php:629 -msgid "Problem updating plugin" -msgstr "Problem updating plugin" - -#: ../../godmode/servers/plugin.php:632 -msgid "Plugin updated successfully" -msgstr "Plugin updated successfully" - -#: ../../godmode/servers/plugin.php:687 -msgid "Problem creating plugin" -msgstr "Problem creating plugin" - -#: ../../godmode/servers/plugin.php:690 -msgid "Plugin created successfully" -msgstr "Plugin created successfully" - -#: ../../godmode/servers/plugin.php:700 -msgid "Problem deleting plugin" -msgstr "Problem deleting plugin" - -#: ../../godmode/servers/plugin.php:703 -msgid "Plugin deleted successfully" -msgstr "Plugin deleted successfully" - -#: ../../godmode/servers/plugin.php:782 -msgid "All the modules that are using this plugin will be deleted" -msgstr "All modules that are using this plugin will be deleted" - -#: ../../godmode/servers/plugin.php:789 -msgid "There are no plugins in the system" -msgstr "There are no plugins on the system" - -#: ../../godmode/servers/plugin.php:801 -#, php-format -msgid "List of modules and components created by \"%s\" " -msgstr "List of modules and components created by \"%s\" " - -#: ../../godmode/servers/plugin.php:909 ../../godmode/servers/plugin.php:925 -msgid "Some modules or components are using the plugin" -msgstr "Some modules or components are using the plugin" - -#: ../../godmode/servers/plugin.php:910 -msgid "" -"The modules or components should be updated manually or using the bulk " -"operations for plugins after this change" -msgstr "" -"Modules or components should be updated manually or by using the bulk " -"operation option for plugins after this change" - -#: ../../godmode/servers/plugin.php:912 -msgid "Are you sure you want to perform this action?" -msgstr "Are you sure you want to perform this action?" - -#: ../../godmode/servers/plugin.php:926 -msgid "Are you sure you want to unlock this item?" -msgstr "Are you sure you want to unlock this item?" - -#: ../../godmode/servers/plugin.php:946 -msgid "" -"The plugin command cannot be updated because some modules or components are " -"using the plugin." -msgstr "" -"The plugin command cannot be updated because some modules or components are " -"using the plugin." - -#: ../../godmode/servers/plugin.php:952 -msgid "" -"The plugin macros cannot be updated because some modules or components are " -"using the plugin" -msgstr "" -"The plugin macros cannot be updated because some modules or components are " -"using the plugin" - -#: ../../godmode/servers/recon_script.php:73 -msgid "Recon script creation" -msgstr "Recon script creation" - -#: ../../godmode/servers/recon_script.php:75 -msgid "Recon script update" -msgstr "Recon script update" - -#: ../../godmode/servers/recon_script.php:101 -msgid "Script fullpath" -msgstr "Script fullpath" - -#: ../../godmode/servers/recon_script.php:228 -msgid "Recon scripts registered in Pandora FMS" -msgstr "Recon scripts registered on Pandora FMS" - -#: ../../godmode/servers/recon_script.php:271 -msgid "Problem updating" -msgstr "Problem updating" - -#: ../../godmode/servers/recon_script.php:317 -msgid "Problem creating" -msgstr "Problem creating" - -#: ../../godmode/servers/recon_script.php:331 -msgid "Problem deleting reconscript" -msgstr "Problem deleting reconscript" - -#: ../../godmode/servers/recon_script.php:334 -msgid "reconscript deleted successfully" -msgstr "Reconscript deleted successfully" - -#: ../../godmode/servers/recon_script.php:378 -msgid "There are no recon scripts in the system" -msgstr "There are no recon scripts in the system" - -#: ../../godmode/servers/servers.build_table.php:38 -#: ../../enterprise/meta/advanced/servers.build_table.php:33 -msgid "There are no servers configured into the database" -msgstr "There are no servers registered on the database" - -#: ../../godmode/servers/servers.build_table.php:69 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 -msgid "Lag" -msgstr "Lag" - -#: ../../godmode/servers/servers.build_table.php:69 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 -msgid "Avg. Delay(sec)/Modules delayed" -msgstr "Avg. Delay(sec)/Modules delayed" - -#: ../../godmode/servers/servers.build_table.php:70 -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -msgid "T/Q" -msgstr "T/Q" - -#: ../../godmode/servers/servers.build_table.php:70 -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -msgid "Threads / Queued modules currently" -msgstr "Current threads/queued modules currently" - -#: ../../godmode/servers/servers.build_table.php:97 -#: ../../enterprise/meta/advanced/servers.build_table.php:92 -msgid "This is a master server" -msgstr "This is a master server" - -#: ../../godmode/servers/servers.build_table.php:110 -#: ../../godmode/servers/servers.build_table.php:115 -#: ../../enterprise/meta/advanced/servers.build_table.php:104 -#: ../../enterprise/meta/advanced/servers.build_table.php:109 -msgid "of" -msgstr "of" - -#: ../../godmode/servers/servers.build_table.php:147 -msgid "Reset module status and fired alert counts" -msgstr "Reset module status and fired alert counts" - -#: ../../godmode/servers/servers.build_table.php:153 -msgid "Claim back SNMP modules" -msgstr "Reclaim SNMP modules" - -#: ../../godmode/servers/servers.build_table.php:173 -#: ../../enterprise/meta/advanced/servers.build_table.php:133 -msgid "" -"Modules run by this server will stop working. Do you want to continue?" -msgstr "" -"Modules run by this server will stop working. Do you want to continue?" - -#: ../../godmode/servers/servers.build_table.php:194 -#: ../../enterprise/meta/advanced/servers.build_table.php:154 -msgid "Tactical server information" -msgstr "Tactical server information" - -#: ../../godmode/setup/gis.php:62 -msgid "Map connection name" -msgstr "Map connection name" - -#: ../../godmode/setup/gis.php:83 -msgid "Do you wan delete this connection?" -msgstr "do you wish to delete this connection?" - -#: ../../godmode/setup/gis_step_2.php:39 -msgid "Create new map connection" -msgstr "Create new map connection" - -#: ../../godmode/setup/gis_step_2.php:58 -msgid "Edit map connection" -msgstr "Edit map connection" - -#: ../../godmode/setup/gis_step_2.php:150 -msgid "Connection Name" -msgstr "Connection Name" - -#: ../../godmode/setup/gis_step_2.php:150 -msgid "Descriptive name for the connection" -msgstr "Descriptive name for the connection" - -#: ../../godmode/setup/gis_step_2.php:153 -msgid "Group that owns the connection" -msgstr "Group that owns the connection" - -#: ../../godmode/setup/gis_step_2.php:156 -msgid "Number of zoom levels" -msgstr "Number of zoom levels" - -#: ../../godmode/setup/gis_step_2.php:160 -msgid "Default zoom level" -msgstr "Default zoom level" - -#: ../../godmode/setup/gis_step_2.php:160 -msgid "Zoom level used when the map is opened" -msgstr "Zoom level used when the map is opened" - -#: ../../godmode/setup/gis_step_2.php:163 -msgid "Basic configuration" -msgstr "Basic configuration" - -#: ../../godmode/setup/gis_step_2.php:168 -msgid "Open Street Maps" -msgstr "Open Street Maps" - -#: ../../godmode/setup/gis_step_2.php:169 -msgid "Google Maps" -msgstr "Google Maps" - -#: ../../godmode/setup/gis_step_2.php:170 -msgid "Static Image" -msgstr "Static Image" - -#: ../../godmode/setup/gis_step_2.php:172 -msgid "Please select the connection type" -msgstr "Please select the connection type" - -#: ../../godmode/setup/gis_step_2.php:174 -msgid "Map connection type" -msgstr "Map connection type" - -#: ../../godmode/setup/gis_step_2.php:210 -msgid "Tile Server URL" -msgstr "Tile Server URL" - -#: ../../godmode/setup/gis_step_2.php:216 -msgid "Google Physical" -msgstr "Google Physical" - -#: ../../godmode/setup/gis_step_2.php:217 -msgid "Google Hybrid" -msgstr "Google Hybrid" - -#: ../../godmode/setup/gis_step_2.php:218 -msgid "Google Satelite" -msgstr "Google Satelite" - -#: ../../godmode/setup/gis_step_2.php:222 -msgid "Google Map Type" -msgstr "Google Map Type" - -#: ../../godmode/setup/gis_step_2.php:226 -msgid "Google Maps Key" -msgstr "Google Maps Key" - -#: ../../godmode/setup/gis_step_2.php:235 -msgid "Image URL" -msgstr "Image URL" - -#: ../../godmode/setup/gis_step_2.php:239 -msgid "Corners of the area of the image" -msgstr "Corners of the area of the image" - -#: ../../godmode/setup/gis_step_2.php:242 -msgid "Left" -msgstr "Left" - -#: ../../godmode/setup/gis_step_2.php:244 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:42 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:42 -msgid "Bottom" -msgstr "Bottom" - -#: ../../godmode/setup/gis_step_2.php:248 -msgid "Right" -msgstr "Right" - -#: ../../godmode/setup/gis_step_2.php:250 -msgid "Top" -msgstr "Top" - -#: ../../godmode/setup/gis_step_2.php:254 -msgid "Image Size" -msgstr "Image Size" - -#: ../../godmode/setup/gis_step_2.php:279 -msgid "" -"Preview to select the center of the map and the default position of an agent " -"without gis data" -msgstr "" -"Previes to select the center of the map and the default position for an " -"agent without GIS data." - -#: ../../godmode/setup/gis_step_2.php:280 -msgid "Load preview map" -msgstr "Load preview map" - -#: ../../godmode/setup/gis_step_2.php:289 -msgid "Map Center" -msgstr "Map Centre" - -#: ../../godmode/setup/gis_step_2.php:289 -msgid "Position to center the map when the map is opened" -msgstr "Position to centre the map when the map is opened" - -#: ../../godmode/setup/gis_step_2.php:290 -msgid "Default position for agents without GIS data" -msgstr "Default position for agents without GIS data" - -#: ../../godmode/setup/gis_step_2.php:292 -msgid "Change in the map" -msgstr "Change on the map" - -#: ../../godmode/setup/gis_step_2.php:292 -msgid "This selects what to change by clicking on the map" -msgstr "This selects what to change by clicking on the map" - -#: ../../godmode/setup/gis_step_2.php:296 -#: ../../operation/agentes/gis_view.php:179 -msgid "Latitude" -msgstr "Latitude" - -#: ../../godmode/setup/gis_step_2.php:300 -#: ../../operation/agentes/gis_view.php:178 -msgid "Longitude" -msgstr "Longitude" - -#: ../../godmode/setup/gis_step_2.php:304 -#: ../../operation/agentes/gis_view.php:180 -msgid "Altitude" -msgstr "Altitude" - -#: ../../godmode/setup/gis_step_2.php:353 -#: ../../godmode/setup/gis_step_2.php:446 -msgid "Center" -msgstr "Centre" - -#: ../../godmode/setup/gis_step_2.php:413 -msgid "Refresh preview map" -msgstr "Refresh preview map" - -#: ../../godmode/setup/license.php:27 -msgid "License management" -msgstr "Licence Management" - -#: ../../godmode/setup/license.php:37 -msgid "License updated" -msgstr "Licence updated" - -#: ../../godmode/setup/license.php:64 -#: ../../enterprise/meta/advanced/license_meta.php:79 -msgid "Customer key" -msgstr "Customer key" - -#: ../../godmode/setup/license.php:67 -#: ../../enterprise/meta/advanced/license_meta.php:82 -msgid "Expires" -msgstr "Expires" - -#: ../../godmode/setup/license.php:70 -#: ../../enterprise/meta/advanced/license_meta.php:85 -msgid "Platform Limit" -msgstr "Platform Limit" - -#: ../../godmode/setup/license.php:71 ../../godmode/setup/license.php:74 -#: ../../godmode/setup/license.php:77 ../../godmode/setup/license.php:80 -#: ../../enterprise/meta/advanced/license_meta.php:86 -#: ../../enterprise/meta/advanced/license_meta.php:89 -#: ../../enterprise/meta/advanced/license_meta.php:92 -#: ../../enterprise/meta/advanced/license_meta.php:95 -msgid "agents" -msgstr "agents" - -#: ../../godmode/setup/license.php:71 ../../godmode/setup/license.php:74 -#: ../../godmode/setup/license.php:77 ../../godmode/setup/license.php:80 -#: ../../operation/tree.php:103 -#: ../../enterprise/meta/advanced/license_meta.php:86 -#: ../../enterprise/meta/advanced/license_meta.php:89 -#: ../../enterprise/meta/advanced/license_meta.php:92 -#: ../../enterprise/meta/advanced/license_meta.php:95 -msgid "modules" -msgstr "modules" - -#: ../../godmode/setup/license.php:73 -#: ../../enterprise/meta/advanced/license_meta.php:88 -msgid "Current Platform Count" -msgstr "Current Platform Count" - -#: ../../godmode/setup/license.php:76 -#: ../../enterprise/meta/advanced/license_meta.php:91 -msgid "Current Platform Count (enabled: items)" -msgstr "Current Platform Count (enabled: items)" - -#: ../../godmode/setup/license.php:79 -#: ../../enterprise/meta/advanced/license_meta.php:94 -msgid "Current Platform Count (disabled: items)" -msgstr "Current Platform Count (disabled: items)" - -#: ../../godmode/setup/license.php:82 -#: ../../enterprise/meta/advanced/license_meta.php:97 -msgid "License Mode" -msgstr "Licence Mode" - -#: ../../godmode/setup/license.php:85 -#: ../../enterprise/meta/advanced/license_meta.php:100 -msgid "NMS" -msgstr "NMS" - -#: ../../godmode/setup/license.php:86 ../../godmode/setup/license.php:89 -#: ../../enterprise/meta/advanced/license_meta.php:101 -#: ../../enterprise/meta/advanced/license_meta.php:104 -msgid "enabled" -msgstr "enabled" - -#: ../../godmode/setup/license.php:86 ../../godmode/setup/license.php:89 -#: ../../enterprise/meta/advanced/license_meta.php:101 -#: ../../enterprise/meta/advanced/license_meta.php:104 -msgid "disabled" -msgstr "Disabled" - -#: ../../godmode/setup/license.php:88 -#: ../../enterprise/meta/advanced/license_meta.php:103 -msgid "Satellite" -msgstr "Satellite" - -#: ../../godmode/setup/license.php:91 -#: ../../enterprise/meta/advanced/license_meta.php:106 -msgid "Licensed to" -msgstr "Licensed to" - -#: ../../godmode/setup/license.php:98 ../../mobile/operation/events.php:528 -#: ../../operation/agentes/alerts_status.php:436 -#: ../../operation/agentes/alerts_status.php:477 -#: ../../operation/agentes/alerts_status.php:511 -#: ../../operation/agentes/alerts_status.php:545 -#: ../../operation/agentes/alerts_status.php:590 -#: ../../operation/snmpconsole/snmp_view.php:745 -#: ../../operation/snmpconsole/snmp_view.php:902 -#: ../../operation/snmpconsole/snmp_view.php:930 -#: ../../enterprise/extensions/vmware/main.php:196 -#: ../../enterprise/extensions/vmware/main.php:203 -#: ../../enterprise/godmode/alerts/alert_events_list.php:426 -#: ../../enterprise/godmode/alerts/alert_events_list.php:676 -#: ../../enterprise/load_enterprise.php:1 -msgid "Validate" -msgstr "Validate" - -#: ../../godmode/setup/license.php:100 ../../godmode/setup/license.php:104 -#: ../../enterprise/meta/advanced/license_meta.php:115 -#: ../../enterprise/meta/advanced/license_meta.php:119 -msgid "Request new license" -msgstr "Request new licence" - -#: ../../godmode/setup/license.php:108 -#: ../../enterprise/meta/advanced/license_meta.php:123 -msgid "To get your Pandora FMS Enterprise License:" -msgstr "To get your Pandora FMS Enterprise Licence:" - -#: ../../godmode/setup/license.php:111 -#: ../../enterprise/meta/advanced/license_meta.php:126 -#, php-format -msgid "Go to %s" -msgstr "Go to %s" - -#: ../../godmode/setup/license.php:114 -#: ../../enterprise/meta/advanced/license_meta.php:129 -msgid "Enter the auth key and the following request key:" -msgstr "Enter the auth key and the following request key:" - -#: ../../godmode/setup/license.php:120 -#: ../../enterprise/meta/advanced/license_meta.php:135 -msgid "Enter your name (or a company name) and a contact email address." -msgstr "Enter your name (or a company name) and a contact e-mail address." - -#: ../../godmode/setup/license.php:123 -#: ../../enterprise/meta/advanced/license_meta.php:138 -msgid "Click on Generate." -msgstr "Click on Generate." - -#: ../../godmode/setup/license.php:126 -#: ../../enterprise/meta/advanced/license_meta.php:141 -msgid "" -"Click here, enter " -"the generated license key and click on Validate." -msgstr "" -"Click here, enter " -"the generated licence key and click on Validate." - -#: ../../godmode/setup/links.php:27 -msgid "Link management" -msgstr "Link management" - -#: ../../godmode/setup/links.php:39 -msgid "There was a problem creating link" -msgstr "There was a problem creating the link" - -#: ../../godmode/setup/links.php:56 -msgid "There was a problem modifying link" -msgstr "There was a problem modifying the link" - -#: ../../godmode/setup/links.php:67 -msgid "There was a problem deleting link" -msgstr "There was a problem deleting the link" - -#: ../../godmode/setup/links.php:86 ../../godmode/setup/news.php:130 -msgid "Name error" -msgstr "Map not found" - -#: ../../godmode/setup/links.php:106 ../../godmode/setup/links.php:136 -msgid "Link name" -msgstr "Link name" - -#: ../../godmode/setup/links.php:109 -#: ../../enterprise/godmode/policies/policy_linking.php:137 -msgid "Link" -msgstr "Link" - -#: ../../godmode/setup/links.php:132 -msgid "There isn't links" -msgstr "There aren't links" - -#: ../../godmode/setup/news.php:28 -msgid "Site news management" -msgstr "Site news management" - -#: ../../godmode/setup/news.php:161 ../../godmode/setup/news.php:220 -#: ../../godmode/update_manager/update_manager.messages.php:136 -#: ../../operation/messages/message_edit.php:85 -#: ../../operation/messages/message_edit.php:207 -#: ../../operation/messages/message_list.php:126 -msgid "Subject" -msgstr "Subject" - -#: ../../godmode/setup/news.php:167 -msgid "Modal screen" -msgstr "Modal Window" - -#: ../../godmode/setup/news.php:170 -msgid "Expire" -msgstr "Expire" - -#: ../../godmode/setup/news.php:173 ../../godmode/setup/news.php:224 -msgid "Expiration" -msgstr "Expiration" - -#: ../../godmode/setup/news.php:215 -msgid "There are no defined news" -msgstr "There are no news defined" - -#: ../../godmode/setup/news.php:222 -#: ../../operation/agentes/estado_generalagente.php:392 -#: ../../operation/incidents/incident_detail.php:419 -msgid "Author" -msgstr "Author" - -#: ../../godmode/setup/news.php:242 -msgid "Modal" -msgstr "Modal" - -#: ../../godmode/setup/news.php:245 -msgid "Board" -msgstr "Board" - -#: ../../godmode/setup/news.php:256 -msgid "Expired" -msgstr "Expired" - -#: ../../godmode/setup/os.list.php:75 -msgid "There are no defined operating systems" -msgstr "There are no operating systems defined" - -#: ../../godmode/setup/os.list.php:81 -msgid "Create OS" -msgstr "Create OS" - -#: ../../godmode/setup/os.php:73 -msgid "Fail creating OS" -msgstr "Failure creating OS" - -#: ../../godmode/setup/os.php:80 -msgid "Success creating OS" -msgstr "Success creating OS" - -#: ../../godmode/setup/os.php:100 -msgid "Success updatng OS" -msgstr "Success updating OS" - -#: ../../godmode/setup/os.php:100 -msgid "Error updating OS" -msgstr "Error updating OS" - -#: ../../godmode/setup/os.php:119 -msgid "There are agents with this OS." -msgstr "This OS is being used" - -#: ../../godmode/setup/os.php:124 -msgid "Success deleting" -msgstr "Success deleting" - -#: ../../godmode/setup/os.php:124 -msgid "Error deleting" -msgstr "Error deleting" - -#: ../../godmode/setup/os.php:133 -msgid "List OS" -msgstr "List OS" - -#: ../../godmode/setup/os.php:137 -msgid "Builder OS" -msgstr "OS editor" - -#: ../../godmode/setup/performance.php:49 -#: ../../include/functions_config.php:371 -#: ../../enterprise/meta/advanced/metasetup.performance.php:78 -#: ../../enterprise/meta/include/functions_meta.php:1281 -msgid "Max. days before delete events" -msgstr "Max. days before delete events" - -#: ../../godmode/setup/performance.php:49 -msgid "" -"If the compaction or purge of the data is more frequent than the events " -"deletion, anomalies in module graphs could appear" -msgstr "" -"If data compression or purge is more frequent than event cleanups, it could " -"lead to anomalies in module graphs." - -#: ../../godmode/setup/performance.php:52 -#: ../../include/functions_config.php:373 -msgid "Max. days before delete traps" -msgstr "Max. days before trap cleanup" - -#: ../../godmode/setup/performance.php:55 -#: ../../include/functions_config.php:377 -#: ../../enterprise/meta/advanced/metasetup.performance.php:87 -#: ../../enterprise/meta/include/functions_meta.php:1301 -msgid "Max. days before delete audit events" -msgstr "Max. days before audited event cleanup" - -#: ../../godmode/setup/performance.php:58 -#: ../../include/functions_config.php:375 -msgid "Max. days before delete string data" -msgstr "Max. days before delete string data" - -#: ../../godmode/setup/performance.php:61 -#: ../../include/functions_config.php:379 -msgid "Max. days before delete GIS data" -msgstr "Max. days before delete GIS data" - -#: ../../godmode/setup/performance.php:64 -#: ../../include/functions_config.php:381 -msgid "Max. days before purge" -msgstr "Max. days before purge" - -#: ../../godmode/setup/performance.php:64 -msgid "" -"Configure a purge period more frequent than a compact data period has no " -"sense" -msgstr "" -"Configuring a more frequent purge interval than a data compacting interval " -"makes no sense." - -#: ../../godmode/setup/performance.php:67 -#: ../../include/functions_config.php:385 -msgid "Max. days before compact data" -msgstr "Max. days before data compacting" - -#: ../../godmode/setup/performance.php:70 -#: ../../include/functions_config.php:383 -msgid "Max. days before delete unknown modules" -msgstr "Max. days before deleting unknown modules." - -#: ../../godmode/setup/performance.php:73 -msgid "Max. days before delete autodisabled agents" -msgstr "Max. days before delete autodisabled agents" - -#: ../../godmode/setup/performance.php:76 -#: ../../include/functions_config.php:409 -msgid "Retention period of past special days" -msgstr "Retention period of past special days" - -#: ../../godmode/setup/performance.php:76 -msgid "This number is days to keep past special days. 0 means never remove." -msgstr "This number is days to keep past special days. 0 means never remove." - -#: ../../godmode/setup/performance.php:79 -#: ../../include/functions_config.php:411 -msgid "Max. macro data fields" -msgstr "Max. macro data fields" - -#: ../../godmode/setup/performance.php:79 -msgid "Number of macro fields in alerts and templates between 1 and 15" -msgstr "" - -#: ../../godmode/setup/performance.php:83 -#: ../../include/functions_config.php:414 -msgid "Max. days before delete inventory data" -msgstr "Max. days before delete inventory data" - -#: ../../godmode/setup/performance.php:96 -msgid "Item limit for realtime reports" -msgstr "Item limit for realtime reports" - -#: ../../godmode/setup/performance.php:96 -msgid "" -"Set a value too high cause a slowdown on console and a performance penalty " -"in the system." -msgstr "" -"Setting too high a value will cause a slowdown on console and a performance " -"penalty in the system." - -#: ../../godmode/setup/performance.php:100 -#: ../../include/functions_config.php:391 -msgid "Compact interpolation in hours (1 Fine-20 bad)" -msgstr "Compact interpolation in hours (1 Fine-20 bad)" - -#: ../../godmode/setup/performance.php:100 -msgid "Data will be compacted in intervals of the specified length." -msgstr "Data will be compacted in intervals of the specified length." - -#: ../../godmode/setup/performance.php:105 ../../include/ajax/module.php:134 -#: ../../include/functions.php:2022 ../../include/functions.php:2592 -#: ../../include/functions_netflow.php:1052 -#: ../../include/functions_netflow.php:1085 -#: ../../operation/gis_maps/render_view.php:142 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:65 -#: ../../enterprise/dashboard/widgets/sla_percent.php:62 -#: ../../enterprise/dashboard/widgets/top_n.php:61 -#: ../../enterprise/godmode/agentes/inventory_manager.php:176 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:190 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:181 -msgid "1 hour" -msgstr "1 hour" - -#: ../../godmode/setup/performance.php:106 ../../include/ajax/module.php:136 -#: ../../include/functions_netflow.php:1055 +#: ../../include/ajax/update_manager.ajax.php:497 +msgid "progress" +msgstr "progress" + +#: ../../include/ajax/update_manager.ajax.php:525 +#: ../../include/functions_update_manager.php:189 +msgid "The package is installed." +msgstr "The package is installed." + +#: ../../include/ajax/visual_console_builder.ajax.php:180 +#: ../../include/functions_graph.php:5207 +msgid "No data to show" +msgstr "No data to show" + +#: ../../include/ajax/alert_list.ajax.php:80 +#: ../../godmode/alerts/alert_list.php:230 +#: ../../godmode/massive/massive_enable_disable_alerts.php:78 +#: ../../godmode/users/user_list.php:208 +#: ../../godmode/agentes/configurar_agente.php:1571 +#: ../../godmode/agentes/modificar_agente.php:116 +msgid "Successfully enabled" +msgstr "Successfully enabled" + +#: ../../include/ajax/alert_list.ajax.php:82 +#: ../../godmode/alerts/alert_list.php:230 +#: ../../godmode/massive/massive_enable_disable_alerts.php:78 +#: ../../godmode/agentes/configurar_agente.php:1571 +#: ../../godmode/agentes/modificar_agente.php:116 +msgid "Could not be enabled" +msgstr "Could not be enabled" + +#: ../../include/ajax/alert_list.ajax.php:91 +#: ../../godmode/alerts/alert_list.php:247 +#: ../../godmode/massive/massive_enable_disable_alerts.php:96 +#: ../../godmode/users/user_list.php:203 +#: ../../godmode/agentes/configurar_agente.php:1586 +#: ../../godmode/agentes/modificar_agente.php:135 +msgid "Successfully disabled" +msgstr "Successfully disabled" + +#: ../../include/ajax/alert_list.ajax.php:93 +#: ../../godmode/alerts/alert_list.php:247 +#: ../../godmode/massive/massive_enable_disable_alerts.php:96 +#: ../../godmode/agentes/configurar_agente.php:1586 +#: ../../godmode/agentes/modificar_agente.php:135 +msgid "Could not be disabled" +msgstr "Could not be disabled" + +#: ../../include/ajax/alert_list.ajax.php:155 +#: ../../godmode/alerts/alert_list.list.php:615 +#: ../../godmode/alerts/alert_list.builder.php:97 +#: ../../godmode/massive/massive_add_action_alerts.php:183 +msgid "Number of alerts match from" +msgstr "Number of alerts match from" + +#: ../../include/ajax/alert_list.ajax.php:165 +#: ../../include/functions_reporting_html.php:2107 +#: ../../include/functions_reporting_html.php:3098 +#: ../../godmode/alerts/alert_view.php:391 +#: ../../godmode/alerts/configure_alert_action.php:142 +#: ../../godmode/alerts/alert_list.list.php:539 +#: ../../godmode/alerts/alert_list.list.php:625 +#: ../../godmode/alerts/alert_list.builder.php:134 +msgid "Threshold" +msgstr "Threshold" + +#: ../../include/ajax/module.php:133 ../../include/functions.php:2591 +msgid "30 minutes" +msgstr "30 minutes" + +#: ../../include/ajax/module.php:135 +msgid "6 hours" +msgstr "6 hours" + +#: ../../include/ajax/module.php:136 ../../include/functions_netflow.php:1055 #: ../../include/functions_netflow.php:1088 -#: ../../enterprise/dashboard/widgets/top_n.php:64 -#: ../../enterprise/godmode/agentes/inventory_manager.php:179 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:193 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:185 +#: ../../godmode/setup/performance.php:106 msgid "12 hours" msgstr "12 hours" -#: ../../godmode/setup/performance.php:107 -msgid "Last day" -msgstr "Last day" - -#: ../../godmode/setup/performance.php:108 -#: ../../include/functions_netflow.php:1057 -#: ../../include/functions_netflow.php:1090 -#: ../../enterprise/godmode/agentes/inventory_manager.php:181 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:195 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:187 -msgid "2 days" -msgstr "2 days" - -#: ../../godmode/setup/performance.php:109 -msgid "10 days" -msgstr "10 days" - -#: ../../godmode/setup/performance.php:110 -#: ../../include/functions_netflow.php:1060 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:189 -msgid "Last week" -msgstr "Last week" - -#: ../../godmode/setup/performance.php:111 -msgid "2 weeks" -msgstr "2 weeks" - -#: ../../godmode/setup/performance.php:112 -#: ../../include/functions_netflow.php:1061 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 -msgid "Last month" -msgstr "Last month" - -#: ../../godmode/setup/performance.php:114 -#: ../../include/functions_config.php:393 -#: ../../enterprise/meta/advanced/metasetup.performance.php:92 -#: ../../enterprise/meta/include/functions_meta.php:1311 -msgid "Default hours for event view" -msgstr "Default hours for event view" - -#: ../../godmode/setup/performance.php:117 -#: ../../include/functions_config.php:395 -msgid "Use realtime statistics" -msgstr "Use realtime statistics" - -#: ../../godmode/setup/performance.php:121 -#: ../../include/functions_config.php:397 -msgid "Batch statistics period (secs)" -msgstr "Batch statistics period (secs)" - -#: ../../godmode/setup/performance.php:121 -msgid "" -"If realtime statistics are disabled, statistics interval resfresh will be " -"set here." -msgstr "" -"If realtime statistics are disabled, the refresh interval for statistics " -"will be set here." - -#: ../../godmode/setup/performance.php:124 -#: ../../include/functions_config.php:399 -#: ../../enterprise/meta/include/functions_meta.php:1321 -msgid "Use agent access graph" -msgstr "Use agent access graph" - -#: ../../godmode/setup/performance.php:128 -#: ../../include/functions_config.php:401 -msgid "Max. recommended number of files in attachment directory" -msgstr "Max. recommended number of files in attachment directory" - -#: ../../godmode/setup/performance.php:128 -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." -msgstr "" -"This number is the maximum number of files for the attachment directory. If " -"this number is reached, a warning message will appear in the header's " -"notification space." - -#: ../../godmode/setup/performance.php:131 -#: ../../include/functions_config.php:403 -msgid "Delete not init modules" -msgstr "Delete not init modules" - -#: ../../godmode/setup/performance.php:135 -msgid "Big Operation Step to purge old data" -msgstr "Big Operation Step to purge old data" - -#: ../../godmode/setup/performance.php:135 -msgid "" -"The number of blocks that a time interval is split into. A bigger value " -"means bigger blocks, which is faster but heavier on the database. Default is " -"100." -msgstr "" -"The number of blocks that a time interval is split into. A bigger value " -"means bigger blocks, which is faster but heavier on the database. Default is " -"100." - -#: ../../godmode/setup/performance.php:138 -#: ../../include/functions_config.php:407 -msgid "Small Operation Step to purge old data" -msgstr "Small Operation Step to purge old data" - -#: ../../godmode/setup/performance.php:138 -msgid "" -"The number of rows that are processed in a single query in deletion. Default " -"is 1000. Increase to 3000-5000 in fast systems. Decrease to 500 or 250 on " -"systems with locks." -msgstr "" -"The number of rows that are processed in a single query in deletion. Default " -"is 1000. Increase to 3000-5000 in fast systems. Decrease to 500 or 250 on " -"systems with locks." - -#: ../../godmode/setup/performance.php:143 -msgid "Database maintenance options" -msgstr "Database maintenance options" - -#: ../../godmode/setup/performance.php:149 -#: ../../include/functions_graph.php:3236 -msgid "Others" -msgstr "Others" - -#: ../../godmode/setup/setup.php:145 -msgid "Correct update the setup options" -msgstr "Correctly updated the setup options" - -#: ../../godmode/setup/setup_auth.php:49 -#: ../../include/functions_config.php:323 -#: ../../enterprise/meta/include/functions_meta.php:612 -msgid "Fallback to local authentication" -msgstr "Fallback to local authentication" - -#: ../../godmode/setup/setup_auth.php:50 -msgid "" -"Enable this option if you want to fallback to local authentication when " -"remote (ldap etc...) authentication failed." -msgstr "" -"Please enable this option if you wish to fallback to a local authentication " -"protocol, should remote authentication (LDAP etc,) fails." - -#: ../../godmode/setup/setup_auth.php:57 -#: ../../include/functions_config.php:287 -#: ../../enterprise/meta/include/functions_meta.php:622 -msgid "Autocreate remote users" -msgstr "Autocreate remote users" - -#: ../../godmode/setup/setup_auth.php:74 -#: ../../include/functions_config.php:311 -#: ../../enterprise/meta/include/functions_meta.php:766 -msgid "LDAP server" -msgstr "LDAP server" - -#: ../../godmode/setup/setup_auth.php:80 -#: ../../include/functions_config.php:313 -#: ../../enterprise/meta/include/functions_meta.php:776 -msgid "LDAP port" -msgstr "LDAP port" - -#: ../../godmode/setup/setup_auth.php:87 -#: ../../include/functions_config.php:315 -#: ../../enterprise/meta/include/functions_meta.php:786 -msgid "LDAP version" -msgstr "LDAP version" - -#: ../../godmode/setup/setup_auth.php:93 -#: ../../include/functions_config.php:302 -#: ../../include/functions_config.php:317 -#: ../../enterprise/godmode/setup/setup_auth.php:511 -#: ../../enterprise/meta/include/functions_meta.php:714 -#: ../../enterprise/meta/include/functions_meta.php:796 -msgid "Start TLS" -msgstr "Start TLS" - -#: ../../godmode/setup/setup_auth.php:100 -#: ../../include/functions_config.php:319 -#: ../../enterprise/meta/include/functions_meta.php:806 -msgid "Base DN" -msgstr "Base DN" - -#: ../../godmode/setup/setup_auth.php:106 -#: ../../include/functions_config.php:321 -#: ../../enterprise/meta/include/functions_meta.php:816 -msgid "Login attribute" -msgstr "Login attribute" - -#: ../../godmode/setup/setup_auth.php:128 -#: ../../include/functions_config.php:359 -#: ../../operation/users/user_edit.php:334 -#: ../../enterprise/meta/include/functions_meta.php:672 -msgid "Double authentication" -msgstr "Double authentication" - -#: ../../godmode/setup/setup_auth.php:129 -msgid "" -"If this option is enabled, the users can use double authentication with " -"their accounts" -msgstr "" -"If this option is enabled, double authentication for user accounts will be " -"available." - -#: ../../godmode/setup/setup_auth.php:141 -msgid "Session timeout (mins)" -msgstr "Session timeout (mins)" - -#: ../../godmode/setup/setup_auth.php:142 -#: ../../godmode/users/configure_user.php:548 -msgid "" -"This is defined in minutes, If you wish a permanent session should putting -" -"1 in this field." -msgstr "" -"This is defined in minutes. If you want a permanent session, introduce -1 in " -"this field." - -#: ../../godmode/setup/setup_auth.php:177 -msgid "Local Pandora FMS" -msgstr "Local Pandora FMS" - -#: ../../godmode/setup/setup_auth.php:177 -msgid "ldap" -msgstr "LDAP" - -#: ../../godmode/setup/setup_auth.php:183 -#: ../../include/functions_config.php:285 -#: ../../enterprise/meta/include/functions_meta.php:602 -msgid "Authentication method" -msgstr "Authentication method" - -#: ../../godmode/setup/setup_ehorus.php:54 -#: ../../include/functions_config.php:713 -msgid "Enable eHorus" -msgstr "Enable eHorus" - -#: ../../godmode/setup/setup_ehorus.php:85 -msgid "API Hostname" -msgstr "API Hostname" - -#: ../../godmode/setup/setup_ehorus.php:87 -msgid "Hostname of the eHorus API" -msgstr "Hostname of the eHorus API" - -#: ../../godmode/setup/setup_ehorus.php:87 -msgid "Without protocol and port" -msgstr "Without protocol and port" - -#: ../../godmode/setup/setup_ehorus.php:87 -msgid "e.g., portal.ehorus.com" -msgstr "e.g., switch.eHorus.com" - -#: ../../godmode/setup/setup_ehorus.php:92 -msgid "API Port" -msgstr "API Port" - -#: ../../godmode/setup/setup_ehorus.php:94 -msgid "e.g., 18080" -msgstr "e.g., 18080" - -#: ../../godmode/setup/setup_ehorus.php:99 -msgid "Request timeout" -msgstr "Request timeout" - -#: ../../godmode/setup/setup_ehorus.php:101 -msgid "" -"Time in seconds to set the maximum time of the requests to the eHorus API" -msgstr "" -"Time in seconds to set the maximum time of the requests to the eHorus API" - -#: ../../godmode/setup/setup_ehorus.php:101 -msgid "0 to disable" -msgstr "0 to disable" - -#: ../../godmode/setup/setup_ehorus.php:106 -msgid "Test" -msgstr "Test" - -#: ../../godmode/setup/setup_ehorus.php:107 -#: ../../enterprise/dashboard/full_dashboard.php:286 -#: ../../enterprise/dashboard/main_dashboard.php:466 -#: ../../enterprise/dashboard/public_dashboard.php:312 -#: ../../enterprise/operation/agentes/transactional_map.php:301 -msgid "Start" -msgstr "Start" - -#: ../../godmode/setup/setup_ehorus.php:122 -msgid "Remote Management System" -msgstr "Remote Management System" - -#: ../../godmode/setup/setup_ehorus.php:130 -msgid "Custom field eHorusID created" -msgstr "Custom field eHorusID created" - -#: ../../godmode/setup/setup_ehorus.php:130 -msgid "Error creating custom field" -msgstr "Error creating custom field" - -#: ../../godmode/setup/setup_ehorus.php:133 -msgid "eHorus has his own agent identifiers" -msgstr "eHorus has its own agent identifiers" - -#: ../../godmode/setup/setup_ehorus.php:134 -msgid "To store them, it will be necessary to use an agent custom field" -msgstr "To store them, it is necessary to use an agent custom field" - -#: ../../godmode/setup/setup_ehorus.php:135 -msgid "" -"Possibly the eHorus id will have to be filled in by hand for every agent" -msgstr "" -"Possibly the eHorus id will have to be filled out manually for every agent" - -#: ../../godmode/setup/setup_ehorus.php:140 -msgid "The custom field does not exists already" -msgstr "The custom field does not exist yet" - -#: ../../godmode/setup/setup_ehorus.php:154 -msgid "eHorus API" -msgstr "eHorus API" - -#: ../../godmode/setup/setup_ehorus.php:186 -msgid "Connection timeout" -msgstr "Connection timeout" - -#: ../../godmode/setup/setup_ehorus.php:187 -msgid "Empty user or password" -msgstr "Empty user or password" - -#: ../../godmode/setup/setup_ehorus.php:188 -msgid "User not found" -msgstr "User not found" - -#: ../../godmode/setup/setup_ehorus.php:189 -msgid "Invalid password" -msgstr "Invalid password" - -#: ../../godmode/setup/setup_general.php:57 -#: ../../include/functions_config.php:131 -msgid "Remote config directory" -msgstr "Remote config directory" - -#: ../../godmode/setup/setup_general.php:58 -msgid "Directory where agent remote configuration is stored." -msgstr "Directory in which the agent's remote configuration is stored" - -#: ../../godmode/setup/setup_general.php:62 -#: ../../include/functions_config.php:133 -#: ../../enterprise/meta/advanced/metasetup.setup.php:125 -#: ../../enterprise/meta/include/functions_meta.php:368 -msgid "Auto login (hash) password" -msgstr "Auto login (hash) password" - -#: ../../godmode/setup/setup_general.php:65 -#: ../../include/functions_config.php:136 -#: ../../enterprise/meta/advanced/metasetup.setup.php:129 -#: ../../enterprise/meta/include/functions_meta.php:378 -msgid "Time source" -msgstr "Time source" - -#: ../../godmode/setup/setup_general.php:66 ../../include/functions.php:1042 -#: ../../include/functions_events.php:988 -#: ../../include/functions_events.php:1419 -#: ../../include/functions_graph.php:2258 -#: ../../include/functions_graph.php:2924 -#: ../../include/functions_graph.php:3352 -#: ../../include/functions_graph.php:3355 -#: ../../include/functions_reporting.php:6397 -#: ../../include/functions_reporting_html.php:878 -#: ../../include/functions_reporting_html.php:1701 -#: ../../mobile/operation/events.php:111 ../../operation/events/events.php:77 -#: ../../operation/events/events_rss.php:178 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:130 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:135 -#: ../../enterprise/meta/advanced/metasetup.setup.php:130 -msgid "System" -msgstr "System" - -#: ../../godmode/setup/setup_general.php:67 -#: ../../enterprise/meta/advanced/metasetup.setup.php:131 -msgid "Database" -msgstr "Database" - -#: ../../godmode/setup/setup_general.php:70 -#: ../../include/functions_config.php:138 -msgid "Automatic check for updates" -msgstr "Automatically check for updates" - -#: ../../godmode/setup/setup_general.php:74 -#: ../../include/functions_config.php:142 -#: ../../enterprise/meta/advanced/metasetup.setup.php:136 -#: ../../enterprise/meta/include/functions_meta.php:388 -msgid "Enforce https" -msgstr "Enforce https" - -#: ../../godmode/setup/setup_general.php:75 -#: ../../enterprise/meta/advanced/metasetup.setup.php:137 -msgid "" -"If SSL is not properly configured you will lose access to Pandora FMS " -"Console. Do you want to continue?" -msgstr "" -"If SSL is not properly configured, you will lose access to the Pandora FMS " -"Console. Do you want to continue?" - -#: ../../godmode/setup/setup_general.php:78 -msgid "Use cert of SSL" -msgstr "Use cert of SSL" - -#: ../../godmode/setup/setup_general.php:83 -msgid "Path of SSL Cert." -msgstr "Path of SSL Cert." - -#: ../../godmode/setup/setup_general.php:83 -msgid "" -"Path where you put your cert and name of this cert. Remember your cert only " -"in .pem extension." -msgstr "" -"Path where you put your cert and name of this cert. Remember your cert " -"should only be in .pem extension." - -#: ../../godmode/setup/setup_general.php:86 -#: ../../include/functions_config.php:146 -#: ../../enterprise/meta/advanced/metasetup.setup.php:142 -#: ../../enterprise/meta/include/functions_meta.php:398 -msgid "Attachment store" -msgstr "Attachment directory" - -#: ../../godmode/setup/setup_general.php:86 -#: ../../enterprise/meta/advanced/metasetup.setup.php:142 -msgid "Directory where temporary data is stored." -msgstr "Directory in which temporary data is stored." - -#: ../../godmode/setup/setup_general.php:89 -#: ../../include/functions_config.php:148 -#: ../../enterprise/meta/advanced/metasetup.setup.php:241 -#: ../../enterprise/meta/include/functions_meta.php:459 -msgid "IP list with API access" -msgstr "IP list with API access" - -#: ../../godmode/setup/setup_general.php:98 -#: ../../include/functions_config.php:150 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:183 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:318 -#: ../../enterprise/meta/advanced/metasetup.setup.php:237 -#: ../../enterprise/meta/include/functions_meta.php:438 -#: ../../enterprise/meta/include/functions_meta.php:448 -msgid "API password" -msgstr "API password" - -#: ../../godmode/setup/setup_general.php:99 -#: ../../enterprise/meta/advanced/metasetup.setup.php:238 -msgid "Please be careful if you put a password put https access." -msgstr "" -"Please bear in mind that if you set a password, you should use HTTPS access." - -#: ../../godmode/setup/setup_general.php:102 -#: ../../include/functions_config.php:152 -msgid "Enable GIS features in Pandora Console" -msgstr "Enable GIS features for the Pandora Console" - -#: ../../godmode/setup/setup_general.php:106 -#: ../../include/functions_config.php:162 -msgid "Enable Netflow" -msgstr "Enable Netflow" - -#: ../../godmode/setup/setup_general.php:140 -#: ../../enterprise/meta/advanced/metasetup.setup.php:179 -msgid "Change timezone" -msgstr "Change timezone" - -#: ../../godmode/setup/setup_general.php:146 -#: ../../include/functions_config.php:169 -msgid "Sound for Alert fired" -msgstr "Sound for Alert fired" - -#: ../../godmode/setup/setup_general.php:148 -#: ../../godmode/setup/setup_general.php:153 -#: ../../godmode/setup/setup_general.php:158 -msgid "Play sound" -msgstr "Play sound" - -#: ../../godmode/setup/setup_general.php:151 -#: ../../include/functions_config.php:171 -msgid "Sound for Monitor critical" -msgstr "Sound for Monitor critical" - -#: ../../godmode/setup/setup_general.php:156 -#: ../../include/functions_config.php:173 -msgid "Sound for Monitor warning" -msgstr "Sound for Monitor warning" - -#: ../../godmode/setup/setup_general.php:161 -#: ../../include/functions_config.php:188 -#: ../../enterprise/meta/advanced/metasetup.setup.php:183 -#: ../../enterprise/meta/include/functions_meta.php:418 -msgid "Public URL" -msgstr "Public URL" - -#: ../../godmode/setup/setup_general.php:162 -#: ../../enterprise/meta/advanced/metasetup.setup.php:184 -msgid "" -"Set this value when your PandoraFMS across inverse proxy or for example with " -"mod_proxy of Apache." -msgstr "" -"Set this value when you need your Pandora to be accessible via a public URL " -"(for example using Apache mod_proxy settings)" - -#: ../../godmode/setup/setup_general.php:165 -#: ../../include/functions_config.php:190 -msgid "Referer security" -msgstr "Enforce URL security" - -#: ../../godmode/setup/setup_general.php:166 -msgid "" -"When it is set as \"yes\" in some important sections check if the user have " -"gone from url Pandora." -msgstr "If enabled, actively checks if the user comes from Pandora's URL" - -#: ../../godmode/setup/setup_general.php:173 -#: ../../include/functions_config.php:192 -msgid "Event storm protection" -msgstr "Event storm protection" - -#: ../../godmode/setup/setup_general.php:174 -msgid "" -"If set to yes no events or alerts will be generated, but agents will " -"continue receiving data." -msgstr "" -"If enabled, no events or alerts will be generated, although agents will " -"continue to receive data." - -#: ../../godmode/setup/setup_general.php:182 -#: ../../include/functions_config.php:194 -msgid "Command Snapshot" -msgstr "Command line snapshot" - -#: ../../godmode/setup/setup_general.php:183 -msgid "The string modules with several lines show as command output" -msgstr "" -"String module outputs with more than one line will be shown as a snapshot." - -#: ../../godmode/setup/setup_general.php:187 -#: ../../include/functions_config.php:196 -msgid "Server logs directory" -msgstr "Server log directory" - -#: ../../godmode/setup/setup_general.php:187 -msgid "Directory where the server logs are stored." -msgstr "The directory in which server logs are stored." - -#: ../../godmode/setup/setup_general.php:192 -msgid "Full mode" -msgstr "Full assist mode" - -#: ../../godmode/setup/setup_general.php:193 -msgid "On demand" -msgstr "On demand" - -#: ../../godmode/setup/setup_general.php:194 -msgid "Expert" -msgstr "Expert" - -#: ../../godmode/setup/setup_general.php:196 -#: ../../include/functions_config.php:198 -msgid "Tutorial mode" -msgstr "Tutorial mode" - -#: ../../godmode/setup/setup_general.php:197 -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." -msgstr "" -"These are settings for the 'helper' cartoon. When 'Full mode' is enabled the " -"icon in the header and help texts will all be active and will automatically " -"show. 'On demand' mode is the same as 'Full mode' but users will choose when " -"the helper activates. In 'Expert' mode, the icons in the header and help " -"texts are all disabled." - -#: ../../godmode/setup/setup_general.php:203 -#: ../../include/functions_config.php:200 -msgid "Allow create planned downtimes in the past" -msgstr "Allows creating planned downtimes for past dates" - -#: ../../godmode/setup/setup_general.php:204 -msgid "The planned downtimes created in the past will affect the SLA reports" -msgstr "" -"The planned downtimes created in the past will affect the SLA reports" - -#: ../../godmode/setup/setup_general.php:208 -#: ../../include/functions_config.php:202 -msgid "Limit parameters massive" -msgstr "Massive parameter limits" - -#: ../../godmode/setup/setup_general.php:209 +#: ../../include/ajax/module.php:137 ../../include/functions_netflow.php:1056 +#: ../../include/functions_netflow.php:1089 ../../include/functions.php:2025 +msgid "1 day" +msgstr "1 day" + +#: ../../include/ajax/module.php:138 ../../include/functions_netflow.php:1093 +#: ../../include/functions.php:2026 +msgid "1 week" +msgstr "1 week" + +#: ../../include/ajax/module.php:139 ../../include/functions_netflow.php:1059 +#: ../../include/functions_netflow.php:1092 ../../include/functions.php:2027 +msgid "15 days" +msgstr "15 days" + +#: ../../include/ajax/module.php:140 ../../include/functions_netflow.php:1094 +#: ../../include/functions.php:2028 +msgid "1 month" +msgstr "1 month" + +#: ../../include/ajax/module.php:141 ../../include/functions_netflow.php:1063 +msgid "3 months" +msgstr "3 months" + +#: ../../include/ajax/module.php:142 ../../include/functions_netflow.php:1064 +msgid "6 months" +msgstr "6 months" + +#: ../../include/ajax/module.php:143 ../../include/functions.php:2031 +msgid "1 year" +msgstr "1 year" + +#: ../../include/ajax/module.php:144 ../../include/functions_netflow.php:1066 +msgid "2 years" +msgstr "2 years" + +#: ../../include/ajax/module.php:145 +msgid "3 years" +msgstr "3 years" + +#: ../../include/ajax/module.php:836 ../../include/ajax/module.php:846 +#: ../../godmode/agentes/module_manager.php:679 +#: ../../godmode/agentes/module_manager.php:689 +msgid "Adopted" +msgstr "Adopted" + +#: ../../include/ajax/module.php:846 ../../include/ajax/module.php:850 +#: ../../godmode/massive/massive_edit_modules.php:572 +#: ../../godmode/agentes/module_manager.php:689 +#: ../../godmode/agentes/module_manager.php:693 +msgid "Unlinked" +msgstr "Not linked" + +#: ../../include/ajax/module.php:1093 +msgid "Any monitors aren't with this filter." +msgstr "No monitors have this filter." + +#: ../../include/ajax/module.php:1096 +msgid "This agent doesn't have any active monitors." +msgstr "This agent doesn't have any active monitors." + +#: ../../include/ajax/events.php:158 #, php-format -msgid "" -"Your PHP environment is setted with %d max_input_vars. Maybe you must not " -"set this value with upper values." -msgstr "" -"Your PHP environment is setted with %d max_input_vars. Maybe you must not " -"set this value with upper values." - -#: ../../godmode/setup/setup_general.php:213 -msgid "Include agents manually disabled" -msgstr "Include agents manually disabled" - -#: ../../godmode/setup/setup_general.php:217 -msgid "audit log directory" -msgstr "audit log directory" - -#: ../../godmode/setup/setup_general.php:218 -msgid "Directory where audit log is stored." -msgstr "Directory where audit log is stored." - -#: ../../godmode/setup/setup_general.php:224 -msgid "General options" -msgstr "General settings" - -#: ../../godmode/setup/setup_general.php:283 -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 "" -"If Enterprise ACL System is enabled without rules you will lose access to " -"Pandora FMS Console (even admin). Do you want to continue?" - -#: ../../godmode/setup/setup_netflow.php:41 -#: ../../include/functions_config.php:663 -msgid "Data storage path" -msgstr "Data storage path" - -#: ../../godmode/setup/setup_netflow.php:42 -msgid "Directory where netflow data will be stored." -msgstr "Directory where netflow data will be stored." - -#: ../../godmode/setup/setup_netflow.php:45 -#: ../../include/functions_config.php:665 -msgid "Daemon interval" -msgstr "Daemon interval" - -#: ../../godmode/setup/setup_netflow.php:46 -msgid "Specifies the time interval in seconds to rotate netflow data files." -msgstr "Specifies the time interval in seconds to rotate netflow data files." - -#: ../../godmode/setup/setup_netflow.php:49 -#: ../../include/functions_config.php:667 -msgid "Daemon binary path" -msgstr "Daemon binary path" - -#: ../../godmode/setup/setup_netflow.php:52 -#: ../../include/functions_config.php:669 -msgid "Nfdump binary path" -msgstr "Nfdump binary path" - -#: ../../godmode/setup/setup_netflow.php:55 -#: ../../include/functions_config.php:671 -msgid "Nfexpire binary path" -msgstr "Nfexpire binary path" - -#: ../../godmode/setup/setup_netflow.php:58 -#: ../../include/functions_config.php:673 -msgid "Maximum chart resolution" -msgstr "Maximum chart resolution" - -#: ../../godmode/setup/setup_netflow.php:58 -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." -msgstr "" -"Maximum number of points that a netflow area chart will display. Higher " -"resolutions take more time to render. Values between 50 and 100 are " -"recommended" - -#: ../../godmode/setup/setup_netflow.php:61 -#: ../../include/functions_config.php:675 -#: ../../enterprise/meta/advanced/metasetup.setup.php:187 -msgid "Disable custom live view filters" -msgstr "Disable custom live view filters" - -#: ../../godmode/setup/setup_netflow.php:62 -#: ../../enterprise/meta/advanced/metasetup.setup.php:187 -msgid "" -"Disable the definition of custom filters in the live view. Only existing " -"filters can be used." -msgstr "" -"Disable the definition of custom filters in the live view. Only existing " -"filters can be used." - -#: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:677 -#: ../../include/functions_config.php:683 -msgid "Netflow max lifetime" -msgstr "Max. Netflow lifespan" - -#: ../../godmode/setup/setup_netflow.php:65 -msgid "Sets the maximum lifetime for netflow data in days." -msgstr "Sets the max. lifespan for netflow data, in days." - -#: ../../godmode/setup/setup_netflow.php:68 -#: ../../include/functions_config.php:679 -msgid "Name resolution for IP address" -msgstr "Enable IP address name resolution" - -#: ../../godmode/setup/setup_netflow.php:69 -#: ../../operation/netflow/nf_live_view.php:284 -msgid "Resolve the IP addresses to get their hostnames." -msgstr "Resolves IP addresses in order to obtain the hostname" - -#: ../../godmode/setup/setup_netflow.php:70 -#: ../../operation/netflow/nf_live_view.php:274 -msgid "IP address resolution can take a lot of time" -msgstr "This process can take a long time" - -#: ../../godmode/setup/setup_visuals.php:75 -#: ../../include/functions_config.php:498 -msgid "Default interval for refresh on Visual Console" -msgstr "Default interval for Visual Console to refresh" - -#: ../../godmode/setup/setup_visuals.php:76 -msgid "This interval will affect to Visual Console pages" -msgstr "This interval will affect Visual Console pages" - -#: ../../godmode/setup/setup_visuals.php:80 -msgid "Paginated module view" -msgstr "Paginated module view" - -#: ../../godmode/setup/setup_visuals.php:85 -#: ../../include/functions_config.php:546 -#: ../../enterprise/meta/advanced/metasetup.visual.php:174 -#: ../../enterprise/meta/include/functions_meta.php:1257 -msgid "Display data of proc modules in other format" -msgstr "Display data of proc modules in other format" - -#: ../../godmode/setup/setup_visuals.php:95 -#: ../../include/functions_config.php:548 -#: ../../enterprise/meta/advanced/metasetup.visual.php:183 -#: ../../enterprise/meta/include/functions_meta.php:1262 -msgid "Display text proc modules have state is ok" -msgstr "Display text proc modules have state is ok" - -#: ../../godmode/setup/setup_visuals.php:99 -#: ../../include/functions_config.php:550 -#: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../enterprise/meta/include/functions_meta.php:1267 -msgid "Display text when proc modules have state critical" -msgstr "Display text when proc modules" - -#: ../../godmode/setup/setup_visuals.php:104 -msgid "Click to display lateral menus" -msgstr "Click to display lateral menus" - -#: ../../godmode/setup/setup_visuals.php:105 -msgid "" -"When enabled, the lateral menus are shown when left clicking them, instead " -"of hovering over them" -msgstr "" -"When enabled, the lateral menus are shown when left-clicked, not by hovering " -"over them." - -#: ../../godmode/setup/setup_visuals.php:117 -#: ../../include/functions_config.php:557 -msgid "Service label font size" -msgstr "Service label font size" - -#: ../../godmode/setup/setup_visuals.php:121 -msgid "Space between items in Service maps" -msgstr "Space between items in Service maps" - -#: ../../godmode/setup/setup_visuals.php:126 -#: ../../include/functions_config.php:564 -msgid "Classic menu mode" -msgstr "Classic menu mode" - -#: ../../godmode/setup/setup_visuals.php:127 -msgid "Text menu options always visible, don't hide" -msgstr "Text menu options always visible" - -#: ../../godmode/setup/setup_visuals.php:138 -msgid "Behaviour configuration" -msgstr "Behaviour configuration" - -#: ../../godmode/setup/setup_visuals.php:153 -#: ../../include/functions_config.php:455 -msgid "Style template" -msgstr "Style template" - -#: ../../godmode/setup/setup_visuals.php:158 -#: ../../include/functions_config.php:463 -msgid "Status icon set" -msgstr "Status icon set" - -#: ../../godmode/setup/setup_visuals.php:159 -msgid "Colors" -msgstr "Colours" - -#: ../../godmode/setup/setup_visuals.php:160 -msgid "Faces" -msgstr "Faces" - -#: ../../godmode/setup/setup_visuals.php:161 -msgid "Colors and text" -msgstr "Colours and text" - -#: ../../godmode/setup/setup_visuals.php:168 -#: ../../include/functions_config.php:482 -#: ../../enterprise/meta/advanced/metasetup.visual.php:207 -msgid "Login background" -msgstr "Login background" - -#: ../../godmode/setup/setup_visuals.php:169 -#: ../../enterprise/meta/advanced/metasetup.visual.php:208 -msgid "You can place your custom images into the folder images/backgrounds/" -msgstr "You can place custom images in the folder images/backgrounds/" - -#: ../../godmode/setup/setup_visuals.php:188 -#: ../../enterprise/meta/advanced/metasetup.visual.php:218 -msgid "Custom logo (header)" -msgstr "Custom logo (header)" - -#: ../../godmode/setup/setup_visuals.php:207 -#: ../../enterprise/meta/advanced/metasetup.visual.php:225 -msgid "Custom logo (login)" -msgstr "Custom logo (login)" - -#: ../../godmode/setup/setup_visuals.php:225 -#: ../../enterprise/meta/advanced/metasetup.visual.php:232 -msgid "Custom Splash (login)" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:238 -#: ../../enterprise/meta/advanced/metasetup.visual.php:239 -msgid "Title 1 (login)" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:245 -#: ../../enterprise/meta/advanced/metasetup.visual.php:243 -msgid "Title 2 (login)" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:250 -msgid "Disable logo in graphs" -msgstr "Disable logo in graphs" - -#: ../../godmode/setup/setup_visuals.php:264 -#: ../../include/functions_config.php:524 -msgid "Fixed header" -msgstr "Fixed header" - -#: ../../godmode/setup/setup_visuals.php:272 -#: ../../include/functions_config.php:526 -msgid "Fixed menu" -msgstr "Fixed menu" - -#: ../../godmode/setup/setup_visuals.php:280 -#: ../../include/functions_config.php:520 -msgid "Autohidden menu" -msgstr "Auto-hidden menu" - -#: ../../godmode/setup/setup_visuals.php:285 -msgid "Style configuration" -msgstr "Style configuration" - -#: ../../godmode/setup/setup_visuals.php:300 -#: ../../include/functions_config.php:514 -msgid "GIS Labels" -msgstr "GIS Labels" - -#: ../../godmode/setup/setup_visuals.php:301 -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." -msgstr "" -"Enabling this shows a label with the agent name on the GIS maps. If you have " -"a lot of agents on the map, it will be unreadable. Disabled by default." - -#: ../../godmode/setup/setup_visuals.php:312 -#: ../../include/functions_config.php:518 -msgid "Default icon in GIS" -msgstr "Default icon in GIS" - -#: ../../godmode/setup/setup_visuals.php:313 -msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used" -msgstr "Agent icon for GIS Maps. If set to \"none\", group icon will be used" - -#: ../../godmode/setup/setup_visuals.php:322 -msgid "GIS configuration" -msgstr "GIS configuration" - -#: ../../godmode/setup/setup_visuals.php:337 -#: ../../include/functions_config.php:465 -msgid "Font path" -msgstr "Font path" - -#: ../../godmode/setup/setup_visuals.php:367 -#: ../../include/functions_config.php:502 -#: ../../include/functions_config.php:504 -msgid "Agent size text" -msgstr "Agent text size" - -#: ../../godmode/setup/setup_visuals.php:368 -msgid "" -"When the agent name have a lot of characters, in some places in Pandora " -"Console it is necesary truncate to N characters." -msgstr "" -"When the agent name has a lot of characters, it is needed to truncate it " -"into N characters in some sections in Pandora Console." - -#: ../../godmode/setup/setup_visuals.php:369 -#: ../../godmode/setup/setup_visuals.php:377 -msgid "Small:" -msgstr "Small:" - -#: ../../godmode/setup/setup_visuals.php:371 -#: ../../godmode/setup/setup_visuals.php:379 -msgid "Normal:" -msgstr "Normal:" - -#: ../../godmode/setup/setup_visuals.php:375 -#: ../../include/functions_config.php:506 -msgid "Module size text" -msgstr "Module text size" - -#: ../../godmode/setup/setup_visuals.php:376 -msgid "" -"When the module name have a lot of characters, in some places in Pandora " -"Console it is necesary truncate to N characters." -msgstr "" -"When the module name has a lot of characters, it is necessary to truncate it " -"into N characters in some sections in Pandora Console." - -#: ../../godmode/setup/setup_visuals.php:383 -#: ../../include/functions_config.php:508 -#: ../../include/functions_config.php:510 -msgid "Description size text" -msgstr "Description text size" - -#: ../../godmode/setup/setup_visuals.php:383 -msgid "" -"When the description name have a lot of characters, in some places in " -"Pandora Console it is necesary truncate to N characters." -msgstr "" -"If the description name has a lot of characters, in some places in Pandora " -"Console it is necessary to truncate it to N characters." - -#: ../../godmode/setup/setup_visuals.php:387 -#: ../../include/functions_config.php:512 -msgid "Item title size text" -msgstr "Item title text size" - -#: ../../godmode/setup/setup_visuals.php:388 -msgid "" -"When the item title name have a lot of characters, in some places in Pandora " -"Console it is necesary truncate to N characters." -msgstr "" -"When the item title name has a lot of characters, it is needed to truncate " -"it into N characters in some sections in Pandora Console." - -#: ../../godmode/setup/setup_visuals.php:393 -msgid "Show unit along with value in reports" -msgstr "Show unit along with value in reports" - -#: ../../godmode/setup/setup_visuals.php:394 -msgid "This enabling this, max, min and avg values will be shown with units." -msgstr "When enabled, max, min and avg values are shown with units" - -#: ../../godmode/setup/setup_visuals.php:402 -msgid "Font and Text configuration" -msgstr "Font and text settings" - -#: ../../godmode/setup/setup_visuals.php:417 -#: ../../include/functions_config.php:426 -#: ../../enterprise/meta/advanced/metasetup.visual.php:99 -#: ../../enterprise/meta/include/functions_meta.php:1008 -msgid "Graph color (min)" -msgstr "Graph colour (min)" - -#: ../../godmode/setup/setup_visuals.php:421 -#: ../../include/functions_config.php:428 -#: ../../enterprise/meta/advanced/metasetup.visual.php:102 -#: ../../enterprise/meta/include/functions_meta.php:1018 -msgid "Graph color (avg)" -msgstr "Graph colour (avg)" - -#: ../../godmode/setup/setup_visuals.php:425 -#: ../../include/functions_config.php:430 -#: ../../enterprise/meta/advanced/metasetup.visual.php:105 -#: ../../enterprise/meta/include/functions_meta.php:1028 -msgid "Graph color (max)" -msgstr "Graph colour (max)" - -#: ../../godmode/setup/setup_visuals.php:429 -#: ../../include/functions_config.php:432 -msgid "Graph color #4" -msgstr "Graph colour #4" - -#: ../../godmode/setup/setup_visuals.php:433 -#: ../../include/functions_config.php:434 -msgid "Graph color #5" -msgstr "Graph colour #5" - -#: ../../godmode/setup/setup_visuals.php:437 -#: ../../include/functions_config.php:436 -msgid "Graph color #6" -msgstr "Graph colour #6" - -#: ../../godmode/setup/setup_visuals.php:441 -#: ../../include/functions_config.php:438 -msgid "Graph color #7" -msgstr "Graph colour #7" - -#: ../../godmode/setup/setup_visuals.php:445 -#: ../../include/functions_config.php:440 -msgid "Graph color #8" -msgstr "Graph colour #8" - -#: ../../godmode/setup/setup_visuals.php:449 -#: ../../include/functions_config.php:442 -msgid "Graph color #9" -msgstr "Graph colour #9" - -#: ../../godmode/setup/setup_visuals.php:453 -#: ../../include/functions_config.php:444 -msgid "Graph color #10" -msgstr "Graph colour #10" - -#: ../../godmode/setup/setup_visuals.php:457 -msgid "Graph resolution (1-low, 5-high)" -msgstr "Graph resolution (1-low, 5-high)" - -#: ../../godmode/setup/setup_visuals.php:461 -#: ../../include/functions_config.php:448 -#: ../../enterprise/meta/advanced/metasetup.visual.php:114 -#: ../../enterprise/meta/include/functions_meta.php:1058 -msgid "Value to interface graphics" -msgstr "Value to interface graphics" - -#: ../../godmode/setup/setup_visuals.php:470 -#: ../../include/functions_config.php:450 -#: ../../enterprise/meta/advanced/metasetup.visual.php:108 -#: ../../enterprise/meta/include/functions_meta.php:1038 -msgid "Data precision for reports" -msgstr "Data precision for reports" - -#: ../../godmode/setup/setup_visuals.php:471 -msgid "" -"Number of decimals shown in reports. It must be a number between 0 and 5" -msgstr "" -"Number of decimals shown in reports. It must be a number between 0 and 5" - -#: ../../godmode/setup/setup_visuals.php:475 -#: ../../include/functions_config.php:538 -msgid "Default line thickness for the Custom Graph." -msgstr "Default line width for the Custom Graph" - -#: ../../godmode/setup/setup_visuals.php:480 -#: ../../include/functions_config.php:459 -#: ../../enterprise/meta/advanced/metasetup.visual.php:120 -#: ../../enterprise/meta/include/functions_meta.php:1081 -msgid "Use round corners" -msgstr "Use round corners" - -#: ../../godmode/setup/setup_visuals.php:485 -#: ../../godmode/users/configure_user.php:515 -#: ../../include/functions_config.php:469 -#: ../../operation/users/user_edit.php:251 -#: ../../enterprise/meta/advanced/metasetup.visual.php:124 -#: ../../enterprise/meta/include/functions_meta.php:1091 -msgid "Interactive charts" -msgstr "Interactive charts" - -#: ../../godmode/setup/setup_visuals.php:486 -#: ../../godmode/users/configure_user.php:515 -#: ../../operation/users/user_edit.php:251 -#: ../../enterprise/meta/advanced/metasetup.visual.php:124 -msgid "Whether to use Javascript or static PNG graphs" -msgstr "Whether to use Javascript or static PNG graphs" - -#: ../../godmode/setup/setup_visuals.php:495 -#: ../../include/functions_config.php:534 -msgid "Shortened module graph data" -msgstr "Shortened module graph data" - -#: ../../godmode/setup/setup_visuals.php:496 -msgid "The data number of the module graphs will be rounded and shortened" -msgstr "The numeric data of module graphs will be rounded out and shortened." - -#: ../../godmode/setup/setup_visuals.php:506 -#: ../../enterprise/meta/advanced/metasetup.visual.php:128 -msgid "Type of module charts" -msgstr "Type of module charts" - -#: ../../godmode/setup/setup_visuals.php:515 -msgid "Type of interface charts" -msgstr "Type of interface charts" - -#: ../../godmode/setup/setup_visuals.php:524 -msgid "Show only average" -msgstr "Show only average" - -#: ../../godmode/setup/setup_visuals.php:525 -msgid "Hide Max and Min values in graphs" -msgstr "Hide Max and Min values in graphs" - -#: ../../godmode/setup/setup_visuals.php:533 -msgid "Show percentile 95 in graphs" -msgstr "Show percentile 95 in graphs" - -#: ../../godmode/setup/setup_visuals.php:538 -msgid "Charts configuration" -msgstr "Chart settings" - -#: ../../godmode/setup/setup_visuals.php:554 -#: ../../include/functions_config.php:500 -msgid "Default line thickness for the Visual Console" -msgstr "Default line width for the Visual Console" - -#: ../../godmode/setup/setup_visuals.php:554 -msgid "" -"This interval will affect to the lines between elements on the Visual Console" -msgstr "" -"This interval will affect to the lines between elements on the Visual Console" - -#: ../../godmode/setup/setup_visuals.php:559 -msgid "Show report info with description" -msgstr "Show report info with description" - -#: ../../godmode/setup/setup_visuals.php:561 -msgid "" -"Custom report description info. It will be applied to all reports and " -"templates by default." -msgstr "" -"Custom report description info. Applied to all reports and templates by " -"default." - -#: ../../godmode/setup/setup_visuals.php:569 -#: ../../enterprise/meta/advanced/metasetup.visual.php:247 -msgid "Custom report front page" -msgstr "Front page for custom reports" - -#: ../../godmode/setup/setup_visuals.php:571 -#: ../../enterprise/meta/advanced/metasetup.visual.php:247 -msgid "" -"Custom report front page. It will be applied to all reports and templates by " -"default." -msgstr "" -"It's the custom report's front page. It'll be applied to all reports and " -"templates by default." - -#: ../../godmode/setup/setup_visuals.php:593 -#: ../../godmode/setup/setup_visuals.php:599 -#: ../../godmode/setup/setup_visuals.php:612 -#: ../../godmode/setup/setup_visuals.php:620 -#: ../../godmode/setup/setup_visuals.php:625 -#: ../../godmode/setup/setup_visuals.php:633 -#: ../../include/functions_config.php:643 -#: ../../include/functions_config.php:646 -#: ../../include/functions_config.php:649 -#: ../../include/functions_config.php:652 -#: ../../include/functions_config.php:655 -#: ../../include/functions_config.php:658 -#: ../../enterprise/meta/advanced/metasetup.visual.php:250 -#: ../../enterprise/meta/advanced/metasetup.visual.php:253 -#: ../../enterprise/meta/advanced/metasetup.visual.php:257 -#: ../../enterprise/meta/advanced/metasetup.visual.php:263 -#: ../../enterprise/meta/advanced/metasetup.visual.php:267 -#: ../../enterprise/meta/advanced/metasetup.visual.php:274 -#: ../../enterprise/meta/include/functions_meta.php:1227 -#: ../../enterprise/meta/include/functions_meta.php:1232 -#: ../../enterprise/meta/include/functions_meta.php:1237 -#: ../../enterprise/meta/include/functions_meta.php:1242 -#: ../../enterprise/meta/include/functions_meta.php:1247 -#: ../../enterprise/meta/include/functions_meta.php:1252 -msgid "Custom report front" -msgstr "Front side custom report" - -#: ../../godmode/setup/setup_visuals.php:593 -#: ../../include/functions_config.php:646 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:82 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:116 -#: ../../enterprise/meta/advanced/metasetup.visual.php:250 -#: ../../enterprise/meta/include/functions_meta.php:1232 -msgid "Font family" -msgstr "Font family" - -#: ../../godmode/setup/setup_visuals.php:600 -#: ../../include/functions_config.php:472 -#: ../../include/functions_config.php:649 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:85 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:119 -#: ../../enterprise/meta/advanced/metasetup.visual.php:253 -#: ../../enterprise/meta/include/functions_meta.php:1131 -#: ../../enterprise/meta/include/functions_meta.php:1237 -msgid "Custom logo" -msgstr "Custom logo" - -#: ../../godmode/setup/setup_visuals.php:602 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:87 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:121 -#: ../../enterprise/meta/advanced/metasetup.visual.php:255 -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." -msgstr "" -"The directory for custom logos can be found on the Pandora Console under " -"\"images/custom_logo\". You can upload more files (ONLY IN JPEG) using the " -"console's upload tool." - -#: ../../godmode/setup/setup_visuals.php:620 -#: ../../include/functions_config.php:652 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 -#: ../../enterprise/meta/advanced/metasetup.visual.php:263 -#: ../../enterprise/meta/include/functions_meta.php:1242 -msgid "Header" -msgstr "Header" - -#: ../../godmode/setup/setup_visuals.php:625 -#: ../../include/functions_config.php:655 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:133 -#: ../../enterprise/meta/advanced/metasetup.visual.php:267 -#: ../../enterprise/meta/include/functions_meta.php:1247 -msgid "First page" -msgstr "First page" - -#: ../../godmode/setup/setup_visuals.php:633 -#: ../../include/functions_config.php:658 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137 -#: ../../enterprise/meta/advanced/metasetup.visual.php:274 -#: ../../enterprise/meta/include/functions_meta.php:1252 -msgid "Footer" -msgstr "Footer" - -#: ../../godmode/setup/setup_visuals.php:640 -msgid "Show QR Code icon in the header" -msgstr "Display the QR Code's icon on the header" - -#: ../../godmode/setup/setup_visuals.php:651 -#: ../../include/functions_config.php:530 -msgid "Custom graphviz directory" -msgstr "Custom graphviz directory" - -#: ../../godmode/setup/setup_visuals.php:652 -msgid "Custom directory where the graphviz binaries are stored." -msgstr "Custom directory in which graphviz binaries are stored." - -#: ../../godmode/setup/setup_visuals.php:658 -#: ../../include/functions_config.php:532 -msgid "Networkmap max width" -msgstr "Networkmap max width" - -#: ../../godmode/setup/setup_visuals.php:665 -#: ../../enterprise/meta/advanced/metasetup.visual.php:163 -#: ../../enterprise/meta/include/functions_meta.php:1121 -msgid "Show only the group name" -msgstr "Show only the group's name" - -#: ../../godmode/setup/setup_visuals.php:667 -#: ../../include/functions_config.php:536 -#: ../../enterprise/meta/advanced/metasetup.visual.php:165 -msgid "Show the group name instead the group icon." -msgstr "Show group name instead of group icon" - -#: ../../godmode/setup/setup_visuals.php:677 -#: ../../include/functions_config.php:422 -#: ../../enterprise/meta/advanced/metasetup.visual.php:81 -#: ../../enterprise/meta/include/functions_meta.php:988 -msgid "Date format string" -msgstr "Date format string" - -#: ../../godmode/setup/setup_visuals.php:678 -#: ../../enterprise/meta/advanced/metasetup.visual.php:82 -msgid "Example" -msgstr "Example" - -#: ../../godmode/setup/setup_visuals.php:690 -#: ../../include/functions_config.php:424 -#: ../../enterprise/meta/advanced/metasetup.visual.php:93 -#: ../../enterprise/meta/include/functions_meta.php:998 -msgid "Timestamp or time comparation" -msgstr "Timestamp or time comparison" - -#: ../../godmode/setup/setup_visuals.php:691 -#: ../../enterprise/meta/advanced/metasetup.visual.php:94 -msgid "Comparation in rollover" -msgstr "Rollover comparison" - -#: ../../godmode/setup/setup_visuals.php:693 -#: ../../enterprise/meta/advanced/metasetup.visual.php:96 -msgid "Timestamp in rollover" -msgstr "Timestamp in rollover" - -#: ../../godmode/setup/setup_visuals.php:701 -msgid "Custom values post process" -msgstr "Custom value post processing" - -#: ../../godmode/setup/setup_visuals.php:715 -msgid "Delete custom values" -msgstr "Delete custom values" - -#: ../../godmode/setup/setup_visuals.php:735 -msgid "Interval values" -msgstr "Interval values" - -#: ../../godmode/setup/setup_visuals.php:738 ../../include/functions.php:434 -#: ../../include/functions.php:568 ../../include/functions_html.php:729 -#: ../../enterprise/extensions/vmware/functions.php:21 -#: ../../enterprise/extensions/vmware/functions.php:22 -#: ../../enterprise/extensions/vmware/functions.php:23 -#: ../../enterprise/extensions/vmware/functions.php:24 -#: ../../enterprise/meta/advanced/metasetup.visual.php:141 -msgid "minutes" -msgstr "minutes" - -#: ../../godmode/setup/setup_visuals.php:739 ../../include/functions.php:435 -#: ../../include/functions.php:569 ../../include/functions_html.php:730 -#: ../../enterprise/meta/advanced/metasetup.visual.php:142 -msgid "hours" -msgstr "hours" - -#: ../../godmode/setup/setup_visuals.php:741 ../../include/functions.php:432 -#: ../../include/functions.php:566 ../../include/functions_html.php:733 -#: ../../enterprise/meta/advanced/metasetup.visual.php:144 -msgid "months" -msgstr "months" - -#: ../../godmode/setup/setup_visuals.php:742 ../../include/functions.php:433 -#: ../../include/functions.php:567 ../../include/functions_html.php:734 -#: ../../enterprise/meta/advanced/metasetup.visual.php:145 -msgid "years" -msgstr "years" - -#: ../../godmode/setup/setup_visuals.php:743 -#: ../../enterprise/meta/advanced/metasetup.visual.php:146 -msgid "Add new custom value to intervals" -msgstr "Add new custom value to intervals" - -#: ../../godmode/setup/setup_visuals.php:749 -#: ../../include/functions_config.php:634 -#: ../../enterprise/meta/advanced/metasetup.visual.php:152 -#: ../../enterprise/meta/include/functions_meta.php:1221 -msgid "Delete interval" -msgstr "Delete interval" - -#: ../../godmode/setup/setup_visuals.php:760 -msgid "Other configuration" -msgstr "Other configuration" - -#: ../../godmode/setup/setup_visuals.php:948 -#: ../../godmode/setup/setup_visuals.php:988 -#: ../../enterprise/meta/advanced/metasetup.visual.php:399 -#: ../../enterprise/meta/advanced/metasetup.visual.php:439 -msgid "Logo preview" -msgstr "Logo preview" - -#: ../../godmode/setup/setup_visuals.php:1028 -#: ../../enterprise/meta/advanced/metasetup.visual.php:479 -msgid "Splash Preview" -msgstr "" - -#: ../../godmode/setup/setup_visuals.php:1069 -#: ../../enterprise/meta/advanced/metasetup.visual.php:519 -msgid "Background preview" -msgstr "Background preview" - -#: ../../godmode/setup/setup_visuals.php:1113 -msgid "Gis icons preview" -msgstr "GIS icon preview" - -#: ../../godmode/setup/setup_visuals.php:1168 -msgid "Status set preview" -msgstr "Status set preview" - -#: ../../godmode/setup/snmp_wizard.php:43 -#: ../../enterprise/godmode/setup/setup_auth.php:427 -#: ../../enterprise/godmode/setup/setup_auth.php:468 -msgid "OP" -msgstr "OP" - -#: ../../godmode/setup/snmp_wizard.php:166 -msgid "Unsucessful update the snmp translation" -msgstr "SNMP translation failed to update" - -#: ../../godmode/setup/snmp_wizard.php:173 -msgid "Unsucessful update the snmp translation." -msgstr "SNMP translation failed to update." - -#: ../../godmode/setup/snmp_wizard.php:221 -msgid "Unsucessful delete the snmp translation" -msgstr "SNMP translation failed to delete" - -#: ../../godmode/setup/snmp_wizard.php:228 -msgid "Unsucessful delete the snmp translation." -msgstr "SNMP translation failed to delete." - -#: ../../godmode/setup/snmp_wizard.php:289 -msgid "Unsucessful save the snmp translation" -msgstr "SNMP translation failed to save" - -#: ../../godmode/setup/snmp_wizard.php:298 -msgid "Unsucessful save the snmp translation." -msgstr "SNMP translation failed to save." - -#: ../../godmode/snmpconsole/snmp_alert.php:28 -#: ../../operation/snmpconsole/snmp_view.php:424 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:817 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -msgid "Cold start (0)" -msgstr "Cold start (0)" - -#: ../../godmode/snmpconsole/snmp_alert.php:29 -#: ../../operation/snmpconsole/snmp_view.php:425 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:820 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 -msgid "Warm start (1)" -msgstr "Warm start (1)" - -#: ../../godmode/snmpconsole/snmp_alert.php:30 -#: ../../operation/snmpconsole/snmp_view.php:426 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:823 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 -msgid "Link down (2)" -msgstr "Link down (2)" - -#: ../../godmode/snmpconsole/snmp_alert.php:31 -#: ../../operation/snmpconsole/snmp_view.php:427 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:826 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 -msgid "Link up (3)" -msgstr "Link up (3)" - -#: ../../godmode/snmpconsole/snmp_alert.php:32 -#: ../../operation/snmpconsole/snmp_view.php:428 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:829 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 -msgid "Authentication failure (4)" -msgstr "Authentication failure (4)" - -#: ../../godmode/snmpconsole/snmp_alert.php:78 -#: ../../godmode/snmpconsole/snmp_alert.php:82 -#: ../../godmode/snmpconsole/snmp_alert.php:86 -#: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../godmode/snmpconsole/snmp_filters.php:38 -#: ../../godmode/snmpconsole/snmp_filters.php:42 -#: ../../operation/snmpconsole/snmp_statistics.php:64 -#: ../../operation/snmpconsole/snmp_view.php:466 -#: ../../operation/snmpconsole/snmp_view.php:553 -msgid "SNMP Console" -msgstr "SNMP Console" - -#: ../../godmode/snmpconsole/snmp_alert.php:78 -msgid "Update alert" -msgstr "Update alert" - -#: ../../godmode/snmpconsole/snmp_alert.php:82 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:455 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:533 -msgid "Create alert" -msgstr "Create alert" - -#: ../../godmode/snmpconsole/snmp_alert.php:86 -msgid "Alert overview" -msgstr "Alert overview" - -#: ../../godmode/snmpconsole/snmp_alert.php:243 -msgid "There was a problem creating the alert" -msgstr "There was a problem creating the alert" - -#: ../../godmode/snmpconsole/snmp_alert.php:314 -msgid "There was a problem updating the alert" -msgstr "There was a problem updating the alert" - -#: ../../godmode/snmpconsole/snmp_alert.php:536 -msgid "There was a problem duplicating the alert" -msgstr "There was a problem duplicating the alert" - -#: ../../godmode/snmpconsole/snmp_alert.php:540 -msgid "Successfully Duplicate" -msgstr "Duplicate successful" - -#: ../../godmode/snmpconsole/snmp_alert.php:556 -msgid "There was a problem deleting the alert" -msgstr "There was a problem deleting the alert" - -#: ../../godmode/snmpconsole/snmp_alert.php:585 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:137 -#, php-format -msgid "Successfully deleted alerts (%s / %s)" -msgstr "Successfully deleted alerts (%s / %s)" - -#: ../../godmode/snmpconsole/snmp_alert.php:589 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:141 -#, php-format -msgid "Unsuccessfully deleted alerts (%s / %s)" -msgstr "Unsuccessfully deleted alerts (%s / %s)" - -#: ../../godmode/snmpconsole/snmp_alert.php:637 -#: ../../godmode/snmpconsole/snmp_alert.php:1157 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:72 -#: ../../operation/snmpconsole/snmp_view.php:605 -msgid "Enterprise String" -msgstr "Enterprise String" - -#: ../../godmode/snmpconsole/snmp_alert.php:643 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:245 -msgid "Custom Value/OID" -msgstr "Custom Value/OID" - -#: ../../godmode/snmpconsole/snmp_alert.php:652 -#: ../../godmode/snmpconsole/snmp_alert.php:1153 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:78 -#: ../../operation/snmpconsole/snmp_view.php:601 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:247 -msgid "SNMP Agent" -msgstr "SNMP Agent" - -#: ../../godmode/snmpconsole/snmp_alert.php:664 -#: ../../godmode/snmpconsole/snmp_alert.php:1003 -#: ../../operation/snmpconsole/snmp_view.php:420 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:169 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:220 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:249 -msgid "Trap type" -msgstr "Trap type" - -#: ../../godmode/snmpconsole/snmp_alert.php:669 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:251 -msgid "Single value" -msgstr "Single value" - -#: ../../godmode/snmpconsole/snmp_alert.php:676 -#: ../../godmode/snmpconsole/snmp_alert.php:686 -#: ../../godmode/snmpconsole/snmp_alert.php:696 -#: ../../godmode/snmpconsole/snmp_alert.php:708 -#: ../../godmode/snmpconsole/snmp_alert.php:720 -#: ../../godmode/snmpconsole/snmp_alert.php:732 -#: ../../godmode/snmpconsole/snmp_alert.php:744 -#: ../../godmode/snmpconsole/snmp_alert.php:754 -#: ../../godmode/snmpconsole/snmp_alert.php:764 -#: ../../godmode/snmpconsole/snmp_alert.php:774 -#: ../../godmode/snmpconsole/snmp_alert.php:784 -#: ../../godmode/snmpconsole/snmp_alert.php:793 -#: ../../godmode/snmpconsole/snmp_alert.php:802 -#: ../../godmode/snmpconsole/snmp_alert.php:811 -#: ../../godmode/snmpconsole/snmp_alert.php:820 -#: ../../godmode/snmpconsole/snmp_alert.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:838 -#: ../../godmode/snmpconsole/snmp_alert.php:846 -#: ../../godmode/snmpconsole/snmp_alert.php:854 -#: ../../godmode/snmpconsole/snmp_alert.php:862 -msgid "Variable bindings/Data" -msgstr "Variable bindings/Data" - -#: ../../godmode/snmpconsole/snmp_alert.php:933 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270 -msgid "Other value" -msgstr "Other value" - -#: ../../godmode/snmpconsole/snmp_alert.php:946 -#: ../../godmode/snmpconsole/snmp_alert.php:1151 -msgid "Alert action" -msgstr "Alert action" - -#: ../../godmode/snmpconsole/snmp_alert.php:1000 -msgid "" -"Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -"Single value, each Variable bindings/Datas." -msgstr "" -"Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -"Single value, each Variable bindings/Datas." - -#: ../../godmode/snmpconsole/snmp_alert.php:1019 -msgid "Alert SNMP control filter" -msgstr "Alert SNMP control filter" - -#: ../../godmode/snmpconsole/snmp_alert.php:1112 -msgid "There are no SNMP alerts" -msgstr "There are no SNMP alerts" - -#: ../../godmode/snmpconsole/snmp_alert.php:1160 -msgid "Custom Value/Enterprise String" -msgstr "Custom Value/Enterprise String" - -#: ../../godmode/snmpconsole/snmp_alert.php:1165 -#: ../../include/functions_reporting_html.php:2882 -#: ../../include/functions_reporting_html.php:3110 -#: ../../include/functions_treeview.php:423 -msgid "Times fired" -msgstr "Times fired" - -#: ../../godmode/snmpconsole/snmp_alert.php:1165 -msgid "TF." -msgstr "TF." - -#: ../../godmode/snmpconsole/snmp_alert.php:1256 -msgid "ID Alert SNMP" -msgstr "SNMP Alert ID" - -#: ../../godmode/snmpconsole/snmp_alert.php:1487 -msgid "Add action " -msgstr "Add Action " - -#: ../../godmode/snmpconsole/snmp_filters.php:42 -msgid "Filter overview" -msgstr "Filter overview" - -#: ../../godmode/snmpconsole/snmp_filters.php:51 -msgid "There was a problem updating the filter" -msgstr "There was a problem updating the filter" - -#: ../../godmode/snmpconsole/snmp_filters.php:63 -msgid "There was a problem creating the filter" -msgstr "There was a problem creating the filter" - -#: ../../godmode/snmpconsole/snmp_filters.php:73 -msgid "There was a problem deleting the filter" -msgstr "There was a problem deleting the filter" - -#: ../../godmode/snmpconsole/snmp_filters.php:98 -msgid "" -"This field contains a substring, could be part of a IP address, a numeric " -"OID, or a plain substring" -msgstr "" -"This field contains a substring which could be part of an IP address, a " -"numeric OID, or a plain substring." - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:37 -msgid "SNMP Trap generator" -msgstr "SNMP Trap generator" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -msgid "Empty parameters" -msgstr "Empty parameters" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:56 -msgid "Successfully generated" -msgstr "Successfully generated" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:57 -#, php-format -msgid "Could not be generated: %s" -msgstr "Could not be generated: %s" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:81 -msgid "SNMP Type" -msgstr "SNMP Type" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:89 -msgid "Generate trap" -msgstr "Generate trap" - -#: ../../godmode/tag/edit_tag.php:53 ../../godmode/tag/edit_tag.php:64 -#: ../../godmode/tag/tag.php:100 -msgid "List tags" -msgstr "List tags" - -#: ../../godmode/tag/edit_tag.php:68 ../../godmode/tag/tag.php:110 -msgid "Tags configuration" -msgstr "Tag settings" - -#: ../../godmode/tag/edit_tag.php:92 -msgid "Error updating tag" -msgstr "Error updating tag" - -#: ../../godmode/tag/edit_tag.php:96 -msgid "Successfully updated tag" -msgstr "Successfully updated tag" - -#: ../../godmode/tag/edit_tag.php:122 -msgid "Error creating tag" -msgstr "Error creating tag" - -#: ../../godmode/tag/edit_tag.php:128 -msgid "Successfully created tag" -msgstr "Successfully created tag" - -#: ../../godmode/tag/edit_tag.php:161 -msgid "Update Tag" -msgstr "Update Tag" - -#: ../../godmode/tag/edit_tag.php:164 -msgid "Create Tag" -msgstr "Create Tag" - -#: ../../godmode/tag/edit_tag.php:185 -#: ../../include/functions_reporting.php:3843 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1666 -#: ../../enterprise/meta/include/functions_wizard_meta.php:521 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:108 -msgid "Url" -msgstr "URL" - -#: ../../godmode/tag/edit_tag.php:187 -msgid "Hyperlink to help information that has to exist previously." -msgstr "Hyperlink to help information that has to exist previously." - -#: ../../godmode/tag/edit_tag.php:197 -msgid "Associated Email direction to use later in alerts associated to Tags." -msgstr "" -"Associated E-mail direction to use later in alerts associated to Tags." - -#: ../../godmode/tag/edit_tag.php:205 ../../godmode/tag/tag.php:204 -#: ../../godmode/users/user_list.php:406 -msgid "Phone" -msgstr "Phone" - -#: ../../godmode/tag/edit_tag.php:207 -msgid "Associated phone number to use later in alerts associated to Tags." -msgstr "Phone number linked for use later in alerts related to tags." - -#: ../../godmode/tag/tag.php:80 -msgid "Number of modules" -msgstr "Number of modules" - -#: ../../godmode/tag/tag.php:82 -msgid "Number of policy modules" -msgstr "Number of policy modules" - -#: ../../godmode/tag/tag.php:121 -msgid "Error deleting tag" -msgstr "Error deleting tag" - -#: ../../godmode/tag/tag.php:125 -msgid "Successfully deleted tag" -msgstr "Tag successfully deleted" - -#: ../../godmode/tag/tag.php:199 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1651 -msgid "Tag name" -msgstr "Tag name" - -#: ../../godmode/tag/tag.php:201 -msgid "Detail information" -msgstr "Detail information" - -#: ../../godmode/tag/tag.php:202 -msgid "Number of modules affected" -msgstr "Number of modules affected" - -#: ../../godmode/tag/tag.php:222 -msgid "Tag details" -msgstr "Tag details" - -#: ../../godmode/tag/tag.php:249 -#, php-format -msgid "Emails for the tag: %s" -msgstr "E-mails for the tag: %s" - -#: ../../godmode/tag/tag.php:264 -#, php-format -msgid "Phones for the tag: %s" -msgstr "Phone numbers for the tag: %s" - -#: ../../godmode/tag/tag.php:282 -msgid "No tags defined" -msgstr "No tags defined" - -#: ../../godmode/tag/tag.php:298 -msgid "Create tag" -msgstr "Create tag" - -#: ../../godmode/update_manager/update_manager.messages.php:96 -#: ../../godmode/update_manager/update_manager.messages.php:170 -msgid "Mark as not read" -msgstr "Mark as not read" - -#: ../../godmode/update_manager/update_manager.messages.php:101 -#: ../../godmode/update_manager/update_manager.messages.php:175 -msgid "Mark as read" -msgstr "Mark as read" - -#: ../../godmode/update_manager/update_manager.messages.php:186 -msgid "There is not any update manager messages." -msgstr "There are not any update manager messages." - -#: ../../godmode/update_manager/update_manager.offline.php:37 -msgid "Drop the package here or" -msgstr "Please drop the package here or" - -#: ../../godmode/update_manager/update_manager.offline.php:38 -msgid "browse it" -msgstr "browse it" - -#: ../../godmode/update_manager/update_manager.offline.php:39 -msgid "The package has been uploaded successfully." -msgstr "The package has been uploaded successfully." - -#: ../../godmode/update_manager/update_manager.offline.php:40 -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." -msgstr "" -"Please keep in mind that this package is going to override your actual " -"Pandora FMS files and that it's recommended to conduct a backup before " -"continuing the updating process." - -#: ../../godmode/update_manager/update_manager.offline.php:41 -msgid "Click on the file below to begin." -msgstr "Please click on the file below to begin." - -#: ../../godmode/update_manager/update_manager.offline.php:42 -msgid "Updating" -msgstr "Updating" - -#: ../../godmode/update_manager/update_manager.offline.php:43 -msgid "Package updated successfully." -msgstr "Package updated successfully." - -#: ../../godmode/update_manager/update_manager.offline.php:44 -msgid "" -"If there are any database change, it will be applied on the next login." -msgstr "" -"If there are any database changes, they will be applied on the next login." - -#: ../../godmode/update_manager/update_manager.offline.php:45 -#: ../../include/functions_update_manager.php:345 -#: ../../enterprise/include/functions_update_manager.php:177 -msgid "Minor release available" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:46 -#: ../../include/functions_update_manager.php:346 -#: ../../enterprise/include/functions_update_manager.php:178 -msgid "New package available" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:47 -#: ../../godmode/update_manager/update_manager.offline.php:49 -#: ../../include/functions_update_manager.php:347 -#: ../../include/functions_update_manager.php:349 -#: ../../enterprise/include/functions_update_manager.php:179 -#: ../../enterprise/include/functions_update_manager.php:181 -msgid "Minor release rejected. Changes will not apply." -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:48 -#: ../../include/functions_update_manager.php:348 -#: ../../enterprise/include/functions_update_manager.php:180 -msgid "" -"Minor release rejected. The database will not be updated and the package " -"will apply." -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:50 -#: ../../include/functions_update_manager.php:350 -#: ../../enterprise/include/functions_update_manager.php:182 -msgid "These package changes will not apply." -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:51 -#: ../../include/functions_update_manager.php:351 -#: ../../enterprise/include/functions_update_manager.php:183 -msgid "Package rejected. These package changes will not apply." -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:52 -#: ../../include/functions_update_manager.php:352 -#: ../../enterprise/include/functions_update_manager.php:184 -msgid "Database successfully updated" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:53 -#: ../../include/functions_update_manager.php:353 -#: ../../enterprise/include/functions_update_manager.php:185 -msgid "Error in MR file" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:54 -#: ../../include/functions_update_manager.php:354 -#: ../../enterprise/include/functions_update_manager.php:186 -msgid "Package updated successfully" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:55 -#: ../../include/functions_update_manager.php:355 -#: ../../enterprise/include/functions_update_manager.php:187 -msgid "Error in package updated" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:56 -#: ../../include/functions_update_manager.php:356 -#: ../../enterprise/include/functions_update_manager.php:188 -msgid "" -"Database MR version is inconsistent, do you want to apply the package?" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:57 -#: ../../include/functions_update_manager.php:357 -#: ../../enterprise/include/functions_update_manager.php:189 -msgid "There are db changes" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:58 -#: ../../include/functions_update_manager.php:358 -msgid "" -"There are a new database changes available to apply. Do you want to start " -"the DB update process?" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:59 -#: ../../include/functions_update_manager.php:359 -msgid "We recommend launch a " -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:60 -#: ../../include/functions_update_manager.php:360 -#: ../../enterprise/include/functions_update_manager.php:192 -msgid "planned downtime" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:61 -#: ../../include/functions_update_manager.php:361 -#: ../../enterprise/include/functions_update_manager.php:193 -msgid " to this process" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:62 -#: ../../include/functions_update_manager.php:362 -#: ../../enterprise/include/functions_update_manager.php:194 -msgid "There is a new update available" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:63 -#: ../../include/functions_update_manager.php:363 -#: ../../enterprise/include/functions_update_manager.php:195 -msgid "" -"There is a new update available to apply. Do you want to start the update " -"process?" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:64 -#: ../../include/functions_update_manager.php:364 -#: ../../enterprise/include/functions_update_manager.php:196 -msgid "Applying DB MR" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:67 -#: ../../include/functions_update_manager.php:367 -#: ../../enterprise/include/functions_update_manager.php:199 -msgid "Apply MR" -msgstr "" - -#: ../../godmode/update_manager/update_manager.offline.php:68 -#: ../../include/functions_update_manager.php:368 -#: ../../include/functions_visual_map_editor.php:367 -#: ../../enterprise/godmode/policies/policy_agents.php:381 -#: ../../enterprise/godmode/policies/policy_queue.php:415 -#: ../../enterprise/include/functions_update_manager.php:200 -#: ../../enterprise/meta/advanced/policymanager.apply.php:215 -#: ../../enterprise/meta/advanced/policymanager.queue.php:306 -msgid "Apply" -msgstr "Apply" - -#: ../../godmode/update_manager/update_manager.online.php:48 -#, php-format -msgid "" -"Your PHP has set memory limit in %s. For avoid problems with big updates " -"please set to 500M" -msgstr "" -"Your PHP has set memory limit in %s. For avoid problems with big updates " -"please set to 500M" - -#: ../../godmode/update_manager/update_manager.online.php:55 -#, php-format -msgid "" -"Your PHP has set post parameter max size limit in %s. For avoid problems " -"with big updates please set to 100M" -msgstr "" -"Your PHP has set post parameter max size limit in %s. For avoid problems " -"with big updates please set to 100M" - -#: ../../godmode/update_manager/update_manager.online.php:62 -#, 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" -msgstr "" -"Your PHP has set maximum allowed size for uploaded files limit in %s. For " -"avoid problems with big updates please set to 100M" - -#: ../../godmode/update_manager/update_manager.online.php:85 -msgid "The last version of package installed is:" -msgstr "The last version of package installed is:" - -#: ../../godmode/update_manager/update_manager.online.php:89 -msgid "Checking for the newest package." -msgstr "Checking for the latest package." - -#: ../../godmode/update_manager/update_manager.online.php:93 -msgid "Downloading for the newest package." -msgstr "Downloading the latest package" - -#: ../../godmode/update_manager/update_manager.php:39 -msgid "Offline update manager" -msgstr "Offline Update Manager" - -#: ../../godmode/update_manager/update_manager.php:43 -msgid "Online update manager" -msgstr "Online Update Manager" - -#: ../../godmode/update_manager/update_manager.php:50 -msgid "Update manager messages" -msgstr "Update manager messages" - -#: ../../godmode/update_manager/update_manager.php:55 -msgid "Update manager » Setup" -msgstr "Update Manager Setup" - -#: ../../godmode/update_manager/update_manager.php:58 -msgid "Update manager » Offline" -msgstr "Offline Update Manager" - -#: ../../godmode/update_manager/update_manager.php:61 -msgid "Update manager » Online" -msgstr "Online Update Manager" - -#: ../../godmode/update_manager/update_manager.php:64 -msgid "Update manager » Messages" -msgstr "Update manager » Messages" - -#: ../../godmode/update_manager/update_manager.setup.php:58 -#: ../../godmode/update_manager/update_manager.setup.php:87 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:58 -msgid "Succesful Update the url config vars." -msgstr "URL configuration variables successfully updated." - -#: ../../godmode/update_manager/update_manager.setup.php:59 -#: ../../godmode/update_manager/update_manager.setup.php:88 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:59 -msgid "Unsuccesful Update the url config vars." -msgstr "Unsuccessful in updating the URL configuration variables." - -#: ../../godmode/update_manager/update_manager.setup.php:100 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:70 -msgid "URL update manager:" -msgstr "Update manager URL" - -#: ../../godmode/update_manager/update_manager.setup.php:102 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:72 -msgid "URL update manager" -msgstr "Update Manager URL" - -#: ../../godmode/update_manager/update_manager.setup.php:104 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:74 -msgid "Proxy server:" -msgstr "Proxy server:" - -#: ../../godmode/update_manager/update_manager.setup.php:106 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:76 -msgid "Proxy server" -msgstr "Proxy server" - -#: ../../godmode/update_manager/update_manager.setup.php:108 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:78 -msgid "Proxy port:" -msgstr "Proxy port:" - -#: ../../godmode/update_manager/update_manager.setup.php:110 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:80 -msgid "Proxy port" -msgstr "Proxy port" - -#: ../../godmode/update_manager/update_manager.setup.php:112 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:82 -msgid "Proxy user:" -msgstr "Proxy user:" - -#: ../../godmode/update_manager/update_manager.setup.php:114 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:84 -msgid "Proxy user" -msgstr "Proxy user" - -#: ../../godmode/update_manager/update_manager.setup.php:116 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:86 -msgid "Proxy password:" -msgstr "Proxy password:" - -#: ../../godmode/update_manager/update_manager.setup.php:118 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:88 -msgid "Proxy password" -msgstr "Proxy password" - -#: ../../godmode/update_manager/update_manager.setup.php:122 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:92 -msgid "Pandora FMS community reminder" -msgstr "Pandora FMS community reminder" - -#: ../../godmode/update_manager/update_manager.setup.php:123 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:93 -msgid "" -"Every 8 days, a message is displayed to admin users to remember to register " -"this Pandora instance" -msgstr "" -"Every 8 days, a message is displayed to admin users to remind them to " -"register this Pandora instance" - -#: ../../godmode/users/configure_profile.php:41 -#: ../../godmode/users/configure_profile.php:49 -#: ../../godmode/users/configure_user.php:82 -#: ../../godmode/users/profile_list.php:45 -#: ../../godmode/users/profile_list.php:53 -#: ../../godmode/users/user_list.php:113 ../../godmode/users/user_list.php:121 -#: ../../enterprise/meta/general/main_header.php:243 -#: ../../enterprise/meta/general/main_header.php:309 -#: ../../enterprise/meta/include/functions_users_meta.php:168 -#: ../../enterprise/meta/include/functions_users_meta.php:187 -msgid "User management" -msgstr "User management" - -#: ../../godmode/users/configure_profile.php:49 -#: ../../godmode/users/profile_list.php:53 -msgid "Profiles defined in Pandora" -msgstr "Profiles defined on Pandora" - -#: ../../godmode/users/configure_profile.php:113 -msgid "Create profile" -msgstr "Create profile" - -#: ../../godmode/users/configure_profile.php:119 -msgid "There was a problem loading profile" -msgstr "There was a problem loading the profile" - -#: ../../godmode/users/configure_profile.php:219 -msgid "Update profile" -msgstr "Update profile" - -#: ../../godmode/users/configure_profile.php:229 -msgid "Update Profile" -msgstr "Update Profile" - -#: ../../godmode/users/configure_profile.php:231 -msgid "Create Profile" -msgstr "Create Profile" - -#: ../../godmode/users/configure_profile.php:249 -msgid "View agents" -msgstr "View agents" - -#: ../../godmode/users/configure_profile.php:253 -msgid "Disable agents" -msgstr "Disable agents" - -#: ../../godmode/users/configure_profile.php:257 -msgid "Edit agents" -msgstr "Edit agents" - -#: ../../godmode/users/configure_profile.php:264 -msgid "Edit alerts" -msgstr "Edit alerts" - -#: ../../godmode/users/configure_profile.php:275 ../../operation/menu.php:274 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:217 -#: ../../enterprise/meta/event/custom_events.php:38 -msgid "View events" -msgstr "View events" - -#: ../../godmode/users/configure_profile.php:279 -msgid "Edit events" -msgstr "Edit events" - -#: ../../godmode/users/configure_profile.php:290 -msgid "View reports" -msgstr "View reports" - -#: ../../godmode/users/configure_profile.php:294 -msgid "Edit reports" -msgstr "Edit reports" - -#: ../../godmode/users/configure_profile.php:298 -msgid "Manage reports" -msgstr "Manage reports" - -#: ../../godmode/users/configure_profile.php:305 -msgid "View network maps" -msgstr "View network maps" - -#: ../../godmode/users/configure_profile.php:309 -msgid "Edit network maps" -msgstr "Edit network maps" - -#: ../../godmode/users/configure_profile.php:313 -msgid "Manage network maps" -msgstr "Manage network maps" - -#: ../../godmode/users/configure_profile.php:320 -#: ../../include/functions_menu.php:486 -msgid "View visual console" -msgstr "View visual console" - -#: ../../godmode/users/configure_profile.php:324 -msgid "Edit visual console" -msgstr "Edit visual console" - -#: ../../godmode/users/configure_profile.php:328 -#: ../../include/functions_menu.php:521 -msgid "Manage visual console" -msgstr "Manage visual console" - -#: ../../godmode/users/configure_profile.php:335 -msgid "View incidents" -msgstr "View incidents" - -#: ../../godmode/users/configure_profile.php:339 -msgid "Edit incidents" -msgstr "Edit incidents" - -#: ../../godmode/users/configure_profile.php:343 -msgid "Manage incidents" -msgstr "Manage incidents" - -#: ../../godmode/users/configure_profile.php:350 -msgid "Manage users" -msgstr "Manage users" - -#: ../../godmode/users/configure_profile.php:357 -msgid "Manage database" -msgstr "Manage database" - -#: ../../godmode/users/configure_profile.php:364 -msgid "Pandora management" -msgstr "Pandora management" - -#: ../../godmode/users/configure_user.php:90 -#: ../../operation/users/user_edit.php:62 -msgid "User detail editor" -msgstr "User detail editor" - -#: ../../godmode/users/configure_user.php:145 -#: ../../godmode/users/user_list.php:492 -msgid "" -"The current authentication scheme doesn't support creating users from " -"Pandora FMS" -msgstr "" -"The current authentication scheme doesn't support creating users on Pandora " -"FMS" - -#: ../../godmode/users/configure_user.php:182 -msgid "User ID cannot be empty" -msgstr "User ID field cannot be empty" - -#: ../../godmode/users/configure_user.php:189 -msgid "Passwords cannot be empty" -msgstr "Password field cannot be empty" - -#: ../../godmode/users/configure_user.php:196 -msgid "Passwords didn't match" -msgstr "Provided passwords do not match" - -#: ../../godmode/users/configure_user.php:245 -msgid "" -"Strict ACL is not recommended for admin users because performance could be " -"affected." -msgstr "" -"A strict ACL isn't recommended for admin users because it could affect " -"overall performance" - -#: ../../godmode/users/configure_user.php:303 -#: ../../godmode/users/configure_user.php:313 -#: ../../godmode/users/configure_user.php:341 -#: ../../godmode/users/configure_user.php:347 -#: ../../godmode/users/configure_user.php:375 -#: ../../operation/users/user_edit.php:154 -#: ../../operation/users/user_edit.php:164 -msgid "User info successfully updated" -msgstr "User info successfully updated" - -#: ../../godmode/users/configure_user.php:304 -#: ../../godmode/users/configure_user.php:314 -#: ../../godmode/users/configure_user.php:342 -#: ../../godmode/users/configure_user.php:348 -#: ../../godmode/users/configure_user.php:376 -msgid "Error updating user info (no change?)" -msgstr "Error updating user info (no change?)" - -#: ../../godmode/users/configure_user.php:318 -msgid "Passwords does not match" -msgstr "Passwords don't match" - -#: ../../godmode/users/configure_user.php:366 -msgid "" -"Strict ACL is not recommended for this user. Performance could be affected." -msgstr "" -"A strict ACL is not recommended for this user. Performance could be affected." - -#: ../../godmode/users/configure_user.php:398 -msgid "Profile added successfully" -msgstr "Profile added successfully" - -#: ../../godmode/users/configure_user.php:399 -msgid "Profile cannot be added" -msgstr "Profile could not be added" - -#: ../../godmode/users/configure_user.php:425 -msgid "Update User" -msgstr "Update User" - -#: ../../godmode/users/configure_user.php:428 -msgid "Create User" -msgstr "Create User" - -#: ../../godmode/users/configure_user.php:441 -#: ../../godmode/users/user_list.php:266 -#: ../../include/functions_reporting_html.php:2826 -#: ../../operation/search_users.php:38 -#: ../../operation/snmpconsole/snmp_view.php:619 -#: ../../operation/users/user_edit.php:184 -msgid "User ID" -msgstr "User ID" - -#: ../../godmode/users/configure_user.php:445 -#: ../../operation/users/user_edit.php:186 -msgid "Full (display) name" -msgstr "Full (display) name" - -#: ../../godmode/users/configure_user.php:449 -#: ../../operation/users/user_edit.php:255 -#: ../../enterprise/extensions/translate_string.php:250 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:132 -msgid "Language" -msgstr "Language" - -#: ../../godmode/users/configure_user.php:457 -#: ../../operation/users/user_edit.php:221 -msgid "Password confirmation" -msgstr "Password confirmation" - -#: ../../godmode/users/configure_user.php:464 -msgid "Global Profile" -msgstr "Global Profile" - -#: ../../godmode/users/configure_user.php:468 -#: ../../godmode/users/user_list.php:414 ../../operation/search_users.php:64 -msgid "Administrator" -msgstr "Administrator" - -#: ../../godmode/users/configure_user.php:469 -msgid "" -"This user has permissions to manage all. An admin user should not requiere " -"additional group permissions, except for using Enterprise ACL." -msgstr "" -"This user has management permissions over everything. An admin user should " -"not require additional group permissions, except when using the Enterprise " -"ACL." - -#: ../../godmode/users/configure_user.php:473 -#: ../../operation/search_users.php:69 -msgid "Standard User" -msgstr "Standard User" - -#: ../../godmode/users/configure_user.php:474 -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 "" -"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" - -#: ../../godmode/users/configure_user.php:477 -#: ../../godmode/users/user_list.php:407 -#: ../../operation/users/user_edit.php:208 -msgid "E-mail" -msgstr "E-mail" - -#: ../../godmode/users/configure_user.php:481 -#: ../../operation/users/user_edit.php:210 -msgid "Phone number" -msgstr "Phone number" - -#: ../../godmode/users/configure_user.php:516 -msgid "Use global conf" -msgstr "Use global conf" - -#: ../../godmode/users/configure_user.php:531 -msgid "Metaconsole access" -msgstr "Metaconsole access" - -#: ../../godmode/users/configure_user.php:539 -msgid "Not Login" -msgstr "Not Login" - -#: ../../godmode/users/configure_user.php:540 -msgid "The user with not login set only can access to API." -msgstr "The user with not login set only can access to API." - -#: ../../godmode/users/configure_user.php:543 -msgid "Strict ACL" -msgstr "Strict ACL" - -#: ../../godmode/users/configure_user.php:544 -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" -msgstr "" -"With this option enabled, the user will be able to access accurate " -"information. Not recommended for admin users because it can affect " -"performance." - -#: ../../godmode/users/configure_user.php:547 -msgid "Session Time" -msgstr "Session Time" - -#: ../../godmode/users/configure_user.php:554 -msgid "Enable agents managment" -msgstr "Enable agent management" - -#: ../../godmode/users/configure_user.php:561 -msgid "Assigned node" -msgstr "Assigned node" - -#: ../../godmode/users/configure_user.php:561 -msgid "Server where the agents created of this user will be placed" -msgstr "Server in which the agents created by this user will be placed" - -#: ../../godmode/users/configure_user.php:573 -msgid "Enable node access" -msgstr "Enable node access" - -#: ../../godmode/users/configure_user.php:573 -msgid "With this option enabled, the user will can access to nodes console" -msgstr "" -"With this option enabled, the user will be able to access the node console" - -#: ../../godmode/users/configure_user.php:604 -#: ../../godmode/users/configure_user.php:613 -#: ../../operation/users/user_edit.php:479 -#: ../../operation/users/user_edit.php:487 -msgid "Profiles/Groups assigned to this user" -msgstr "Profiles/Groups assigned to this user" - -#: ../../godmode/users/profile_list.php:80 -msgid "" -"Unsucessful delete profile. Because the profile is used by some admin users." -msgstr "" -"Unsucessful delete profile. Because the profile is used by some admin users." - -#: ../../godmode/users/profile_list.php:88 -#: ../../godmode/users/user_list.php:189 -msgid "There was a problem deleting the profile" -msgstr "There was a problem deleting the profile" - -#: ../../godmode/users/profile_list.php:226 -msgid "There was a problem updating this profile" -msgstr "There was a problem updating this profile" - -#: ../../godmode/users/profile_list.php:230 -msgid "Profile name cannot be empty" -msgstr "Profile name cannot be empty" - -#: ../../godmode/users/profile_list.php:282 -#: ../../godmode/users/profile_list.php:286 -msgid "There was a problem creating this profile" -msgstr "There was a problem creating this profile" - -#: ../../godmode/users/profile_list.php:304 -#: ../../enterprise/extensions/disabled/check_acls.php:44 -#: ../../enterprise/extensions/disabled/check_acls.php:124 -msgid "System incidents reading" -msgstr "Read system incidents" - -#: ../../godmode/users/profile_list.php:305 -#: ../../enterprise/extensions/disabled/check_acls.php:45 -#: ../../enterprise/extensions/disabled/check_acls.php:125 -msgid "System incidents writing" -msgstr "Write system incidents" - -#: ../../godmode/users/profile_list.php:306 -#: ../../enterprise/extensions/disabled/check_acls.php:46 -#: ../../enterprise/extensions/disabled/check_acls.php:126 -msgid "System incidents management" -msgstr "Manage system incidents" - -#: ../../godmode/users/profile_list.php:307 -#: ../../enterprise/extensions/disabled/check_acls.php:47 -#: ../../enterprise/extensions/disabled/check_acls.php:127 -msgid "Agents reading" -msgstr "Read agents" - -#: ../../godmode/users/profile_list.php:308 -#: ../../include/functions_menu.php:479 -#: ../../enterprise/extensions/disabled/check_acls.php:48 -#: ../../enterprise/extensions/disabled/check_acls.php:128 -msgid "Agents management" -msgstr "Manage agents" - -#: ../../godmode/users/profile_list.php:309 -#: ../../enterprise/extensions/disabled/check_acls.php:49 -#: ../../enterprise/extensions/disabled/check_acls.php:129 -msgid "Agents disable" -msgstr "Disable agents" - -#: ../../godmode/users/profile_list.php:310 -#: ../../enterprise/extensions/disabled/check_acls.php:50 -#: ../../enterprise/extensions/disabled/check_acls.php:130 -msgid "Alerts editing" -msgstr "Edit alerts" - -#: ../../godmode/users/profile_list.php:311 -#: ../../enterprise/extensions/disabled/check_acls.php:53 -#: ../../enterprise/extensions/disabled/check_acls.php:133 -msgid "Alerts management" -msgstr "Manage alerts" - -#: ../../godmode/users/profile_list.php:313 -#: ../../enterprise/extensions/disabled/check_acls.php:52 -#: ../../enterprise/extensions/disabled/check_acls.php:132 -msgid "Database management" -msgstr "Database management" - -#: ../../godmode/users/profile_list.php:314 -#: ../../enterprise/extensions/disabled/check_acls.php:57 -#: ../../enterprise/extensions/disabled/check_acls.php:137 -msgid "Events reading" -msgstr "Read events" - -#: ../../godmode/users/profile_list.php:315 -#: ../../enterprise/extensions/disabled/check_acls.php:58 -#: ../../enterprise/extensions/disabled/check_acls.php:138 -msgid "Events writing" -msgstr "Write events" - -#: ../../godmode/users/profile_list.php:316 -#: ../../enterprise/extensions/disabled/check_acls.php:59 -#: ../../enterprise/extensions/disabled/check_acls.php:139 -msgid "Events management" -msgstr "Manage events" - -#: ../../godmode/users/profile_list.php:317 -#: ../../enterprise/extensions/disabled/check_acls.php:54 -#: ../../enterprise/extensions/disabled/check_acls.php:134 -msgid "Reports reading" -msgstr "Read reports" - -#: ../../godmode/users/profile_list.php:318 -#: ../../enterprise/extensions/disabled/check_acls.php:55 -#: ../../enterprise/extensions/disabled/check_acls.php:135 -msgid "Reports writing" -msgstr "Write reports" - -#: ../../godmode/users/profile_list.php:319 -#: ../../enterprise/extensions/disabled/check_acls.php:56 -#: ../../enterprise/extensions/disabled/check_acls.php:136 -msgid "Reports management" -msgstr "Manage reports" - -#: ../../godmode/users/profile_list.php:320 -msgid "Network maps reading" -msgstr "Read network maps" - -#: ../../godmode/users/profile_list.php:321 -msgid "Network maps writing" -msgstr "Write network maps" - -#: ../../godmode/users/profile_list.php:322 -msgid "Network maps management" -msgstr "Manage network maps" - -#: ../../godmode/users/profile_list.php:323 -msgid "Visual console reading" -msgstr "Read visual console" - -#: ../../godmode/users/profile_list.php:324 -msgid "Visual console writing" -msgstr "Write visual console" - -#: ../../godmode/users/profile_list.php:325 -msgid "Visual console management" -msgstr "Manage visual console" - -#: ../../godmode/users/profile_list.php:326 -#: ../../enterprise/extensions/disabled/check_acls.php:60 -#: ../../enterprise/extensions/disabled/check_acls.php:140 -msgid "Systems management" -msgstr "Systems management" - -#: ../../godmode/users/profile_list.php:398 -msgid "There are no defined profiles" -msgstr "There are no defined profiles" - -#: ../../godmode/users/user_list.php:121 -msgid "Users defined in Pandora" -msgstr "Users defined on Pandora" - -#: ../../godmode/users/user_list.php:143 -#, php-format -msgid "Deleted user %s" -msgstr "Deleted user %s" - -#: ../../godmode/users/user_list.php:148 ../../godmode/users/user_list.php:181 -msgid "There was a problem deleting the user" -msgstr "There was a problem deleting the user" - -#: ../../godmode/users/user_list.php:163 -#, php-format -msgid "Deleted user %s from metaconsole" -msgstr "Deleted user %s from the metaconsole" - -#: ../../godmode/users/user_list.php:172 -#, php-format -msgid "Deleted user %s from %s" -msgstr "Deleted user %s from %s" - -#: ../../godmode/users/user_list.php:175 -#, php-format -msgid "Successfully deleted from %s" -msgstr "Successfully deleted from %s" - -#: ../../godmode/users/user_list.php:176 -#, php-format -msgid "There was a problem deleting the user from %s" -msgstr "There was a problem deleting the user from %s" - -#: ../../godmode/users/user_list.php:204 -msgid "There was a problem disabling user" -msgstr "There was a problem disabling the user" - -#: ../../godmode/users/user_list.php:209 -msgid "There was a problem enabling user" -msgstr "There was a problem enabling the user" - -#: ../../godmode/users/user_list.php:231 ../../godmode/users/user_list.php:233 -msgid "Search by username, fullname or email" -msgstr "Search by username, full name, or e-mail" - -#: ../../godmode/users/user_list.php:249 -msgid "Users control filter" -msgstr "User control filter" - -#: ../../godmode/users/user_list.php:275 ../../godmode/users/user_list.php:413 -#: ../../operation/search_users.php:63 -#: ../../enterprise/extensions/disabled/check_acls.php:61 -#: ../../enterprise/extensions/disabled/check_acls.php:141 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:250 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:391 -msgid "Admin" -msgstr "Admin" - -#: ../../godmode/users/user_list.php:276 -msgid "Profile / Group" -msgstr "Profile / Group" - -#: ../../godmode/users/user_list.php:457 ../../operation/search_users.php:82 -msgid "The user doesn't have any assigned profile/group" -msgstr "The user doesn't have any assigned profile/group" - -#: ../../godmode/users/user_list.php:470 -msgid "Deleting User" -msgstr "Deleting User" - -#: ../../godmode/users/user_list.php:472 -msgid "Delete from all consoles" -msgstr "Delete from all consoles" - -#: ../../godmode/users/user_list.php:472 -#, php-format -msgid "Deleting User %s from all consoles" -msgstr "Deleting User %s from all consoles" - -#: ../../godmode/users/user_list.php:488 -msgid "Create user" -msgstr "Create user" +msgid "Executing command: %s" +msgstr "Executing command : %s" + +#: ../../include/ajax/events.php:165 +msgid "Execute again" +msgstr "Execute again" + +#: ../../include/ajax/events.php:299 ../../include/functions_reports.php:581 +#: ../../include/functions_reporting.php:5451 +#: ../../godmode/alerts/configure_alert_template.php:148 +#: ../../godmode/alerts/configure_alert_template.php:153 +#: ../../godmode/setup/setup.php:74 ../../godmode/setup/setup.php:112 +#: ../../godmode/servers/plugin.php:326 ../../godmode/servers/plugin.php:332 +msgid "General" +msgstr "General" + +#: ../../include/ajax/events.php:300 +msgid "Details" +msgstr "Details" + +#: ../../include/ajax/events.php:301 +msgid "Agent fields" +msgstr "Agent fields" + +#: ../../include/ajax/events.php:306 ../../godmode/events/events.php:73 +msgid "Responses" +msgstr "Responses" + +#: ../../include/ajax/events.php:309 +msgid "Custom data" +msgstr "Custom data" + +#: ../../include/ajax/events.php:377 +msgid "Error adding comment" +msgstr "Error on adding comment." + +#: ../../include/ajax/events.php:378 +msgid "Comment added successfully" +msgstr "Comment added successfully." + +#: ../../include/ajax/events.php:379 +msgid "Error changing event status" +msgstr "Error on changing event status." + +#: ../../include/ajax/events.php:380 +msgid "Event status changed successfully" +msgstr "Event status changed successfully." + +#: ../../include/ajax/events.php:381 +msgid "Error changing event owner" +msgstr "Error: could not change event owner." + +#: ../../include/ajax/events.php:382 +msgid "Event owner changed successfully" +msgstr "Event owner changed successfully." + +#: ../../include/ajax/events.php:481 +#: ../../godmode/massive/massive_edit_modules.php:484 +#: ../../godmode/agentes/module_manager_editor_network.php:85 +msgid "Auto" +msgstr "Auto" #: ../../include/ajax/double_auth.ajax.php:146 msgid "" @@ -18988,7 +10633,6 @@ msgstr "" #: ../../include/ajax/double_auth.ajax.php:151 #: ../../include/ajax/double_auth.ajax.php:287 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:97 msgid "Code" msgstr "Code" @@ -19030,15 +10674,6 @@ msgstr "Continue" msgid "Are you installed the app yet?" msgstr "Have you installed the app yet?" -#: ../../include/ajax/double_auth.ajax.php:254 -#: ../../include/ajax/double_auth.ajax.php:351 -#: ../../include/ajax/double_auth.ajax.php:396 -#: ../../include/ajax/double_auth.ajax.php:511 -#: ../../operation/users/user_edit.php:700 -#: ../../operation/users/user_edit.php:765 -msgid "There was an error loading the data" -msgstr "There was an error sending the data" - #: ../../include/ajax/double_auth.ajax.php:277 msgid "A private code has been generated" msgstr "A private code has been generated" @@ -19053,745 +10688,990 @@ msgstr "" msgid "Refresh code" msgstr "Refresh code" -#: ../../include/ajax/double_auth.ajax.php:360 +#: ../../include/ajax/double_auth.ajax.php:358 msgid "Are you introduced the code in the authenticator app yet?" msgstr "Have you introduced the code in the authentication app yet?" -#: ../../include/ajax/double_auth.ajax.php:422 +#: ../../include/ajax/double_auth.ajax.php:420 msgid "Introduce a code generated by the app" msgstr "Introduce a code generated by the app" -#: ../../include/ajax/double_auth.ajax.php:423 +#: ../../include/ajax/double_auth.ajax.php:421 msgid "If the code is valid, the double authentication will be activated" msgstr "If the code is valid, double authentication will be activated." -#: ../../include/ajax/double_auth.ajax.php:432 +#: ../../include/ajax/double_auth.ajax.php:430 msgid "Validate code" msgstr "Validate code" -#: ../../include/ajax/double_auth.ajax.php:483 +#: ../../include/ajax/double_auth.ajax.php:481 msgid "The code is valid, you can exit now" msgstr "The code is valid. You may exit now." -#: ../../include/ajax/double_auth.ajax.php:491 -#: ../../mobile/include/user.class.php:171 ../../enterprise/meta/index.php:239 -#: ../../index.php:256 -msgid "Invalid code" -msgstr "Invalid code" - -#: ../../include/ajax/double_auth.ajax.php:499 +#: ../../include/ajax/double_auth.ajax.php:497 msgid "The code is valid, but it was an error saving the data" msgstr "The code is valid, but there was an error saving the data" -#: ../../include/ajax/events.php:158 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:269 -#, php-format -msgid "Executing command: %s" -msgstr "Executing command : %s" +#: ../../include/functions_update_manager.php:202 +msgid "There is a unknown error." +msgstr "There is a unknown error." -#: ../../include/ajax/events.php:165 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:276 -msgid "Execute again" -msgstr "Execute again" +#: ../../include/functions_update_manager.php:316 +#: ../../include/functions_update_manager.php:319 +#: ../../include/functions_update_manager.php:409 +#: ../../include/functions_update_manager.php:413 +msgid "Could not connect to internet" +msgstr "Could not obtain an internet connection" -#: ../../include/ajax/events.php:300 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:210 -msgid "Details" -msgstr "Details" +#: ../../include/functions_update_manager.php:324 +#: ../../include/functions_update_manager.php:327 +#: ../../include/functions_update_manager.php:420 +#: ../../include/functions_update_manager.php:424 +msgid "Server not found." +msgstr "Server not found." -#: ../../include/ajax/events.php:301 -msgid "Agent fields" -msgstr "Agent fields" - -#: ../../include/ajax/events.php:309 -msgid "Custom data" -msgstr "Custom data" - -#: ../../include/ajax/events.php:377 -msgid "Error adding comment" -msgstr "Error on adding comment." - -#: ../../include/ajax/events.php:378 -msgid "Comment added successfully" -msgstr "Comment added successfully." - -#: ../../include/ajax/events.php:379 -msgid "Error changing event status" -msgstr "Error on changing event status." - -#: ../../include/ajax/events.php:380 -msgid "Event status changed successfully" -msgstr "Event status changed successfully." - -#: ../../include/ajax/events.php:381 -msgid "Error changing event owner" -msgstr "Error: could not change event owner." - -#: ../../include/ajax/events.php:382 -msgid "Event owner changed successfully" -msgstr "Event owner changed successfully." - -#: ../../include/ajax/events.php:447 ../../include/functions_events.php:928 -#: ../../include/functions_events.php:2402 -#: ../../include/functions_events.php:3657 -#: ../../include/functions_reporting.php:6371 -#: ../../include/functions_reporting_html.php:845 -#: ../../include/functions_reporting_html.php:1061 -#: ../../include/functions_reporting_html.php:1673 -#: ../../mobile/operation/events.php:247 -#: ../../operation/events/events.build_table.php:304 -msgid "New event" -msgstr "New event" - -#: ../../include/ajax/events.php:451 ../../include/functions_events.php:932 -#: ../../include/functions_events.php:2406 -#: ../../include/functions_events.php:3661 -#: ../../include/functions_reporting.php:6375 -#: ../../include/functions_reporting_html.php:849 -#: ../../include/functions_reporting_html.php:1065 -#: ../../include/functions_reporting_html.php:1677 -#: ../../mobile/operation/events.php:251 -#: ../../operation/events/events.build_table.php:308 -#: ../../operation/events/events.php:689 ../../operation/events/events.php:718 -#: ../../operation/events/events.php:719 ../../operation/events/events.php:939 -#: ../../operation/events/events.php:944 ../../operation/events/events.php:945 -msgid "Event validated" -msgstr "Event validated" - -#: ../../include/ajax/events.php:455 ../../include/functions_events.php:936 -#: ../../include/functions_events.php:2410 -#: ../../include/functions_events.php:3665 -#: ../../include/functions_reporting.php:6379 -#: ../../include/functions_reporting_html.php:853 -#: ../../include/functions_reporting_html.php:1069 -#: ../../include/functions_reporting_html.php:1681 -#: ../../mobile/operation/events.php:255 -#: ../../operation/events/events.build_table.php:312 -#: ../../operation/events/events.php:751 ../../operation/events/events.php:789 -#: ../../operation/events/events.php:790 ../../operation/events/events.php:949 -#: ../../operation/events/events.php:963 ../../operation/events/events.php:964 -msgid "Event in process" -msgstr "Event in process" - -#: ../../include/ajax/module.php:133 ../../include/functions.php:2591 -msgid "30 minutes" -msgstr "30 minutes" - -#: ../../include/ajax/module.php:135 -#: ../../enterprise/godmode/agentes/inventory_manager.php:178 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:192 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:184 -msgid "6 hours" -msgstr "6 hours" - -#: ../../include/ajax/module.php:137 ../../include/functions.php:2025 -#: ../../include/functions_netflow.php:1056 -#: ../../include/functions_netflow.php:1089 -#: ../../enterprise/dashboard/widgets/top_n.php:65 -#: ../../enterprise/godmode/agentes/inventory_manager.php:180 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:194 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:186 -msgid "1 day" -msgstr "1 day" - -#: ../../include/ajax/module.php:138 ../../include/functions.php:2026 -#: ../../include/functions_netflow.php:1093 -msgid "1 week" -msgstr "1 week" - -#: ../../include/ajax/module.php:139 ../../include/functions.php:2027 -#: ../../include/functions_netflow.php:1059 -#: ../../include/functions_netflow.php:1092 -#: ../../enterprise/godmode/agentes/inventory_manager.php:183 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:197 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:190 -msgid "15 days" -msgstr "15 days" - -#: ../../include/ajax/module.php:140 ../../include/functions.php:2028 -#: ../../include/functions_netflow.php:1094 -#: ../../enterprise/godmode/agentes/inventory_manager.php:184 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:198 -msgid "1 month" -msgstr "1 month" - -#: ../../include/ajax/module.php:141 ../../include/functions_netflow.php:1063 -msgid "3 months" -msgstr "3 months" - -#: ../../include/ajax/module.php:142 ../../include/functions_netflow.php:1064 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:193 -msgid "6 months" -msgstr "6 months" - -#: ../../include/ajax/module.php:143 ../../include/functions.php:2031 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:194 -msgid "1 year" -msgstr "1 year" - -#: ../../include/ajax/module.php:144 ../../include/functions_netflow.php:1066 -msgid "2 years" -msgstr "2 years" - -#: ../../include/ajax/module.php:145 -msgid "3 years" -msgstr "3 years" - -#: ../../include/ajax/module.php:149 -#: ../../operation/agentes/datos_agente.php:185 -msgid "Choose a time from now" -msgstr "Choose a time from now" - -#: ../../include/ajax/module.php:161 -#: ../../operation/agentes/datos_agente.php:188 -msgid "Specify time range" -msgstr "Specify time range" - -#: ../../include/ajax/module.php:162 -#: ../../operation/agentes/datos_agente.php:189 -#: ../../operation/events/events_list.php:492 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:449 -msgid "Timestamp from:" -msgstr "Timestamp from:" - -#: ../../include/ajax/module.php:170 -#: ../../operation/agentes/datos_agente.php:195 -#: ../../operation/events/events_list.php:495 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 -msgid "Timestamp to:" -msgstr "Timestamp to:" - -#: ../../include/ajax/module.php:732 -#: ../../operation/agentes/alerts_status.php:422 -#: ../../operation/agentes/alerts_status.php:466 -#: ../../operation/agentes/alerts_status.php:500 -#: ../../operation/agentes/alerts_status.php:535 -msgid "Force execution" -msgstr "Force execution" - -#: ../../include/ajax/module.php:732 -#: ../../operation/agentes/alerts_status.php:423 -#: ../../operation/agentes/alerts_status.php:466 -#: ../../operation/agentes/alerts_status.php:500 -#: ../../operation/agentes/alerts_status.php:535 -msgid "F." -msgstr "F." - -#: ../../include/ajax/module.php:804 ../../include/functions_groups.php:771 -#: ../../include/functions_groups.php:964 ../../include/functions_ui.php:834 -#: ../../operation/agentes/group_view.php:163 -#: ../../operation/agentes/group_view.php:216 -#: ../../operation/servers/recon_view.php:86 -#: ../../operation/servers/recon_view.php:118 -#: ../../enterprise/extensions/ipam/ipam_network.php:154 -#: ../../enterprise/godmode/agentes/inventory_manager.php:272 -#: ../../enterprise/operation/services/services.list.php:469 -msgid "Force" -msgstr "Force" - -#: ../../include/ajax/module.php:1093 -msgid "Any monitors aren't with this filter." -msgstr "No monitors have this filter." - -#: ../../include/ajax/module.php:1096 -msgid "This agent doesn't have any active monitors." -msgstr "This agent doesn't have any active monitors." - -#: ../../include/ajax/rolling_release.ajax.php:56 -msgid "The sql file contains a dangerous query" +#: ../../include/functions_update_manager.php:346 +msgid "Update to the next version" msgstr "" -#: ../../include/ajax/rolling_release.ajax.php:103 +#: ../../include/functions_update_manager.php:349 +msgid "There is no update available." +msgstr "There are no updates available" + +#: ../../include/functions_update_manager.php:458 +#: ../../include/functions_update_manager.php:488 +msgid "Remote server error on newsletter request" +msgstr "Remote server error on newsletter request" + +#: ../../include/functions_update_manager.php:466 +msgid "E-mail successfully subscribed to newsletter." +msgstr "E-mail successfully subscribed to newsletter." + +#: ../../include/functions_update_manager.php:468 +msgid "E-mail has already subscribed to newsletter." +msgstr "E-mail has already subscribed to newsletter." + +#: ../../include/functions_update_manager.php:470 +#: ../../include/functions_update_manager.php:510 +msgid "Update manager returns error code: " +msgstr "Update manager returns error code: " + +#: ../../include/functions_update_manager.php:505 +msgid "Pandora successfully subscribed with UID: " +msgstr "Pandora successfully subscribed with UID: " + +#: ../../include/functions_update_manager.php:507 +msgid "Unsuccessful subscription." +msgstr "Unsuccessful subscription." + +#: ../../include/functions_update_manager.php:635 +msgid "Failed extracting the package to temp directory." +msgstr "Failed to extract the package to the temp directory." + +#: ../../include/functions_update_manager.php:664 +msgid "Failed the copying of the files." +msgstr "Failed to copy the files." + +#: ../../include/functions_update_manager.php:680 +msgid "Package extracted successfully." +msgstr "Package extracted successfully." + +#: ../../include/functions_visual_map.php:1150 +msgid "Last value: " +msgstr "Last value: " + +#: ../../include/functions_visual_map.php:1665 +#: ../../include/functions_visual_map.php:1898 +#: ../../godmode/massive/massive_add_action_alerts.php:59 +#: ../../godmode/massive/massive_add_alerts.php:73 +#: ../../godmode/massive/massive_edit_agents.php:92 +#: ../../godmode/massive/massive_delete_agents.php:33 +#: ../../godmode/massive/massive_delete_modules.php:61 +#: ../../godmode/massive/massive_delete_tags.php:97 +#: ../../godmode/massive/massive_add_tags.php:33 +#: ../../godmode/massive/massive_delete_alerts.php:83 +msgid "No agents selected" +msgstr "No agents selected" + +#: ../../include/functions_visual_map.php:1723 +msgid "Agent successfully added to layout" +msgstr "Agent successfully added to the layout." + +#: ../../include/functions_visual_map.php:1749 +#: ../../godmode/massive/massive_add_action_alerts.php:116 +#: ../../godmode/massive/massive_delete_action_alerts.php:119 +#: ../../godmode/massive/massive_edit_modules.php:1073 +#: ../../godmode/massive/massive_delete_tags.php:102 +#: ../../godmode/massive/massive_add_tags.php:38 +#: ../../godmode/reporting/visual_console_builder.php:486 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:174 +msgid "No modules selected" +msgstr "No modules selected" + +#: ../../include/functions_visual_map.php:1870 +msgid "Modules successfully added to layout" +msgstr "Modules successfully added to the layout." + +#: ../../include/functions_visual_map.php:2067 +msgid "Agents successfully added to layout" +msgstr "Agents successfully added to the layout." + +#: ../../include/functions_visual_map.php:2408 +msgid "Cannot load the visualmap" +msgstr "Cannot load the visual map." + +#: ../../include/functions_visual_map.php:2740 +#: ../../include/functions_visual_map_editor.php:62 +#: ../../include/functions_visual_map_editor.php:611 +#: ../../godmode/reporting/visual_console_builder.elements.php:188 +msgid "Box" +msgstr "Box" + +#: ../../include/functions_visual_map.php:2748 +msgid "Percentile bar" +msgstr "Percentile bar" + +#: ../../include/functions_visual_map.php:2752 +msgid "Static graph" +msgstr "Static graph" + +#: ../../include/functions_visual_map.php:2757 +#: ../../include/functions_visual_map_editor.php:607 +#: ../../godmode/reporting/visual_console_builder.elements.php:158 +msgid "Simple Value" +msgstr "Simple Value" + +#: ../../include/functions_visual_map.php:2761 +#: ../../include/functions_visual_map_editor.php:59 +#: ../../include/functions_visual_map_editor.php:167 +#: ../../include/functions_visual_map_editor.php:608 +#: ../../godmode/reporting/graph_builder.graph_editor.php:86 +#: ../../godmode/reporting/visual_console_builder.wizard.php:300 +#: ../../godmode/reporting/visual_console_builder.elements.php:77 +#: ../../godmode/reporting/visual_console_builder.elements.php:178 +#: ../../godmode/reporting/reporting_builder.item_editor.php:693 +msgid "Label" +msgstr "Label" + +#: ../../include/functions_visual_map.php:2769 +#: ../../include/functions_visual_map_editor.php:60 +#: ../../include/functions_visual_map_editor.php:609 +#: ../../godmode/setup/os.builder.php:39 +#: ../../godmode/reporting/visual_console_builder.elements.php:183 +#: ../../godmode/groups/group_list.php:338 +#: ../../godmode/groups/configure_group.php:119 +#: ../../godmode/modules/module_list.php:57 +msgid "Icon" +msgstr "Icon" + +#: ../../include/functions_snmp.php:67 +msgid "Load Average (Last minute)" +msgstr "Load Average (Last minute)" + +#: ../../include/functions_snmp.php:71 +msgid "Load Average (Last 5 minutes)" +msgstr "Load Average (Last 5 minutes)" + +#: ../../include/functions_snmp.php:75 +msgid "Load Average (Last 15 minutes)" +msgstr "Load Average (Last 15 minutes)" + +#: ../../include/functions_snmp.php:79 +msgid "Total Swap Size configured for the host" +msgstr "Total Swap Size configured for the host" + +#: ../../include/functions_snmp.php:83 +msgid "Available Swap Space on the host" +msgstr "Available Swap Space on the host" + +#: ../../include/functions_snmp.php:87 +msgid "Total Real/Physical Memory Size on the host" +msgstr "Total Real/Physical Memory Size on the host" + +#: ../../include/functions_snmp.php:91 +msgid "Available Real/Physical Memory Space on the host" +msgstr "Available Real/Physical Memory Space on the host" + +#: ../../include/functions_snmp.php:95 +msgid "Total Available Memory on the host" +msgstr "Total Available Memory on the host" + +#: ../../include/functions_snmp.php:99 +msgid "Total Cached Memory" +msgstr "Total Cached Memory" + +#: ../../include/functions_snmp.php:103 +msgid "Total Buffered Memory" +msgstr "Total Buffered Memory" + +#: ../../include/functions_snmp.php:107 +msgid "Amount of memory swapped in from disk (kB/s)" +msgstr "Amount of memory swapped in from disk (kB/s)" + +#: ../../include/functions_snmp.php:111 +msgid "Amount of memory swapped to disk (kB/s)" +msgstr "Amount of memory swapped to disk (kB/s)" + +#: ../../include/functions_snmp.php:115 +msgid "Number of blocks sent to a block device" +msgstr "Number of blocks sent to a block device" + +#: ../../include/functions_snmp.php:119 +msgid "Number of blocks received from a block device" +msgstr "Number of blocks received from a block device" + +#: ../../include/functions_snmp.php:123 +msgid "Number of interrupts processed" +msgstr "Number of interrupts processed" + +#: ../../include/functions_snmp.php:127 +msgid "Number of context switches" +msgstr "Number of context switches" + +#: ../../include/functions_snmp.php:131 +msgid "user CPU time" +msgstr "user CPU time" + +#: ../../include/functions_snmp.php:135 +msgid "system CPU time" +msgstr "system CPU time" + +#: ../../include/functions_snmp.php:139 +msgid "idle CPU time" +msgstr "idle CPU time" + +#: ../../include/functions_snmp.php:143 +msgid "system Up time" +msgstr "system Up time" + +#: ../../include/functions_filemanager.php:172 +#: ../../include/functions_filemanager.php:242 +#: ../../include/functions_filemanager.php:300 +#: ../../include/functions_filemanager.php:382 +msgid "Security error" +msgstr "Security error" + +#: ../../include/functions_filemanager.php:185 +msgid "Upload error" +msgstr "Upload error" + +#: ../../include/functions_filemanager.php:193 +#: ../../include/functions_filemanager.php:261 +#: ../../include/functions_filemanager.php:326 +msgid "Upload correct" +msgstr "Upload correct" + +#: ../../include/functions_filemanager.php:206 msgid "" -"An error occurred while updating the database schema to the minor release " +"File size seems to be too large. Please check your php.ini configuration or " +"contact with the administrator" msgstr "" +"The file seems to be too large. Please check your php.ini configuration file " +"or contact your administrator." -#: ../../include/ajax/rolling_release.ajax.php:117 -#: ../../include/ajax/rolling_release.ajax.php:130 -msgid "The directory " -msgstr "" +#: ../../include/functions_filemanager.php:254 +msgid "Error creating file" +msgstr "Error creating file" -#: ../../include/ajax/rolling_release.ajax.php:117 -msgid " should have read permissions in order to update the database schema" -msgstr "" +#: ../../include/functions_filemanager.php:267 +#: ../../include/functions_filemanager.php:362 +msgid "Error creating file with empty name" +msgstr "Error creating a file with no name." -#: ../../include/ajax/rolling_release.ajax.php:130 -msgid " does not exist" -msgstr "" +#: ../../include/functions_filemanager.php:312 +msgid "Attach error" +msgstr "Attachment error" -#: ../../include/ajax/update_manager.ajax.php:75 -#: ../../enterprise/include/functions_update_manager.php:362 -msgid "There was an error extracting the file '" -msgstr "There was an error extracting the file '" +#: ../../include/functions_filemanager.php:348 +msgid "Security error." +msgstr "Security error." -#: ../../include/ajax/update_manager.ajax.php:91 -#: ../../enterprise/include/functions_update_manager.php:379 -msgid "The package was not extracted." -msgstr "The package couldn't be extracted" +#: ../../include/functions_filemanager.php:357 +msgid "Directory created" +msgstr "Directory created" -#: ../../include/ajax/update_manager.ajax.php:97 -msgid "Invalid extension. The package must have the extension .oum." -msgstr "Invalid extension. The package is required to be in '.oum' format." +#: ../../include/functions_filemanager.php:385 +#: ../../include/functions_reporting_html.php:1238 +msgid "Deleted" +msgstr "Deleted" -#: ../../include/ajax/update_manager.ajax.php:104 -msgid "The file was not uploaded succesfully." -msgstr "The file wasn't uploaded successfully." +#: ../../include/functions_filemanager.php:550 +#, php-format +msgid "Directory %s doesn't exist!" +msgstr "Directory %s doesn't exist!" -#: ../../include/ajax/update_manager.ajax.php:173 -#: ../../include/ajax/update_manager.ajax.php:177 -#: ../../include/ajax/update_manager.ajax.php:204 -#: ../../include/functions_update_manager.php:128 -#: ../../include/functions_update_manager.php:132 -#: ../../include/functions_update_manager.php:158 -#: ../../enterprise/include/functions_update_manager.php:501 -#: ../../enterprise/include/functions_update_manager.php:505 -#: ../../enterprise/include/functions_update_manager.php:532 -msgid "Some of your files might not be recovered." -msgstr "Some of your files may be unrecoverable." +#: ../../include/functions_filemanager.php:561 +#: ../../godmode/setup/file_manager.php:63 +#: ../../godmode/servers/plugin.php:224 +#, php-format +msgid "Index of %s" +msgstr "Index of %s" -#: ../../include/ajax/update_manager.ajax.php:181 -#: ../../include/ajax/update_manager.ajax.php:198 -#: ../../include/functions_update_manager.php:136 -#: ../../include/functions_update_manager.php:152 -#: ../../enterprise/include/functions_update_manager.php:510 -#: ../../enterprise/include/functions_update_manager.php:526 -msgid "Some of your old files might not be recovered." -msgstr "Some of your old files may be unrecoverable." +#: ../../include/functions_filemanager.php:565 +msgid "Index of images" +msgstr "Image index" -#: ../../include/ajax/update_manager.ajax.php:219 -#: ../../include/functions_update_manager.php:173 -#: ../../enterprise/include/functions_update_manager.php:547 -msgid "An error ocurred while reading a file." -msgstr "An error ocurred while reading a file." +#: ../../include/functions_filemanager.php:603 +msgid "Parent directory" +msgstr "Parent directory" -#: ../../include/ajax/update_manager.ajax.php:226 -#: ../../include/functions_update_manager.php:180 -#: ../../enterprise/include/functions_update_manager.php:554 -msgid "The package does not exist" -msgstr "The package does not exist." +#: ../../include/functions_filemanager.php:632 +msgid "The zip upload in this dir, easy to upload multiple files." +msgstr "The zip uploads in this dir, easy to upload multiple files." -#: ../../include/ajax/update_manager.ajax.php:240 -msgid "Package rejected." -msgstr "" +#: ../../include/functions_filemanager.php:636 +msgid "Decompress" +msgstr "Decompress" -#: ../../include/ajax/update_manager.ajax.php:414 -#: ../../enterprise/include/functions_update_manager.php:315 -msgid "Fail to update to the last package." -msgstr "Failed to update to the latest package." +#: ../../include/functions_filemanager.php:638 +msgid "Go" +msgstr "Go" -#: ../../include/ajax/update_manager.ajax.php:422 -#: ../../enterprise/include/functions_update_manager.php:330 -msgid "Starting to update to the last package." -msgstr "Starting to update to the latest package." +#: ../../include/functions_filemanager.php:679 +msgid "Directory" +msgstr "Directory" -#: ../../include/ajax/update_manager.ajax.php:493 -#: ../../enterprise/include/functions_update_manager.php:423 -msgid "progress" -msgstr "progress" +#: ../../include/functions_filemanager.php:682 +#: ../../include/functions_visual_map_editor.php:198 +#: ../../godmode/reporting/visual_console_builder.wizard.php:118 +#: ../../godmode/reporting/visual_console_builder.elements.php:78 +msgid "Image" +msgstr "Image" -#: ../../include/ajax/update_manager.ajax.php:514 -msgid "The package is extracted." -msgstr "" +#: ../../include/functions_filemanager.php:685 +msgid "Compressed file" +msgstr "Compressed file" -#: ../../include/ajax/update_manager.ajax.php:518 -msgid "Error in package extraction." -msgstr "" +#: ../../include/functions_filemanager.php:688 +#: ../../include/functions_filemanager.php:695 +msgid "Text file" +msgstr "Text file" -#: ../../include/ajax/update_manager.ajax.php:536 -#: ../../include/functions_update_manager.php:189 -#: ../../enterprise/include/functions_update_manager.php:563 -msgid "The package is installed." -msgstr "The package is installed." +#: ../../include/functions_filemanager.php:759 +#: ../../godmode/servers/plugin.php:151 +msgid "Edit file" +msgstr "Edit file" -#: ../../include/ajax/update_manager.ajax.php:540 -msgid "An error ocurred in the installation process." -msgstr "" +#: ../../include/functions_filemanager.php:785 +msgid "Create directory" +msgstr "Create directory" -#: ../../include/ajax/visual_console_builder.ajax.php:180 -#: ../../include/functions_graph.php:5209 -msgid "No data to show" -msgstr "No data to show" +#: ../../include/functions_filemanager.php:790 +msgid "Create text" +msgstr "Create text" -#: ../../include/auth/mysql.php:246 +#: ../../include/functions_filemanager.php:795 +msgid "Upload file/s" +msgstr "Upload file(s)" + +#: ../../include/functions_filemanager.php:802 +msgid "The directory is read-only" +msgstr "This directory is read-only" + +#: ../../include/functions_db.php:75 +#, php-format +msgid "Error connecting to database %s at %s." +msgstr "Error on connecting to database %s at %s." + +#: ../../include/functions_db.php:1499 ../../godmode/menu.php:317 +#: ../../godmode/db/db_refine.php:33 +msgid "Database debug" +msgstr "Database debug" + +#: ../../include/functions_db.php:1515 +msgid "SQL sentence" +msgstr "SQL sentence" + +#: ../../include/functions_db.php:1517 +msgid "Rows" +msgstr "Rows" + +#: ../../include/functions_db.php:1518 +msgid "Saved" +msgstr "Saved" + +#: ../../include/functions_db.php:1519 +msgid "Time (ms)" +msgstr "Time (ms)" + +#: ../../include/functions_db.php:1529 +#: ../../include/functions_reporting_html.php:496 +#: ../../include/functions_reporting_html.php:575 +#: ../../include/functions_reporting_html.php:675 +#: ../../include/functions_reporting_html.php:2043 +#: ../../include/functions_reporting_html.php:2523 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1333 +msgid "OK" +msgstr "OK" + +#: ../../include/functions_custom_graphs.php:226 +#: ../../godmode/reporting/reporting_builder.list_items.php:313 +msgid "No items." +msgstr "No items." + +#: ../../include/functions_groups.php:63 +msgid "Alert Actions" +msgstr "Alert Actions" + +#: ../../include/functions_groups.php:78 +msgid "Alert Templates" +msgstr "Alert Templates" + +#: ../../include/functions_groups.php:135 +msgid "Layout visual console" +msgstr "Visual console layout" + +#: ../../include/functions_groups.php:149 +msgid "Plannet down time" +msgstr "Planned downtime" + +#: ../../include/functions_groups.php:176 +msgid "GIS maps" +msgstr "GIS maps" + +#: ../../include/functions_groups.php:190 +msgid "GIS connections" +msgstr "GIS connections" + +#: ../../include/functions_groups.php:204 +msgid "GIS map layers" +msgstr "GIS map layers" + +#: ../../include/functions_groups.php:217 +msgid "Network maps" +msgstr "Network maps" + +#: ../../include/functions_groups.php:2149 +msgid "Show branch children" +msgstr "Show branch son" + +#: ../../include/functions_groups.php:2178 msgid "" -"Problems with configuration permissions. Please contact with Administrator" +"You can not delete the last group in Pandora. A common installation must has " +"almost one group." msgstr "" -"Problems with configuration permissions. Please contact with Administrator" +"You cannot delete the last group in Pandora. A common installation must have " +"at least one group." -#: ../../include/auth/mysql.php:252 -msgid "Your permissions have changed. Please, login again." -msgstr "Your permissions have changed. Please, login again." +#: ../../include/functions_ui.php:225 +msgid "Information" +msgstr "Information" -#: ../../include/auth/mysql.php:265 +#: ../../include/functions_ui.php:231 +msgid "Success" +msgstr "Success" + +#: ../../include/functions_ui.php:367 +msgid "Request successfully processed" +msgstr "Request successfully processed" + +#: ../../include/functions_ui.php:370 +msgid "Error processing request" +msgstr "Error processing request" + +#: ../../include/functions_ui.php:508 msgid "" -"Ooops User not found in \n" -"\t\t\t\tdatabase or incorrect password" +"Is possible that this view uses part of information which your user has not " +"access" msgstr "" -"Ooops User not found in \n" -"\t\t\t\tdatabase or incorrect password" +"It's possible that this view uses a part of the information to which your " +"user doesn't have access." -#: ../../include/auth/mysql.php:283 ../../include/auth/mysql.php:331 -msgid "Fail the group synchronizing" -msgstr "Fail the group synchronizing" +#: ../../include/functions_ui.php:1003 ../../godmode/alerts/alert_view.php:152 +#: ../../godmode/alerts/configure_alert_template.php:846 +msgid "The alert would fire when the value is " +msgstr "" +"The alert is triggered when the value is equal to " -#: ../../include/auth/mysql.php:289 ../../include/auth/mysql.php:337 -msgid "Fail the tag synchronizing" -msgstr "Fail the tag synchronizing" +#: ../../include/functions_ui.php:1007 ../../godmode/alerts/alert_view.php:156 +#: ../../godmode/alerts/configure_alert_template.php:847 +msgid "The alert would fire when the value is not " +msgstr "" +"The alert is triggered when the value is different to " -#: ../../include/auth/mysql.php:302 +#: ../../include/functions_ui.php:1012 ../../godmode/alerts/alert_view.php:144 +#: ../../godmode/alerts/configure_alert_template.php:844 msgid "" -"User not found in database \n" -"\t\t\t\t\tor incorrect password" +"The alert would fire when the value matches " msgstr "" -"User not found in database \n" -"\t\t\t\t\tor incorrect password" +"The alert is triggered when the value matches " -#: ../../include/auth/mysql.php:317 -msgid "User not found in database or incorrect password" -msgstr "User not found in database or incorrect password" +#: ../../include/functions_ui.php:1015 ../../godmode/alerts/alert_view.php:147 +msgid "" +"The alert would fire when the value doesn't match " +msgstr "" +"The alert is triggered when the value doesn't match " -#: ../../include/auth/mysql.php:593 -msgid "Could not changes password on remote pandora" -msgstr "Could not change password for remote pandora" +#: ../../include/functions_ui.php:1021 ../../godmode/alerts/alert_view.php:161 +#: ../../godmode/alerts/configure_alert_template.php:848 +msgid "" +"The alert would fire when the value is between and " +"" +msgstr "" +"The alert is triggered when the value is between " +"and " -#: ../../include/auth/mysql.php:630 -msgid "Your installation of PHP does not support LDAP" -msgstr "Your PHP environment doesn't support LDAP" +#: ../../include/functions_ui.php:1024 ../../godmode/alerts/alert_view.php:164 +msgid "" +"The alert would fire when the value is not between " +"and " +msgstr "" +"The alert is triggered when the value isn't between " +"and " -#: ../../include/class/Tree.class.php:1474 -#: ../../include/functions_modules.php:1875 -#: ../../include/functions_modules.php:1895 -#: ../../mobile/operation/modules.php:459 -#: ../../mobile/operation/modules.php:477 -#: ../../mobile/operation/modules.php:512 -#: ../../mobile/operation/modules.php:530 -#: ../../operation/agentes/pandora_networkmap.view.php:285 -#: ../../operation/agentes/pandora_networkmap.view.php:307 -#: ../../operation/agentes/status_monitor.php:1158 -#: ../../operation/agentes/status_monitor.php:1162 -#: ../../operation/agentes/status_monitor.php:1195 -#: ../../operation/agentes/status_monitor.php:1200 -#: ../../operation/search_modules.php:112 -#: ../../operation/search_modules.php:132 -#: ../../enterprise/extensions/vmware/vmware_view.php:935 -#: ../../enterprise/include/functions_services.php:1595 -#: ../../enterprise/include/functions_services.php:1619 -#: ../../enterprise/operation/agentes/policy_view.php:363 -#: ../../enterprise/operation/agentes/policy_view.php:382 -msgid "CRITICAL" -msgstr "CRITICAL" +#: ../../include/functions_ui.php:1028 +msgid "The alert would fire when the value is over " +msgstr "" +"The alert will be triggered when the value is over " -#: ../../include/class/Tree.class.php:1481 -#: ../../include/functions_modules.php:1879 -#: ../../include/functions_modules.php:1899 -#: ../../mobile/operation/modules.php:463 -#: ../../mobile/operation/modules.php:482 -#: ../../mobile/operation/modules.php:516 -#: ../../mobile/operation/modules.php:535 -#: ../../operation/agentes/pandora_networkmap.view.php:289 -#: ../../operation/agentes/pandora_networkmap.view.php:312 -#: ../../operation/agentes/status_monitor.php:1168 -#: ../../operation/agentes/status_monitor.php:1172 -#: ../../operation/agentes/status_monitor.php:1207 -#: ../../operation/agentes/status_monitor.php:1212 -#: ../../operation/search_modules.php:116 -#: ../../operation/search_modules.php:139 -#: ../../enterprise/extensions/vmware/vmware_view.php:939 -#: ../../enterprise/include/functions_login.php:33 -#: ../../enterprise/include/functions_services.php:1599 -#: ../../enterprise/include/functions_services.php:1623 -#: ../../enterprise/operation/agentes/policy_view.php:367 -#: ../../enterprise/operation/agentes/policy_view.php:386 -msgid "WARNING" -msgstr "WARNING" +#: ../../include/functions_ui.php:1033 +msgid "The alert would fire when the value is under " +msgstr "" +"The alert will be triggered when the value is under " -#: ../../include/class/Tree.class.php:1486 -#: ../../include/functions_modules.php:1890 -#: ../../include/functions_modules.php:1894 -#: ../../include/functions_modules.php:1898 -#: ../../mobile/operation/modules.php:471 -#: ../../mobile/operation/modules.php:476 -#: ../../mobile/operation/modules.php:481 -#: ../../mobile/operation/modules.php:524 -#: ../../mobile/operation/modules.php:529 -#: ../../mobile/operation/modules.php:534 -#: ../../operation/agentes/pandora_networkmap.view.php:301 -#: ../../operation/agentes/pandora_networkmap.view.php:306 -#: ../../operation/agentes/pandora_networkmap.view.php:311 -#: ../../operation/agentes/status_monitor.php:1182 -#: ../../operation/agentes/status_monitor.php:1187 -#: ../../operation/agentes/status_monitor.php:1194 -#: ../../operation/agentes/status_monitor.php:1199 -#: ../../operation/agentes/status_monitor.php:1206 -#: ../../operation/agentes/status_monitor.php:1211 -#: ../../operation/search_modules.php:124 -#: ../../operation/search_modules.php:131 -#: ../../operation/search_modules.php:138 -#: ../../enterprise/extensions/vmware/vmware_view.php:943 -#: ../../enterprise/include/functions_services.php:1606 -#: ../../enterprise/include/functions_services.php:1614 -#: ../../enterprise/include/functions_services.php:1619 -#: ../../enterprise/include/functions_services.php:1623 -#: ../../enterprise/include/functions_services.php:1627 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/policy_view.php:386 -msgid "UNKNOWN" -msgstr "UNKNOWN" +#: ../../include/functions_ui.php:1038 ../../godmode/alerts/alert_view.php:186 +#: ../../godmode/alerts/configure_alert_template.php:852 +msgid "The alert would fire when the module is in warning status" +msgstr "The alert is triggered when the module is in warning status" -#: ../../include/class/Tree.class.php:1492 -msgid "NO DATA" -msgstr "NO DATA" +#: ../../include/functions_ui.php:1043 ../../godmode/alerts/alert_view.php:189 +#: ../../godmode/alerts/configure_alert_template.php:853 +msgid "The alert would fire when the module is in critical status" +msgstr "The alert is triggered when the module is in critical status" -#: ../../include/class/Tree.class.php:1500 -#: ../../include/functions_modules.php:1883 -#: ../../include/functions_modules.php:1891 -#: ../../mobile/operation/modules.php:455 -#: ../../mobile/operation/modules.php:472 -#: ../../mobile/operation/modules.php:508 -#: ../../mobile/operation/modules.php:525 -#: ../../operation/agentes/pandora_networkmap.view.php:293 -#: ../../operation/agentes/pandora_networkmap.view.php:302 -#: ../../operation/agentes/status_monitor.php:1148 -#: ../../operation/agentes/status_monitor.php:1152 -#: ../../operation/agentes/status_monitor.php:1183 -#: ../../operation/agentes/status_monitor.php:1188 -#: ../../operation/search_modules.php:108 -#: ../../operation/search_modules.php:125 -#: ../../enterprise/extensions/vmware/vmware_view.php:931 -#: ../../enterprise/include/functions_services.php:1591 -#: ../../enterprise/include/functions_services.php:1614 -#: ../../enterprise/operation/agentes/policy_view.php:371 -#: ../../enterprise/operation/agentes/policy_view.php:378 -msgid "NORMAL" -msgstr "NORMAL" +#: ../../include/functions_ui.php:1080 +#: ../../godmode/servers/recon_script.php:183 +#: ../../godmode/servers/plugin.php:473 +msgid "Help" +msgstr "Help" -#: ../../include/class/Tree.class.php:1578 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 -msgid "Module alerts" -msgstr "Module alerts" +#: ../../include/functions_ui.php:1307 +msgid "the Flexible Monitoring System" +msgstr "the Flexible Monitoring System" -#: ../../include/functions.php:215 -#: ../../enterprise/include/functions_reporting_csv.php:1534 -msgid "." -msgstr "." - -#: ../../include/functions.php:217 -msgid "," -msgstr "," - -#: ../../include/functions.php:439 ../../include/functions.php:573 -msgid "s" -msgstr "s" - -#: ../../include/functions.php:440 ../../include/functions.php:574 -msgid "d" -msgstr "d" - -#: ../../include/functions.php:441 ../../include/functions.php:575 -msgid "M" -msgstr "M" - -#: ../../include/functions.php:442 ../../include/functions.php:576 -msgid "Y" -msgstr "Y" - -#: ../../include/functions.php:443 ../../include/functions.php:577 -msgid "m" -msgstr "m" - -#: ../../include/functions.php:444 ../../include/functions.php:578 -msgid "h" -msgstr "h" - -#: ../../include/functions.php:445 ../../include/functions.php:579 -msgid "N" -msgstr "N" - -#: ../../include/functions.php:867 ../../include/functions.php:1075 -#: ../../include/functions.php:1108 ../../include/functions_events.php:1459 -#: ../../include/functions_graph.php:2778 -#: ../../include/functions_graph.php:3278 -#: ../../include/functions_graph.php:3279 -#: ../../include/functions_graph.php:5227 -#: ../../include/functions_incidents.php:34 -#: ../../include/functions_incidents.php:69 -msgid "Maintenance" -msgstr "Maintenance" - -#: ../../include/functions.php:870 ../../include/functions.php:1076 -#: ../../include/functions.php:1111 ../../include/functions_events.php:1462 -#: ../../include/functions_graph.php:3282 -#: ../../include/functions_graph.php:3283 -#: ../../include/functions_graph.php:5230 -msgid "Informational" -msgstr "Informative" - -#: ../../include/functions.php:882 ../../include/functions.php:1078 -#: ../../include/functions.php:1123 ../../include/functions_graph.php:3290 -#: ../../include/functions_graph.php:3291 -#: ../../include/functions_graph.php:5242 -msgid "Minor" -msgstr "Minor" - -#: ../../include/functions.php:885 ../../include/functions.php:1080 -#: ../../include/functions.php:1126 ../../include/functions_graph.php:3298 -#: ../../include/functions_graph.php:3299 -#: ../../include/functions_graph.php:5245 -msgid "Major" -msgstr "Major" - -#: ../../include/functions.php:1029 ../../include/functions_events.php:1395 -msgid "Monitor Critical" -msgstr "Monitor in critical status" - -#: ../../include/functions.php:1030 ../../include/functions_events.php:1398 -msgid "Monitor Warning" -msgstr "Monitor in warning status" - -#: ../../include/functions.php:1031 ../../include/functions_events.php:1401 -msgid "Monitor Normal" -msgstr "Monitor in normal status" - -#: ../../include/functions.php:1033 -msgid "Monitor Unknown" -msgstr "Unknown Monitor" - -#: ../../include/functions.php:1036 ../../include/functions_events.php:1138 -#: ../../include/functions_events.php:1407 -msgid "Alert recovered" -msgstr "Alert recovered" - -#: ../../include/functions.php:1037 ../../include/functions_events.php:1173 -#: ../../include/functions_events.php:1410 -msgid "Alert ceased" -msgstr "Alert ceased" - -#: ../../include/functions.php:1038 ../../include/functions_events.php:1413 -msgid "Alert manual validation" -msgstr "Manual alert validation" - -#: ../../include/functions.php:1040 -msgid "Agent created" -msgstr "Agent created" - -#: ../../include/functions.php:1041 ../../include/functions_events.php:1416 -msgid "Recon host detected" -msgstr "Recon host detected" - -#: ../../include/functions.php:1044 ../../include/functions_events.php:1170 -#: ../../include/functions_events.php:1425 -msgid "Configuration change" -msgstr "Configuration change" - -#: ../../include/functions.php:2015 -msgid "custom" -msgstr "custom" - -#: ../../include/functions.php:2020 ../../include/functions.php:2021 +#: ../../include/functions_ui.php:1627 ../../include/functions_ui.php:1661 #, php-format -msgid "%s minutes" -msgstr "%s minutes" +msgid "Total items: %s" +msgstr "Total items : %s" -#: ../../include/functions.php:2023 ../../include/functions.php:2024 +#: ../../include/functions_ui.php:1968 +msgid "Unknown type" +msgstr "Unknown type" + +#: ../../include/functions_ui.php:2001 ../../include/functions_graph.php:758 +#: ../../include/functions_graph.php:759 ../../include/functions_graph.php:760 +#: ../../include/functions_graph.php:763 +#: ../../include/functions_graph.php:1433 +#: ../../include/functions_graph.php:3947 +#: ../../include/functions_graph.php:3952 +#: ../../include/functions_graph.php:4670 +#: ../../include/functions_graph.php:4673 +#: ../../include/functions_graph.php:4676 +#: ../../include/graphs/functions_pchart.php:202 +#: ../../include/graphs/functions_pchart.php:1190 +#: ../../include/functions_reporting.php:948 +#: ../../godmode/alerts/alert_view.php:310 +#: ../../godmode/reporting/reporting_builder.item_editor.php:781 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1284 +msgid "Max" +msgstr "Max." + +#: ../../include/functions_ui.php:2001 ../../include/functions_graph.php:758 +#: ../../include/functions_graph.php:759 ../../include/functions_graph.php:760 +#: ../../include/functions_graph.php:763 +#: ../../include/functions_graph.php:1435 +#: ../../include/functions_graph.php:3947 +#: ../../include/functions_graph.php:3952 +#: ../../include/functions_graph.php:4670 +#: ../../include/functions_graph.php:4673 +#: ../../include/functions_graph.php:4676 +#: ../../include/graphs/functions_pchart.php:208 +#: ../../include/graphs/functions_pchart.php:1188 +#: ../../include/functions_reporting.php:951 +#: ../../godmode/alerts/alert_view.php:310 +#: ../../godmode/reporting/reporting_builder.item_editor.php:779 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1286 +msgid "Min" +msgstr "Min." + +#: ../../include/functions_ui.php:2781 +msgid "Type at least two characters to search." +msgstr "Type at least two characters to search." + +#: ../../include/functions_ui.php:3574 +msgid "Problem with Pandora FMS database" +msgstr "Problem with Pandora FMS database" + +#: ../../include/functions_ui.php:3575 +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\tthe database server is not running." +msgstr "" +"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." + +#: ../../include/functions_ui.php:3579 +msgid "DB ERROR" +msgstr "DB ERROR" + +#: ../../include/functions_ui.php:3585 +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\";
    " +msgstr "" +"If you have modified the auth system, the origin of this problem could be " +"that Pandora cannot override the authorization variables from the config " +"database. Please remove them from your database by executing " +":
    DELETE FROM tconfig WHERE token = \"auth\";
    " + +#: ../../include/functions_ui.php:3589 +msgid "Empty configuration table" +msgstr "Empty configuration table" + +#: ../../include/functions_ui.php:3590 +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

    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 "" +"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 scheme has been created but there is no data " +"in it, you might have a problem with the database access credentials or your " +"scheme is out of date.\n" +"\t\t\t

    Pandora FMS Console cannot find include/config.php or " +"the file has invalid\n" +"\t\t\tpermissions and the HTTP server cannot read it. Please read the " +"documentation to fix this problem.
    " + +#: ../../include/functions_ui.php:3597 +msgid "No configuration file found" +msgstr "No configuration file found." + +#: ../../include/functions_ui.php:3598 +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." +msgstr "" +"The Pandora FMS Console cannot find include/config.php or this file " +"has invalid\n" +"\t\t\tpermissions and the HTTP server cannot read it. Please read the " +"documentation to fix this problem." + +#: ../../include/functions_ui.php:3609 #, php-format -msgid "%s hours" -msgstr "%s hours" +msgid "You may try to run the %sinstallation wizard%s to create one." +msgstr "" +"You may try running the %sinstallation wizard%s to create one." -#: ../../include/functions.php:2029 ../../include/functions.php:2030 -#, php-format -msgid "%s months" -msgstr "%s months" +#: ../../include/functions_ui.php:3612 +msgid "Installer active" +msgstr "Installer active" -#: ../../include/functions.php:2032 ../../include/functions.php:2033 -#, php-format -msgid "%s years" -msgstr "%s years" +#: ../../include/functions_ui.php:3613 +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." +msgstr "" +"For security reasons, normal operation is not possible until you delete the " +"installer file.\n" +"\t\t\tPlease delete the ./install.php file before running the Pandora " +"FMS Console." -#: ../../include/functions.php:2036 -msgid "Default values will be used" -msgstr "Default values will be applied" +#: ../../include/functions_ui.php:3617 +msgid "Bad permission for include/config.php" +msgstr "Bad permission for include/config.php" -#: ../../include/functions.php:2196 -msgid "The uploaded file was only partially uploaded" -msgstr "The file was only partially uploaded." +#: ../../include/functions_ui.php:3618 +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." +msgstr "" +"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." -#: ../../include/functions.php:2199 -msgid "No file was uploaded" -msgstr "No file was uploaded" +#: ../../include/functions_visual_map_editor.php:53 +#: ../../include/functions_visual_map_editor.php:359 +#: ../../godmode/reporting/visual_console_builder.elements.php:111 +#: ../../godmode/reporting/visual_console_builder.data.php:139 +msgid "Background" +msgstr "Background" -#: ../../include/functions.php:2202 -msgid "Missing a temporary folder" -msgstr "Temporary folder missing." +#: ../../include/functions_visual_map_editor.php:54 +#: ../../include/functions_visual_map_editor.php:604 +#: ../../godmode/reporting/visual_console_builder.wizard.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:138 +msgid "Static Graph" +msgstr "Static Graph" -#: ../../include/functions.php:2205 -msgid "Failed to write file to disk" -msgstr "Failed to write file to disk." +#: ../../include/functions_visual_map_editor.php:55 +#: ../../include/functions_visual_map_editor.php:605 +#: ../../godmode/reporting/visual_console_builder.wizard.php:105 +msgid "Percentile Item" +msgstr "Percentile Item" -#: ../../include/functions.php:2208 -msgid "File upload stopped by extension" -msgstr "File upload stopped by extension." +#: ../../include/functions_visual_map_editor.php:57 +#: ../../godmode/reporting/visual_console_builder.wizard.php:107 +msgid "Simple value" +msgstr "Simple value" -#: ../../include/functions.php:2212 -msgid "Unknown upload error" -msgstr "Unknown upload error." +#: ../../include/functions_visual_map_editor.php:57 +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 "" +"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." -#: ../../include/functions.php:2297 -msgid "No data found to export" -msgstr "No data found to export" +#: ../../include/functions_visual_map_editor.php:84 +#: ../../include/functions_visual_map_editor.php:386 +#: ../../godmode/setup/gis_step_2.php:257 +#: ../../godmode/events/event_responses.editor.php:104 +#: ../../godmode/reporting/visual_console_builder.wizard.php:134 +#: ../../godmode/reporting/graph_builder.main.php:137 +msgid "Width" +msgstr "Width" -#: ../../include/functions.php:2315 -msgid "Source ID" -msgstr "Source ID" +#: ../../include/functions_visual_map_editor.php:95 +#: ../../include/functions_visual_map_editor.php:119 +msgid "Border color" +msgstr "Border colour" -#: ../../include/functions.php:2583 -#: ../../operation/gis_maps/render_view.php:135 -msgid "5 seconds" -msgstr "5 seconds" +#: ../../include/functions_visual_map_editor.php:131 +msgid "Border width" +msgstr "Outline width" -#: ../../include/functions.php:2584 -#: ../../operation/gis_maps/render_view.php:136 -msgid "10 seconds" -msgstr "10 seconds" +#: ../../include/functions_visual_map_editor.php:140 +msgid "Fill color" +msgstr "Fill color" -#: ../../include/functions.php:2585 -msgid "15 seconds" -msgstr "15 seconds" +#: ../../include/functions_visual_map_editor.php:218 +msgid "Enable link" +msgstr "Enable link" -#: ../../include/functions.php:2586 -#: ../../operation/gis_maps/render_view.php:137 -msgid "30 seconds" -msgstr "30 seconds" +#: ../../include/functions_visual_map_editor.php:237 +#: ../../godmode/reporting/visual_console_builder.data.php:144 +msgid "Background color" +msgstr "Background colour" -#: ../../include/functions.php:2590 -msgid "15 minutes" -msgstr "15 minutes" +#: ../../include/functions_visual_map_editor.php:239 +msgid "White" +msgstr "White" -#: ../../include/functions_reports.php:498 -#: ../../include/functions_reports.php:500 -#: ../../include/functions_reports.php:504 -#: ../../include/functions_reports.php:506 -#: ../../include/functions_reports.php:510 -#: ../../include/functions_reports.php:512 -#: ../../include/functions_reports.php:514 -#: ../../include/functions_reports.php:518 -#: ../../include/functions_reports.php:522 -#: ../../include/functions_reports.php:525 -#: ../../include/functions_groups.php:106 -#: ../../include/functions_groups.php:163 -#: ../../operation/agentes/ver_agente.php:1058 -#: ../../operation/search_results.php:104 -msgid "Graphs" -msgstr "Graphs" +#: ../../include/functions_visual_map_editor.php:240 +msgid "Black" +msgstr "Black" + +#: ../../include/functions_visual_map_editor.php:241 +msgid "Transparent" +msgstr "Transparent" + +#: ../../include/functions_visual_map_editor.php:254 +#: ../../include/functions_visual_map_editor.php:264 +#: ../../include/functions_reports.php:429 +#: ../../include/functions_reports.php:505 +#: ../../include/functions_reports.php:507 +#: ../../include/functions_reporting.php:5748 +#: ../../godmode/reporting/visual_console_builder.elements.php:78 +#: ../../godmode/reporting/visual_console_builder.elements.php:380 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1134 +msgid "Custom graph" +msgstr "Custom graph" + +#: ../../include/functions_visual_map_editor.php:322 +#: ../../godmode/reporting/graph_builder.main.php:151 +msgid "Type of graph" +msgstr "Type of graph" + +#: ../../include/functions_visual_map_editor.php:348 +#: ../../godmode/reporting/visual_console_builder.wizard.php:193 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:431 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:948 +msgid "Process" +msgstr "Process" + +#: ../../include/functions_visual_map_editor.php:350 +#: ../../godmode/reporting/visual_console_builder.wizard.php:196 +msgid "Min value" +msgstr "Min value" + +#: ../../include/functions_visual_map_editor.php:351 +#: ../../include/functions_visual_map_editor.php:393 +#: ../../godmode/reporting/visual_console_builder.wizard.php:197 +#: ../../godmode/reporting/visual_console_builder.wizard.php:210 +msgid "Max value" +msgstr "Max value" + +#: ../../include/functions_visual_map_editor.php:352 +#: ../../godmode/reporting/visual_console_builder.wizard.php:198 +msgid "Avg value" +msgstr "Avg value" + +#: ../../include/functions_visual_map_editor.php:366 +msgid "Original Size" +msgstr "Original Size" + +#: ../../include/functions_visual_map_editor.php:367 +msgid "Apply" +msgstr "Apply" + +#: ../../include/functions_visual_map_editor.php:373 +msgid "Aspect ratio" +msgstr "Aspect ratio" + +#: ../../include/functions_visual_map_editor.php:374 +msgid "Width proportional" +msgstr "Proportional width" + +#: ../../include/functions_visual_map_editor.php:380 +msgid "Height proportional" +msgstr "Proportional Height" + +#: ../../include/functions_visual_map_editor.php:409 +#: ../../include/functions_visual_map_editor.php:428 +#: ../../godmode/reporting/visual_console_builder.wizard.php:230 +msgid "Value to show" +msgstr "Value to show" + +#: ../../include/functions_visual_map_editor.php:438 +#: ../../godmode/reporting/visual_console_builder.wizard.php:185 +#: ../../godmode/reporting/visual_console_builder.elements.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:748 +#: ../../godmode/reporting/graph_builder.main.php:147 +#: ../../godmode/agentes/module_manager_editor_prediction.php:150 +msgid "Period" +msgstr "Periodicity" + +#: ../../include/functions_visual_map_editor.php:497 +#: ../../godmode/snmpconsole/snmp_alert.php:966 +#: ../../godmode/snmpconsole/snmp_alert.php:1148 +#: ../../godmode/reporting/visual_console_builder.elements.php:80 +#: ../../godmode/reporting/reporting_builder.list_items.php:285 +msgid "Position" +msgstr "Position" + +#: ../../include/functions_visual_map_editor.php:510 +msgid "For use the original image file size, set 0 width and 0 height." +msgstr "" +"In order to use the original image's file size, set width and height to 0." + +#: ../../include/functions_visual_map_editor.php:537 +#: ../../godmode/reporting/visual_console_builder.elements.php:81 +msgid "Map linked" +msgstr "Map linked" + +#: ../../include/functions_visual_map_editor.php:546 +msgid "Lines haven't advanced options" +msgstr "Lines haven't advanced options" + +#: ../../include/functions_visual_map_editor.php:573 +msgid "Click start point
    of the line" +msgstr "Click the starting point
    of the line" + +#: ../../include/functions_visual_map_editor.php:578 +msgid "Click end point
    of the line" +msgstr "Click end point
    of the line" + +#: ../../include/functions_visual_map_editor.php:626 +msgid "Show grid" +msgstr "Show grid" + +#: ../../include/functions_visual_map_editor.php:628 +msgid "Delete item" +msgstr "Delete item" + +#: ../../include/functions_visual_map_editor.php:629 +msgid "Copy item" +msgstr "Copy item" + +#: ../../include/functions_visual_map_editor.php:657 +msgid "No image or name defined." +msgstr "No image or name defined." + +#: ../../include/functions_visual_map_editor.php:659 +msgid "No label defined." +msgstr "No label defined" + +#: ../../include/functions_visual_map_editor.php:661 +msgid "No image defined." +msgstr "No image defined." + +#: ../../include/functions_visual_map_editor.php:663 +msgid "No process defined." +msgstr "No process defined." + +#: ../../include/functions_visual_map_editor.php:665 +msgid "No Max value defined." +msgstr "No Max value defined." + +#: ../../include/functions_visual_map_editor.php:667 +msgid "No width defined." +msgstr "No width defined." + +#: ../../include/functions_visual_map_editor.php:669 +msgid "No period defined." +msgstr "No period defined." + +#: ../../include/functions_visual_map_editor.php:671 +msgid "No agent defined." +msgstr "No agent defined." + +#: ../../include/functions_visual_map_editor.php:673 +msgid "No module defined." +msgstr "No module defined." + +#: ../../include/functions_visual_map_editor.php:676 +msgid "Successfully save the changes." +msgstr "Changes successfully saved." + +#: ../../include/functions_visual_map_editor.php:678 +msgid "Could not be save" +msgstr "Could not be saved." #: ../../include/functions_reports.php:499 -#: ../../include/functions_reporting.php:5783 -#: ../../include/functions_reporting.php:5905 +#: ../../include/functions_reporting.php:5751 +#: ../../include/functions_reporting.php:5873 msgid "Simple graph" msgstr "Simple graph" #: ../../include/functions_reports.php:501 -#: ../../include/functions_reporting.php:3349 +#: ../../include/functions_reporting.php:3325 msgid "Simple baseline graph" msgstr "Simple baseline graph" @@ -19827,34 +11707,22 @@ msgid "ITIL" msgstr "ITIL" #: ../../include/functions_reports.php:529 -#: ../../include/functions_reporting.php:3723 -#: ../../enterprise/include/functions_reporting_csv.php:618 -#: ../../enterprise/include/functions_reporting_csv.php:635 -#: ../../enterprise/include/functions_reporting_csv.php:642 +#: ../../include/functions_reporting.php:3691 msgid "TTRT" msgstr "TTRT" #: ../../include/functions_reports.php:531 -#: ../../include/functions_reporting.php:3720 -#: ../../enterprise/include/functions_reporting_csv.php:582 -#: ../../enterprise/include/functions_reporting_csv.php:598 -#: ../../enterprise/include/functions_reporting_csv.php:605 +#: ../../include/functions_reporting.php:3688 msgid "TTO" msgstr "TTO" #: ../../include/functions_reports.php:533 -#: ../../include/functions_reporting.php:3717 -#: ../../enterprise/include/functions_reporting_csv.php:546 -#: ../../enterprise/include/functions_reporting_csv.php:562 -#: ../../enterprise/include/functions_reporting_csv.php:569 +#: ../../include/functions_reporting.php:3685 msgid "MTBF" msgstr "MTBF" #: ../../include/functions_reports.php:535 -#: ../../include/functions_reporting.php:3714 -#: ../../enterprise/include/functions_reporting_csv.php:511 -#: ../../enterprise/include/functions_reporting_csv.php:526 -#: ../../enterprise/include/functions_reporting_csv.php:533 +#: ../../include/functions_reporting.php:3682 msgid "MTTR" msgstr "MTTR" @@ -19863,41 +11731,27 @@ msgstr "MTTR" #: ../../include/functions_reports.php:544 #: ../../include/functions_reports.php:546 #: ../../include/functions_reports.php:550 -#: ../../enterprise/include/functions_reporting_csv.php:1320 -#: ../../enterprise/operation/services/services.list.php:343 -#: ../../enterprise/operation/services/services.service.php:141 msgid "SLA" msgstr "SLA" #: ../../include/functions_reports.php:540 -#: ../../include/functions_reporting.php:535 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:112 -#: ../../enterprise/godmode/services/services.service.php:301 -#: ../../enterprise/include/functions_reporting_csv.php:908 +#: ../../include/functions_reporting.php:530 msgid "S.L.A." msgstr "S.L.A." #: ../../include/functions_reports.php:543 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:113 -#: ../../enterprise/include/functions_reporting.php:1613 msgid "Monthly S.L.A." msgstr "Monthly SLA" #: ../../include/functions_reports.php:545 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:114 -#: ../../enterprise/include/functions_reporting.php:2338 msgid "Weekly S.L.A." msgstr "Weekly S.L.A." #: ../../include/functions_reports.php:547 -#: ../../enterprise/include/functions_reporting.php:3120 msgid "Hourly S.L.A." msgstr "Hourly S.L.A." #: ../../include/functions_reports.php:551 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:119 -#: ../../enterprise/include/functions_reporting.php:4016 -#: ../../enterprise/include/functions_reporting.php:4480 msgid "Services S.L.A." msgstr "SLA services" @@ -19907,7 +11761,6 @@ msgid "Forecasting" msgstr "Forecasting" #: ../../include/functions_reports.php:557 -#: ../../enterprise/include/functions_reporting_csv.php:316 msgid "Prediction date" msgstr "Prediction date" @@ -19917,10 +11770,28 @@ msgstr "Projection graph" #: ../../include/functions_reports.php:564 #: ../../include/functions_graph.php:704 -#: ../../include/functions_graph.php:3933 +#: ../../include/functions_graph.php:3931 msgid "Avg. Value" msgstr "Avg. Value" +#: ../../include/functions_reports.php:566 +#: ../../include/functions_graph.php:703 +#: ../../include/functions_graph.php:3931 +#: ../../include/functions_reporting.php:3670 +#: ../../godmode/modules/manage_network_components_form_common.php:166 +#: ../../godmode/agentes/module_manager_editor_common.php:423 +msgid "Max. Value" +msgstr "Max. Value" + +#: ../../include/functions_reports.php:568 +#: ../../include/functions_graph.php:705 +#: ../../include/functions_graph.php:3932 +#: ../../include/functions_reporting.php:3673 +#: ../../godmode/modules/manage_network_components_form_common.php:164 +#: ../../godmode/agentes/module_manager_editor_common.php:419 +msgid "Min. Value" +msgstr "Min. Value" + #: ../../include/functions_reports.php:570 msgid "Monitor report" msgstr "Monitor report" @@ -19930,11 +11801,8 @@ msgid "Serialize data" msgstr "Serialise data" #: ../../include/functions_reports.php:574 -#: ../../include/functions_reporting.php:3711 -#: ../../include/functions_reporting.php:5701 -#: ../../enterprise/include/functions_reporting_csv.php:687 -#: ../../enterprise/include/functions_reporting_csv.php:703 -#: ../../enterprise/include/functions_reporting_csv.php:710 +#: ../../include/functions_reporting.php:3679 +#: ../../include/functions_reporting.php:5669 msgid "Summatory" msgstr "Summatory" @@ -19954,19 +11822,20 @@ msgid "Grouped" msgstr "Grouped" #: ../../include/functions_reports.php:583 -#: ../../enterprise/include/functions_reporting_csv.php:469 msgid "Group report" msgstr "Group report" #: ../../include/functions_reports.php:585 -#: ../../include/functions_reporting.php:1727 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:45 -#: ../../enterprise/include/functions_reporting_csv.php:390 +#: ../../include/functions_reporting.php:1722 msgid "Exception" msgstr "Exception" +#: ../../include/functions_reports.php:592 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1208 +msgid "SQL query" +msgstr "SQL query" + #: ../../include/functions_reports.php:595 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:44 msgid "Top n" msgstr "Top n" @@ -19975,10 +11844,8 @@ msgid "Network interfaces" msgstr "Network interfaces" #: ../../include/functions_reports.php:599 -#: ../../include/functions_reporting.php:4849 -#: ../../include/functions_reporting.php:5092 -#: ../../enterprise/include/functions_reporting.php:632 -#: ../../enterprise/include/functions_reporting_csv.php:248 +#: ../../include/functions_reporting.php:4817 +#: ../../include/functions_reporting.php:5060 msgid "Availability" msgstr "Availability" @@ -19987,6 +11854,13 @@ msgstr "Availability" msgid "Text/HTML " msgstr "Text / HTML " +#: ../../include/functions_reports.php:603 +#: ../../include/functions_reporting.php:3846 ../../godmode/setup/news.php:181 +#: ../../godmode/setup/setup_visuals.php:679 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1196 +msgid "Text" +msgstr "Text" + #: ../../include/functions_reports.php:605 msgid "Import text from URL" msgstr "Import text from URL" @@ -20015,20 +11889,44 @@ msgstr "Event report module" msgid "Event report group" msgstr "Event report group" +#: ../../include/functions_reports.php:628 +#: ../../include/functions_reports.php:629 +#: ../../include/functions_reports.php:631 +#: ../../include/functions_reporting.php:1585 +#: ../../godmode/agentes/configurar_agente.php:527 +msgid "Inventory" +msgstr "Inventory" + #: ../../include/functions_reports.php:632 msgid "Inventory changes" msgstr "Inventory changes" +#: ../../include/functions_reports.php:637 +#: ../../include/functions_reports.php:639 ../../godmode/menu.php:131 +#: ../../godmode/setup/setup.php:138 +#: ../../godmode/agentes/planned_downtime.list.php:396 +msgid "Configuration" +msgstr "Configuration" + #: ../../include/functions_reports.php:638 -#: ../../include/functions_reporting.php:3554 +#: ../../include/functions_reporting.php:3522 msgid "Agent configuration" msgstr "Agent configuration" #: ../../include/functions_reports.php:640 -#: ../../include/functions_reporting.php:2529 +#: ../../include/functions_reporting.php:2511 msgid "Group configuration" msgstr "Group settings" +#: ../../include/functions_reports.php:641 +#: ../../include/functions_reports.php:643 +#: ../../include/functions_reports.php:645 +#: ../../include/functions_reports.php:647 +#: ../../include/functions_reports.php:649 ../../godmode/menu.php:264 +#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:129 +msgid "Netflow" +msgstr "Netflow" + #: ../../include/functions_reports.php:642 msgid "Netflow area chart" msgstr "Netflow area chart" @@ -20050,165 +11948,1191 @@ msgid "Netflow summary table" msgstr "Netflow summary chart" #: ../../include/functions_reports.php:654 -#: ../../enterprise/include/functions_reporting.php:1446 msgid "Log" msgstr "Log" #: ../../include/functions_reports.php:655 -#: ../../enterprise/include/functions_reporting.php:1437 msgid "Log report" msgstr "Log report" -#: ../../include/functions_agents.php:672 +#: ../../include/functions_graph.php:706 +msgid "Units. Value" +msgstr "Unit Value" + +#: ../../include/functions_graph.php:754 +#: ../../include/functions_graph.php:3947 +#: ../../include/functions_graph.php:3952 +#: ../../include/functions_graph.php:4670 +#: ../../include/functions_graph.php:4673 +#: ../../include/functions_graph.php:4676 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1127 +msgid "Last" +msgstr "Last" + +#: ../../include/functions_graph.php:755 ../../include/functions_graph.php:758 +#: ../../include/functions_graph.php:759 ../../include/functions_graph.php:760 +#: ../../include/functions_graph.php:763 +#: ../../include/functions_graph.php:1437 +#: ../../include/functions_graph.php:3947 +#: ../../include/functions_graph.php:3952 +#: ../../include/functions_graph.php:4670 +#: ../../include/functions_graph.php:4673 +#: ../../include/functions_graph.php:4676 +#: ../../include/functions_reporting.php:956 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1288 +msgid "Avg" +msgstr "Avg." + +#: ../../include/functions_graph.php:781 +#: ../../include/functions_graph.php:1753 +#, php-format +msgid "Percentile %dº" +msgstr "Percentile %dº" + +#: ../../include/functions_graph.php:815 +#: ../../include/functions_graph.php:4017 +msgid "Previous" +msgstr "Previous" + +#: ../../include/functions_graph.php:1246 +#, php-format +msgid "%s" +msgstr "%s" + +#: ../../include/functions_graph.php:1753 +msgid " of module " +msgstr " of module " + +#: ../../include/functions_graph.php:2109 +msgid "Not fired alerts" +msgstr "Non-triggered alerts" + +#: ../../include/functions_graph.php:2118 +#: ../../include/functions_graph.php:2198 +#: ../../include/functions_graph.php:2271 +#: ../../include/functions_graph.php:3037 +#: ../../include/functions_graph.php:3473 +#: ../../include/functions_reporting_html.php:2924 +#: ../../include/functions_reporting_html.php:3002 +#: ../../include/functions_reporting.php:1207 +#: ../../include/functions_reporting.php:1360 +#: ../../include/functions_reporting.php:1379 +#: ../../include/functions_reporting.php:1400 +#: ../../include/functions_reporting.php:1421 +#: ../../include/functions_reporting.php:2087 +#: ../../include/functions_reporting.php:2269 +#: ../../include/functions_reporting.php:2290 +#: ../../include/functions_reporting.php:2311 +#: ../../include/functions_reporting.php:6179 +#: ../../include/functions_reporting.php:6199 +#: ../../include/functions_reporting.php:6219 +msgid "other" +msgstr "other" + +#: ../../include/functions_graph.php:2278 +#: ../../include/functions_graph.php:2325 +#: ../../include/graphs/functions_gd.php:165 +#: ../../include/graphs/functions_gd.php:256 +msgid "Out of limits" +msgstr "Out of limits" + +#: ../../include/functions_graph.php:2558 +msgid "Today" +msgstr "Today" + +#: ../../include/functions_graph.php:2559 +msgid "Week" +msgstr "Week" + +#: ../../include/functions_graph.php:2560 ../../include/functions_html.php:863 +msgid "Month" +msgstr "Month" + +#: ../../include/functions_graph.php:2561 +#: ../../include/functions_graph.php:2562 +msgid "Months" +msgstr "Month" + +#: ../../include/functions_graph.php:2584 +msgid "History db" +msgstr "History db" + +#: ../../include/functions_graph.php:2771 +#: ../../include/functions_incidents.php:29 +#: ../../include/functions_incidents.php:54 +msgid "Informative" +msgstr "Informative" + +#: ../../include/functions_graph.php:2772 +#: ../../include/functions_incidents.php:30 +#: ../../include/functions_incidents.php:57 +msgid "Low" +msgstr "Low" + +#: ../../include/functions_graph.php:2773 +#: ../../include/functions_incidents.php:31 +#: ../../include/functions_incidents.php:60 +msgid "Medium" +msgstr "Medium" + +#: ../../include/functions_graph.php:2774 +#: ../../include/functions_incidents.php:32 +#: ../../include/functions_incidents.php:63 +msgid "Serious" +msgstr "Serious" + +#: ../../include/functions_graph.php:2775 +#: ../../include/functions_incidents.php:33 +#: ../../include/functions_incidents.php:66 +msgid "Very serious" +msgstr "Very serious" + +#: ../../include/functions_graph.php:2776 +#: ../../include/functions_graph.php:3276 +#: ../../include/functions_graph.php:3277 +#: ../../include/functions_graph.php:5225 +#: ../../include/functions_incidents.php:34 +#: ../../include/functions_incidents.php:69 +#: ../../include/functions_events.php:1459 ../../include/functions.php:867 +#: ../../include/functions.php:1075 ../../include/functions.php:1108 +msgid "Maintenance" +msgstr "Maintenance" + +#: ../../include/functions_graph.php:2798 +#: ../../include/functions_graph.php:2810 +msgid "Open incident" +msgstr "Open incident" + +#: ../../include/functions_graph.php:2799 +#: ../../include/functions_graph.php:2812 +msgid "Closed incident" +msgstr "Closed incident" + +#: ../../include/functions_graph.php:2800 +#: ../../include/functions_graph.php:2814 +msgid "Outdated" +msgstr "Outdated" + +#: ../../include/functions_graph.php:2801 +#: ../../include/functions_graph.php:2816 +msgid "Invalid" +msgstr "Invalid" + +#: ../../include/functions_graph.php:3147 +#: ../../include/functions_graph.php:3198 +#: ../../include/functions_events.php:1161 +msgid "SYSTEM" +msgstr "SYSTEM" + +#: ../../include/functions_graph.php:3234 +#: ../../godmode/setup/performance.php:149 +msgid "Others" +msgstr "Others" + +#: ../../include/functions_graph.php:3280 +#: ../../include/functions_graph.php:3281 +#: ../../include/functions_graph.php:5228 +#: ../../include/functions_events.php:1462 ../../include/functions.php:870 +#: ../../include/functions.php:1076 ../../include/functions.php:1111 +msgid "Informational" +msgstr "Informative" + +#: ../../include/functions_graph.php:3288 +#: ../../include/functions_graph.php:3289 +#: ../../include/functions_graph.php:5240 ../../include/functions.php:882 +#: ../../include/functions.php:1078 ../../include/functions.php:1123 +msgid "Minor" +msgstr "Minor" + +#: ../../include/functions_graph.php:3296 +#: ../../include/functions_graph.php:3297 +#: ../../include/functions_graph.php:5243 ../../include/functions.php:885 +#: ../../include/functions.php:1080 ../../include/functions.php:1126 +msgid "Major" +msgstr "Major" + +#: ../../include/functions_graph.php:3932 +msgid "Units" +msgstr "Units" + +#: ../../include/functions_graph.php:4320 +#: ../../include/functions_treeview.php:94 +#: ../../include/functions_treeview.php:107 +#: ../../include/functions_reporting_html.php:3131 +#: ../../include/functions_alerts.php:560 +#: ../../godmode/alerts/configure_alert_template.php:625 +#: ../../godmode/massive/massive_edit_modules.php:381 +#: ../../godmode/massive/massive_edit_modules.php:427 +#: ../../godmode/massive/massive_edit_modules.php:516 +#: ../../godmode/modules/manage_network_components_form_common.php:122 +#: ../../godmode/modules/manage_network_components_form_common.php:139 +#: ../../godmode/agentes/module_manager_editor_common.php:283 +#: ../../godmode/agentes/module_manager_editor_common.php:304 +msgid "Max." +msgstr "Max." + +#: ../../include/functions_graph.php:4320 +#: ../../include/functions_treeview.php:94 +#: ../../include/functions_treeview.php:107 +#: ../../include/functions_reporting_html.php:3130 +#: ../../include/functions_alerts.php:561 +#: ../../godmode/alerts/configure_alert_template.php:620 +#: ../../godmode/massive/massive_edit_modules.php:372 +#: ../../godmode/massive/massive_edit_modules.php:418 +#: ../../godmode/massive/massive_edit_modules.php:514 +#: ../../godmode/modules/manage_network_components_form_common.php:119 +#: ../../godmode/modules/manage_network_components_form_common.php:136 +msgid "Min." +msgstr "Min." + +#: ../../include/functions_graph.php:4320 +msgid "Avg." +msgstr "Avg." + +#: ../../include/functions_graph.php:5577 +msgid "Main node" +msgstr "Main node" + +#: ../../include/functions_clippy.php:163 +#: ../../include/functions_clippy.php:168 +msgid "End wizard" +msgstr "End wizard" + +#: ../../include/functions_clippy.php:195 +msgid "Next →" +msgstr "Next →" + +#: ../../include/functions_clippy.php:196 +msgid "← Back" +msgstr "← Back" + +#: ../../include/functions_clippy.php:208 +msgid "Do you want to exit the help tour?" +msgstr "Do you wish to stop the help tour?" + +#: ../../include/functions_treeview.php:54 +msgid "There was a problem loading module" +msgstr "There was a problem loading the module." + +#: ../../include/functions_treeview.php:91 +#: ../../include/functions_treeview.php:104 +#: ../../godmode/massive/massive_edit_modules.php:390 +#: ../../godmode/massive/massive_edit_modules.php:436 +#: ../../godmode/modules/manage_network_components_form_common.php:125 +#: ../../godmode/modules/manage_network_components_form_common.php:142 +#: ../../godmode/agentes/module_manager_editor_common.php:288 +#: ../../godmode/agentes/module_manager_editor_common.php:309 +msgid "Str." +msgstr "Str." + +#: ../../include/functions_treeview.php:98 +#: ../../include/functions_alerts.php:564 +#: ../../godmode/massive/massive_edit_modules.php:368 +#: ../../godmode/modules/manage_network_components_form_common.php:118 +#: ../../godmode/agentes/module_manager_editor_common.php:278 +msgid "Warning status" +msgstr "Warning status" + +#: ../../include/functions_treeview.php:110 +#: ../../include/functions_alerts.php:565 +#: ../../godmode/massive/massive_edit_modules.php:414 +#: ../../godmode/modules/manage_network_components_form_common.php:135 +#: ../../godmode/agentes/module_manager_editor_common.php:299 +msgid "Critical status" +msgstr "Critical status" + +#: ../../include/functions_treeview.php:294 +#: ../../include/graphs/functions_flot.php:593 +msgid "No data" +msgstr "No data" + +#: ../../include/functions_treeview.php:298 +#: ../../include/functions_reporting_html.php:70 +#: ../../include/functions_reporting_html.php:3373 +msgid "Last data" +msgstr "Last data" + +#: ../../include/functions_treeview.php:313 +msgid "Go to module edition" +msgstr "Go to module edition" + +#: ../../include/functions_treeview.php:362 +msgid "There was a problem loading alerts" +msgstr "There was a problem loading the alerts" + +#: ../../include/functions_treeview.php:423 +#: ../../include/functions_reporting_html.php:2872 +#: ../../include/functions_reporting_html.php:3100 +#: ../../godmode/snmpconsole/snmp_alert.php:1165 +msgid "Times fired" +msgstr "Times fired" + +#: ../../include/functions_treeview.php:446 +msgid "Go to alerts edition" +msgstr "Go to alerts edition" + +#: ../../include/functions_treeview.php:610 +msgid "Next agent contact" +msgstr "Next agent contact" + +#: ../../include/functions_treeview.php:620 +msgid "Go to agent edition" +msgstr "Go to agent edition" + +#: ../../include/functions_treeview.php:629 +msgid "Agent data" +msgstr "Agent data" + +#: ../../include/functions_treeview.php:702 +msgid "Advanced information" +msgstr "Advanced information" + +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:678 +#: ../../godmode/agentes/planned_downtime.editor.php:212 msgid "" -"There was an error copying the agent configuration, the copy has been " -"cancelled" +"Not created. Error inserting data. Start time must be higher than the " +"current time" msgstr "" -"There was an error copying the agent's configuration, the copy has been " -"cancelled." +"Couldn't be created: error during data insertion. Start time must be higher " +"than the current time." -#: ../../include/functions_agents.php:2203 -#: ../../include/functions_agents.php:2228 -#: ../../include/functions_agents.php:2253 -msgid "No Monitors" -msgstr "No Monitors" +#: ../../include/functions_planned_downtimes.php:45 +#: ../../include/functions_planned_downtimes.php:50 +#: ../../include/functions_planned_downtimes.php:53 +#: ../../include/functions_planned_downtimes.php:682 +#: ../../include/functions_planned_downtimes.php:687 +#: ../../include/functions_planned_downtimes.php:695 +#: ../../include/functions_planned_downtimes.php:702 +#: ../../godmode/agentes/planned_downtime.editor.php:215 +#: ../../godmode/agentes/planned_downtime.editor.php:218 +#: ../../godmode/agentes/planned_downtime.editor.php:223 +#: ../../godmode/agentes/planned_downtime.editor.php:226 +msgid "Not created. Error inserting data" +msgstr "Not created. Error inserting data" -#: ../../include/functions_agents.php:2207 -#: ../../include/functions_agents.php:2232 -#: ../../include/functions_agents.php:2257 -#: ../../include/functions_reporting.php:7979 -msgid "At least one module in CRITICAL status" -msgstr "At least one module is in CRITICAL status." +#: ../../include/functions_planned_downtimes.php:45 +#: ../../include/functions_planned_downtimes.php:683 +#: ../../godmode/agentes/planned_downtime.editor.php:215 +msgid "The end date must be higher than the start date" +msgstr "The end date cannot be earlier than the start date" -#: ../../include/functions_agents.php:2211 -#: ../../include/functions_agents.php:2236 -#: ../../include/functions_agents.php:2261 -#: ../../include/functions_reporting.php:7983 -msgid "At least one module in WARNING status" -msgstr "At least one module is in WARNING status" +#: ../../include/functions_planned_downtimes.php:50 +#: ../../include/functions_planned_downtimes.php:696 +#: ../../godmode/agentes/planned_downtime.editor.php:223 +#: ../../godmode/agentes/planned_downtime.editor.php:592 +#: ../../godmode/agentes/planned_downtime.editor.php:600 +msgid "The end time must be higher than the start time" +msgstr "End time must be after start time" -#: ../../include/functions_agents.php:2215 -#: ../../include/functions_agents.php:2240 -#: ../../include/functions_agents.php:2265 -#: ../../include/functions_reporting.php:7987 -msgid "At least one module is in UKNOWN status" -msgstr "At least one module is in UNKNOWN status" +#: ../../include/functions_planned_downtimes.php:53 +#: ../../include/functions_planned_downtimes.php:703 +#: ../../godmode/agentes/planned_downtime.editor.php:226 +#: ../../godmode/agentes/planned_downtime.editor.php:581 +msgid "The end day must be higher than the start day" +msgstr "The end date cannot be earlier than the start date" -#: ../../include/functions_agents.php:2219 -#: ../../include/functions_agents.php:2244 -#: ../../include/functions_agents.php:2269 -#: ../../include/functions_reporting.php:7991 -msgid "All Monitors OK" -msgstr "All monitors are OK" +#: ../../include/functions_planned_downtimes.php:94 +#: ../../include/functions_planned_downtimes.php:717 +#: ../../godmode/agentes/planned_downtime.editor.php:275 +msgid "Each planned downtime must have a different name" +msgstr "Each planned downtime must have a different name" -#: ../../include/functions_servers.php:363 -msgid "Data server" -msgstr "Data server" +#: ../../include/functions_planned_downtimes.php:100 +#: ../../include/functions_planned_downtimes.php:722 +#: ../../godmode/agentes/planned_downtime.editor.php:280 +#: ../../godmode/agentes/planned_downtime.editor.php:307 +msgid "Planned downtime must have a name" +msgstr "Planned downtime must have a name" -#: ../../include/functions_servers.php:368 -msgid "Network server" -msgstr "Network server" +#: ../../include/functions_planned_downtimes.php:113 +#: ../../include/functions_planned_downtimes.php:731 +#: ../../godmode/snmpconsole/snmp_alert.php:247 +#: ../../godmode/snmpconsole/snmp_filters.php:66 +#: ../../godmode/alerts/alert_special_days.php:148 +#: ../../godmode/alerts/alert_actions.php:184 +#: ../../godmode/alerts/alert_commands.php:293 +#: ../../godmode/alerts/configure_alert_template.php:431 +#: ../../godmode/alerts/alert_list.php:104 ../../godmode/setup/news.php:56 +#: ../../godmode/setup/gis.php:45 ../../godmode/setup/links.php:41 +#: ../../godmode/users/configure_user.php:236 +#: ../../godmode/users/profile_list.php:241 +#: ../../godmode/modules/manage_nc_groups.php:73 +#: ../../godmode/agentes/configurar_agente.php:621 +#: ../../godmode/agentes/planned_downtime.editor.php:365 +msgid "Successfully created" +msgstr "Successfully created" -#: ../../include/functions_servers.php:373 -msgid "SNMP Trap server" -msgstr "SNMP Trap server" +#: ../../include/functions_planned_downtimes.php:560 +msgid "Succesful stopped the Downtime" +msgstr "Downtime has been stopped successfully" -#: ../../include/functions_servers.php:383 -msgid "Plugin server" -msgstr "Plug-in server" +#: ../../include/functions_planned_downtimes.php:561 +msgid "Unsuccesful stopped the Downtime" +msgstr "Downtime could not be stopped successfully" -#: ../../include/functions_servers.php:388 -msgid "Prediction server" -msgstr "Prediction server" +#: ../../include/functions_planned_downtimes.php:660 +#, php-format +msgid "Enabled %s elements from the downtime" +msgstr "Enabled %s elements from the downtime" -#: ../../include/functions_servers.php:393 -msgid "WMI server" -msgstr "WMI server" +#: ../../include/functions_planned_downtimes.php:688 +#: ../../godmode/agentes/planned_downtime.editor.php:218 +msgid "The end date must be higher than the current time" +msgstr "End date must be after current time" -#: ../../include/functions_servers.php:398 -#: ../../enterprise/godmode/servers/manage_export_form.php:71 -msgid "Export server" -msgstr "Export server" - -#: ../../include/functions_servers.php:403 -msgid "Inventory server" -msgstr "Inventory server" - -#: ../../include/functions_servers.php:408 -msgid "Web server" -msgstr "Web server" - -#: ../../include/functions_servers.php:413 -msgid "Event server" -msgstr "Event server" - -#: ../../include/functions_servers.php:418 -msgid "Enterprise ICMP server" -msgstr "Enterprise ICMP server" - -#: ../../include/functions_servers.php:423 -msgid "Enterprise SNMP server" -msgstr "Enterprise SNMP server" - -#: ../../include/functions_servers.php:428 -msgid "Enterprise Satellite server" -msgstr "Enterprise Satellite server" - -#: ../../include/functions_servers.php:433 -msgid "Enterprise Transactional server" -msgstr "Enterprise Transactional server" - -#: ../../include/functions_servers.php:438 -msgid "Mainframe server" +#: ../../include/functions_planned_downtimes.php:785 +msgid "This planned downtime are executed now. Can't delete in this moment." msgstr "" +"This planned downtime are executed now. It can't be deleted in this moment." -#: ../../include/functions_servers.php:443 -msgid "Sync server" -msgstr "" +#: ../../include/functions_planned_downtimes.php:790 +msgid "Deleted this planned downtime successfully." +msgstr "Deleted this planned downtime successfully." -#: ../../include/functions_alerts.php:401 -#: ../../enterprise/include/functions_policies.php:456 -#: ../../enterprise/include/functions_policies.php:471 -msgid "copy" -msgstr "copy" +#: ../../include/functions_planned_downtimes.php:792 +msgid "Problems for deleted this planned downtime." +msgstr "Problems for deleted this planned downtime." -#: ../../include/functions_alerts.php:567 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:113 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:114 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:113 -msgid "Regular expression" -msgstr "Regular expression" +#: ../../include/functions_incidents.php:88 +#: ../../include/functions_incidents.php:107 +msgid "Active incidents" +msgstr "Active incidents" -#: ../../include/functions_alerts.php:568 -msgid "Max and min" -msgstr "Max and min" +#: ../../include/functions_incidents.php:89 +#: ../../include/functions_incidents.php:110 +msgid "Active incidents, with comments" +msgstr "Active incidents, with comments" -#: ../../include/functions_alerts.php:571 -msgid "Equal to" -msgstr "Equal to" +#: ../../include/functions_incidents.php:90 +#: ../../include/functions_incidents.php:113 +msgid "Rejected incidents" +msgstr "Rejected incidents" -#: ../../include/functions_alerts.php:572 -msgid "Not equal to" -msgstr "Not equal to" +#: ../../include/functions_incidents.php:91 +#: ../../include/functions_incidents.php:116 +msgid "Expired incidents" +msgstr "Expired incidents" -#: ../../include/functions_alerts.php:575 -msgid "Unknown status" -msgstr "Unknown status" +#: ../../include/functions_incidents.php:92 +#: ../../include/functions_incidents.php:119 +msgid "Closed incidents" +msgstr "Closed incidents" -#: ../../include/functions_alerts.php:576 -msgid "On Change" -msgstr "On Change" +#: ../../include/functions_maps.php:34 +#: ../../include/functions_networkmap.php:1641 +#: ../../include/functions_networkmap.php:1720 +msgid "Topology" +msgstr "Topology" + +#: ../../include/functions_maps.php:43 +#: ../../include/functions_reporting.php:619 +#: ../../include/functions_reporting.php:5126 +#: ../../include/functions_networkmap.php:1722 +msgid "Dynamic" +msgstr "Dynamic" + +#: ../../include/functions_menu.php:470 +msgid "Configure user" +msgstr "Configure user" + +#: ../../include/functions_menu.php:471 +msgid "Configure profile" +msgstr "Configure profile" + +#: ../../include/functions_menu.php:473 +#: ../../godmode/servers/manage_recontask_form.php:182 +#: ../../godmode/servers/manage_recontask.php:43 +msgid "Manage recontask" +msgstr "Manage recon task" + +#: ../../include/functions_menu.php:475 +msgid "Module templates management" +msgstr "Module templates management" + +#: ../../include/functions_menu.php:476 +msgid "Inventory modules management" +msgstr "Inventory modules management" + +#: ../../include/functions_menu.php:477 +msgid "Tags management" +msgstr "Tags management" + +#: ../../include/functions_menu.php:479 +#: ../../godmode/users/profile_list.php:308 +msgid "Agents management" +msgstr "Manage agents" + +#: ../../include/functions_menu.php:481 +msgid "View agent" +msgstr "View agent" + +#: ../../include/functions_menu.php:483 +#: ../../godmode/alerts/configure_alert_template.php:63 +#: ../../godmode/alerts/configure_alert_template.php:82 +#: ../../godmode/alerts/configure_alert_template.php:100 +msgid "Configure alert template" +msgstr "Configure alert template" + +#: ../../include/functions_menu.php:485 +msgid "Manage network map" +msgstr "Manage network map" + +#: ../../include/functions_menu.php:486 +#: ../../godmode/users/configure_profile.php:320 +msgid "View visual console" +msgstr "View visual console" + +#: ../../include/functions_menu.php:487 +msgid "Builder visual console" +msgstr "Builder visual console" + +#: ../../include/functions_menu.php:489 +msgid "Administration events" +msgstr "Administration events" + +#: ../../include/functions_menu.php:491 +msgid "View reporting" +msgstr "View reporting" + +#: ../../include/functions_menu.php:492 +msgid "Manage custom graphs" +msgstr "Manage custom graphs" + +#: ../../include/functions_menu.php:493 +msgid "Copy dashboard" +msgstr "Copy dashboard" + +#: ../../include/functions_menu.php:496 +msgid "Manage GIS Maps" +msgstr "Manage GIS Maps" + +#: ../../include/functions_menu.php:498 +msgid "Incidents statistics" +msgstr "Incident statistics" + +#: ../../include/functions_menu.php:499 +msgid "Manage messages" +msgstr "Manage messages" + +#: ../../include/functions_menu.php:501 +msgid "Manage groups" +msgstr "Manage groups" + +#: ../../include/functions_menu.php:502 +msgid "Manage module groups" +msgstr "Manage module groups" + +#: ../../include/functions_menu.php:503 +msgid "Manage custom field" +msgstr "Manage custom fields" + +#: ../../include/functions_menu.php:505 +msgid "Manage alert actions" +msgstr "Manage alert actions" + +#: ../../include/functions_menu.php:506 +msgid "Manage commands" +msgstr "Manage commands" + +#: ../../include/functions_menu.php:507 +msgid "Manage event alerts" +msgstr "Manage event alerts" + +#: ../../include/functions_menu.php:509 +msgid "Manage export targets" +msgstr "Manage export targets" + +#: ../../include/functions_menu.php:511 +msgid "Manage services" +msgstr "Manage services" + +#: ../../include/functions_menu.php:512 ../../godmode/menu.php:170 +msgid "SNMP alerts" +msgstr "SNMP alerts" + +#: ../../include/functions_menu.php:514 +msgid "SNMP trap editor" +msgstr "SNMP trap editor" + +#: ../../include/functions_menu.php:519 +msgid "Manage incident" +msgstr "Manage incidents" + +#: ../../include/functions_menu.php:521 +#: ../../godmode/users/configure_profile.php:328 +msgid "Manage visual console" +msgstr "Manage visual console" + +#: ../../include/functions_menu.php:571 +msgid "Administration" +msgstr "Administration" -#: ../../include/functions_alerts.php:970 #: ../../include/functions_network_components.php:507 -#: ../../enterprise/include/functions_local_components.php:284 +#: ../../include/functions_alerts.php:961 msgid "Copy of" msgstr "Copy of" -#: ../../include/functions_alerts.php:1394 -msgid "No actions defined" -msgstr "No actions defined" +#: ../../include/get_file.php:46 +msgid "Security error. Please contact the administrator." +msgstr "Security error. Please contact your administrator." + +#: ../../include/get_file.php:56 +msgid "File is missing in disk storage. Please contact the administrator." +msgstr "" +"The file is missing in the disk's storage. Please contact your administrator." + +#: ../../include/functions_tags.php:602 +msgid "Click here to open a popup window with URL tag" +msgstr "Click here to open a popup window with URL tag" + +#: ../../include/graphs/functions_pchart.php:205 +#: ../../include/graphs/functions_pchart.php:1189 +msgid "Actual" +msgstr "Actual" + +#: ../../include/graphs/export_data.php:71 +#: ../../include/graphs/export_data.php:126 +msgid "An error occured exporting the data" +msgstr "An error occured exporting the data" + +#: ../../include/graphs/export_data.php:76 +msgid "Selected" +msgstr "Selected" + +#: ../../include/graphs/functions_flot.php:251 +msgid "Cancel zoom" +msgstr "Cancel zoom" + +#: ../../include/graphs/functions_flot.php:253 +msgid "Warning and Critical thresholds" +msgstr "Warning and Critical thresholds" + +#: ../../include/graphs/functions_flot.php:256 +msgid "Overview graph" +msgstr "Overview graph" + +#: ../../include/graphs/functions_flot.php:259 +#: ../../godmode/modules/manage_network_templates.php:216 +#: ../../godmode/agentes/planned_downtime.list.php:508 +msgid "Export to CSV" +msgstr "Export to CSV" + +#: ../../include/functions_users.php:377 +#, php-format +msgid "User %s login at %s" +msgstr "User %s login at %s" + +#: ../../include/functions_users.php:438 +#, php-format +msgid "User %s was deleted in the DB at %s" +msgstr "User %s was deleted in the DB at %s" + +#: ../../include/functions_users.php:443 +#, php-format +msgid "User %s logout at %s" +msgstr "User %s logout at %s" + +#: ../../include/functions_reporting_html.php:63 +#: ../../include/functions_reporting_html.php:3384 +#: ../../godmode/agentes/planned_downtime.editor.php:506 +msgid "From:" +msgstr "From:" + +#: ../../include/functions_reporting_html.php:64 +#: ../../include/functions_reporting_html.php:3385 +#: ../../godmode/agentes/planned_downtime.editor.php:517 +msgid "To:" +msgstr "To:" + +#: ../../include/functions_reporting_html.php:93 +msgid "Label: " +msgstr "Label: " + +#: ../../include/functions_reporting_html.php:111 +msgid "Generated" +msgstr "Generated" + +#: ../../include/functions_reporting_html.php:114 +msgid "Report date" +msgstr "Report date" + +#: ../../include/functions_reporting_html.php:398 +msgid "Max/Min Values" +msgstr "Max/Min Values" + +#: ../../include/functions_reporting_html.php:399 +msgid "SLA Limit" +msgstr "SLA Limit" + +#: ../../include/functions_reporting_html.php:400 +msgid "SLA Compliance" +msgstr "SLA Compliance" + +#: ../../include/functions_reporting_html.php:425 +msgid "Global Time" +msgstr "Global Time" + +#: ../../include/functions_reporting_html.php:426 +msgid "Time Total" +msgstr "Time Total" + +#: ../../include/functions_reporting_html.php:427 +msgid "Time Failed" +msgstr "Time Failed" + +#: ../../include/functions_reporting_html.php:428 +#: ../../include/functions_reporting_html.php:2256 +msgid "Time OK" +msgstr "Time OK" + +#: ../../include/functions_reporting_html.php:429 +msgid "Time Unknown" +msgstr "Time Unknown" + +#: ../../include/functions_reporting_html.php:430 +msgid "Time Not Init" +msgstr "Time Not Init" + +#: ../../include/functions_reporting_html.php:431 +msgid "Downtime" +msgstr "Downtime" + +#: ../../include/functions_reporting_html.php:456 +msgid "Checks Time" +msgstr "Checks Time" + +#: ../../include/functions_reporting_html.php:457 +msgid "Checks Total" +msgstr "Checks Total" + +#: ../../include/functions_reporting_html.php:458 +msgid "Checks Failed" +msgstr "Checks Failed" + +#: ../../include/functions_reporting_html.php:459 +#: ../../include/functions_reporting_html.php:2299 +msgid "Checks OK" +msgstr "Checks OK" + +#: ../../include/functions_reporting_html.php:460 +msgid "Checks Unknown" +msgstr "Checks Unknown" + +#: ../../include/functions_reporting_html.php:502 +#: ../../include/functions_reporting_html.php:581 +#: ../../include/functions_config.php:533 +#: ../../include/functions_config.php:1554 +msgid "Fail" +msgstr "Fail" + +#: ../../include/functions_reporting_html.php:685 +#: ../../include/functions_reporting_html.php:2533 +msgid "Unknow" +msgstr "Unknown" + +#: ../../include/functions_reporting_html.php:695 +#: ../../include/functions_reporting_html.php:2543 +msgid "Downtimes" +msgstr "Downtimes" + +#: ../../include/functions_reporting_html.php:700 +#: ../../include/functions_reporting_html.php:2548 +msgid "Ignore time" +msgstr "Ignore time" + +#: ../../include/functions_reporting_html.php:772 +#: ../../include/functions_reporting_html.php:1523 +#: ../../include/functions_reporting_html.php:2449 +#: ../../include/functions_reporting_html.php:2673 +msgid "Min Value" +msgstr "Min Value" + +#: ../../include/functions_reporting_html.php:773 +#: ../../include/functions_reporting_html.php:1524 +#: ../../include/functions_reporting_html.php:2450 +#: ../../include/functions_reporting_html.php:2674 +msgid "Average Value" +msgstr "Average Value" + +#: ../../include/functions_reporting_html.php:774 +#: ../../include/functions_reporting_html.php:1525 +#: ../../include/functions_reporting_html.php:2447 +#: ../../include/functions_reporting_html.php:2676 +msgid "Max Value" +msgstr "Max Value" + +#: ../../include/functions_reporting_html.php:812 +#: ../../include/functions_reporting_html.php:821 +#: ../../include/functions_reporting_html.php:1643 +msgid "Val. by" +msgstr "Value" + +#: ../../include/functions_reporting_html.php:875 +#: ../../include/functions_events.php:2709 +msgid "Pandora System" +msgstr "Pandora System" + +#: ../../include/functions_reporting_html.php:915 +#: ../../include/functions_reporting_html.php:1111 +msgid "Events by agent" +msgstr "Events per agent" + +#: ../../include/functions_reporting_html.php:934 +#: ../../include/functions_reporting_html.php:1130 +msgid "Events by user validator" +msgstr "Events according to validating user" + +#: ../../include/functions_reporting_html.php:953 +#: ../../include/functions_reporting_html.php:1149 +msgid "Events by Severity" +msgstr "Events according to severity" + +#: ../../include/functions_reporting_html.php:972 +#: ../../include/functions_reporting_html.php:1168 +msgid "Events validated vs unvalidated" +msgstr "Validated vs. unvalidated events" + +#: ../../include/functions_reporting_html.php:1022 +#: ../../include/functions_reporting_html.php:1032 +#: ../../include/functions_reporting_html.php:2815 +#: ../../include/functions_events.php:35 +#: ../../include/functions_events.php:905 +#: ../../include/functions_events.php:2338 +#: ../../godmode/events/custom_events.php:71 +#: ../../godmode/events/custom_events.php:153 +msgid "Event name" +msgstr "Event name" + +#: ../../include/functions_reporting_html.php:1228 +msgid "Added" +msgstr "Added" + +#: ../../include/functions_reporting_html.php:1379 +#, php-format +msgid "%s in %s : NORMAL" +msgstr "%s in %s : NORMAL" + +#: ../../include/functions_reporting_html.php:1387 +#, php-format +msgid "%s in %s : CRITICAL" +msgstr "%s in %s : CRITICAL" + +#: ../../include/functions_reporting_html.php:1395 +#, php-format +msgid "%s in %s : WARNING" +msgstr "%s in %s : WARNING" + +#: ../../include/functions_reporting_html.php:1403 +#, php-format +msgid "%s in %s : UNKNOWN" +msgstr "%s in %s : UNKNOWN" + +#: ../../include/functions_reporting_html.php:1413 +#, php-format +msgid "%s in %s : ALERTS FIRED" +msgstr "%s in %s: ALERTS TRIGGERED" + +#: ../../include/functions_reporting_html.php:1421 +#, php-format +msgid "%s in %s : Not initialize" +msgstr "%s in %s: not initialized" + +#: ../../include/functions_reporting_html.php:1579 +#: ../../include/functions_reporting_html.php:3262 +msgid "Monitors" +msgstr "Monitors" + +#: ../../include/functions_reporting_html.php:1596 +#: ../../godmode/servers/manage_recontask_form.php:255 +msgid "Defined" +msgstr "Defined" + +#: ../../include/functions_reporting_html.php:1611 +#, php-format +msgid "Last %s" +msgstr "Last %s" + +#: ../../include/functions_reporting_html.php:1731 +msgid "Events validated by user" +msgstr "Events validated by user" + +#: ../../include/functions_reporting_html.php:1750 +#: ../../include/functions_reporting_html.php:3551 +msgid "Events by severity" +msgstr "Events by severity" + +#: ../../include/functions_reporting_html.php:1899 +#, php-format +msgid "Interface '%s' throughput graph" +msgstr "Interface '%s' throughput graph" + +#: ../../include/functions_reporting_html.php:1902 +msgid "Mac" +msgstr "MAC address" + +#: ../../include/functions_reporting_html.php:1903 +msgid "Actual status" +msgstr "Current status" + +#: ../../include/functions_reporting_html.php:2049 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1334 +msgid "Not OK" +msgstr "Not OK" + +#: ../../include/functions_reporting_html.php:2099 +msgid "Empty modules" +msgstr "Empty modules" + +#: ../../include/functions_reporting_html.php:2106 +msgid "Warning
    Critical" +msgstr "Warning
    Critical" + +#: ../../include/functions_reporting_html.php:2111 +#: ../../include/functions_netflow.php:1131 +#: ../../include/functions_netflow.php:1141 +#: ../../include/functions_netflow.php:1159 +#: ../../include/functions_netflow.php:1167 +#: ../../include/functions_netflow.php:1190 +#: ../../include/functions_netflow.php:1248 +#: ../../include/functions_netflow.php:1254 +#: ../../include/functions_netflow.php:1286 +#: ../../godmode/massive/massive_edit_modules.php:538 +#: ../../godmode/modules/manage_network_components_form_common.php:168 +#: ../../godmode/agentes/module_manager_editor_common.php:366 +msgid "Unit" +msgstr "Unit" + +#: ../../include/functions_reporting_html.php:2254 +msgid "Total time" +msgstr "Total time" + +#: ../../include/functions_reporting_html.php:2255 +msgid "Time failed" +msgstr "Time failed" + +#: ../../include/functions_reporting_html.php:2257 +msgid "Time Uknown" +msgstr "Time Uknown" + +#: ../../include/functions_reporting_html.php:2258 +msgid "Time Not Init Module" +msgstr "Time Not Init Module" + +#: ../../include/functions_reporting_html.php:2259 +msgid "Time Downtime" +msgstr "Time Downtime" + +#: ../../include/functions_reporting_html.php:2260 +msgid "% Ok" +msgstr "% Ok" + +#: ../../include/functions_reporting_html.php:2297 +msgid "Total checks" +msgstr "Total checks" + +#: ../../include/functions_reporting_html.php:2298 +msgid "Checks failed" +msgstr "Checks failed" + +#: ../../include/functions_reporting_html.php:2300 +msgid "Checks Uknown" +msgstr "Checks Unknown" + +#: ../../include/functions_reporting_html.php:2426 +#: ../../include/functions_reporting_html.php:2654 +#: ../../include/functions_reporting.php:997 +#: ../../include/functions_reporting.php:1816 +msgid "There are no Agent/Modules defined" +msgstr "There are no Agent/Modules defined" + +#: ../../include/functions_reporting_html.php:2446 +msgid "Agent max value" +msgstr "Agent max value" + +#: ../../include/functions_reporting_html.php:2448 +msgid "Agent min value" +msgstr "Agent min value" + +#: ../../include/functions_reporting_html.php:2685 +#: ../../include/functions_reporting_html.php:2779 +msgid "Summary" +msgstr "Summary" + +#: ../../include/functions_reporting_html.php:2752 +#: ../../include/functions_reporting.php:6988 +#: ../../include/functions_reporting.php:7010 +msgid "Alert level" +msgstr "Alert level" + +#: ../../include/functions_reporting_html.php:2871 +msgid "Alert description" +msgstr "Alert description" + +#: ../../include/functions_reporting_html.php:2921 +msgid "Alerts not fired" +msgstr "Non-triggered alerts" + +#: ../../include/functions_reporting_html.php:2930 +msgid "Total alerts monitored" +msgstr "Total # of alerts monitored" + +#: ../../include/functions_reporting_html.php:2981 +msgid "Total monitors" +msgstr "Total # of monitors" + +#: ../../include/functions_reporting_html.php:2982 +msgid "Monitors down on period" +msgstr "Monitors down on period" + +#: ../../include/functions_reporting_html.php:2998 +msgid "Monitors OK" +msgstr "Monitors in OK status" + +#: ../../include/functions_reporting_html.php:2999 +msgid "Monitors BAD" +msgstr "Monitors BAD" + +#: ../../include/functions_reporting_html.php:3073 +#, php-format +msgid "Agents in group: %s" +msgstr "Agents in group : %s" + +#: ../../include/functions_reporting_html.php:3166 +msgid "Last failure" +msgstr "Latest failure" + +#: ../../include/functions_reporting_html.php:3230 +msgid "N/A(*)" +msgstr "N/A(*)" + +#: ../../include/functions_reporting_html.php:3407 +msgid "Agents warning" +msgstr "Agents in warning status" + +#: ../../include/functions_reporting_html.php:3413 +msgid "Agents ok" +msgstr "Agents in OK status" + +#: ../../include/functions_reporting_html.php:3433 +#: ../../include/functions_reporting_html.php:3442 +msgid "Agents by status" +msgstr "Agents by status" + +#: ../../include/functions_reporting_html.php:3461 +#: ../../include/functions_reporting.php:7229 +msgid "Monitor checks" +msgstr "Monitor checks" + +#: ../../include/functions_reporting_html.php:3466 +#: ../../include/functions_reporting.php:7247 +msgid "Total agents and monitors" +msgstr "Total # of agents and monitors" + +#: ../../include/functions_reporting_html.php:3486 +#: ../../include/functions_reporting_html.php:3495 +msgid "Node overview" +msgstr "Node overview" + +#: ../../include/functions_reporting_html.php:3513 +#: ../../include/functions_reporting_html.php:3530 +msgid "Critical events" +msgstr "Critical events" + +#: ../../include/functions_reporting_html.php:3517 +#: ../../include/functions_reporting_html.php:3534 +msgid "Warning events" +msgstr "Events in Warning status" + +#: ../../include/functions_reporting_html.php:3521 +#: ../../include/functions_reporting_html.php:3538 +msgid "OK events" +msgstr "Events in OK status" + +#: ../../include/functions_reporting_html.php:3525 +#: ../../include/functions_reporting_html.php:3542 +msgid "Unknown events" +msgstr "Events in Unknown status" + +#: ../../include/functions_reporting_html.php:3565 +msgid "Important Events by Criticity" +msgstr "Important Events by Criticity" + +#: ../../include/functions_reporting_html.php:3591 +msgid "Last activity in Pandora FMS console" +msgstr "Latest activity in the Pandora FMS console" + +#: ../../include/functions_reporting_html.php:3667 +msgid "Events info (1hr.)" +msgstr "Event info. (1hr.)" + +#: ../../include/functions_reporting_html.php:3807 +msgid "This SLA has been affected by the following planned downtimes" +msgstr "This SLA has been affected by the following planned downtimes" + +#: ../../include/functions_reporting_html.php:3811 +#: ../../godmode/agentes/planned_downtime.editor.php:493 +#: ../../godmode/agentes/planned_downtime.list.php:395 +msgid "Execution" +msgstr "Execution" + +#: ../../include/functions_reporting_html.php:3812 +msgid "Dates" +msgstr "Dates" + +#: ../../include/functions_reporting_html.php:3853 +msgid "This item is affected by a malformed planned downtime" +msgstr "This item is affected by a erroneous planned downtime" + +#: ../../include/functions_reporting_html.php:3854 +msgid "Go to the planned downtimes section to solve this" +msgstr "Go to the planned downtimes section to solve this" + +#: ../../include/auth/mysql.php:246 +msgid "" +"Problems with configuration permissions. Please contact with Administrator" +msgstr "" +"Problems with configuration permissions. Please contact with Administrator" + +#: ../../include/auth/mysql.php:252 +msgid "Your permissions have changed. Please, login again." +msgstr "Your permissions have changed. Please, login again." + +#: ../../include/auth/mysql.php:265 +msgid "" +"Ooops User not found in \n" +"\t\t\t\tdatabase or incorrect password" +msgstr "" +"Ooops User not found in \n" +"\t\t\t\tdatabase or incorrect password" + +#: ../../include/auth/mysql.php:283 ../../include/auth/mysql.php:331 +msgid "Fail the group synchronizing" +msgstr "Group synchronisation failure" + +#: ../../include/auth/mysql.php:289 ../../include/auth/mysql.php:337 +msgid "Fail the tag synchronizing" +msgstr "Tag synchronisation failure" + +#: ../../include/auth/mysql.php:302 +msgid "" +"User not found in database \n" +"\t\t\t\t\tor incorrect password" +msgstr "" +"User not found in database \n" +"\t\t\t\t\tor incorrect password" + +#: ../../include/auth/mysql.php:317 +msgid "User not found in database or incorrect password" +msgstr "User not found in database or incorrect password" + +#: ../../include/auth/mysql.php:593 +msgid "Could not changes password on remote pandora" +msgstr "Could not change password for remote pandora" + +#: ../../include/auth/mysql.php:630 +msgid "Your installation of PHP does not support LDAP" +msgstr "Your PHP environment doesn't support LDAP" #: ../../include/functions_api.php:77 msgid "No set or get or help operation." @@ -21106,6 +14030,21 @@ msgstr "User enabled" msgid "Disabled user." msgstr "User disabled." +#: ../../include/functions_api.php:7659 +#: ../../godmode/agentes/configurar_agente.php:1614 +msgid "Save by Pandora Console" +msgstr "Save from Pandora Console" + +#: ../../include/functions_api.php:7660 +#: ../../godmode/agentes/configurar_agente.php:1629 +msgid "Update by Pandora Console" +msgstr "Update from Pandora Console" + +#: ../../include/functions_api.php:7661 +#: ../../godmode/agentes/configurar_agente.php:1642 +msgid "Insert by Pandora Console" +msgstr "Insert from Pandora Console" + #: ../../include/functions_api.php:8268 msgid "Delete user." msgstr "Delete user." @@ -21204,1036 +14143,71 @@ msgstr "Error on deleting the special day. ID doesn't exist." msgid "Error in deletion special day." msgstr "Error deleting the special day." -#: ../../include/functions_snmp.php:67 -msgid "Load Average (Last minute)" -msgstr "Load Average (Last minute)" - -#: ../../include/functions_snmp.php:71 -msgid "Load Average (Last 5 minutes)" -msgstr "Load Average (Last 5 minutes)" - -#: ../../include/functions_snmp.php:75 -msgid "Load Average (Last 15 minutes)" -msgstr "Load Average (Last 15 minutes)" - -#: ../../include/functions_snmp.php:79 -msgid "Total Swap Size configured for the host" -msgstr "Total Swap Size configured for the host" - -#: ../../include/functions_snmp.php:83 -msgid "Available Swap Space on the host" -msgstr "Available Swap Space on the host" - -#: ../../include/functions_snmp.php:87 -msgid "Total Real/Physical Memory Size on the host" -msgstr "Total Real/Physical Memory Size on the host" - -#: ../../include/functions_snmp.php:91 -msgid "Available Real/Physical Memory Space on the host" -msgstr "Available Real/Physical Memory Space on the host" - -#: ../../include/functions_snmp.php:95 -msgid "Total Available Memory on the host" -msgstr "Total Available Memory on the host" - -#: ../../include/functions_snmp.php:99 -msgid "Total Cached Memory" -msgstr "Total Cached Memory" - -#: ../../include/functions_snmp.php:103 -msgid "Total Buffered Memory" -msgstr "Total Buffered Memory" - -#: ../../include/functions_snmp.php:107 -msgid "Amount of memory swapped in from disk (kB/s)" -msgstr "Amount of memory swapped in from disk (kB/s)" - -#: ../../include/functions_snmp.php:111 -msgid "Amount of memory swapped to disk (kB/s)" -msgstr "Amount of memory swapped to disk (kB/s)" - -#: ../../include/functions_snmp.php:115 -msgid "Number of blocks sent to a block device" -msgstr "Number of blocks sent to a block device" - -#: ../../include/functions_snmp.php:119 -msgid "Number of blocks received from a block device" -msgstr "Number of blocks received from a block device" - -#: ../../include/functions_snmp.php:123 -msgid "Number of interrupts processed" -msgstr "Number of interrupts processed" - -#: ../../include/functions_snmp.php:127 -msgid "Number of context switches" -msgstr "Number of context switches" - -#: ../../include/functions_snmp.php:131 -msgid "user CPU time" -msgstr "user CPU time" - -#: ../../include/functions_snmp.php:135 -msgid "system CPU time" -msgstr "system CPU time" - -#: ../../include/functions_snmp.php:139 -msgid "idle CPU time" -msgstr "idle CPU time" - -#: ../../include/functions_snmp.php:143 -msgid "system Up time" -msgstr "system Up time" - -#: ../../include/functions_clippy.php:163 -#: ../../include/functions_clippy.php:168 -msgid "End wizard" -msgstr "End wizard" - -#: ../../include/functions_clippy.php:195 -msgid "Next →" -msgstr "Next →" - -#: ../../include/functions_clippy.php:196 -msgid "← Back" -msgstr "← Back" - -#: ../../include/functions_clippy.php:208 -msgid "Do you want to exit the help tour?" -msgstr "Do you wish to stop the help tour?" - -#: ../../include/functions_update_manager.php:202 -msgid "There is a unknown error." -msgstr "There is a unknown error." - -#: ../../include/functions_update_manager.php:316 -#: ../../include/functions_update_manager.php:319 -#: ../../include/functions_update_manager.php:438 -#: ../../include/functions_update_manager.php:442 -#: ../../enterprise/include/functions_update_manager.php:141 -#: ../../enterprise/include/functions_update_manager.php:310 -msgid "Could not connect to internet" -msgstr "Could not obtain an internet connection" - -#: ../../include/functions_update_manager.php:324 -#: ../../include/functions_update_manager.php:327 -#: ../../include/functions_update_manager.php:449 -#: ../../include/functions_update_manager.php:453 -#: ../../enterprise/include/functions_update_manager.php:144 -msgid "Server not found." -msgstr "Server not found." - -#: ../../include/functions_update_manager.php:375 -msgid "Update to the last version" -msgstr "Update to the latest version" - -#: ../../include/functions_update_manager.php:378 -#: ../../enterprise/include/functions_update_manager.php:222 -msgid "There is no update available." -msgstr "There are no updates available" - -#: ../../include/functions_update_manager.php:487 -#: ../../include/functions_update_manager.php:517 -msgid "Remote server error on newsletter request" -msgstr "Remote server error on newsletter request" - -#: ../../include/functions_update_manager.php:495 -msgid "E-mail successfully subscribed to newsletter." -msgstr "E-mail successfully subscribed to newsletter." - -#: ../../include/functions_update_manager.php:497 -msgid "E-mail has already subscribed to newsletter." -msgstr "E-mail has already subscribed to newsletter." - -#: ../../include/functions_update_manager.php:499 -#: ../../include/functions_update_manager.php:539 -msgid "Update manager returns error code: " -msgstr "Update manager returns error code: " - -#: ../../include/functions_update_manager.php:534 -msgid "Pandora successfully subscribed with UID: " -msgstr "Pandora successfully subscribed with UID: " - -#: ../../include/functions_update_manager.php:536 -msgid "Unsuccessful subscription." -msgstr "Unsuccessful subscription." - -#: ../../include/functions_update_manager.php:663 -msgid "Failed extracting the package to temp directory." -msgstr "Failed to extract the package to the temp directory." - -#: ../../include/functions_update_manager.php:702 -msgid "Failed the copying of the files." -msgstr "Failed to copy the files." - -#: ../../include/functions_update_manager.php:718 -msgid "Package extracted successfully." -msgstr "Package extracted successfully." - -#: ../../include/functions_config.php:94 -msgid "Failed updated: User did not login." -msgstr "Update failed : User did not login." - -#: ../../include/functions_config.php:102 -msgid "Failed updated: User is not admin." -msgstr "Update failed: User isn't admin." - -#: ../../include/functions_config.php:140 -msgid "SSL cert path" -msgstr "SSL cert path" - -#: ../../include/functions_config.php:144 -msgid "Use cert." -msgstr "Use cert." - -#: ../../include/functions_config.php:154 -msgid "Enable Integria incidents in Pandora Console" -msgstr "Enable Integria incidents in Pandora Console" - -#: ../../include/functions_config.php:156 -msgid "Integria inventory" -msgstr "Integria inventory" - -#: ../../include/functions_config.php:158 -msgid "Integria API password" -msgstr "Integria API password" - -#: ../../include/functions_config.php:160 -msgid "Integria URL" -msgstr "Integria IMS' URL" - -#: ../../include/functions_config.php:184 -msgid "License information" -msgstr "Licence information" - -#: ../../include/functions_config.php:204 -msgid "Identification_reminder" -msgstr "Identification_reminder" - -#: ../../include/functions_config.php:206 -msgid "Include_agents" -msgstr "Include_agents" - -#: ../../include/functions_config.php:208 -msgid "Audit log directory" -msgstr "Audit log directory" - -#: ../../include/functions_config.php:213 -#: ../../enterprise/godmode/setup/setup.php:30 -msgid "Forward SNMP traps to agent (if exist)" -msgstr "Forward SNMP traps to an agent (if it exists)" - -#: ../../include/functions_config.php:215 -#: ../../enterprise/godmode/setup/setup.php:38 -msgid "Use Enterprise ACL System" -msgstr "Use Enterprise ACL System" - -#: ../../include/functions_config.php:217 -#: ../../enterprise/meta/include/functions_meta.php:348 -msgid "Activate Metaconsole" -msgstr "Activate Metaconsole" - -#: ../../include/functions_config.php:219 -#: ../../enterprise/godmode/setup/setup.php:47 -msgid "Size of collection" -msgstr "Collection size" - -#: ../../include/functions_config.php:221 -#: ../../enterprise/godmode/setup/setup.php:54 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:384 -msgid "Events replication" -msgstr "Event replication" - -#: ../../include/functions_config.php:224 -#: ../../enterprise/godmode/setup/setup.php:63 -msgid "Replication interval" -msgstr "Replication interval" - -#: ../../include/functions_config.php:226 -#: ../../enterprise/godmode/setup/setup.php:70 -msgid "Replication limit" -msgstr "Replication limit" - -#: ../../include/functions_config.php:228 -#: ../../enterprise/godmode/setup/setup.php:89 -msgid "Replication mode" -msgstr "Replication mode" - -#: ../../include/functions_config.php:230 -#: ../../enterprise/godmode/setup/setup.php:138 -msgid "Show events list in local console (read only)" -msgstr "Show event list in the local console (read only)" - -#: ../../include/functions_config.php:233 -msgid "Replication DB engine" -msgstr "Replication DB engine" - -#: ../../include/functions_config.php:235 -msgid "Replication DB host" -msgstr "Replication DB host" - -#: ../../include/functions_config.php:237 -msgid "Replication DB database" -msgstr "Replication DB database" - -#: ../../include/functions_config.php:239 -msgid "Replication DB user" -msgstr "Replication DB user" - -#: ../../include/functions_config.php:241 -msgid "Replication DB password" -msgstr "Replication DB password" - -#: ../../include/functions_config.php:243 -msgid "Replication DB port" -msgstr "Replication DB port" - -#: ../../include/functions_config.php:245 -msgid "Metaconsole agent cache" -msgstr "Metaconsole agent cache" - -#: ../../include/functions_config.php:247 -#: ../../enterprise/godmode/setup/setup.php:203 -msgid "Activate Log Collector" -msgstr "Activate Log Collector" - -#: ../../include/functions_config.php:251 -#: ../../enterprise/godmode/setup/setup.php:147 -msgid "Inventory changes blacklist" -msgstr "Inventory change blacklist" - -#: ../../include/functions_config.php:258 -#: ../../enterprise/godmode/setup/setup.php:243 -#: ../../enterprise/meta/advanced/metasetup.password.php:78 -#: ../../enterprise/meta/include/functions_meta.php:499 -msgid "Enable password policy" -msgstr "Enable password policy" - -#: ../../include/functions_config.php:261 -#: ../../enterprise/godmode/setup/setup.php:248 -#: ../../enterprise/meta/advanced/metasetup.password.php:84 -#: ../../enterprise/meta/include/functions_meta.php:509 -msgid "Min. size password" -msgstr "Min. password size" - -#: ../../include/functions_config.php:263 -#: ../../enterprise/godmode/setup/setup.php:262 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -#: ../../enterprise/meta/include/functions_meta.php:539 -msgid "Password expiration" -msgstr "Password expiration" - -#: ../../include/functions_config.php:265 -#: ../../enterprise/godmode/setup/setup.php:266 -#: ../../enterprise/meta/advanced/metasetup.password.php:106 -#: ../../enterprise/meta/include/functions_meta.php:549 -msgid "Force change password on first login" -msgstr "Force password change on first login" - -#: ../../include/functions_config.php:267 -#: ../../enterprise/godmode/setup/setup.php:271 -#: ../../enterprise/meta/advanced/metasetup.password.php:112 -#: ../../enterprise/meta/include/functions_meta.php:559 -msgid "User blocked if login fails" -msgstr "Block user if login fails" - -#: ../../include/functions_config.php:269 -#: ../../enterprise/godmode/setup/setup.php:275 -#: ../../enterprise/meta/advanced/metasetup.password.php:117 -#: ../../enterprise/meta/include/functions_meta.php:569 -msgid "Number of failed login attempts" -msgstr "Number of failed login attempts" - -#: ../../include/functions_config.php:271 -#: ../../enterprise/godmode/setup/setup.php:252 -#: ../../enterprise/meta/advanced/metasetup.password.php:89 -#: ../../enterprise/meta/include/functions_meta.php:519 -msgid "Password must have numbers" -msgstr "The password must include numbers" - -#: ../../include/functions_config.php:273 -#: ../../enterprise/godmode/setup/setup.php:257 -#: ../../enterprise/meta/advanced/metasetup.password.php:95 -#: ../../enterprise/meta/include/functions_meta.php:529 -msgid "Password must have symbols" -msgstr "The password must include symbols." - -#: ../../include/functions_config.php:275 -#: ../../enterprise/godmode/setup/setup.php:280 -#: ../../enterprise/meta/advanced/metasetup.password.php:122 -#: ../../enterprise/meta/include/functions_meta.php:486 -msgid "Apply password policy to admin users" -msgstr "Apply password policy to admin users" - -#: ../../include/functions_config.php:277 -#: ../../enterprise/godmode/setup/setup.php:285 -#: ../../enterprise/meta/advanced/metasetup.password.php:128 -#: ../../enterprise/meta/include/functions_meta.php:579 -msgid "Enable password history" -msgstr "Enable password history" - -#: ../../include/functions_config.php:279 -#: ../../enterprise/godmode/setup/setup.php:290 -#: ../../enterprise/meta/advanced/metasetup.password.php:134 -#: ../../enterprise/meta/include/functions_meta.php:589 -msgid "Compare previous password" -msgstr "Compare to previous password" - -#: ../../include/functions_config.php:289 -#: ../../enterprise/godmode/setup/setup_auth.php:52 -#: ../../enterprise/godmode/setup/setup_auth.php:369 -#: ../../enterprise/meta/include/functions_meta.php:632 -msgid "Autocreate profile" -msgstr "Autocreate profile" - -#: ../../include/functions_config.php:291 -#: ../../enterprise/godmode/setup/setup_auth.php:58 -#: ../../enterprise/godmode/setup/setup_auth.php:375 -#: ../../enterprise/meta/include/functions_meta.php:642 -msgid "Autocreate profile group" -msgstr "Autocreate profile group" - -#: ../../include/functions_config.php:293 -#: ../../enterprise/godmode/setup/setup_auth.php:65 -#: ../../enterprise/godmode/setup/setup_auth.php:382 -#: ../../enterprise/meta/include/functions_meta.php:652 -msgid "Autocreate profile tags" -msgstr "Autocreate profile tags" - -#: ../../include/functions_config.php:295 -#: ../../enterprise/godmode/setup/setup_auth.php:491 -#: ../../enterprise/meta/include/functions_meta.php:662 -msgid "Autocreate blacklist" -msgstr "Autocreate blacklist" - -#: ../../include/functions_config.php:298 -#: ../../enterprise/godmode/setup/setup_auth.php:499 -#: ../../enterprise/meta/include/functions_meta.php:694 -msgid "Active directory server" -msgstr "Active directory server" - -#: ../../include/functions_config.php:300 -#: ../../enterprise/godmode/setup/setup_auth.php:505 -#: ../../enterprise/meta/include/functions_meta.php:704 -msgid "Active directory port" -msgstr "Active directory port" - -#: ../../include/functions_config.php:304 -#: ../../enterprise/godmode/setup/setup_auth.php:354 -#: ../../enterprise/meta/include/functions_meta.php:724 -msgid "Advanced Config AD" -msgstr "" - -#: ../../include/functions_config.php:306 -#: ../../enterprise/godmode/setup/setup_auth.php:518 -#: ../../enterprise/meta/include/functions_meta.php:734 -msgid "Domain" -msgstr "Domain" - -#: ../../include/functions_config.php:308 -#: ../../enterprise/godmode/setup/setup_auth.php:416 -#: ../../enterprise/meta/include/functions_meta.php:744 -msgid "Advanced Permisions AD" -msgstr "Advanced Permisions AD" - -#: ../../include/functions_config.php:326 -#: ../../enterprise/godmode/setup/setup_auth.php:254 -msgid "MySQL host" -msgstr "MySQL host" - -#: ../../include/functions_config.php:328 -#: ../../include/functions_config.php:339 -#: ../../include/functions_config.php:349 -#: ../../enterprise/godmode/setup/setup_auth.php:260 -#: ../../enterprise/godmode/setup/setup_auth.php:291 -#: ../../enterprise/godmode/setup/setup_auth.php:322 -#: ../../enterprise/meta/include/functions_meta.php:839 -#: ../../enterprise/meta/include/functions_meta.php:892 -#: ../../enterprise/meta/include/functions_meta.php:945 -msgid "MySQL port" -msgstr "MySQL port" - -#: ../../include/functions_config.php:330 -#: ../../include/functions_config.php:341 -#: ../../include/functions_config.php:351 -#: ../../include/functions_config.php:697 -#: ../../enterprise/godmode/setup/setup_auth.php:266 -#: ../../enterprise/godmode/setup/setup_auth.php:297 -#: ../../enterprise/godmode/setup/setup_auth.php:328 -#: ../../enterprise/godmode/setup/setup_history.php:59 -#: ../../enterprise/meta/include/functions_meta.php:849 -#: ../../enterprise/meta/include/functions_meta.php:902 -#: ../../enterprise/meta/include/functions_meta.php:955 -msgid "Database name" -msgstr "Database name" - -#: ../../include/functions_config.php:337 -#: ../../enterprise/godmode/setup/setup_auth.php:285 -#: ../../enterprise/meta/include/functions_meta.php:882 -msgid "Babel Enterprise host" -msgstr "Babel Enterprise host" - -#: ../../include/functions_config.php:347 -#: ../../enterprise/godmode/setup/setup_auth.php:316 -#: ../../enterprise/meta/include/functions_meta.php:935 -msgid "Integria host" -msgstr "Integria host" - -#: ../../include/functions_config.php:357 -msgid "Saml path" -msgstr "SAML path" - -#: ../../include/functions_config.php:361 -#: ../../enterprise/meta/include/functions_meta.php:682 -msgid "Session timeout" -msgstr "Session timeout" - -#: ../../include/functions_config.php:387 -msgid "Max. days before autodisable deletion" -msgstr "Max. days before autodisable deletion" - -#: ../../include/functions_config.php:389 -msgid "Item limit for realtime reports)" -msgstr "Item limit for realtime reports" - -#: ../../include/functions_config.php:405 -msgid "Big Operatiopn Step to purge old data" -msgstr "Big Operation Step to purge old data" - -#: ../../include/functions_config.php:446 -#: ../../enterprise/meta/advanced/metasetup.visual.php:111 -#: ../../enterprise/meta/include/functions_meta.php:1048 -msgid "Graphic resolution (1-low, 5-high)" -msgstr "Graphic resolution (1-low, 5-high)" - -#: ../../include/functions_config.php:447 -#: ../../include/functions_config.php:1543 -#: ../../include/functions_netflow.php:1640 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Bytes" -msgstr "Bytes" - -#: ../../include/functions_config.php:461 -msgid "Show QR code header" -msgstr "Display QR code in header" - -#: ../../include/functions_config.php:474 -#: ../../enterprise/meta/include/functions_meta.php:1141 -msgid "Custom logo login" -msgstr "Custom logo login" - -#: ../../include/functions_config.php:476 -#: ../../enterprise/meta/include/functions_meta.php:1151 -msgid "Custom splash login" -msgstr "" - -#: ../../include/functions_config.php:478 -#: ../../enterprise/meta/include/functions_meta.php:1161 -msgid "Custom title1 login" -msgstr "" - -#: ../../include/functions_config.php:480 -#: ../../enterprise/meta/include/functions_meta.php:1171 -msgid "Custom title2 login" -msgstr "" - -#: ../../include/functions_config.php:485 -msgid "Custom logo metaconsole" -msgstr "" - -#: ../../include/functions_config.php:487 -msgid "Custom logo login metaconsole" -msgstr "" - -#: ../../include/functions_config.php:489 -msgid "Custom splash login metaconsole" -msgstr "" - -#: ../../include/functions_config.php:491 -msgid "Custom title1 login metaconsole" -msgstr "" - -#: ../../include/functions_config.php:493 -msgid "Custom title2 login metaconsole" -msgstr "" - -#: ../../include/functions_config.php:495 -msgid "Login background metaconsole" -msgstr "" - -#: ../../include/functions_config.php:516 -msgid "Show units in values report" -msgstr "Show units in values report" - -#: ../../include/functions_config.php:522 -msgid "Fixed graph" -msgstr "Fixed graph" - -#: ../../include/functions_config.php:528 -msgid "Paginate module" -msgstr "Paginate module" - -#: ../../include/functions_config.php:540 -msgid "Default type of module charts." -msgstr "Default module chart type" - -#: ../../include/functions_config.php:542 -msgid "Default type of interface charts." -msgstr "Default type of interface charts." - -#: ../../include/functions_config.php:544 -msgid "Default show only average or min and max" -msgstr "Default show only average or min and max" - -#: ../../include/functions_config.php:549 -#: ../../include/functions_config.php:1603 -#: ../../include/functions_reporting_html.php:502 -#: ../../include/functions_reporting_html.php:581 -#: ../../enterprise/include/functions_reporting.php:1276 -#: ../../enterprise/include/functions_reporting.php:1312 -#: ../../enterprise/include/functions_reporting.php:2068 -#: ../../enterprise/include/functions_reporting.php:2104 -#: ../../enterprise/include/functions_reporting.php:2845 -#: ../../enterprise/include/functions_reporting.php:2881 -#: ../../enterprise/include/functions_reporting.php:4452 -#: ../../enterprise/include/functions_reporting.php:4786 -#: ../../enterprise/include/functions_reporting_csv.php:967 -#: ../../enterprise/include/functions_reporting_csv.php:1014 -#: ../../enterprise/include/functions_reporting_pdf.php:1328 -#: ../../enterprise/include/functions_reporting_pdf.php:1409 -#: ../../enterprise/include/functions_reporting_pdf.php:1629 -#: ../../enterprise/include/functions_reporting_pdf.php:1665 -#: ../../enterprise/include/functions_reporting_pdf.php:2068 -msgid "Fail" -msgstr "Fail" - -#: ../../include/functions_config.php:553 -msgid "Display lateral menus with left click" -msgstr "Display lateral menus with left click" - -#: ../../include/functions_config.php:559 -msgid "Service item padding size" -msgstr "Service item padding size" - -#: ../../include/functions_config.php:562 -msgid "Default percentil" -msgstr "Default percentile" - -#: ../../include/functions_config.php:582 -msgid "Add the custom post process" -msgstr "Add the custom post process" - -#: ../../include/functions_config.php:589 -msgid "Delete the custom post process" -msgstr "Delete the custom post process" - -#: ../../include/functions_config.php:638 -msgid "Custom report info" -msgstr "Custom report info" - -#: ../../include/functions_config.php:685 -#: ../../enterprise/godmode/setup/setup_log_collector.php:47 -msgid "Log max lifetime" -msgstr "Max. log lifespan" - -#: ../../include/functions_config.php:689 -#: ../../enterprise/godmode/setup/setup_history.php:45 -msgid "Enable history database" -msgstr "Enable historic database" - -#: ../../include/functions_config.php:691 -msgid "Enable history event" -msgstr "Enable history event" - -#: ../../include/functions_config.php:693 -#: ../../enterprise/godmode/setup/setup_history.php:53 -msgid "Host" -msgstr "Host" - -#: ../../include/functions_config.php:699 -#: ../../enterprise/godmode/setup/setup_history.php:62 -msgid "Database user" -msgstr "Database user" - -#: ../../include/functions_config.php:701 -#: ../../enterprise/godmode/setup/setup_history.php:65 -msgid "Database password" -msgstr "Database password" - -#: ../../include/functions_config.php:705 -msgid "Event Days" -msgstr "Event Days" - -#: ../../include/functions_config.php:709 -#: ../../enterprise/godmode/setup/setup_history.php:74 -msgid "Delay" -msgstr "Delay" - -#: ../../include/functions_config.php:715 -msgid "eHorus user" -msgstr "eHorus user" - -#: ../../include/functions_config.php:717 -msgid "eHorus password" -msgstr "eHorus password" - -#: ../../include/functions_config.php:719 -msgid "eHorus API hostname" -msgstr "eHorus API hostname" - -#: ../../include/functions_config.php:721 -msgid "eHorus API port" -msgstr "eHorus API port" - -#: ../../include/functions_config.php:723 -msgid "eHorus request timeout" -msgstr "eHorus request timeout" - -#: ../../include/functions_config.php:725 -msgid "eHorus id custom field" -msgstr "eHorus id custom field" - -#: ../../include/functions_config.php:737 -#, php-format -msgid "Failed updated: the next values cannot update: %s" -msgstr "Updated failed. The following values could not be updated: %s" - -#: ../../include/functions_config.php:1140 -#: ../../enterprise/meta/general/login_page.php:133 -msgid "PANDORA FMS NEXT GENERATION" -msgstr "" - -#: ../../include/functions_config.php:1144 -#: ../../enterprise/meta/general/login_page.php:141 -msgid "METACONSOLE" -msgstr "" - -#: ../../include/functions_config.php:1745 -msgid "" -"Click here to start the " -"registration process" -msgstr "" -"Click here to start the " -"registration process" - -#: ../../include/functions_config.php:1746 -msgid "This instance is not registered in the Update manager" -msgstr "This instance is not registered in the Update manager" - -#: ../../include/functions_config.php:1753 -msgid "" -"Click here to start the " -"newsletter subscription process" -msgstr "" -"Click here to start the " -"newsletter subscription process" - -#: ../../include/functions_config.php:1754 -msgid "Not subscribed to the newsletter" -msgstr "Not subscribed to the newsletter" - -#: ../../include/functions_config.php:1765 -msgid "Default password for \"Admin\" user has not been changed." -msgstr "The default password for the \"Admin\" user hasn't been changed." - -#: ../../include/functions_config.php:1766 -msgid "" -"Please change the default password because is a common vulnerability " -"reported." -msgstr "" -"Please change the default password. It's a commonly reported security issue " -"to not do so." - -#: ../../include/functions_config.php:1772 -msgid "You can not get updates until you renew the license." -msgstr "You cannot obtain updates until you renew the license." - -#: ../../include/functions_config.php:1773 -msgid "This license has expired." -msgstr "This license has expired." - -#: ../../include/functions_config.php:1778 -msgid "" -"Please check that the web server has write rights on the " -"{HOMEDIR}/attachment directory" -msgstr "" -"Please check that the webserver has writing permission over the " -"{HOMEDIR}/attachment directory" - -#: ../../include/functions_config.php:1791 -msgid "Remote configuration directory is not readble for the console" -msgstr "Remote configuration directory is unreadable for the console." - -#: ../../include/functions_config.php:1797 -#: ../../include/functions_config.php:1804 -msgid "Remote configuration directory is not writtable for the console" -msgstr "Remote configuration directory is not writtable by the console" - -#: ../../include/functions_config.php:1815 -msgid "" -"There are too much files in attachment directory. This is not fatal, but you " -"should consider cleaning up your attachment directory manually" -msgstr "" -"there are too many files in the attachment directory. This is not a fatal " -"issue, but you should consider cleaning your attachment directory manually." - -#: ../../include/functions_config.php:1815 -msgid "files" -msgstr "files" - -#: ../../include/functions_config.php:1816 -msgid "Too much files in your tempora/attachment directory" -msgstr "Too many files in your temporary/attachment directory" - -#: ../../include/functions_config.php:1833 -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" -msgstr "" -"Your database is not maintained correctly. It seems that more than 48hrs " -"have passed without proper maintenance. Please review Pandora FMS' documents " -"on how to perform this maintenance process (pandora_db.pl) and enable it as " -"soon as possible." - -#: ../../include/functions_config.php:1834 -msgid "Database maintance problem" -msgstr "Database maintenance issue." - -#: ../../include/functions_config.php:1840 -msgid "" -"Your defined font doesnt exist or is not defined. Please check font " -"parameters in your config" -msgstr "" -"Your defined font doesnt exist or is not defined. Please check font " -"parameters in your config" - -#: ../../include/functions_config.php:1841 -msgid "Default font doesnt exist" -msgstr "The default font doesn't exist." - -#: ../../include/functions_config.php:1846 -msgid "You need to restart server after altering this configuration setting." -msgstr "" -"You'll need to restart the server after modifying this configuration setting." - -#: ../../include/functions_config.php:1847 -msgid "" -"Event storm protection is activated. No events will be generated during this " -"mode." -msgstr "" -"Event storm protection is activated. No events will be generated during this " -"mode." - -#: ../../include/functions_config.php:1854 -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" -msgstr "" -"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" - -#: ../../include/functions_config.php:1855 -msgid "Developer mode is enabled" -msgstr "Developer mode enabled" - -#: ../../include/functions_config.php:1864 -msgid "Error first setup Open update" -msgstr "Error on first setup open update" - -#: ../../include/functions_config.php:1870 -msgid "" -"There is a new update available. Please go to Administration:Setup:Update Manager for more details." -msgstr "" -"There is a new update available. Please go to Administration:Setup:Update Manager for more details." - -#: ../../include/functions_config.php:1871 -msgid "New update of Pandora Console" -msgstr "New Pandora Console update" - -#: ../../include/functions_config.php:1885 -msgid "" -"To disable, change it on your PHP configuration file (php.ini) and put " -"safe_mode = Off (Dont forget restart apache process after changes)" -msgstr "" -"In order to disable it, please go to your PHP configuration file (php.ini) " -"and set the 'safe_mode' option to 'Off'. Please don't forget to restart the " -"apache process after the changes are complete." - -#: ../../include/functions_config.php:1886 -msgid "PHP safe mode is enabled. Some features may not properly work." -msgstr "PHP safe mode is enabled. Some features may not work properly." - -#: ../../include/functions_config.php:1891 -#, php-format -msgid "Recommended value is %s" -msgstr "The recommended value is %s" - -#: ../../include/functions_config.php:1891 -#: ../../include/functions_config.php:1897 -msgid "Unlimited" -msgstr "Unlimited" - -#: ../../include/functions_config.php:1891 -#: ../../include/functions_config.php:1897 -#: ../../include/functions_config.php:1905 -#: ../../include/functions_config.php:1920 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator (Dont forget restart apache process after changes)" -msgstr "" -"Please, change this in your PHP configuration file (php.ini) or contact your " -"administrator (remember to restart the Apache process after performing " -"changes)" - -#: ../../include/functions_config.php:1892 -#: ../../include/functions_config.php:1898 -#: ../../include/functions_config.php:1906 -#: ../../include/functions_config.php:1914 -#, php-format -msgid "Not recommended '%s' value in PHP configuration" -msgstr "Not recommended '%s' value in PHP configuration" - -#: ../../include/functions_config.php:1897 -#: ../../include/functions_config.php:1905 -#: ../../include/functions_config.php:1913 -#, php-format -msgid "Recommended value is: %s" -msgstr "The recommended value is: %s" - -#: ../../include/functions_config.php:1905 -#: ../../include/functions_config.php:1913 -#, php-format -msgid "%s or greater" -msgstr "%s or greater" - -#: ../../include/functions_config.php:1913 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator" -msgstr "" -"Please, change it in your PHP configuration file (php.ini) or contact the " -"administrator" - -#: ../../include/functions_config.php:1919 -msgid "" -"Variable disable_functions containts functions system() or exec(), in PHP " -"configuration file (php.ini)" -msgstr "" -"The variable disable_functions contains the system () or exec () functions " -"in the PHP configuration file (php.ini)" - -#: ../../include/functions_config.php:1920 -msgid "Problems with disable functions in PHP.INI" -msgstr "Problems with disable functions in PHP.INI" - -#: ../../include/functions_users.php:377 -#, php-format -msgid "User %s login at %s" -msgstr "User %s login at %s" - -#: ../../include/functions_users.php:438 -#, php-format -msgid "User %s was deleted in the DB at %s" -msgstr "User %s was deleted in the DB at %s" - -#: ../../include/functions_users.php:443 -#, php-format -msgid "User %s logout at %s" -msgstr "User %s logout at %s" - -#: ../../include/functions_db.php:75 -#, php-format -msgid "Error connecting to database %s at %s." -msgstr "Error on connecting to database %s at %s." - -#: ../../include/functions_db.php:1515 -msgid "SQL sentence" -msgstr "SQL sentence" - -#: ../../include/functions_db.php:1517 -msgid "Rows" -msgstr "Rows" - -#: ../../include/functions_db.php:1518 -msgid "Saved" -msgstr "Saved" - -#: ../../include/functions_db.php:1519 -msgid "Time (ms)" -msgstr "Time (ms)" - -#: ../../include/functions_visual_map.php:1150 -msgid "Last value: " -msgstr "Last value: " - -#: ../../include/functions_visual_map.php:1723 -msgid "Agent successfully added to layout" -msgstr "Agent successfully added to the layout." - -#: ../../include/functions_visual_map.php:1870 -msgid "Modules successfully added to layout" -msgstr "Modules successfully added to the layout." - -#: ../../include/functions_visual_map.php:2067 -msgid "Agents successfully added to layout" -msgstr "Agents successfully added to the layout." - -#: ../../include/functions_visual_map.php:2408 -msgid "Cannot load the visualmap" -msgstr "Cannot load the visual map." - -#: ../../include/functions_visual_map.php:2744 -msgid "Percentile bar" -msgstr "Percentile bar" - -#: ../../include/functions_visual_map.php:2748 -msgid "Static graph" -msgstr "Static graph" - -#: ../../include/functions_events.php:865 -#: ../../include/functions_events.php:869 -#: ../../include/functions_reporting.php:1332 -#: ../../include/functions_reporting.php:1500 -#: ../../include/functions_reporting_html.php:3779 -#: ../../mobile/operation/events.php:790 -#: ../../operation/events/events.build_table.php:118 -#: ../../operation/events/events.build_table.php:787 -msgid "No events" -msgstr "No events" - -#: ../../include/functions_events.php:880 -#: ../../operation/agentes/tactical.php:188 -msgid "Latest events" -msgstr "Latest events" +#: ../../include/functions_alerts.php:392 +msgid "copy" +msgstr "copy" + +#: ../../include/functions_alerts.php:558 +msgid "Regular expression" +msgstr "Regular expression" + +#: ../../include/functions_alerts.php:559 +msgid "Max and min" +msgstr "Max and min" + +#: ../../include/functions_alerts.php:562 +msgid "Equal to" +msgstr "Equal to" + +#: ../../include/functions_alerts.php:563 +msgid "Not equal to" +msgstr "Not equal to" + +#: ../../include/functions_alerts.php:566 +msgid "Unknown status" +msgstr "Unknown status" + +#: ../../include/functions_alerts.php:567 +msgid "On Change" +msgstr "On Change" + +#: ../../include/functions_alerts.php:568 +#: ../../godmode/alerts/alert_view.php:195 +#: ../../godmode/alerts/alert_list.list.php:524 +msgid "Always" +msgstr "Always" + +#: ../../include/functions_alerts.php:1385 +msgid "No actions defined" +msgstr "No actions defined" + +#: ../../include/functions_events.php:34 +#: ../../include/functions_events.php:1581 +#: ../../godmode/events/custom_events.php:68 +#: ../../godmode/events/custom_events.php:152 +msgid "Event id" +msgstr "Choose between the users who have validated an event." + +#: ../../include/functions_events.php:42 +#: ../../godmode/events/custom_events.php:92 +#: ../../godmode/events/custom_events.php:160 +msgid "Agent module" +msgstr "Agent module" + +#: ../../include/functions_events.php:48 +#: ../../include/functions_events.php:2251 +#: ../../godmode/events/custom_events.php:110 +#: ../../godmode/events/custom_events.php:166 +msgid "Extra id" +msgstr "Extra ID" + +#: ../../include/functions_events.php:52 +#: ../../godmode/events/custom_events.php:122 +#: ../../godmode/events/custom_events.php:170 +msgid "Server name" +msgstr "Server name" #: ../../include/functions_events.php:895 -#: ../../include/functions_events.php:1505 -#: ../../include/functions_events.php:1719 -#: ../../include/functions_events.php:1725 -#: ../../include/functions_events.php:1729 -#: ../../include/functions_events.php:1734 -#: ../../include/functions_events.php:3151 -#: ../../include/functions_events.php:3159 -#: ../../include/functions_graph.php:3024 -#: ../../operation/snmpconsole/snmp_view.php:408 -#: ../../operation/snmpconsole/snmp_view.php:664 -#: ../../operation/snmpconsole/snmp_view.php:915 -msgid "Validated" -msgstr "Validated" - -#: ../../include/functions_events.php:895 -#: ../../enterprise/operation/agentes/policy_view.php:51 msgid "V." msgstr "V." @@ -22241,22 +14215,15 @@ msgstr "V." msgid "Events -by module-" msgstr "Events -by module-" -#: ../../include/functions_events.php:1025 -#: ../../operation/agentes/tactical.php:203 -#: ../../operation/events/event_statistics.php:37 -msgid "Event graph" -msgstr "Event graph" - -#: ../../include/functions_events.php:1030 -#: ../../operation/agentes/tactical.php:209 -#: ../../operation/events/event_statistics.php:57 -msgid "Event graph by agent" -msgstr "Event graph by agent" - #: ../../include/functions_events.php:1135 msgid "Going to unknown" msgstr "Going to unknown" +#: ../../include/functions_events.php:1138 +#: ../../include/functions_events.php:1407 ../../include/functions.php:1036 +msgid "Alert recovered" +msgstr "Alert recovered" + #: ../../include/functions_events.php:1141 msgid "Alert manually validated" msgstr "Alert manually validated" @@ -22277,12 +14244,6 @@ msgstr "Going up to normal status" msgid "Going down from normal to warning" msgstr "Falling from normal to warning status" -#: ../../include/functions_events.php:1161 -#: ../../include/functions_graph.php:3149 -#: ../../include/functions_graph.php:3200 -msgid "SYSTEM" -msgstr "SYSTEM" - #: ../../include/functions_events.php:1164 msgid "Recon server detected a new host" msgstr "Recon server detected a new host" @@ -22291,14 +14252,43 @@ msgstr "Recon server detected a new host" msgid "New agent created" msgstr "New agent created" +#: ../../include/functions_events.php:1170 +#: ../../include/functions_events.php:1425 ../../include/functions.php:1044 +msgid "Configuration change" +msgstr "Configuration change" + +#: ../../include/functions_events.php:1173 +#: ../../include/functions_events.php:1410 ../../include/functions.php:1037 +msgid "Alert ceased" +msgstr "Alert ceased" + #: ../../include/functions_events.php:1180 msgid "Unknown type:" msgstr "Unknown status:" +#: ../../include/functions_events.php:1395 ../../include/functions.php:1029 +msgid "Monitor Critical" +msgstr "Monitor in critical status" + +#: ../../include/functions_events.php:1398 ../../include/functions.php:1030 +msgid "Monitor Warning" +msgstr "Monitor in warning status" + +#: ../../include/functions_events.php:1401 ../../include/functions.php:1031 +msgid "Monitor Normal" +msgstr "Monitor in normal status" + +#: ../../include/functions_events.php:1413 ../../include/functions.php:1038 +msgid "Alert manual validation" +msgstr "Manual alert validation" + +#: ../../include/functions_events.php:1416 ../../include/functions.php:1041 +msgid "Recon host detected" +msgstr "Recon host detected" + #: ../../include/functions_events.php:1496 #: ../../include/functions_events.php:1503 #: ../../include/functions_events.php:1523 -#: ../../enterprise/dashboard/widgets/events_list.php:47 msgid "All event" msgstr "All events" @@ -22309,7 +14299,6 @@ msgstr "Only new events" #: ../../include/functions_events.php:1498 #: ../../include/functions_events.php:1529 -#: ../../enterprise/dashboard/widgets/events_list.php:48 msgid "Only validated" msgstr "Only validated events" @@ -22325,7 +14314,6 @@ msgstr "Only not validated" #: ../../include/functions_events.php:1504 #: ../../include/functions_events.php:1719 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:97 msgid "New" msgstr "New" @@ -22364,17 +14352,15 @@ msgstr "Change status" msgid "Add comment" msgstr "Add comment" -#: ../../include/functions_events.php:1759 -#: ../../include/functions_events.php:1761 -#: ../../include/functions_events.php:4033 -#: ../../operation/events/events.build_table.php:687 -msgid "Delete event" -msgstr "Delete event" - #: ../../include/functions_events.php:1771 msgid "Custom responses" msgstr "Custom responses" +#: ../../include/functions_events.php:1817 +#: ../../godmode/events/event_responses.editor.php:111 +msgid "Parameters" +msgstr "Parameters" + #: ../../include/functions_events.php:1973 msgid "There was an error connecting to the node" msgstr "There was an error connecting to the node" @@ -22383,12 +14369,6 @@ msgstr "There was an error connecting to the node" msgid "Agent details" msgstr "Agent details" -#: ../../include/functions_events.php:2043 -#: ../../operation/agentes/ver_agente.php:697 -#: ../../enterprise/operation/agentes/ver_agente.php:76 -msgid "Last remote contact" -msgstr "Last remote contact" - #: ../../include/functions_events.php:2049 msgid "View custom fields" msgstr "View custom fields" @@ -22401,6 +14381,12 @@ msgstr "Module details" msgid "No assigned" msgstr "Not assigned" +#: ../../include/functions_events.php:2140 +#: ../../godmode/alerts/alert_view.php:49 +#: ../../godmode/alerts/alert_view.php:324 +msgid "Alert details" +msgstr "Alert details" + #: ../../include/functions_events.php:2151 #: ../../include/functions_events.php:2155 msgid "Go to data overview" @@ -22411,13 +14397,6 @@ msgstr "Go to data overview" msgid "Invalid custom data: %s" msgstr "Invalid custom data : %s" -#: ../../include/functions_events.php:2333 -#: ../../include/functions_events.php:3525 -#: ../../mobile/operation/events.php:469 -#: ../../operation/events/events.build_table.php:149 -msgid "Event ID" -msgstr "Event ID" - #: ../../include/functions_events.php:2345 msgid "First event" msgstr "First event" @@ -22426,11 +14405,6 @@ msgstr "First event" msgid "Last event" msgstr "Last event" -#: ../../include/functions_events.php:2421 -#: ../../mobile/operation/events.php:497 -msgid "Acknowledged by" -msgstr "Acknowledged by" - #: ../../include/functions_events.php:2459 msgid "ID extra" msgstr "Extra ID" @@ -22440,1246 +14414,6 @@ msgstr "Extra ID" msgid "There are no comments" msgstr "There are no comments." -#: ../../include/functions_events.php:2709 -#: ../../include/functions_reporting_html.php:875 -msgid "Pandora System" -msgstr "Pandora System" - -#: ../../include/functions_events.php:3154 -#: ../../include/functions_events.php:3159 -#: ../../operation/snmpconsole/snmp_view.php:407 -#: ../../operation/snmpconsole/snmp_view.php:660 -#: ../../operation/snmpconsole/snmp_view.php:918 -msgid "Not validated" -msgstr "Unvalidated" - -#: ../../include/functions_events.php:3530 -#: ../../mobile/operation/events.php:108 -#: ../../operation/events/events.build_table.php:155 -msgid "Event Name" -msgstr "Event Name" - -#: ../../include/functions_events.php:3568 -#: ../../operation/events/events.build_table.php:198 -msgid "Agent Module" -msgstr "Agent Module" - -#: ../../include/functions_events.php:3599 -#: ../../operation/events/events.build_table.php:235 -msgid "Extra ID" -msgstr "Extra ID" - -#: ../../include/functions_events.php:4023 -#: ../../operation/events/events.build_table.php:677 -msgid "Validate event" -msgstr "Validate event" - -#: ../../include/functions_events.php:4038 -#: ../../operation/events/events.build_table.php:692 -#: ../../operation/events/events.php:780 ../../operation/events/events.php:784 -#: ../../operation/events/events.php:954 ../../operation/events/events.php:958 -msgid "Is not allowed delete events in process" -msgstr "You cannot delete events in process." - -#: ../../include/functions_events.php:4046 -#: ../../operation/events/events.build_table.php:700 -#: ../../operation/snmpconsole/snmp_view.php:760 -msgid "Show more" -msgstr "Show more" - -#: ../../include/functions_visual_map_editor.php:57 -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 "" -"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." - -#: ../../include/functions_visual_map_editor.php:95 -#: ../../include/functions_visual_map_editor.php:119 -msgid "Border color" -msgstr "Border color" - -#: ../../include/functions_visual_map_editor.php:131 -msgid "Border width" -msgstr "Outline width" - -#: ../../include/functions_visual_map_editor.php:140 -msgid "Fill color" -msgstr "Fill color" - -#: ../../include/functions_visual_map_editor.php:218 -msgid "Enable link" -msgstr "Enable link" - -#: ../../include/functions_visual_map_editor.php:239 -msgid "White" -msgstr "White" - -#: ../../include/functions_visual_map_editor.php:240 -msgid "Black" -msgstr "Black" - -#: ../../include/functions_visual_map_editor.php:241 -msgid "Transparent" -msgstr "Transparent" - -#: ../../include/functions_visual_map_editor.php:366 -msgid "Original Size" -msgstr "Original Size" - -#: ../../include/functions_visual_map_editor.php:373 -msgid "Aspect ratio" -msgstr "Aspect ratio" - -#: ../../include/functions_visual_map_editor.php:374 -msgid "Width proportional" -msgstr "Proportional width" - -#: ../../include/functions_visual_map_editor.php:380 -msgid "Height proportional" -msgstr "Proportional Height" - -#: ../../include/functions_visual_map_editor.php:513 -msgid "For use the original image file size, set 0 width and 0 height." -msgstr "" -"In order to use the original image's file size, set width and height to 0." - -#: ../../include/functions_visual_map_editor.php:549 -msgid "Lines haven't advanced options" -msgstr "Lines haven't advanced options" - -#: ../../include/functions_visual_map_editor.php:576 -msgid "Click start point
    of the line" -msgstr "Click the starting point
    of the line" - -#: ../../include/functions_visual_map_editor.php:581 -msgid "Click end point
    of the line" -msgstr "Click end point
    of the line" - -#: ../../include/functions_visual_map_editor.php:672 -msgid "Show grid" -msgstr "Show grid" - -#: ../../include/functions_visual_map_editor.php:674 -msgid "Delete item" -msgstr "Delete item" - -#: ../../include/functions_visual_map_editor.php:675 -msgid "Copy item" -msgstr "Copy item" - -#: ../../include/functions_visual_map_editor.php:703 -msgid "No image or name defined." -msgstr "No image or name defined." - -#: ../../include/functions_visual_map_editor.php:705 -msgid "No label defined." -msgstr "No label defined" - -#: ../../include/functions_visual_map_editor.php:707 -msgid "No image defined." -msgstr "No image defined." - -#: ../../include/functions_visual_map_editor.php:709 -msgid "No process defined." -msgstr "No process defined." - -#: ../../include/functions_visual_map_editor.php:711 -msgid "No Max value defined." -msgstr "No Max value defined." - -#: ../../include/functions_visual_map_editor.php:713 -msgid "No width defined." -msgstr "No width defined." - -#: ../../include/functions_visual_map_editor.php:715 -msgid "No period defined." -msgstr "No period defined." - -#: ../../include/functions_visual_map_editor.php:717 -msgid "No agent defined." -msgstr "No agent defined." - -#: ../../include/functions_visual_map_editor.php:719 -msgid "No module defined." -msgstr "No module defined." - -#: ../../include/functions_visual_map_editor.php:722 -msgid "Successfully save the changes." -msgstr "Changes successfully saved." - -#: ../../include/functions_visual_map_editor.php:724 -msgid "Could not be save" -msgstr "Could not be saved." - -#: ../../include/get_file.php:46 -msgid "Security error. Please contact the administrator." -msgstr "Security error. Please contact your administrator." - -#: ../../include/get_file.php:56 -msgid "File is missing in disk storage. Please contact the administrator." -msgstr "" -"The file is missing in the disk's storage. Please contact your administrator." - -#: ../../include/functions_filemanager.php:172 -#: ../../include/functions_filemanager.php:242 -#: ../../include/functions_filemanager.php:300 -#: ../../include/functions_filemanager.php:382 -msgid "Security error" -msgstr "Security error" - -#: ../../include/functions_filemanager.php:185 -msgid "Upload error" -msgstr "Upload error" - -#: ../../include/functions_filemanager.php:193 -#: ../../include/functions_filemanager.php:261 -#: ../../include/functions_filemanager.php:326 -msgid "Upload correct" -msgstr "Upload correct" - -#: ../../include/functions_filemanager.php:206 -msgid "" -"File size seems to be too large. Please check your php.ini configuration or " -"contact with the administrator" -msgstr "" -"The file seems to be too large. Please check your php.ini configuration file " -"or contact your administrator." - -#: ../../include/functions_filemanager.php:254 -msgid "Error creating file" -msgstr "Error creating file" - -#: ../../include/functions_filemanager.php:267 -#: ../../include/functions_filemanager.php:362 -msgid "Error creating file with empty name" -msgstr "Error creating a file with no name." - -#: ../../include/functions_filemanager.php:312 -msgid "Attach error" -msgstr "Attachment error" - -#: ../../include/functions_filemanager.php:348 -#: ../../enterprise/godmode/agentes/collections.editor.php:148 -#: ../../enterprise/godmode/agentes/collections.editor.php:311 -msgid "Security error." -msgstr "Security error." - -#: ../../include/functions_filemanager.php:357 -msgid "Directory created" -msgstr "Directory created" - -#: ../../include/functions_filemanager.php:385 -#: ../../include/functions_reporting_html.php:1238 -#: ../../enterprise/include/functions_inventory.php:517 -#: ../../enterprise/include/functions_inventory.php:582 -#: ../../enterprise/include/functions_reporting_pdf.php:511 -msgid "Deleted" -msgstr "Deleted" - -#: ../../include/functions_filemanager.php:550 -#, php-format -msgid "Directory %s doesn't exist!" -msgstr "Directory %s doesn't exist!" - -#: ../../include/functions_filemanager.php:565 -msgid "Index of images" -msgstr "Image index" - -#: ../../include/functions_filemanager.php:603 -msgid "Parent directory" -msgstr "Parent directory" - -#: ../../include/functions_filemanager.php:632 -msgid "The zip upload in this dir, easy to upload multiple files." -msgstr "The zip uploads in this dir, easy to upload multiple files." - -#: ../../include/functions_filemanager.php:636 -msgid "Decompress" -msgstr "Decompress" - -#: ../../include/functions_filemanager.php:638 -#: ../../enterprise/extensions/csv_import/main.php:88 -#: ../../enterprise/extensions/csv_import_group/main.php:84 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1204 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1412 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1588 -msgid "Go" -msgstr "Go" - -#: ../../include/functions_filemanager.php:679 -msgid "Directory" -msgstr "Directory" - -#: ../../include/functions_filemanager.php:685 -msgid "Compressed file" -msgstr "Compressed file" - -#: ../../include/functions_filemanager.php:688 -#: ../../include/functions_filemanager.php:695 -msgid "Text file" -msgstr "Text file" - -#: ../../include/functions_filemanager.php:785 -msgid "Create directory" -msgstr "Create directory" - -#: ../../include/functions_filemanager.php:790 -msgid "Create text" -msgstr "Create text" - -#: ../../include/functions_filemanager.php:795 -msgid "Upload file/s" -msgstr "Upload file(s)" - -#: ../../include/functions_filemanager.php:802 -msgid "The directory is read-only" -msgstr "This directory is read-only" - -#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 -#: ../../include/functions_gis.php:36 -msgid "Hierarchy of agents" -msgstr "Agent hierarchy" - -#: ../../include/functions_graph.php:706 -msgid "Units. Value" -msgstr "Unit Value" - -#: ../../include/functions_graph.php:781 -#: ../../include/functions_graph.php:1753 -#, php-format -msgid "Percentile %dº" -msgstr "Percentile %dº" - -#: ../../include/functions_graph.php:815 -#: ../../include/functions_graph.php:4019 -#: ../../enterprise/dashboard/full_dashboard.php:234 -#: ../../enterprise/dashboard/public_dashboard.php:256 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:160 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:180 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:208 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:170 -msgid "Previous" -msgstr "Previous" - -#: ../../include/functions_graph.php:1246 -#, php-format -msgid "%s" -msgstr "%s" - -#: ../../include/functions_graph.php:1753 -msgid " of module " -msgstr " of module " - -#: ../../include/functions_graph.php:2111 -msgid "Not fired alerts" -msgstr "Non-triggered alerts" - -#: ../../include/functions_graph.php:2111 -#: ../../include/functions_reporting.php:7093 -#: ../../include/functions_reporting.php:7114 ../../operation/tree.php:276 -#: ../../operation/tree.php:277 ../../operation/tree.php:278 -#: ../../enterprise/dashboard/widgets/tree_view.php:200 -#: ../../enterprise/dashboard/widgets/tree_view.php:201 -#: ../../enterprise/dashboard/widgets/tree_view.php:202 -#: ../../enterprise/include/functions_reporting_csv.php:465 -msgid "Fired alerts" -msgstr "Triggered alerts" - -#: ../../include/functions_graph.php:2120 -#: ../../include/functions_graph.php:2200 -#: ../../include/functions_graph.php:2273 -#: ../../include/functions_graph.php:3039 -#: ../../include/functions_graph.php:3475 -#: ../../include/functions_reporting.php:1212 -#: ../../include/functions_reporting.php:1365 -#: ../../include/functions_reporting.php:1384 -#: ../../include/functions_reporting.php:1405 -#: ../../include/functions_reporting.php:1426 -#: ../../include/functions_reporting.php:2092 -#: ../../include/functions_reporting.php:2274 -#: ../../include/functions_reporting.php:2295 -#: ../../include/functions_reporting.php:2316 -#: ../../include/functions_reporting.php:6211 -#: ../../include/functions_reporting.php:6231 -#: ../../include/functions_reporting.php:6251 -#: ../../include/functions_reporting_html.php:2934 -#: ../../include/functions_reporting_html.php:3012 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:180 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:197 -msgid "other" -msgstr "other" - -#: ../../include/functions_graph.php:2280 -#: ../../include/functions_graph.php:2327 -#: ../../include/graphs/functions_gd.php:165 -#: ../../include/graphs/functions_gd.php:256 -#: ../../enterprise/include/functions_reporting.php:1407 -#: ../../enterprise/include/functions_reporting_pdf.php:1768 -#: ../../enterprise/include/functions_reporting_pdf.php:1769 -msgid "Out of limits" -msgstr "Out of limits" - -#: ../../include/functions_graph.php:2560 -msgid "Today" -msgstr "Today" - -#: ../../include/functions_graph.php:2561 -msgid "Week" -msgstr "Week" - -#: ../../include/functions_graph.php:2562 ../../include/functions_html.php:864 -#: ../../enterprise/include/functions_reporting_csv.php:1159 -#: ../../enterprise/include/functions_reporting_csv.php:1371 -msgid "Month" -msgstr "Month" - -#: ../../include/functions_graph.php:2563 -#: ../../include/functions_graph.php:2564 -msgid "Months" -msgstr "Month" - -#: ../../include/functions_graph.php:2586 -msgid "History db" -msgstr "History db" - -#: ../../include/functions_graph.php:2773 -#: ../../include/functions_incidents.php:29 -#: ../../include/functions_incidents.php:54 -msgid "Informative" -msgstr "Informative" - -#: ../../include/functions_graph.php:2774 -#: ../../include/functions_incidents.php:30 -#: ../../include/functions_incidents.php:57 -msgid "Low" -msgstr "Low" - -#: ../../include/functions_graph.php:2775 -#: ../../include/functions_incidents.php:31 -#: ../../include/functions_incidents.php:60 -msgid "Medium" -msgstr "Medium" - -#: ../../include/functions_graph.php:2776 -#: ../../include/functions_incidents.php:32 -#: ../../include/functions_incidents.php:63 -msgid "Serious" -msgstr "Serious" - -#: ../../include/functions_graph.php:2777 -#: ../../include/functions_incidents.php:33 -#: ../../include/functions_incidents.php:66 -msgid "Very serious" -msgstr "Very serious" - -#: ../../include/functions_graph.php:2800 -#: ../../include/functions_graph.php:2812 -msgid "Open incident" -msgstr "Open incident" - -#: ../../include/functions_graph.php:2801 -#: ../../include/functions_graph.php:2814 -msgid "Closed incident" -msgstr "Closed incident" - -#: ../../include/functions_graph.php:2802 -#: ../../include/functions_graph.php:2816 -msgid "Outdated" -msgstr "Outdated" - -#: ../../include/functions_graph.php:2803 -#: ../../include/functions_graph.php:2818 -#: ../../enterprise/godmode/setup/setup_acl.php:368 -#: ../../enterprise/godmode/setup/setup_acl.php:381 -msgid "Invalid" -msgstr "Invalid" - -#: ../../include/functions_graph.php:3934 -msgid "Units" -msgstr "Units" - -#: ../../include/functions_graph.php:4322 -#: ../../enterprise/dashboard/widgets/top_n.php:77 -msgid "Avg." -msgstr "Avg." - -#: ../../include/functions_graph.php:5579 -msgid "Main node" -msgstr "Main node" - -#: ../../include/help/clippy/agent_out_of_limits.php:39 -msgid "Agent contact date passed it's ETA!." -msgstr "Agent contact date passed it's ETA!." - -#: ../../include/help/clippy/agent_out_of_limits.php:44 -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 "" -"This occurs when your agent has stopped reporting, or the server has any " -"issues (overloaded or downed). You should also check the connectivity " -"between agent and server." - -#: ../../include/help/clippy/data_configuration_module.php:39 -msgid "Data Configuration Module." -msgstr "Data Configuration Module." - -#: ../../include/help/clippy/data_configuration_module.php:44 -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 "" -"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." - -#: ../../include/help/clippy/data_configuration_module.php:50 -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 "" -"The information imported the FIRST time form the XML file will be the " -"information visible on the console. After the first import, the system will " -"ignore any updates coming from the XML/agent." - -#: ../../include/help/clippy/extension_cron_send_email.php:39 -msgid "The configuration of email for the task email is in the file:" -msgstr "The configuration of e-mail for the task e-mail is in the file:" - -#: ../../include/help/clippy/extension_cron_send_email.php:41 -msgid "Please check if the email configuration is correct." -msgstr "Please check if the e-mail configuration is correct." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:35 -msgid "Now you must go to Modules. Don't worry I'll lead you." -msgstr "Now you must go to Modules. Don't worry, I'll lead you." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:40 -msgid "Click in this tab.." -msgstr "Click on this tab.." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:56 -msgid "Now you must create the module. Don't worry, i'll teach you." -msgstr "Now you must create the module. Don't worry, i'll teach you." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:60 -msgid "Choose the network server module." -msgstr "Choose the network server module." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:64 -msgid "And click the button." -msgstr "And click the button." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:80 -msgid "Now you must create the module. Don't worry, i'll teach you ." -msgstr "Now you must create the module. Don't worry, i'll teach you ." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:84 -msgid "Now we are going to fill the form." -msgstr "Now, we'll proceed to fill out the form." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:88 -msgid "Please choose Network Management." -msgstr "Please choose Network Management." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:92 -msgid "Choose the component named \"Host alive\"." -msgstr "Choose the component named \"Host alive\"." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:96 -msgid "You can change the name if you want." -msgstr "You can change this name if you want." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:100 -msgid "Check if the IP showed is the IP of your machine." -msgstr "Check if the IP shown is the same as your device's IP" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:104 -msgid "And only to finish it is clicking this button." -msgstr "And only to finish it is clicking this button." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:121 -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 "" -"Congrats! Your module has been created.
    Its status color is " -"blue.
    which means that the module hasn't been executed for the " -"first time. In a few seconds, if there is no problem, the status color will " -"turn into red or green." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:126 -#: ../../include/help/clippy/operation_agentes_ver_agente.php:42 -#: ../../operation/servers/recon_view.php:137 -msgid "Done" -msgstr "Done" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:137 -msgid "Click on alerts tab and then fill the form to add an alert." -msgstr "" -"Click on the 'alerts' tab and then fill out the form to add a new alert." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:152 -msgid "Select the critical module." -msgstr "Select the critical module." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 -msgid "In template select \"Critical Condition\"." -msgstr "On the template select \"Critical Condition\"." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:160 -msgid "Now, select the action created before." -msgstr "Now, select the previously created action." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:165 -msgid "Click on Add Alert button to create the alert." -msgstr "Click on the 'Add Alert' button to create the alert." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:181 -msgid "" -"To test the alert you've just created go to the main view by clicking on the " -"eye tab." -msgstr "" -"To test the alert you've just created go to the main view by clicking on the " -"eye tab." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:35 -msgid "I'm going to show you how to monitor a server." -msgstr "I'm going to show you how to monitor a server." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:39 -msgid "Please, type an agent to save the modules for monitoring a server." -msgstr "Please, type an agent to save the modules for monitoring a server." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:44 -msgid "If you have typed the name correctly you will see the agent." -msgstr "If the name is entered correctly, the agent will be shown." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:60 -msgid "Now, please choose the agent you searched." -msgstr "Now, select the agent you searched for." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:65 -msgid "Choose the agent and click on the name." -msgstr "Select the agent and click on its name." - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:36 -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 "" -"Let me show you how to set up email actions: click on the 'Create' button, " -"and fill out the form shown in the following screen." - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:51 -msgid "" -"Now, you have to go to the monitors list and look for a critical module to " -"apply the alert." -msgstr "" -"Now, head over to the monitor list and look for a module in critical status " -"to apply the alert to." - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:56 -msgid "" -"Click on the arrow to drop down the Monitoring submenu and select Monitor " -"Detail." -msgstr "" -"Click on the arrow to display the Monitoring submenu and select 'Monitor " -"Detail'." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:35 -msgid "Fill the name of your action." -msgstr "Provide the name for your action." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:39 -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 "" -"Select the group from the drop-down list and filter by ACL (other users in " -"this group can use your action to create an alert)." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:43 -msgid "In the command field select \"email\"." -msgstr "In the 'Command' field, select \"email\"." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:47 -msgid "" -"In the threshold field enter the seconds. The help icon show more " -"information." -msgstr "" -"In the 'Threshold' field, enter the time (seconds). The help icon displays " -"more details." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:53 -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 "" -"In the first field, enter the email address(es) to which the alerts should " -"be sent. Multiple addresses must be separated by commas (,) or blank spaces." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:58 -msgid "" -"In the \"Subject\" field you can use the macros _agent_ or _module_ for " -"each name." -msgstr "" -"In the 'Subject' field you can use the \"_agent_\" or \"_module_\" macros " -"for each name." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:63 -msgid "" -"In the text field, you can also use macros. Get more information about the " -"macros by clicking on the help icon." -msgstr "" -"In the text field, you can also use macros. Get more information about the " -"macros by clicking on the help icon." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:69 -msgid "Click on Create button to create the action." -msgstr "Click on the 'Create' button to create the action" - -#: ../../include/help/clippy/homepage.php:59 -msgid "Hi, can I help you?" -msgstr "Hi! How can I help you?" - -#: ../../include/help/clippy/homepage.php:60 -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." -msgstr "" -"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." - -#: ../../include/help/clippy/homepage.php:67 -msgid "Close this wizard and don't open it again." -msgstr "Close this wizard and don't open it again." - -#: ../../include/help/clippy/homepage.php:81 -msgid "Which task would you like to do first?" -msgstr "Which task would you like to tackle first?" - -#: ../../include/help/clippy/homepage.php:85 -msgid "Ping to a Linux or Windows server with a Pandora FMS agent" -msgstr "Ping a Linux or Windows server using a Pandora FMS agent." - -#: ../../include/help/clippy/homepage.php:90 -msgid "Create a alert by email in a critical module." -msgstr "Create an email alert for a module in critical status" - -#: ../../include/help/clippy/homepage.php:209 -msgid "" -"The first thing you have to do is to setup the config email in the Pandora " -"FMS Server." -msgstr "" -"The first thing you have to do is to setup the e-mail config on the Pandora " -"FMS Server." - -#: ../../include/help/clippy/homepage.php:213 -msgid "If you have it already configured you can go to the next step." -msgstr "If you've already configured it, you can go to the next step." - -#: ../../include/help/clippy/homepage.php:218 -msgid "Now, pull down the Manage alerts menu and click on Actions. " -msgstr "Now, pull down the 'Manage Alerts' menu, and click on 'Actions'. " - -#: ../../include/help/clippy/interval_agent_min.php:39 -msgid "Interval Agent." -msgstr "Interval Agent." - -#: ../../include/help/clippy/interval_agent_min.php:44 -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 "" -"Please note that having agents with a monitoring interval below 300 seconds " -"is not recommended. This will seriously impact the server's performance. " -"For example, having 200 agents with a 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." - -#: ../../include/help/clippy/module_unknow.php:39 -msgid "You have unknown modules in this agent." -msgstr "You have unknown modules in this agent." - -#: ../../include/help/clippy/module_unknow.php:44 -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 "" -"Unknown modules are those which have received data normally at least on one " -"occasion, but that aren't receiving data right now. Please check our " -"troubleshooting page to help you determine why you have modules in unknown " -"status." - -#: ../../include/help/clippy/modules_not_init.php:39 -msgid "You have non initialized modules" -msgstr "You have non initialised modules" - -#: ../../include/help/clippy/modules_not_init.php:44 -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 "" -"This happens when you have just created a module and it wasn't executed on " -"the first time. Usually after a few seconds the status should change to " -"\"initialized\" and you'll be able to see it on the main view." - -#: ../../include/help/clippy/modules_not_learning_mode.php:40 -msgid "" -"Please note that you have your agent setup to do not add new modules coming " -"from the data XML." -msgstr "" -"Please note that if you have your agent set up you mustn't add new modules " -"coming from the data XML." - -#: ../../include/help/clippy/modules_not_learning_mode.php:41 -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 "" -"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)." - -#: ../../include/help/clippy/modules_not_learning_mode.php:42 -msgid "" -"You should use the \"normal\" mode (non learn) only when you don't intend to " -"add more modules to the agent." -msgstr "" -"You should use \"normal\" mode (not 'learning' mode) only when you don't " -"intend to add more modules to the agent." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:35 -msgid "" -"Now, you have to go to the monitors list and look for a \"critical\" module " -"to apply the alert." -msgstr "" -"Now, you must go to the monitor list and look for a \"critical\" module to " -"apply the alert to." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:39 -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 "" -"If you know the agent name or the name of the module in critical status, " -"type it in this field in order to shorten the list of modules.You can write " -"the name entirely or partially." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:44 -msgid "Click on Show button to get the modules list filtered." -msgstr "Click on Show button to get the modules list filtered." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:60 -msgid "" -"Now, to edit the module, click on the wrench that appears in the type column." -msgstr "" -"In order to edit the module, click on the wrench icon that can be seen in " -"the 'Type' column." - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:36 -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 "" -"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 e-mail." - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:37 -msgid "" -"And restart your pandora server to read again general configuration tokens." -msgstr "" -"After, restart your Pandora Server to reread the general configuration " -"tokens." - -#: ../../include/help/clippy/server_queued_modules.php:39 -msgid "Excesive Queued." -msgstr "Too many modules queued" - -#: ../../include/help/clippy/server_queued_modules.php:44 -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 "" -"You have too many items in the processing queue. This can happen if your " -"server is overloaded and/or improperly configured. This could be something " -"temporary, or a bottleneck. A possible solution is to increase the number of " -"server threads, but you should consider getting support (or contact our " -"support for Enterprise Edition users)." - -#: ../../include/help/clippy/servers_down.php:39 -msgid "All servers down" -msgstr "All servers down" - -#: ../../include/help/clippy/servers_down.php:44 -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 "" -"You must boot up all servers. Go to the Linux terminal and run the following " -"command: \"sudo /etc/init.d/pandora_server restart\". You'll have to provide " -"root user credentials." - -#: ../../include/help/clippy/topology_group.php:39 -msgid "Topology Group" -msgstr "Topology Group" - -#: ../../include/help/clippy/topology_group.php:44 -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 "" -"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. " - -#: ../../include/functions_groups.php:63 -msgid "Alert Actions" -msgstr "Alert Actions" - -#: ../../include/functions_groups.php:78 -msgid "Alert Templates" -msgstr "Alert Templates" - -#: ../../include/functions_groups.php:120 -#: ../../operation/search_results.php:114 -#: ../../enterprise/extensions/cron/functions.php:543 -#: ../../enterprise/meta/general/main_header.php:136 -#: ../../enterprise/meta/general/main_header.php:151 -#: ../../enterprise/mobile/include/functions_web.php:15 -msgid "Reports" -msgstr "Reports" - -#: ../../include/functions_groups.php:135 -msgid "Layout visual console" -msgstr "Visual console layout" - -#: ../../include/functions_groups.php:149 -msgid "Plannet down time" -msgstr "Planned downtime" - -#: ../../include/functions_groups.php:176 -msgid "GIS maps" -msgstr "GIS maps" - -#: ../../include/functions_groups.php:190 -msgid "GIS connections" -msgstr "GIS connections" - -#: ../../include/functions_groups.php:204 -msgid "GIS map layers" -msgstr "GIS map layers" - -#: ../../include/functions_groups.php:217 -msgid "Network maps" -msgstr "Network maps" - -#: ../../include/functions_groups.php:794 -#: ../../include/functions_groups.php:796 -#: ../../include/functions_groups.php:798 -#: ../../include/functions_groups.php:799 -#: ../../include/functions_groups.php:800 -#: ../../include/functions_reporting_html.php:3426 -#: ../../mobile/operation/groups.php:137 -msgid "Agents unknown" -msgstr "Unknown agents" - -#: ../../include/functions_groups.php:848 -#: ../../include/functions_groups.php:850 -#: ../../include/functions_groups.php:852 -#: ../../include/functions_groups.php:853 -#: ../../include/functions_groups.php:854 -#: ../../include/functions_reporting_html.php:2930 -#: ../../include/functions_reporting_html.php:2939 -#: ../../mobile/operation/groups.php:161 -#: ../../operation/agentes/ver_agente.php:773 -#: ../../enterprise/operation/agentes/ver_agente.php:152 -msgid "Alerts fired" -msgstr "Alerts fired" - -#: ../../include/functions_groups.php:2149 -msgid "Show branch children" -msgstr "Show branch son" - -#: ../../include/functions_groups.php:2178 -msgid "" -"You can not delete the last group in Pandora. A common installation must has " -"almost one group." -msgstr "" -"You cannot delete the last group in Pandora. A common installation must have " -"at least one group." - -#: ../../include/functions_html.php:732 -msgid "weeks" -msgstr "weeks" - -#: ../../include/functions_html.php:863 -msgid "Month day" -msgstr "Day of the month" - -#: ../../include/functions_html.php:865 -msgid "Week day" -msgstr "Day of the week" - -#: ../../include/functions_html.php:2168 -msgid "Type at least two characters to search the module." -msgstr "Type at least two characters to search the module." - -#: ../../include/functions_incidents.php:88 -#: ../../include/functions_incidents.php:107 -msgid "Active incidents" -msgstr "Active incidents" - -#: ../../include/functions_incidents.php:89 -#: ../../include/functions_incidents.php:110 -msgid "Active incidents, with comments" -msgstr "Active incidents, with comments" - -#: ../../include/functions_incidents.php:90 -#: ../../include/functions_incidents.php:113 -msgid "Rejected incidents" -msgstr "Rejected incidents" - -#: ../../include/functions_incidents.php:91 -#: ../../include/functions_incidents.php:116 -msgid "Expired incidents" -msgstr "Expired incidents" - -#: ../../include/functions_incidents.php:92 -#: ../../include/functions_incidents.php:119 -msgid "Closed incidents" -msgstr "Closed incidents" - -#: ../../include/functions_maps.php:34 -#: ../../include/functions_networkmap.php:1641 -#: ../../include/functions_networkmap.php:1720 -#: ../../enterprise/meta/general/logon_ok.php:62 -msgid "Topology" -msgstr "Topology" - -#: ../../include/functions_maps.php:37 -#: ../../include/functions_networkmap.php:1635 ../../operation/tree.php:80 -#: ../../enterprise/dashboard/widgets/tree_view.php:39 -#: ../../enterprise/include/functions_groups.php:32 -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/operation/agentes/ver_agente.php:208 -msgid "Policies" -msgstr "Policies" - -#: ../../include/functions_maps.php:43 -#: ../../include/functions_networkmap.php:1722 -#: ../../include/functions_reporting.php:624 -#: ../../include/functions_reporting.php:5158 -#: ../../enterprise/include/functions_reporting.php:1734 -#: ../../enterprise/include/functions_reporting.php:2460 -#: ../../enterprise/include/functions_reporting.php:3241 -msgid "Dynamic" -msgstr "Dynamic" - -#: ../../include/functions_maps.php:62 -#: ../../include/functions_pandora_networkmap.php:953 -msgid "Copy of " -msgstr "Copy of " - -#: ../../include/functions_menu.php:470 -msgid "Configure user" -msgstr "Configure user" - -#: ../../include/functions_menu.php:471 -msgid "Configure profile" -msgstr "Configure profile" - -#: ../../include/functions_menu.php:475 -msgid "Module templates management" -msgstr "Module templates management" - -#: ../../include/functions_menu.php:476 -msgid "Inventory modules management" -msgstr "Inventory modules management" - -#: ../../include/functions_menu.php:477 -#: ../../enterprise/meta/advanced/component_management.php:56 -msgid "Tags management" -msgstr "Tags management" - -#: ../../include/functions_menu.php:481 -msgid "View agent" -msgstr "View agent" - -#: ../../include/functions_menu.php:485 -msgid "Manage network map" -msgstr "Manage network map" - -#: ../../include/functions_menu.php:487 -msgid "Builder visual console" -msgstr "Builder visual console" - -#: ../../include/functions_menu.php:489 -msgid "Administration events" -msgstr "Administration events" - -#: ../../include/functions_menu.php:491 -msgid "View reporting" -msgstr "View reporting" - -#: ../../include/functions_menu.php:492 -msgid "Manage custom graphs" -msgstr "Manage custom graphs" - -#: ../../include/functions_menu.php:493 -msgid "Copy dashboard" -msgstr "Copy dashboard" - -#: ../../include/functions_menu.php:496 -msgid "Manage GIS Maps" -msgstr "Manage GIS Maps" - -#: ../../include/functions_menu.php:498 -msgid "Incidents statistics" -msgstr "Incident statistics" - -#: ../../include/functions_menu.php:499 -msgid "Manage messages" -msgstr "Manage messages" - -#: ../../include/functions_menu.php:501 -msgid "Manage groups" -msgstr "Manage groups" - -#: ../../include/functions_menu.php:502 -msgid "Manage module groups" -msgstr "Manage module groups" - -#: ../../include/functions_menu.php:503 -msgid "Manage custom field" -msgstr "Manage custom fields" - -#: ../../include/functions_menu.php:505 -msgid "Manage alert actions" -msgstr "Manage alert actions" - -#: ../../include/functions_menu.php:506 -msgid "Manage commands" -msgstr "Manage commands" - -#: ../../include/functions_menu.php:507 -msgid "Manage event alerts" -msgstr "Manage event alerts" - -#: ../../include/functions_menu.php:509 -msgid "Manage export targets" -msgstr "Manage export targets" - -#: ../../include/functions_menu.php:511 -msgid "Manage services" -msgstr "Manage services" - -#: ../../include/functions_menu.php:513 ../../operation/menu.php:92 -msgid "SNMP filters" -msgstr "SNMP filters" - -#: ../../include/functions_menu.php:514 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:22 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 -#: ../../enterprise/operation/menu.php:119 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:79 -msgid "SNMP trap editor" -msgstr "SNMP trap editor" - -#: ../../include/functions_menu.php:515 ../../operation/menu.php:93 -msgid "SNMP trap generator" -msgstr "SNMP trap generator" - -#: ../../include/functions_menu.php:517 ../../operation/menu.php:84 -msgid "SNMP console" -msgstr "SNMP console" - -#: ../../include/functions_menu.php:519 -msgid "Manage incident" -msgstr "Manage incidents" - -#: ../../include/functions_menu.php:571 -msgid "Administration" -msgstr "Administration" - -#: ../../include/functions_modules.php:1871 -#: ../../mobile/operation/modules.php:451 -#: ../../mobile/operation/modules.php:504 -#: ../../operation/agentes/status_monitor.php:1143 -#: ../../operation/search_modules.php:104 -msgid "NOT INIT" -msgstr "Non- initialized" - -#: ../../include/functions_modules.php:1890 -#: ../../include/functions_modules.php:1894 -#: ../../include/functions_modules.php:1898 -#: ../../mobile/operation/modules.php:471 -#: ../../mobile/operation/modules.php:476 -#: ../../mobile/operation/modules.php:481 -#: ../../mobile/operation/modules.php:524 -#: ../../mobile/operation/modules.php:529 -#: ../../mobile/operation/modules.php:534 -#: ../../operation/agentes/pandora_networkmap.view.php:301 -#: ../../operation/agentes/pandora_networkmap.view.php:306 -#: ../../operation/agentes/pandora_networkmap.view.php:311 -#: ../../operation/agentes/status_monitor.php:1182 -#: ../../operation/agentes/status_monitor.php:1187 -#: ../../operation/agentes/status_monitor.php:1194 -#: ../../operation/agentes/status_monitor.php:1199 -#: ../../operation/agentes/status_monitor.php:1206 -#: ../../operation/agentes/status_monitor.php:1211 -#: ../../operation/search_modules.php:124 -#: ../../operation/search_modules.php:131 -#: ../../operation/search_modules.php:138 -#: ../../enterprise/include/functions_services.php:1614 -#: ../../enterprise/include/functions_services.php:1619 -#: ../../enterprise/include/functions_services.php:1623 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/policy_view.php:386 -#: ../../enterprise/operation/agentes/transactional_map.php:152 -msgid "Last status" -msgstr "Last status" - #: ../../include/functions_netflow.php:362 msgid "Total flows" msgstr "Total flows" @@ -23716,11 +14450,6 @@ msgstr "Pie graph and summary table" msgid "Statistics table" msgstr "Statistics table" -#: ../../include/functions_netflow.php:1034 -#: ../../operation/agentes/exportdata.php:330 -msgid "Data table" -msgstr "Data table" - #: ../../include/functions_netflow.php:1035 msgid "Circular mesh" msgstr "Circular Mesh" @@ -23745,29 +14474,33 @@ msgstr "15 mins" msgid "30 mins" msgstr "30 mins" -#: ../../include/functions_netflow.php:1053 -#: ../../include/functions_netflow.php:1086 -#: ../../operation/gis_maps/render_view.php:143 -#: ../../enterprise/dashboard/widgets/top_n.php:62 -#: ../../enterprise/godmode/agentes/inventory_manager.php:177 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:191 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:182 -msgid "2 hours" -msgstr "2 hours" - #: ../../include/functions_netflow.php:1054 #: ../../include/functions_netflow.php:1087 -#: ../../enterprise/dashboard/widgets/top_n.php:63 msgid "5 hours" msgstr "5 hours" +#: ../../include/functions_netflow.php:1057 +#: ../../include/functions_netflow.php:1090 +#: ../../godmode/setup/performance.php:108 +msgid "2 days" +msgstr "2 days" + #: ../../include/functions_netflow.php:1058 #: ../../include/functions_netflow.php:1091 msgid "5 days" msgstr "5 days" +#: ../../include/functions_netflow.php:1060 +#: ../../godmode/setup/performance.php:110 +msgid "Last week" +msgstr "Last week" + +#: ../../include/functions_netflow.php:1061 +#: ../../godmode/setup/performance.php:112 +msgid "Last month" +msgstr "Last month" + #: ../../include/functions_netflow.php:1062 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:192 msgid "2 months" msgstr "2 months" @@ -23844,41 +14577,2021 @@ msgstr "Source IP" msgid "Src port" msgstr "Source Port" -#: ../../include/graphs/export_data.php:71 -#: ../../include/graphs/export_data.php:126 -msgid "An error occured exporting the data" -msgstr "An error occured exporting the data" +#: ../../include/functions_html.php:646 ../../include/functions_html.php:647 +#: ../../include/functions_html.php:770 ../../include/functions_html.php:771 +#: ../../godmode/massive/massive_edit_modules.php:486 +#: ../../godmode/agentes/module_manager_editor_network.php:87 +msgid "Custom" +msgstr "Custom" -#: ../../include/graphs/export_data.php:76 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 -msgid "Selected" -msgstr "Selected" +#: ../../include/functions_html.php:728 ../../include/functions.php:434 +#: ../../include/functions.php:568 ../../godmode/setup/setup_visuals.php:712 +msgid "minutes" +msgstr "minutes" -#: ../../include/graphs/functions_flot.php:251 -msgid "Cancel zoom" -msgstr "Cancel zoom" +#: ../../include/functions_html.php:729 ../../include/functions.php:435 +#: ../../include/functions.php:569 ../../godmode/setup/setup_visuals.php:713 +msgid "hours" +msgstr "hours" -#: ../../include/graphs/functions_flot.php:253 -msgid "Warning and Critical thresholds" -msgstr "Warning and Critical thresholds" +#: ../../include/functions_html.php:730 ../../include/functions.php:431 +#: ../../include/functions.php:565 ../../godmode/setup/setup_visuals.php:714 +#: ../../godmode/db/db_main.php:82 ../../godmode/db/db_main.php:88 +msgid "days" +msgstr "days" -#: ../../include/graphs/functions_flot.php:256 -msgid "Overview graph" -msgstr "Overview graph" +#: ../../include/functions_html.php:731 +msgid "weeks" +msgstr "weeks" -#: ../../include/graphs/functions_flot.php:595 -#: ../../include/functions_treeview.php:294 -#: ../../enterprise/extensions/vmware/vmware_view.php:873 -#: ../../enterprise/extensions/vmware/vmware_view.php:889 -#: ../../enterprise/extensions/vmware/vmware_view.php:905 -#: ../../enterprise/extensions/vmware/vmware_view.php:921 -msgid "No data" -msgstr "No data" +#: ../../include/functions_html.php:732 ../../include/functions.php:432 +#: ../../include/functions.php:566 ../../godmode/setup/setup_visuals.php:715 +msgid "months" +msgstr "months" -#: ../../include/graphs/functions_pchart.php:205 -#: ../../include/graphs/functions_pchart.php:1183 -msgid "Actual" -msgstr "Actual" +#: ../../include/functions_html.php:733 ../../include/functions.php:433 +#: ../../include/functions.php:567 ../../godmode/setup/setup_visuals.php:716 +msgid "years" +msgstr "years" + +#: ../../include/functions_html.php:847 +#: ../../godmode/alerts/configure_alert_special_days.php:87 +#: ../../godmode/alerts/alert_special_days.php:243 +#: ../../godmode/alerts/alert_special_days.php:443 +#: ../../godmode/alerts/alert_templates.php:71 +#: ../../godmode/reporting/reporting_builder.item_editor.php:839 +msgid "Sunday" +msgstr "Sunday" + +#: ../../include/functions_html.php:848 +#: ../../godmode/alerts/configure_alert_special_days.php:81 +#: ../../godmode/alerts/alert_special_days.php:237 +#: ../../godmode/alerts/alert_special_days.php:425 +#: ../../godmode/alerts/alert_templates.php:65 +#: ../../godmode/reporting/reporting_builder.item_editor.php:803 +msgid "Monday" +msgstr "Monday" + +#: ../../include/functions_html.php:849 +#: ../../godmode/alerts/configure_alert_special_days.php:82 +#: ../../godmode/alerts/alert_special_days.php:238 +#: ../../godmode/alerts/alert_special_days.php:428 +#: ../../godmode/alerts/alert_templates.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:809 +msgid "Tuesday" +msgstr "Tuesday" + +#: ../../include/functions_html.php:850 +#: ../../godmode/alerts/configure_alert_special_days.php:83 +#: ../../godmode/alerts/alert_special_days.php:239 +#: ../../godmode/alerts/alert_special_days.php:431 +#: ../../godmode/alerts/alert_templates.php:67 +#: ../../godmode/reporting/reporting_builder.item_editor.php:815 +msgid "Wednesday" +msgstr "Wednesday" + +#: ../../include/functions_html.php:851 +#: ../../godmode/alerts/configure_alert_special_days.php:84 +#: ../../godmode/alerts/alert_special_days.php:240 +#: ../../godmode/alerts/alert_special_days.php:434 +#: ../../godmode/alerts/alert_templates.php:68 +#: ../../godmode/reporting/reporting_builder.item_editor.php:821 +msgid "Thursday" +msgstr "Thursday" + +#: ../../include/functions_html.php:852 +#: ../../godmode/alerts/configure_alert_special_days.php:85 +#: ../../godmode/alerts/alert_special_days.php:241 +#: ../../godmode/alerts/alert_special_days.php:437 +#: ../../godmode/alerts/alert_templates.php:69 +#: ../../godmode/reporting/reporting_builder.item_editor.php:827 +msgid "Friday" +msgstr "Friday" + +#: ../../include/functions_html.php:853 +#: ../../godmode/alerts/configure_alert_special_days.php:86 +#: ../../godmode/alerts/alert_special_days.php:242 +#: ../../godmode/alerts/alert_special_days.php:440 +#: ../../godmode/alerts/alert_templates.php:70 +#: ../../godmode/reporting/reporting_builder.item_editor.php:833 +msgid "Saturday" +msgstr "Saturday" + +#: ../../include/functions_html.php:862 +msgid "Month day" +msgstr "Day of the month" + +#: ../../include/functions_html.php:864 +msgid "Week day" +msgstr "Day of the week" + +#: ../../include/functions_html.php:2167 +msgid "Type at least two characters to search the module." +msgstr "Type at least two characters to search the module." + +#: ../../include/functions_reporting.php:563 +#: ../../include/functions_reporting.php:5086 +msgid "There are no SLAs defined" +msgstr "There are no SLAs defined" + +#: ../../include/functions_reporting.php:630 +#: ../../include/functions_reporting.php:5137 +msgid "Inverse" +msgstr "Inverse" + +#: ../../include/functions_reporting.php:940 +msgid "Top N" +msgstr "Top N" + +#: ../../include/functions_reporting.php:1050 +msgid "Insuficient data" +msgstr "Insufficient data" + +#: ../../include/functions_reporting.php:1283 +msgid "Event Report Group" +msgstr "Event Report Group" + +#: ../../include/functions_reporting.php:1460 +msgid "Event Report Module" +msgstr "Event Report Module" + +#: ../../include/functions_reporting.php:1522 +msgid "Inventory Changes" +msgstr "Inventory Changes" + +#: ../../include/functions_reporting.php:1564 +msgid "No changes found." +msgstr "No changes found." + +#: ../../include/functions_reporting.php:1626 +#: ../../godmode/reporting/reporting_builder.php:727 +msgid "No data found." +msgstr "No data found." + +#: ../../include/functions_reporting.php:1651 +msgid "Agent/Modules" +msgstr "Agent/Modules" + +#: ../../include/functions_reporting.php:1740 +msgid "Exception - Everything" +msgstr "Exception - Everything" + +#: ../../include/functions_reporting.php:1741 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1326 +msgid "Everything" +msgstr "Everything" + +#: ../../include/functions_reporting.php:1745 +#, php-format +msgid "Exception - Modules over or equal to %s" +msgstr "Exception - Modules larger than or equal to %s" + +#: ../../include/functions_reporting.php:1747 +#, php-format +msgid "Modules over or equal to %s" +msgstr "Modules larger than or equal to %s" + +#: ../../include/functions_reporting.php:1751 +#, php-format +msgid "Exception - Modules under or equal to %s" +msgstr "Exception - Modules lesser than or equal to %s" + +#: ../../include/functions_reporting.php:1753 +#, php-format +msgid "Modules under or equal to %s" +msgstr "Modules lesser than or equal to %s" + +#: ../../include/functions_reporting.php:1757 +#, php-format +msgid "Exception - Modules under %s" +msgstr "Exception - Modules lesser than %s" + +#: ../../include/functions_reporting.php:1759 +#, php-format +msgid "Modules under %s" +msgstr "Modules lesser than %s" + +#: ../../include/functions_reporting.php:1763 +#, php-format +msgid "Exception - Modules over %s" +msgstr "Exception - Modules larger than %s" + +#: ../../include/functions_reporting.php:1765 +#, php-format +msgid "Modules over %s" +msgstr "Modules larger than %s" + +#: ../../include/functions_reporting.php:1769 +#, php-format +msgid "Exception - Equal to %s" +msgstr "Exception - Equal to %s" + +#: ../../include/functions_reporting.php:1771 +#, php-format +msgid "Equal to %s" +msgstr "Equal to %s" + +#: ../../include/functions_reporting.php:1775 +#, php-format +msgid "Exception - Not equal to %s" +msgstr "Exception - Not equal to %s" + +#: ../../include/functions_reporting.php:1777 +#, php-format +msgid "Not equal to %s" +msgstr "Not equal to %s" + +#: ../../include/functions_reporting.php:1781 +msgid "Exception - Modules at normal status" +msgstr "Exception - Modules in normal status." + +#: ../../include/functions_reporting.php:1782 +msgid "Modules at normal status" +msgstr "Modules in normal status" + +#: ../../include/functions_reporting.php:1786 +msgid "Exception - Modules at critical or warning status" +msgstr "Exception - Modules in critical or warning status" + +#: ../../include/functions_reporting.php:1787 +msgid "Modules at critical or warning status" +msgstr "Modules in critical or warning status." + +#: ../../include/functions_reporting.php:1976 +msgid "There are no Modules under those conditions." +msgstr "There are no Modules under those conditions." + +#: ../../include/functions_reporting.php:1979 +#, php-format +msgid "There are no Modules over or equal to %s." +msgstr "There are no Modules larger than or equal to %s" + +#: ../../include/functions_reporting.php:1982 +#, php-format +msgid "There are no Modules less or equal to %s." +msgstr "There are no Modules lesser than or equal to %s" + +#: ../../include/functions_reporting.php:1985 +#, php-format +msgid "There are no Modules less %s." +msgstr "There are no Modules lesser than %s" + +#: ../../include/functions_reporting.php:1988 +#, php-format +msgid "There are no Modules over %s." +msgstr "There are no Modules larger than %s" + +#: ../../include/functions_reporting.php:1991 +#, php-format +msgid "There are no Modules equal to %s" +msgstr "There are no Modules equal to %s" + +#: ../../include/functions_reporting.php:1994 +#, php-format +msgid "There are no Modules not equal to %s" +msgstr "There are no Modules not equal to %s" + +#: ../../include/functions_reporting.php:1997 +msgid "There are no Modules normal status" +msgstr "There are no Modules in normal status" + +#: ../../include/functions_reporting.php:2000 +msgid "There are no Modules at critial or warning status" +msgstr "There are no modules in critical or warning status." + +#: ../../include/functions_reporting.php:2148 +msgid "Group Report" +msgstr "Group Report" + +#: ../../include/functions_reporting.php:2202 +msgid "Event Report Agent" +msgstr "Event Report Agent" + +#: ../../include/functions_reporting.php:2341 +#: ../../godmode/massive/massive_edit_modules.php:557 +#: ../../godmode/modules/manage_network_components_form_common.php:161 +#: ../../godmode/agentes/module_manager_editor_common.php:334 +msgid "Historical data" +msgstr "Historical data" + +#: ../../include/functions_reporting.php:2398 +msgid "Database Serialized" +msgstr "Database Serialised" + +#: ../../include/functions_reporting.php:2587 +msgid "Network interfaces report" +msgstr "Network interface report" + +#: ../../include/functions_reporting.php:2606 +msgid "" +"The group has no agents or none of the agents has any network interface" +msgstr "" +"The group has no agents or none of the agents have any network interfaces." + +#: ../../include/functions_reporting.php:2655 +#: ../../include/functions_reporting.php:2678 +msgid "bytes/s" +msgstr "bytes/s" + +#: ../../include/functions_reporting.php:2730 +msgid "Alert Report Group" +msgstr "Alert Report Group" + +#: ../../include/functions_reporting.php:2876 +msgid "Alert Report Agent" +msgstr "Alert Report Agent" + +#: ../../include/functions_reporting.php:2993 +msgid "Alert Report Module" +msgstr "Alert Report Module" + +#: ../../include/functions_reporting.php:3126 +msgid "SQL Graph Vertical Bars" +msgstr "SQL vertical bar graph" + +#: ../../include/functions_reporting.php:3129 +msgid "SQL Graph Horizontal Bars" +msgstr "SQL horizontal bar graph" + +#: ../../include/functions_reporting.php:3132 +msgid "SQL Graph Pie" +msgstr "SQL Graph Pie" + +#: ../../include/functions_reporting.php:3179 +msgid "Monitor Report" +msgstr "Monitor Report" + +#: ../../include/functions_reporting.php:3250 +msgid "Netflow Area" +msgstr "Netflow Area" + +#: ../../include/functions_reporting.php:3253 +msgid "Netflow Pie" +msgstr "Netflow Pie" + +#: ../../include/functions_reporting.php:3256 +msgid "Netflow Data" +msgstr "Netflow Data" + +#: ../../include/functions_reporting.php:3259 +msgid "Netflow Statistics" +msgstr "Netflow Statistics" + +#: ../../include/functions_reporting.php:3262 +msgid "Netflow Summary" +msgstr "Netflow Summary" + +#: ../../include/functions_reporting.php:3386 +msgid "Prediction Date" +msgstr "Prediction Date" + +#: ../../include/functions_reporting.php:3436 +msgid "Projection Graph" +msgstr "Projection Graph" + +#: ../../include/functions_reporting.php:3676 +msgid "AVG. Value" +msgstr "AVG. Value" + +#: ../../include/functions_reporting.php:3811 +#: ../../godmode/tag/edit_tag.php:185 +msgid "Url" +msgstr "URL" + +#: ../../include/functions_reporting.php:3866 +msgid "SQL" +msgstr "SQL" + +#: ../../include/functions_reporting.php:3937 +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." +msgstr "" +"Illegal query. Due to security reasons, there are some tokens or words you " +"cannot use: *, delete, drop, alter, modify, union, password, pass, insert or " +"update." + +#: ../../include/functions_reporting.php:4928 +msgid "No Address" +msgstr "No Address" + +#: ../../include/functions_reporting.php:5672 +#: ../../godmode/db/db_refine.php:107 ../../godmode/db/db_refine.php:109 +msgid "Minimum" +msgstr "Minimum" + +#: ../../include/functions_reporting.php:5675 +#: ../../godmode/db/db_refine.php:112 ../../godmode/db/db_refine.php:114 +msgid "Maximum" +msgstr "Maximum" + +#: ../../include/functions_reporting.php:5679 +msgid "Rate" +msgstr "Rate" + +#: ../../include/functions_reporting.php:6324 +msgid "Maximum of events shown" +msgstr "Maximum number of displayed events" + +#: ../../include/functions_reporting.php:6964 +#: ../../include/functions_reporting.php:7001 +msgid "Server health" +msgstr "Server health" + +#: ../../include/functions_reporting.php:6964 +#, php-format +msgid "%d Downed servers" +msgstr "%d Downed servers" + +#: ../../include/functions_reporting.php:6972 +#: ../../include/functions_reporting.php:7004 +msgid "Monitor health" +msgstr "Monitor health" + +#: ../../include/functions_reporting.php:6972 +#, php-format +msgid "%d Not Normal monitors" +msgstr "%d Abnormal monitors" + +#: ../../include/functions_reporting.php:6974 +#: ../../include/functions_reporting.php:7005 +msgid "of monitors up" +msgstr "of monitors up" + +#: ../../include/functions_reporting.php:6980 +#: ../../include/functions_reporting.php:7007 +msgid "Module sanity" +msgstr "Module sanity" + +#: ../../include/functions_reporting.php:6980 +#, php-format +msgid "%d Not inited monitors" +msgstr "%d unitialised monitors" + +#: ../../include/functions_reporting.php:6982 +#: ../../include/functions_reporting.php:7008 +msgid "of total modules inited" +msgstr "of total modules initiated" + +#: ../../include/functions_reporting.php:6988 +#: ../../include/functions_reporting.php:8008 +#: ../../include/functions_reporting.php:8017 +#, php-format +msgid "%d Fired alerts" +msgstr "%d Triggered alerts" + +#: ../../include/functions_reporting.php:6990 +#: ../../include/functions_reporting.php:7011 +msgid "of defined alerts not fired" +msgstr "Of defined alerts not triggered" + +#: ../../include/functions_reporting.php:7048 +msgid "Defined alerts" +msgstr "Triggered alerts" + +#: ../../include/functions_reporting.php:7070 +msgid "Defined and fired alerts" +msgstr "Defined and triggered alerts" + +#: ../../include/functions_reporting.php:7136 +msgid "Monitor normal" +msgstr "Monitor in normal status" + +#: ../../include/functions_reporting.php:7147 +msgid "Monitor not init" +msgstr "Monitor not initialised" + +#: ../../include/functions_reporting.php:7171 +#: ../../include/functions_reporting.php:7182 +msgid "Monitors by status" +msgstr "Monitors by status" + +#: ../../include/functions_reporting.php:7270 +msgid "Defined users" +msgstr "Defined users" + +#: ../../include/functions_reporting.php:7908 +msgid "Agent without data" +msgstr "Dataless agent" + +#: ../../include/functions_reporting.php:7995 +#: ../../include/functions_reporting.php:8003 +#, php-format +msgid "%d Total modules" +msgstr "%d Total modules" + +#: ../../include/functions_reporting.php:7996 +#, php-format +msgid "%d Modules in normal status" +msgstr "%d Modules in normal status" + +#: ../../include/functions_reporting.php:7997 +#, php-format +msgid "%d Modules in critical status" +msgstr "%d Modules in critical status" + +#: ../../include/functions_reporting.php:7998 +#, php-format +msgid "%d Modules in warning status" +msgstr "%d Modules in warning status" + +#: ../../include/functions_reporting.php:7999 +#, php-format +msgid "%d Modules in unknown status" +msgstr "%d Modules in unknown status" + +#: ../../include/functions_reporting.php:8000 +#, php-format +msgid "%d Modules in not init status" +msgstr "" + +#: ../../include/functions_reporting.php:8004 +#, php-format +msgid "%d Normal modules" +msgstr "%d Normal modules" + +#: ../../include/functions_reporting.php:8005 +#, php-format +msgid "%d Critical modules" +msgstr "%d Critical modules" + +#: ../../include/functions_reporting.php:8006 +#, php-format +msgid "%d Warning modules" +msgstr "%d Warning modules" + +#: ../../include/functions_reporting.php:8007 +#, php-format +msgid "%d Unknown modules" +msgstr "%d Modules in Unknown status" + +#: ../../include/functions_reporting.php:8011 +#, php-format +msgid "%d Total agents" +msgstr "%d Total agents" + +#: ../../include/functions_reporting.php:8012 +#, php-format +msgid "%d Normal agents" +msgstr "%d Agents in Normal status" + +#: ../../include/functions_reporting.php:8013 +#, php-format +msgid "%d Critical agents" +msgstr "%d Agents in critical status" + +#: ../../include/functions_reporting.php:8014 +#, php-format +msgid "%d Warning agents" +msgstr "%d Agents in warning status." + +#: ../../include/functions_reporting.php:8015 +#, php-format +msgid "%d Unknown agents" +msgstr "%d Unknown agents" + +#: ../../include/functions_reporting.php:8016 +#, php-format +msgid "%d not init agents" +msgstr "%d not init agents" + +#: ../../include/functions_reporting.php:9718 +msgid "Total running modules" +msgstr "Total running modules" + +#: ../../include/functions_reporting.php:9721 +#: ../../include/functions_reporting.php:9737 +#: ../../include/functions_reporting.php:9753 +#: ../../include/functions_reporting.php:9776 +#: ../../include/functions_reporting.php:9795 +#: ../../include/functions_reporting.php:9807 +#: ../../include/functions_reporting.php:9819 +#: ../../include/functions_reporting.php:9835 +msgid "Ratio" +msgstr "Ratio" + +#: ../../include/functions_reporting.php:9721 +#: ../../include/functions_reporting.php:9737 +#: ../../include/functions_reporting.php:9753 +#: ../../include/functions_reporting.php:9776 +#: ../../include/functions_reporting.php:9795 +#: ../../include/functions_reporting.php:9807 +#: ../../include/functions_reporting.php:9819 +#: ../../include/functions_reporting.php:9835 +msgid "Modules by second" +msgstr "Modules by second" + +#: ../../include/functions_reporting.php:9733 +msgid "Local modules" +msgstr "Local modules" + +#: ../../include/functions_reporting.php:9744 +msgid "Remote modules" +msgstr "Remote modules" + +#: ../../include/functions_reporting.php:9768 +msgid "Network modules" +msgstr "Network modules" + +#: ../../include/functions_reporting.php:9791 +msgid "Plugin modules" +msgstr "Plugin modules" + +#: ../../include/functions_reporting.php:9803 +msgid "Prediction modules" +msgstr "Prediction modules" + +#: ../../include/functions_reporting.php:9815 +msgid "WMI modules" +msgstr "WMI modules" + +#: ../../include/functions_reporting.php:9827 +msgid "Web modules" +msgstr "Web modules" + +#: ../../include/functions_reporting.php:9866 ../../godmode/db/db_main.php:105 +msgid "Total events" +msgstr "Total amount of events" + +#: ../../include/functions_reporting.php:9889 +msgid "Server performance" +msgstr "Server performance" + +#: ../../include/functions_reporting.php:9971 +msgid "Weekly:" +msgstr "Weekly:" + +#: ../../include/functions_reporting.php:9974 ../../include/functions.php:913 +#: ../../godmode/alerts/alert_special_days.php:327 +#: ../../godmode/alerts/alert_view.php:208 +#: ../../godmode/alerts/configure_alert_template.php:521 +#: ../../godmode/agentes/planned_downtime.editor.php:544 +msgid "Mon" +msgstr "Mon" + +#: ../../include/functions_reporting.php:9978 ../../include/functions.php:915 +#: ../../godmode/alerts/alert_special_days.php:328 +#: ../../godmode/alerts/alert_view.php:209 +#: ../../godmode/alerts/configure_alert_template.php:523 +#: ../../godmode/agentes/planned_downtime.editor.php:547 +msgid "Tue" +msgstr "Tue" + +#: ../../include/functions_reporting.php:9982 ../../include/functions.php:917 +#: ../../godmode/alerts/alert_special_days.php:329 +#: ../../godmode/alerts/alert_view.php:210 +#: ../../godmode/alerts/configure_alert_template.php:525 +#: ../../godmode/agentes/planned_downtime.editor.php:550 +msgid "Wed" +msgstr "Wed" + +#: ../../include/functions_reporting.php:9986 ../../include/functions.php:919 +#: ../../godmode/alerts/alert_special_days.php:330 +#: ../../godmode/alerts/alert_view.php:211 +#: ../../godmode/alerts/configure_alert_template.php:527 +#: ../../godmode/agentes/planned_downtime.editor.php:553 +msgid "Thu" +msgstr "Thu" + +#: ../../include/functions_reporting.php:9990 ../../include/functions.php:921 +#: ../../godmode/alerts/alert_special_days.php:331 +#: ../../godmode/alerts/alert_view.php:212 +#: ../../godmode/alerts/configure_alert_template.php:529 +#: ../../godmode/agentes/planned_downtime.editor.php:556 +msgid "Fri" +msgstr "Fri" + +#: ../../include/functions_reporting.php:9994 ../../include/functions.php:923 +#: ../../godmode/alerts/alert_special_days.php:332 +#: ../../godmode/alerts/alert_view.php:213 +#: ../../godmode/alerts/configure_alert_template.php:531 +#: ../../godmode/agentes/planned_downtime.editor.php:559 +msgid "Sat" +msgstr "Sat" + +#: ../../include/functions_reporting.php:9998 ../../include/functions.php:925 +#: ../../godmode/alerts/alert_special_days.php:326 +#: ../../godmode/alerts/alert_view.php:214 +#: ../../godmode/alerts/configure_alert_template.php:533 +#: ../../godmode/agentes/planned_downtime.editor.php:562 +msgid "Sun" +msgstr "Sun" + +#: ../../include/functions_reporting.php:10005 +msgid "Monthly:" +msgstr "Monthly:" + +#: ../../include/functions_reporting.php:10006 +msgid "From day" +msgstr "From (date):" + +#: ../../include/functions_reporting.php:10007 +msgid "To day" +msgstr "To day" + +#: ../../include/functions_config.php:94 +msgid "Failed updated: User did not login." +msgstr "Update failed : User did not login." + +#: ../../include/functions_config.php:102 +msgid "Failed updated: User is not admin." +msgstr "Update failed: User isn't admin." + +#: ../../include/functions_config.php:131 +#: ../../godmode/setup/setup_general.php:57 +msgid "Remote config directory" +msgstr "Remote config directory" + +#: ../../include/functions_config.php:133 +#: ../../godmode/setup/setup_general.php:62 +msgid "Auto login (hash) password" +msgstr "Auto login (hash) password" + +#: ../../include/functions_config.php:136 +#: ../../godmode/setup/setup_general.php:65 +msgid "Time source" +msgstr "Time source" + +#: ../../include/functions_config.php:138 +#: ../../godmode/setup/setup_general.php:70 +msgid "Automatic check for updates" +msgstr "Automatically check for updates" + +#: ../../include/functions_config.php:140 +msgid "SSL cert path" +msgstr "SSL cert path" + +#: ../../include/functions_config.php:142 +#: ../../godmode/setup/setup_general.php:74 +msgid "Enforce https" +msgstr "Enforce https" + +#: ../../include/functions_config.php:144 +msgid "Use cert." +msgstr "Use cert." + +#: ../../include/functions_config.php:146 +#: ../../godmode/setup/setup_general.php:86 +msgid "Attachment store" +msgstr "Attachment directory" + +#: ../../include/functions_config.php:148 +#: ../../godmode/setup/setup_general.php:89 +msgid "IP list with API access" +msgstr "IP list with API access" + +#: ../../include/functions_config.php:150 +#: ../../godmode/setup/setup_general.php:98 +msgid "API password" +msgstr "API password" + +#: ../../include/functions_config.php:152 +#: ../../godmode/setup/setup_general.php:102 +msgid "Enable GIS features in Pandora Console" +msgstr "Enable GIS features for the Pandora Console" + +#: ../../include/functions_config.php:154 +msgid "Enable Integria incidents in Pandora Console" +msgstr "Enable Integria incidents in Pandora Console" + +#: ../../include/functions_config.php:156 +msgid "Integria inventory" +msgstr "Integria inventory" + +#: ../../include/functions_config.php:158 +msgid "Integria API password" +msgstr "Integria API password" + +#: ../../include/functions_config.php:160 +msgid "Integria URL" +msgstr "Integria IMS' URL" + +#: ../../include/functions_config.php:162 +#: ../../godmode/setup/setup_general.php:106 +msgid "Enable Netflow" +msgstr "Enable Netflow" + +#: ../../include/functions_config.php:169 +#: ../../godmode/setup/setup_general.php:146 +msgid "Sound for Alert fired" +msgstr "Sound for Alert fired" + +#: ../../include/functions_config.php:171 +#: ../../godmode/setup/setup_general.php:151 +msgid "Sound for Monitor critical" +msgstr "Sound for Monitor critical" + +#: ../../include/functions_config.php:173 +#: ../../godmode/setup/setup_general.php:156 +msgid "Sound for Monitor warning" +msgstr "Sound for Monitor warning" + +#: ../../include/functions_config.php:184 +msgid "License information" +msgstr "Licence information" + +#: ../../include/functions_config.php:188 +#: ../../godmode/setup/setup_general.php:161 +msgid "Public URL" +msgstr "Public URL" + +#: ../../include/functions_config.php:190 +#: ../../godmode/setup/setup_general.php:165 +msgid "Referer security" +msgstr "Enforce URL security" + +#: ../../include/functions_config.php:192 +#: ../../godmode/setup/setup_general.php:173 +msgid "Event storm protection" +msgstr "Event storm protection" + +#: ../../include/functions_config.php:194 +#: ../../godmode/setup/setup_general.php:182 +msgid "Command Snapshot" +msgstr "Command line snapshot" + +#: ../../include/functions_config.php:196 +#: ../../godmode/setup/setup_general.php:187 +msgid "Server logs directory" +msgstr "Server log directory" + +#: ../../include/functions_config.php:198 +#: ../../godmode/setup/setup_general.php:196 +msgid "Tutorial mode" +msgstr "Tutorial mode" + +#: ../../include/functions_config.php:200 +#: ../../godmode/setup/setup_general.php:203 +msgid "Allow create planned downtimes in the past" +msgstr "Allows creating planned downtimes for past dates" + +#: ../../include/functions_config.php:202 +#: ../../godmode/setup/setup_general.php:208 +msgid "Limit parameters massive" +msgstr "Massive parameter limits" + +#: ../../include/functions_config.php:204 +msgid "Identification_reminder" +msgstr "Identification_reminder" + +#: ../../include/functions_config.php:206 +msgid "Include_agents" +msgstr "Include_agents" + +#: ../../include/functions_config.php:208 +msgid "Audit log directory" +msgstr "Audit log directory" + +#: ../../include/functions_config.php:213 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "Forward SNMP traps to an agent (if it exists)" + +#: ../../include/functions_config.php:215 +msgid "Use Enterprise ACL System" +msgstr "Use Enterprise ACL System" + +#: ../../include/functions_config.php:217 +msgid "Activate Metaconsole" +msgstr "Activate Metaconsole" + +#: ../../include/functions_config.php:219 +msgid "Size of collection" +msgstr "Collection size" + +#: ../../include/functions_config.php:221 +msgid "Events replication" +msgstr "Event replication" + +#: ../../include/functions_config.php:224 +msgid "Replication interval" +msgstr "Replication interval" + +#: ../../include/functions_config.php:226 +msgid "Replication limit" +msgstr "Replication limit" + +#: ../../include/functions_config.php:228 +msgid "Replication mode" +msgstr "Replication mode" + +#: ../../include/functions_config.php:230 +msgid "Show events list in local console (read only)" +msgstr "Show event list in the local console (read only)" + +#: ../../include/functions_config.php:233 +msgid "Replication DB engine" +msgstr "Replication DB engine" + +#: ../../include/functions_config.php:235 +msgid "Replication DB host" +msgstr "Replication DB host" + +#: ../../include/functions_config.php:237 +msgid "Replication DB database" +msgstr "Replication DB database" + +#: ../../include/functions_config.php:239 +msgid "Replication DB user" +msgstr "Replication DB user" + +#: ../../include/functions_config.php:241 +msgid "Replication DB password" +msgstr "Replication DB password" + +#: ../../include/functions_config.php:243 +msgid "Replication DB port" +msgstr "Replication DB port" + +#: ../../include/functions_config.php:245 +msgid "Metaconsole agent cache" +msgstr "Metaconsole agent cache" + +#: ../../include/functions_config.php:247 +msgid "Activate Log Collector" +msgstr "Activate Log Collector" + +#: ../../include/functions_config.php:251 +msgid "Inventory changes blacklist" +msgstr "Inventory change blacklist" + +#: ../../include/functions_config.php:258 +msgid "Enable password policy" +msgstr "Enable password policy" + +#: ../../include/functions_config.php:261 +msgid "Min. size password" +msgstr "Min. password size" + +#: ../../include/functions_config.php:263 +msgid "Password expiration" +msgstr "Password expiration" + +#: ../../include/functions_config.php:265 +msgid "Force change password on first login" +msgstr "Force password change on first login" + +#: ../../include/functions_config.php:267 +msgid "User blocked if login fails" +msgstr "Block user if login fails" + +#: ../../include/functions_config.php:269 +msgid "Number of failed login attempts" +msgstr "Number of failed login attempts" + +#: ../../include/functions_config.php:271 +msgid "Password must have numbers" +msgstr "The password must include numbers" + +#: ../../include/functions_config.php:273 +msgid "Password must have symbols" +msgstr "The password must include symbols." + +#: ../../include/functions_config.php:275 +msgid "Apply password policy to admin users" +msgstr "Apply password policy to admin users" + +#: ../../include/functions_config.php:277 +msgid "Enable password history" +msgstr "Enable password history" + +#: ../../include/functions_config.php:279 +msgid "Compare previous password" +msgstr "Compare to previous password" + +#: ../../include/functions_config.php:285 +#: ../../godmode/setup/setup_auth.php:183 +msgid "Authentication method" +msgstr "Authentication method" + +#: ../../include/functions_config.php:287 +#: ../../godmode/setup/setup_auth.php:57 +msgid "Autocreate remote users" +msgstr "Autocreate remote users" + +#: ../../include/functions_config.php:289 +msgid "Autocreate profile" +msgstr "Autocreate profile" + +#: ../../include/functions_config.php:291 +msgid "Autocreate profile group" +msgstr "Autocreate profile group" + +#: ../../include/functions_config.php:293 +msgid "Autocreate profile tags" +msgstr "Autocreate profile tags" + +#: ../../include/functions_config.php:295 +msgid "Autocreate blacklist" +msgstr "Autocreate blacklist" + +#: ../../include/functions_config.php:298 +msgid "Active directory server" +msgstr "Active directory server" + +#: ../../include/functions_config.php:300 +msgid "Active directory port" +msgstr "Active directory port" + +#: ../../include/functions_config.php:302 +#: ../../include/functions_config.php:317 +#: ../../godmode/setup/setup_auth.php:93 +msgid "Start TLS" +msgstr "Start TLS" + +#: ../../include/functions_config.php:304 +msgid "Advanced Config AD" +msgstr "" + +#: ../../include/functions_config.php:306 +msgid "Domain" +msgstr "Domain" + +#: ../../include/functions_config.php:308 +msgid "Advanced Permisions AD" +msgstr "Advanced Permisions AD" + +#: ../../include/functions_config.php:311 +#: ../../godmode/setup/setup_auth.php:74 +msgid "LDAP server" +msgstr "LDAP server" + +#: ../../include/functions_config.php:313 +#: ../../godmode/setup/setup_auth.php:80 +msgid "LDAP port" +msgstr "LDAP port" + +#: ../../include/functions_config.php:315 +#: ../../godmode/setup/setup_auth.php:87 +msgid "LDAP version" +msgstr "LDAP version" + +#: ../../include/functions_config.php:319 +#: ../../godmode/setup/setup_auth.php:100 +msgid "Base DN" +msgstr "Base DN" + +#: ../../include/functions_config.php:321 +#: ../../godmode/setup/setup_auth.php:106 +msgid "Login attribute" +msgstr "Login attribute" + +#: ../../include/functions_config.php:323 +#: ../../godmode/setup/setup_auth.php:49 +msgid "Fallback to local authentication" +msgstr "Fallback to local authentication" + +#: ../../include/functions_config.php:326 +msgid "MySQL host" +msgstr "MySQL host" + +#: ../../include/functions_config.php:328 +#: ../../include/functions_config.php:339 +#: ../../include/functions_config.php:349 +msgid "MySQL port" +msgstr "MySQL port" + +#: ../../include/functions_config.php:330 +#: ../../include/functions_config.php:341 +#: ../../include/functions_config.php:351 +#: ../../include/functions_config.php:681 +msgid "Database name" +msgstr "Database name" + +#: ../../include/functions_config.php:337 +msgid "Babel Enterprise host" +msgstr "Babel Enterprise host" + +#: ../../include/functions_config.php:347 +msgid "Integria host" +msgstr "Integria host" + +#: ../../include/functions_config.php:357 +msgid "Saml path" +msgstr "SAML path" + +#: ../../include/functions_config.php:361 +msgid "Session timeout" +msgstr "Session timeout" + +#: ../../include/functions_config.php:371 +#: ../../godmode/setup/performance.php:49 +msgid "Max. days before delete events" +msgstr "Max. days before delete events" + +#: ../../include/functions_config.php:373 +#: ../../godmode/setup/performance.php:52 +msgid "Max. days before delete traps" +msgstr "Max. days before trap cleanup" + +#: ../../include/functions_config.php:375 +#: ../../godmode/setup/performance.php:58 +msgid "Max. days before delete string data" +msgstr "Max. days before delete string data" + +#: ../../include/functions_config.php:377 +#: ../../godmode/setup/performance.php:55 +msgid "Max. days before delete audit events" +msgstr "Max. days before audited event cleanup" + +#: ../../include/functions_config.php:379 +#: ../../godmode/setup/performance.php:61 +msgid "Max. days before delete GIS data" +msgstr "Max. days before delete GIS data" + +#: ../../include/functions_config.php:381 +#: ../../godmode/setup/performance.php:64 +msgid "Max. days before purge" +msgstr "Max. days before purge" + +#: ../../include/functions_config.php:383 +#: ../../godmode/setup/performance.php:70 +msgid "Max. days before delete unknown modules" +msgstr "Max. days before deleting unknown modules." + +#: ../../include/functions_config.php:385 +#: ../../godmode/setup/performance.php:67 +msgid "Max. days before compact data" +msgstr "Max. days before data compacting" + +#: ../../include/functions_config.php:387 +msgid "Max. days before autodisable deletion" +msgstr "Max. days before autodisable deletion" + +#: ../../include/functions_config.php:389 +msgid "Item limit for realtime reports)" +msgstr "Item limit for realtime reports" + +#: ../../include/functions_config.php:391 +#: ../../godmode/setup/performance.php:100 +msgid "Compact interpolation in hours (1 Fine-20 bad)" +msgstr "Compact interpolation in hours (1 Fine-20 bad)" + +#: ../../include/functions_config.php:393 +#: ../../godmode/setup/performance.php:114 +msgid "Default hours for event view" +msgstr "Default hours for event view" + +#: ../../include/functions_config.php:395 +#: ../../godmode/setup/performance.php:117 +msgid "Use realtime statistics" +msgstr "Use realtime statistics" + +#: ../../include/functions_config.php:397 +#: ../../godmode/setup/performance.php:121 +msgid "Batch statistics period (secs)" +msgstr "Batch statistics period (secs)" + +#: ../../include/functions_config.php:399 +#: ../../godmode/setup/performance.php:124 +msgid "Use agent access graph" +msgstr "Use agent access graph" + +#: ../../include/functions_config.php:401 +#: ../../godmode/setup/performance.php:128 +msgid "Max. recommended number of files in attachment directory" +msgstr "Max. recommended number of files in attachment directory" + +#: ../../include/functions_config.php:403 +#: ../../godmode/setup/performance.php:131 +msgid "Delete not init modules" +msgstr "Delete not init modules" + +#: ../../include/functions_config.php:405 +msgid "Big Operatiopn Step to purge old data" +msgstr "Big Operation Step to purge old data" + +#: ../../include/functions_config.php:407 +#: ../../godmode/setup/performance.php:138 +msgid "Small Operation Step to purge old data" +msgstr "Small Operation Step to purge old data" + +#: ../../include/functions_config.php:409 +#: ../../godmode/setup/performance.php:76 +msgid "Retention period of past special days" +msgstr "Retention period of past special days" + +#: ../../include/functions_config.php:411 +#: ../../godmode/setup/performance.php:79 +msgid "Max. macro data fields" +msgstr "Max. macro data fields" + +#: ../../include/functions_config.php:414 +#: ../../godmode/setup/performance.php:83 +msgid "Max. days before delete inventory data" +msgstr "Max. days before delete inventory data" + +#: ../../include/functions_config.php:422 +#: ../../godmode/setup/setup_visuals.php:651 +msgid "Date format string" +msgstr "Date format string" + +#: ../../include/functions_config.php:424 +#: ../../godmode/setup/setup_visuals.php:664 +msgid "Timestamp or time comparation" +msgstr "Timestamp or time comparison" + +#: ../../include/functions_config.php:426 +#: ../../godmode/setup/setup_visuals.php:391 +msgid "Graph color (min)" +msgstr "Graph colour (min)" + +#: ../../include/functions_config.php:428 +#: ../../godmode/setup/setup_visuals.php:395 +msgid "Graph color (avg)" +msgstr "Graph colour (avg)" + +#: ../../include/functions_config.php:430 +#: ../../godmode/setup/setup_visuals.php:399 +msgid "Graph color (max)" +msgstr "Graph colour (max)" + +#: ../../include/functions_config.php:432 +#: ../../godmode/setup/setup_visuals.php:403 +msgid "Graph color #4" +msgstr "Graph colour #4" + +#: ../../include/functions_config.php:434 +#: ../../godmode/setup/setup_visuals.php:407 +msgid "Graph color #5" +msgstr "Graph colour #5" + +#: ../../include/functions_config.php:436 +#: ../../godmode/setup/setup_visuals.php:411 +msgid "Graph color #6" +msgstr "Graph colour #6" + +#: ../../include/functions_config.php:438 +#: ../../godmode/setup/setup_visuals.php:415 +msgid "Graph color #7" +msgstr "Graph colour #7" + +#: ../../include/functions_config.php:440 +#: ../../godmode/setup/setup_visuals.php:419 +msgid "Graph color #8" +msgstr "Graph colour #8" + +#: ../../include/functions_config.php:442 +#: ../../godmode/setup/setup_visuals.php:423 +msgid "Graph color #9" +msgstr "Graph colour #9" + +#: ../../include/functions_config.php:444 +#: ../../godmode/setup/setup_visuals.php:427 +msgid "Graph color #10" +msgstr "Graph colour #10" + +#: ../../include/functions_config.php:446 +msgid "Graphic resolution (1-low, 5-high)" +msgstr "Graphic resolution (1-low, 5-high)" + +#: ../../include/functions_config.php:448 +#: ../../godmode/setup/setup_visuals.php:435 +msgid "Value to interface graphics" +msgstr "Value to interface graphics" + +#: ../../include/functions_config.php:450 +#: ../../godmode/setup/setup_visuals.php:444 +msgid "Data precision for reports" +msgstr "Data precision for reports" + +#: ../../include/functions_config.php:455 +#: ../../godmode/setup/setup_visuals.php:153 +msgid "Style template" +msgstr "Style template" + +#: ../../include/functions_config.php:459 +#: ../../godmode/setup/setup_visuals.php:454 +msgid "Use round corners" +msgstr "Use round corners" + +#: ../../include/functions_config.php:461 +msgid "Show QR code header" +msgstr "Display QR code in header" + +#: ../../include/functions_config.php:463 +#: ../../godmode/setup/setup_visuals.php:158 +msgid "Status icon set" +msgstr "Status icon set" + +#: ../../include/functions_config.php:465 +#: ../../godmode/setup/setup_visuals.php:311 +msgid "Font path" +msgstr "Font path" + +#: ../../include/functions_config.php:467 +#: ../../godmode/setup/setup_visuals.php:318 +#: ../../godmode/reporting/visual_console_builder.wizard.php:178 +msgid "Font size" +msgstr "Font size" + +#: ../../include/functions_config.php:473 +#: ../../include/functions_config.php:633 +#: ../../godmode/setup/setup_visuals.php:574 +msgid "Custom logo" +msgstr "Custom logo" + +#: ../../include/functions_config.php:475 +msgid "Custom logo login" +msgstr "Custom logo login" + +#: ../../include/functions_config.php:480 +#: ../../godmode/setup/setup_visuals.php:168 +msgid "Login background" +msgstr "Login background" + +#: ../../include/functions_config.php:482 +#: ../../godmode/setup/setup_visuals.php:75 +msgid "Default interval for refresh on Visual Console" +msgstr "Default interval for Visual Console to refresh" + +#: ../../include/functions_config.php:484 +#: ../../godmode/setup/setup_visuals.php:528 +msgid "Default line thickness for the Visual Console" +msgstr "Default line width for the Visual Console" + +#: ../../include/functions_config.php:486 +#: ../../include/functions_config.php:488 +#: ../../godmode/setup/setup_visuals.php:341 +msgid "Agent size text" +msgstr "Agent text size" + +#: ../../include/functions_config.php:490 +#: ../../godmode/setup/setup_visuals.php:349 +msgid "Module size text" +msgstr "Module text size" + +#: ../../include/functions_config.php:492 +#: ../../include/functions_config.php:494 +#: ../../godmode/setup/setup_visuals.php:357 +msgid "Description size text" +msgstr "Description text size" + +#: ../../include/functions_config.php:496 +#: ../../godmode/setup/setup_visuals.php:361 +msgid "Item title size text" +msgstr "Item title text size" + +#: ../../include/functions_config.php:498 +#: ../../godmode/setup/setup_visuals.php:274 +msgid "GIS Labels" +msgstr "GIS Labels" + +#: ../../include/functions_config.php:500 +msgid "Show units in values report" +msgstr "Show units in values report" + +#: ../../include/functions_config.php:502 +#: ../../godmode/setup/setup_visuals.php:286 +msgid "Default icon in GIS" +msgstr "Default icon in GIS" + +#: ../../include/functions_config.php:504 +#: ../../godmode/setup/setup_visuals.php:254 +msgid "Autohidden menu" +msgstr "Auto-hidden menu" + +#: ../../include/functions_config.php:506 +msgid "Fixed graph" +msgstr "Fixed graph" + +#: ../../include/functions_config.php:508 +#: ../../godmode/setup/setup_visuals.php:238 +msgid "Fixed header" +msgstr "Fixed header" + +#: ../../include/functions_config.php:510 +#: ../../godmode/setup/setup_visuals.php:246 +msgid "Fixed menu" +msgstr "Fixed menu" + +#: ../../include/functions_config.php:512 +msgid "Paginate module" +msgstr "Paginate module" + +#: ../../include/functions_config.php:514 +#: ../../godmode/setup/setup_visuals.php:625 +msgid "Custom graphviz directory" +msgstr "Custom graphviz directory" + +#: ../../include/functions_config.php:516 +#: ../../godmode/setup/setup_visuals.php:632 +msgid "Networkmap max width" +msgstr "Networkmap max width" + +#: ../../include/functions_config.php:518 +#: ../../godmode/setup/setup_visuals.php:469 +msgid "Shortened module graph data" +msgstr "Shortened module graph data" + +#: ../../include/functions_config.php:520 +#: ../../godmode/setup/setup_visuals.php:641 +msgid "Show the group name instead the group icon." +msgstr "Show group name instead of group icon" + +#: ../../include/functions_config.php:522 +#: ../../godmode/setup/setup_visuals.php:449 +msgid "Default line thickness for the Custom Graph." +msgstr "Default line width for the Custom Graph" + +#: ../../include/functions_config.php:524 +msgid "Default type of module charts." +msgstr "Default module chart type" + +#: ../../include/functions_config.php:526 +msgid "Default type of interface charts." +msgstr "Default type of interface charts." + +#: ../../include/functions_config.php:528 +msgid "Default show only average or min and max" +msgstr "Default show only average or min and max" + +#: ../../include/functions_config.php:530 +#: ../../godmode/setup/setup_visuals.php:85 +msgid "Display data of proc modules in other format" +msgstr "Display data of proc modules in other format" + +#: ../../include/functions_config.php:532 +#: ../../godmode/setup/setup_visuals.php:95 +msgid "Display text proc modules have state is ok" +msgstr "Display text proc modules have state is ok" + +#: ../../include/functions_config.php:534 +#: ../../godmode/setup/setup_visuals.php:99 +msgid "Display text when proc modules have state critical" +msgstr "Display text when proc modules" + +#: ../../include/functions_config.php:537 +msgid "Display lateral menus with left click" +msgstr "Display lateral menus with left click" + +#: ../../include/functions_config.php:541 +#: ../../godmode/setup/setup_visuals.php:117 +msgid "Service label font size" +msgstr "Service label font size" + +#: ../../include/functions_config.php:543 +msgid "Service item padding size" +msgstr "Service item padding size" + +#: ../../include/functions_config.php:546 +msgid "Default percentil" +msgstr "Default percentile" + +#: ../../include/functions_config.php:548 +#: ../../godmode/setup/setup_visuals.php:126 +msgid "Classic menu mode" +msgstr "Classic menu mode" + +#: ../../include/functions_config.php:566 +msgid "Add the custom post process" +msgstr "Add the custom post process" + +#: ../../include/functions_config.php:573 +msgid "Delete the custom post process" +msgstr "Delete the custom post process" + +#: ../../include/functions_config.php:618 +#: ../../godmode/setup/setup_visuals.php:723 +msgid "Delete interval" +msgstr "Delete interval" + +#: ../../include/functions_config.php:622 +msgid "Custom report info" +msgstr "Custom report info" + +#: ../../include/functions_config.php:627 +#: ../../include/functions_config.php:630 +#: ../../include/functions_config.php:633 +#: ../../include/functions_config.php:636 +#: ../../include/functions_config.php:639 +#: ../../include/functions_config.php:642 +#: ../../godmode/setup/setup_visuals.php:567 +#: ../../godmode/setup/setup_visuals.php:573 +#: ../../godmode/setup/setup_visuals.php:586 +#: ../../godmode/setup/setup_visuals.php:594 +#: ../../godmode/setup/setup_visuals.php:599 +#: ../../godmode/setup/setup_visuals.php:607 +msgid "Custom report front" +msgstr "Front side custom report" + +#: ../../include/functions_config.php:630 +#: ../../godmode/setup/setup_visuals.php:567 +msgid "Font family" +msgstr "Font family" + +#: ../../include/functions_config.php:636 +#: ../../godmode/setup/setup_visuals.php:594 +msgid "Header" +msgstr "Header" + +#: ../../include/functions_config.php:639 +#: ../../godmode/setup/setup_visuals.php:599 +msgid "First page" +msgstr "First page" + +#: ../../include/functions_config.php:642 +#: ../../godmode/setup/setup_visuals.php:607 +msgid "Footer" +msgstr "Footer" + +#: ../../include/functions_config.php:647 +#: ../../godmode/setup/setup_netflow.php:41 +msgid "Data storage path" +msgstr "Data storage path" + +#: ../../include/functions_config.php:649 +#: ../../godmode/setup/setup_netflow.php:45 +msgid "Daemon interval" +msgstr "Daemon interval" + +#: ../../include/functions_config.php:651 +#: ../../godmode/setup/setup_netflow.php:49 +msgid "Daemon binary path" +msgstr "Daemon binary path" + +#: ../../include/functions_config.php:653 +#: ../../godmode/setup/setup_netflow.php:52 +msgid "Nfdump binary path" +msgstr "Nfdump binary path" + +#: ../../include/functions_config.php:655 +#: ../../godmode/setup/setup_netflow.php:55 +msgid "Nfexpire binary path" +msgstr "Nfexpire binary path" + +#: ../../include/functions_config.php:657 +#: ../../godmode/setup/setup_netflow.php:58 +msgid "Maximum chart resolution" +msgstr "Maximum chart resolution" + +#: ../../include/functions_config.php:659 +#: ../../godmode/setup/setup_netflow.php:61 +msgid "Disable custom live view filters" +msgstr "Disable custom live view filters" + +#: ../../include/functions_config.php:661 +#: ../../include/functions_config.php:667 +#: ../../godmode/setup/setup_netflow.php:65 +msgid "Netflow max lifetime" +msgstr "Max. Netflow lifespan" + +#: ../../include/functions_config.php:663 +#: ../../godmode/setup/setup_netflow.php:68 +msgid "Name resolution for IP address" +msgstr "Enable IP address name resolution" + +#: ../../include/functions_config.php:669 +msgid "Log max lifetime" +msgstr "Max. log lifespan" + +#: ../../include/functions_config.php:673 +msgid "Enable history database" +msgstr "Enable historic database" + +#: ../../include/functions_config.php:675 +msgid "Enable history event" +msgstr "Enable history event" + +#: ../../include/functions_config.php:677 +msgid "Host" +msgstr "Host" + +#: ../../include/functions_config.php:679 +#: ../../godmode/modules/manage_network_components_form_network.php:38 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:342 +#: ../../godmode/agentes/module_manager_editor_network.php:106 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:703 +msgid "Port" +msgstr "Port" + +#: ../../include/functions_config.php:683 +msgid "Database user" +msgstr "Database user" + +#: ../../include/functions_config.php:685 +msgid "Database password" +msgstr "Database password" + +#: ../../include/functions_config.php:687 +#: ../../godmode/alerts/alert_templates.php:73 +msgid "Days" +msgstr "Days" + +#: ../../include/functions_config.php:689 +msgid "Event Days" +msgstr "Event Days" + +#: ../../include/functions_config.php:691 +#: ../../godmode/alerts/configure_alert_template.php:147 +#: ../../godmode/alerts/configure_alert_template.php:152 +#: ../../godmode/alerts/configure_alert_template.php:167 +#: ../../godmode/alerts/configure_alert_template.php:172 +#: ../../godmode/alerts/configure_alert_template.php:187 +#: ../../godmode/alerts/configure_alert_template.php:192 +msgid "Step" +msgstr "Step" + +#: ../../include/functions_config.php:693 +msgid "Delay" +msgstr "Delay" + +#: ../../include/functions_config.php:697 +#: ../../godmode/setup/setup_ehorus.php:54 +msgid "Enable eHorus" +msgstr "Enable eHorus" + +#: ../../include/functions_config.php:699 +msgid "eHorus user" +msgstr "eHorus user" + +#: ../../include/functions_config.php:701 +msgid "eHorus password" +msgstr "eHorus password" + +#: ../../include/functions_config.php:703 +msgid "eHorus API hostname" +msgstr "eHorus API hostname" + +#: ../../include/functions_config.php:705 +msgid "eHorus API port" +msgstr "eHorus API port" + +#: ../../include/functions_config.php:707 +msgid "eHorus request timeout" +msgstr "eHorus request timeout" + +#: ../../include/functions_config.php:709 +msgid "eHorus id custom field" +msgstr "eHorus id custom field" + +#: ../../include/functions_config.php:721 +#, php-format +msgid "Failed updated: the next values cannot update: %s" +msgstr "Updated failed. The following values could not be updated: %s" + +#: ../../include/functions_config.php:1696 +msgid "" +"Click here to start the " +"registration process" +msgstr "" +"Click here to start the " +"registration process" + +#: ../../include/functions_config.php:1697 +msgid "This instance is not registered in the Update manager" +msgstr "This instance is not registered in the Update manager" + +#: ../../include/functions_config.php:1704 +msgid "" +"Click here to start the " +"newsletter subscription process" +msgstr "" +"Click here to start the " +"newsletter subscription process" + +#: ../../include/functions_config.php:1705 +msgid "Not subscribed to the newsletter" +msgstr "Not subscribed to the newsletter" + +#: ../../include/functions_config.php:1716 +msgid "Default password for \"Admin\" user has not been changed." +msgstr "The default password for the \"Admin\" user hasn't been changed." + +#: ../../include/functions_config.php:1717 +msgid "" +"Please change the default password because is a common vulnerability " +"reported." +msgstr "" +"Please change the default password. It's a commonly reported security issue " +"to not do so." + +#: ../../include/functions_config.php:1723 +msgid "You can not get updates until you renew the license." +msgstr "You cannot obtain updates until you renew the license." + +#: ../../include/functions_config.php:1724 +msgid "This license has expired." +msgstr "This license has expired." + +#: ../../include/functions_config.php:1729 +msgid "" +"Please check that the web server has write rights on the " +"{HOMEDIR}/attachment directory" +msgstr "" +"Please check that the webserver has writing permission over the " +"{HOMEDIR}/attachment directory" + +#: ../../include/functions_config.php:1742 +msgid "Remote configuration directory is not readble for the console" +msgstr "Remote configuration directory is unreadable for the console." + +#: ../../include/functions_config.php:1748 +#: ../../include/functions_config.php:1755 +msgid "Remote configuration directory is not writtable for the console" +msgstr "Remote configuration directory is not writtable by the console" + +#: ../../include/functions_config.php:1766 +msgid "" +"There are too much files in attachment directory. This is not fatal, but you " +"should consider cleaning up your attachment directory manually" +msgstr "" +"there are too many files in the attachment directory. This is not a fatal " +"issue, but you should consider cleaning your attachment directory manually." + +#: ../../include/functions_config.php:1766 +msgid "files" +msgstr "files" + +#: ../../include/functions_config.php:1767 +msgid "Too much files in your tempora/attachment directory" +msgstr "Too many files in your temporary/attachment directory" + +#: ../../include/functions_config.php:1784 +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" +msgstr "" +"Your database is not maintained correctly. It seems that more than 48hrs " +"have passed without proper maintenance. Please review Pandora FMS' documents " +"on how to perform this maintenance process (pandora_db.pl) and enable it as " +"soon as possible." + +#: ../../include/functions_config.php:1785 +msgid "Database maintance problem" +msgstr "Database maintenance issue." + +#: ../../include/functions_config.php:1791 +msgid "" +"Your defined font doesnt exist or is not defined. Please check font " +"parameters in your config" +msgstr "" +"Your defined font doesnt exist or is not defined. Please check font " +"parameters in your config" + +#: ../../include/functions_config.php:1792 +msgid "Default font doesnt exist" +msgstr "The default font doesn't exist." + +#: ../../include/functions_config.php:1797 +msgid "You need to restart server after altering this configuration setting." +msgstr "" +"You'll need to restart the server after modifying this configuration setting." + +#: ../../include/functions_config.php:1798 +msgid "" +"Event storm protection is activated. No events will be generated during this " +"mode." +msgstr "" +"Event storm protection is activated. No events will be generated during this " +"mode." + +#: ../../include/functions_config.php:1805 +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" +msgstr "" +"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" + +#: ../../include/functions_config.php:1806 +msgid "Developer mode is enabled" +msgstr "Developer mode enabled" + +#: ../../include/functions_config.php:1815 +msgid "Error first setup Open update" +msgstr "Error on first setup open update" + +#: ../../include/functions_config.php:1821 +msgid "" +"There is a new update available. Please go to Administration:Setup:Update Manager for more details." +msgstr "" +"There is a new update available. Please go to Administration:Setup:Update Manager for more details." + +#: ../../include/functions_config.php:1822 +msgid "New update of Pandora Console" +msgstr "New Pandora Console update" + +#: ../../include/functions_config.php:1836 +msgid "" +"To disable, change it on your PHP configuration file (php.ini) and put " +"safe_mode = Off (Dont forget restart apache process after changes)" +msgstr "" +"In order to disable it, please go to your PHP configuration file (php.ini) " +"and set the 'safe_mode' option to 'Off'. Please don't forget to restart the " +"apache process after the changes are complete." + +#: ../../include/functions_config.php:1837 +msgid "PHP safe mode is enabled. Some features may not properly work." +msgstr "PHP safe mode is enabled. Some features may not work properly." + +#: ../../include/functions_config.php:1842 +#, php-format +msgid "Recommended value is %s" +msgstr "The recommended value is %s" + +#: ../../include/functions_config.php:1842 +#: ../../include/functions_config.php:1848 +msgid "Unlimited" +msgstr "Unlimited" + +#: ../../include/functions_config.php:1842 +#: ../../include/functions_config.php:1848 +#: ../../include/functions_config.php:1856 +#: ../../include/functions_config.php:1871 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator (Dont forget restart apache process after changes)" +msgstr "" +"Please, change this in your PHP configuration file (php.ini) or contact your " +"administrator (remember to restart the Apache process after performing " +"changes)" + +#: ../../include/functions_config.php:1843 +#: ../../include/functions_config.php:1849 +#: ../../include/functions_config.php:1857 +#: ../../include/functions_config.php:1865 +#, php-format +msgid "Not recommended '%s' value in PHP configuration" +msgstr "Not recommended '%s' value in PHP configuration" + +#: ../../include/functions_config.php:1848 +#: ../../include/functions_config.php:1856 +#: ../../include/functions_config.php:1864 +#, php-format +msgid "Recommended value is: %s" +msgstr "The recommended value is: %s" + +#: ../../include/functions_config.php:1856 +#: ../../include/functions_config.php:1864 +#, php-format +msgid "%s or greater" +msgstr "%s or greater" + +#: ../../include/functions_config.php:1864 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator" +msgstr "" +"Please, change it in your PHP configuration file (php.ini) or contact the " +"administrator" + +#: ../../include/functions_config.php:1870 +msgid "" +"Variable disable_functions containts functions system() or exec(), in PHP " +"configuration file (php.ini)" +msgstr "" +"The variable disable_functions contains the system () or exec () functions " +"in the PHP configuration file (php.ini)" + +#: ../../include/functions_config.php:1871 +msgid "Problems with disable functions in PHP.INI" +msgstr "Problems with disable functions in PHP.INI" + +#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 +#: ../../include/functions_gis.php:36 +msgid "Hierarchy of agents" +msgstr "Agent hierarchy" + +#: ../../include/functions.php:215 +msgid "." +msgstr "." + +#: ../../include/functions.php:217 +msgid "," +msgstr "," + +#: ../../include/functions.php:439 ../../include/functions.php:573 +msgid "s" +msgstr "s" + +#: ../../include/functions.php:440 ../../include/functions.php:574 +msgid "d" +msgstr "d" + +#: ../../include/functions.php:441 ../../include/functions.php:575 +msgid "M" +msgstr "M" + +#: ../../include/functions.php:442 ../../include/functions.php:576 +msgid "Y" +msgstr "Y" + +#: ../../include/functions.php:443 ../../include/functions.php:577 +msgid "m" +msgstr "m" + +#: ../../include/functions.php:444 ../../include/functions.php:578 +msgid "h" +msgstr "h" + +#: ../../include/functions.php:445 ../../include/functions.php:579 +msgid "N" +msgstr "N" + +#: ../../include/functions.php:1033 +msgid "Monitor Unknown" +msgstr "Unknown Monitor" + +#: ../../include/functions.php:1040 +msgid "Agent created" +msgstr "Agent created" + +#: ../../include/functions.php:2015 +msgid "custom" +msgstr "custom" + +#: ../../include/functions.php:2020 ../../include/functions.php:2021 +#, php-format +msgid "%s minutes" +msgstr "%s minutes" + +#: ../../include/functions.php:2023 ../../include/functions.php:2024 +#, php-format +msgid "%s hours" +msgstr "%s hours" + +#: ../../include/functions.php:2029 ../../include/functions.php:2030 +#, php-format +msgid "%s months" +msgstr "%s months" + +#: ../../include/functions.php:2032 ../../include/functions.php:2033 +#, php-format +msgid "%s years" +msgstr "%s years" + +#: ../../include/functions.php:2036 +#: ../../godmode/alerts/configure_alert_template.php:915 +#: ../../godmode/alerts/alert_list.builder.php:212 +#: ../../godmode/modules/manage_network_components_form_network.php:82 +#: ../../godmode/modules/manage_network_components_form_plugin.php:29 +#: ../../godmode/modules/manage_network_components_form_wmi.php:58 +msgid "Empty" +msgstr "Empty" + +#: ../../include/functions.php:2036 +msgid "Default values will be used" +msgstr "Default values will be applied" + +#: ../../include/functions.php:2196 +msgid "The uploaded file was only partially uploaded" +msgstr "The file was only partially uploaded." + +#: ../../include/functions.php:2199 +msgid "No file was uploaded" +msgstr "No file was uploaded" + +#: ../../include/functions.php:2202 +msgid "Missing a temporary folder" +msgstr "Temporary folder missing." + +#: ../../include/functions.php:2205 +msgid "Failed to write file to disk" +msgstr "Failed to write file to disk." + +#: ../../include/functions.php:2208 +msgid "File upload stopped by extension" +msgstr "File upload stopped by extension." + +#: ../../include/functions.php:2212 +msgid "Unknown upload error" +msgstr "Unknown upload error." + +#: ../../include/functions.php:2297 +msgid "No data found to export" +msgstr "No data found to export" + +#: ../../include/functions.php:2315 +msgid "Source ID" +msgstr "Source ID" + +#: ../../include/functions.php:2582 +#: ../../godmode/alerts/alert_list.list.php:136 +#: ../../godmode/alerts/alert_list.list.php:784 +#: ../../godmode/extensions.php:277 ../../godmode/users/user_list.php:463 +msgid "Disable" +msgstr "Disable" + +#: ../../include/functions.php:2585 +msgid "15 seconds" +msgstr "15 seconds" + +#: ../../include/functions.php:2590 +msgid "15 minutes" +msgstr "15 minutes" #: ../../include/functions_networkmap.php:1638 #: ../../include/functions_networkmap.php:1724 @@ -23901,11791 +16614,7097 @@ msgstr "Create a new dynamic map" msgid "Create a new radial dynamic map" msgstr "Create a new radial dynamic map" -#: ../../include/functions_reporting.php:568 -#: ../../include/functions_reporting.php:5118 -#: ../../enterprise/include/functions_reporting.php:1690 -#: ../../enterprise/include/functions_reporting.php:2416 -#: ../../enterprise/include/functions_reporting.php:3197 -#: ../../enterprise/include/functions_reporting.php:4516 -#: ../../enterprise/include/functions_reporting.php:4522 -msgid "There are no SLAs defined" -msgstr "There are no SLAs defined" - -#: ../../include/functions_reporting.php:635 -#: ../../include/functions_reporting.php:5169 -#: ../../enterprise/include/functions_reporting.php:1745 -#: ../../enterprise/include/functions_reporting.php:2471 -#: ../../enterprise/include/functions_reporting.php:3252 -msgid "Inverse" -msgstr "Inverse" - -#: ../../include/functions_reporting.php:945 -#: ../../enterprise/dashboard/widgets/top_n.php:31 -msgid "Top N" -msgstr "Top N" - -#: ../../include/functions_reporting.php:964 -#: ../../operation/snmpconsole/snmp_statistics.php:127 -#: ../../operation/snmpconsole/snmp_statistics.php:185 -#: ../../enterprise/include/functions_reporting_csv.php:417 -#, php-format -msgid "Top %d" -msgstr "Top %d" - -#: ../../include/functions_reporting.php:1002 -#: ../../include/functions_reporting.php:1821 -#: ../../include/functions_reporting_html.php:2432 -#: ../../include/functions_reporting_html.php:2664 -#: ../../enterprise/dashboard/widgets/top_n.php:468 -#: ../../enterprise/include/functions_reporting_pdf.php:825 -#: ../../enterprise/include/functions_reporting_pdf.php:1258 -#: ../../enterprise/include/functions_reporting_pdf.php:2013 -msgid "There are no Agent/Modules defined" -msgstr "There are no Agent/Modules defined" - -#: ../../include/functions_reporting.php:1055 -#: ../../enterprise/dashboard/widgets/top_n.php:534 -msgid "Insuficient data" -msgstr "Insufficient data" - -#: ../../include/functions_reporting.php:1288 -msgid "Event Report Group" -msgstr "Event Report Group" - -#: ../../include/functions_reporting.php:1465 -msgid "Event Report Module" -msgstr "Event Report Module" - -#: ../../include/functions_reporting.php:1527 -#: ../../enterprise/include/functions_reporting_csv.php:292 -msgid "Inventory Changes" -msgstr "Inventory Changes" - -#: ../../include/functions_reporting.php:1569 -#: ../../enterprise/extensions/ipam/ipam_action.php:198 -msgid "No changes found." -msgstr "No changes found." - -#: ../../include/functions_reporting.php:1656 -msgid "Agent/Modules" -msgstr "Agent/Modules" - -#: ../../include/functions_reporting.php:1745 -msgid "Exception - Everything" -msgstr "Exception - Everything" - -#: ../../include/functions_reporting.php:1750 -#, php-format -msgid "Exception - Modules over or equal to %s" -msgstr "Exception - Modules larger than or equal to %s" - -#: ../../include/functions_reporting.php:1752 -#, php-format -msgid "Modules over or equal to %s" -msgstr "Modules larger than or equal to %s" - -#: ../../include/functions_reporting.php:1756 -#, php-format -msgid "Exception - Modules under or equal to %s" -msgstr "Exception - Modules lesser than or equal to %s" - -#: ../../include/functions_reporting.php:1758 -#, php-format -msgid "Modules under or equal to %s" -msgstr "Modules lesser than or equal to %s" - -#: ../../include/functions_reporting.php:1762 -#, php-format -msgid "Exception - Modules under %s" -msgstr "Exception - Modules lesser than %s" - -#: ../../include/functions_reporting.php:1764 -#, php-format -msgid "Modules under %s" -msgstr "Modules lesser than %s" - -#: ../../include/functions_reporting.php:1768 -#, php-format -msgid "Exception - Modules over %s" -msgstr "Exception - Modules larger than %s" - -#: ../../include/functions_reporting.php:1770 -#, php-format -msgid "Modules over %s" -msgstr "Modules larger than %s" - -#: ../../include/functions_reporting.php:1774 -#, php-format -msgid "Exception - Equal to %s" -msgstr "Exception - Equal to %s" - -#: ../../include/functions_reporting.php:1776 -#, php-format -msgid "Equal to %s" -msgstr "Equal to %s" - -#: ../../include/functions_reporting.php:1780 -#, php-format -msgid "Exception - Not equal to %s" -msgstr "Exception - Not equal to %s" - -#: ../../include/functions_reporting.php:1782 -#, php-format -msgid "Not equal to %s" -msgstr "Not equal to %s" - -#: ../../include/functions_reporting.php:1786 -msgid "Exception - Modules at normal status" -msgstr "Exception - Modules in normal status." - -#: ../../include/functions_reporting.php:1787 -msgid "Modules at normal status" -msgstr "Modules in normal status" - -#: ../../include/functions_reporting.php:1791 -msgid "Exception - Modules at critical or warning status" -msgstr "Exception - Modules in critical or warning status" - -#: ../../include/functions_reporting.php:1792 -msgid "Modules at critical or warning status" -msgstr "Modules in critical or warning status." - -#: ../../include/functions_reporting.php:1981 -msgid "There are no Modules under those conditions." -msgstr "There are no Modules under those conditions." - -#: ../../include/functions_reporting.php:1984 -#, php-format -msgid "There are no Modules over or equal to %s." -msgstr "There are no Modules larger than or equal to %s" - -#: ../../include/functions_reporting.php:1987 -#, php-format -msgid "There are no Modules less or equal to %s." -msgstr "There are no Modules lesser than or equal to %s" - -#: ../../include/functions_reporting.php:1990 -#, php-format -msgid "There are no Modules less %s." -msgstr "There are no Modules lesser than %s" - -#: ../../include/functions_reporting.php:1993 -#, php-format -msgid "There are no Modules over %s." -msgstr "There are no Modules larger than %s" - -#: ../../include/functions_reporting.php:1996 -#, php-format -msgid "There are no Modules equal to %s" -msgstr "There are no Modules equal to %s" - -#: ../../include/functions_reporting.php:1999 -#, php-format -msgid "There are no Modules not equal to %s" -msgstr "There are no Modules not equal to %s" - -#: ../../include/functions_reporting.php:2002 -msgid "There are no Modules normal status" -msgstr "There are no Modules in normal status" - -#: ../../include/functions_reporting.php:2005 -msgid "There are no Modules at critial or warning status" -msgstr "There are no modules in critical or warning status." - -#: ../../include/functions_reporting.php:2153 -#: ../../enterprise/include/functions_reporting_csv.php:443 -msgid "Group Report" -msgstr "Group Report" - -#: ../../include/functions_reporting.php:2207 -msgid "Event Report Agent" -msgstr "Event Report Agent" - -#: ../../include/functions_reporting.php:2409 -msgid "Database Serialized" -msgstr "Database Serialized" - -#: ../../include/functions_reporting.php:2605 -msgid "Network interfaces report" -msgstr "Network interface report" - -#: ../../include/functions_reporting.php:2624 -msgid "" -"The group has no agents or none of the agents has any network interface" -msgstr "" -"The group has no agents or none of the agents have any network interfaces." - -#: ../../include/functions_reporting.php:2673 -#: ../../include/functions_reporting.php:2696 -msgid "bytes/s" -msgstr "bytes/s" - -#: ../../include/functions_reporting.php:2748 -msgid "Alert Report Group" -msgstr "Alert Report Group" - -#: ../../include/functions_reporting.php:2894 -msgid "Alert Report Agent" -msgstr "Alert Report Agent" - -#: ../../include/functions_reporting.php:3011 -msgid "Alert Report Module" -msgstr "Alert Report Module" - -#: ../../include/functions_reporting.php:3144 -msgid "SQL Graph Vertical Bars" -msgstr "SQL vertical bar graph" - -#: ../../include/functions_reporting.php:3147 -msgid "SQL Graph Horizontal Bars" -msgstr "SQL horizontal bar graph" - -#: ../../include/functions_reporting.php:3150 -msgid "SQL Graph Pie" -msgstr "SQL Graph Pie" - -#: ../../include/functions_reporting.php:3197 -#: ../../enterprise/include/functions_reporting_csv.php:831 -#: ../../enterprise/include/functions_reporting_csv.php:847 -#: ../../enterprise/include/functions_reporting_csv.php:855 -msgid "Monitor Report" -msgstr "Monitor Report" - -#: ../../include/functions_reporting.php:3274 -msgid "Netflow Area" -msgstr "Netflow Area" - -#: ../../include/functions_reporting.php:3277 -msgid "Netflow Pie" -msgstr "Netflow Pie" - -#: ../../include/functions_reporting.php:3280 -msgid "Netflow Data" -msgstr "Netflow Data" - -#: ../../include/functions_reporting.php:3283 -msgid "Netflow Statistics" -msgstr "Netflow Statistics" - -#: ../../include/functions_reporting.php:3286 -msgid "Netflow Summary" -msgstr "Netflow Summary" - -#: ../../include/functions_reporting.php:3416 -msgid "Prediction Date" -msgstr "Prediction Date" - -#: ../../include/functions_reporting.php:3467 -#: ../../enterprise/include/functions_reporting_csv.php:333 -msgid "Projection Graph" -msgstr "Projection Graph" - -#: ../../include/functions_reporting.php:3708 -#: ../../enterprise/include/functions_reporting_csv.php:795 -#: ../../enterprise/include/functions_reporting_csv.php:811 -#: ../../enterprise/include/functions_reporting_csv.php:818 -msgid "AVG. Value" -msgstr "AVG. Value" - -#: ../../include/functions_reporting.php:3898 -#: ../../enterprise/godmode/reporting/mysql_builder.php:142 -#: ../../enterprise/include/functions_reporting_csv.php:653 -msgid "SQL" -msgstr "SQL" - -#: ../../include/functions_reporting.php:3969 -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." -msgstr "" -"Illegal query. Due to security reasons, there are some tokens or words you " -"cannot use: *, delete, drop, alter, modify, union, password, pass, insert or " -"update." - -#: ../../include/functions_reporting.php:4960 -msgid "No Address" -msgstr "No Address" - -#: ../../include/functions_reporting.php:5711 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:264 -msgid "Rate" -msgstr "Rate" - -#: ../../include/functions_reporting.php:6356 -msgid "Maximum of events shown" -msgstr "Maximum number of displayed events" - -#: ../../include/functions_reporting.php:6996 -#: ../../include/functions_reporting.php:7033 -msgid "Server health" -msgstr "Server health" - -#: ../../include/functions_reporting.php:6996 -#, php-format -msgid "%d Downed servers" -msgstr "%d Downed servers" - -#: ../../include/functions_reporting.php:7004 -#: ../../include/functions_reporting.php:7036 -msgid "Monitor health" -msgstr "Monitor health" - -#: ../../include/functions_reporting.php:7004 -#, php-format -msgid "%d Not Normal monitors" -msgstr "%d Abnormal monitors" - -#: ../../include/functions_reporting.php:7006 -#: ../../include/functions_reporting.php:7037 -msgid "of monitors up" -msgstr "of monitors up" - -#: ../../include/functions_reporting.php:7012 -#: ../../include/functions_reporting.php:7039 -msgid "Module sanity" -msgstr "Module sanity" - -#: ../../include/functions_reporting.php:7012 -#, php-format -msgid "%d Not inited monitors" -msgstr "%d Not initiated monitors" - -#: ../../include/functions_reporting.php:7014 -#: ../../include/functions_reporting.php:7040 -msgid "of total modules inited" -msgstr "of total modules initiated" - -#: ../../include/functions_reporting.php:7020 -#: ../../include/functions_reporting.php:7042 -#: ../../include/functions_reporting_html.php:2762 -msgid "Alert level" -msgstr "Alert level" - -#: ../../include/functions_reporting.php:7020 -#: ../../include/functions_reporting.php:8040 -#: ../../include/functions_reporting.php:8049 -#, php-format -msgid "%d Fired alerts" -msgstr "%d Triggered alerts" - -#: ../../include/functions_reporting.php:7022 -#: ../../include/functions_reporting.php:7043 -msgid "of defined alerts not fired" -msgstr "Of defined alerts not triggered" - -#: ../../include/functions_reporting.php:7080 -#: ../../enterprise/include/functions_reporting_csv.php:464 -msgid "Defined alerts" -msgstr "Triggered alerts" - -#: ../../include/functions_reporting.php:7102 -msgid "Defined and fired alerts" -msgstr "Defined and triggered alerts" - -#: ../../include/functions_reporting.php:7157 -#: ../../operation/events/sound_events.php:84 -msgid "Monitor critical" -msgstr "Monitor in critical status" - -#: ../../include/functions_reporting.php:7161 -#: ../../operation/events/sound_events.php:86 -msgid "Monitor warning" -msgstr "Monitor in warning status" - -#: ../../include/functions_reporting.php:7168 -msgid "Monitor normal" -msgstr "Monitor in normal status" - -#: ../../include/functions_reporting.php:7172 -#: ../../operation/events/sound_events.php:85 -msgid "Monitor unknown" -msgstr "Monitor in unknown status" - -#: ../../include/functions_reporting.php:7179 -msgid "Monitor not init" -msgstr "Monitor not initialised" - -#: ../../include/functions_reporting.php:7203 -#: ../../include/functions_reporting.php:7214 -msgid "Monitors by status" -msgstr "Monitors by status" - -#: ../../include/functions_reporting.php:7261 -#: ../../include/functions_reporting_html.php:3471 -#: ../../enterprise/dashboard/widgets/tactical.php:32 -msgid "Monitor checks" -msgstr "Monitor checks" - -#: ../../include/functions_reporting.php:7279 -#: ../../include/functions_reporting_html.php:3476 -msgid "Total agents and monitors" -msgstr "Total # of agents and monitors" - -#: ../../include/functions_reporting.php:7302 -msgid "Defined users" -msgstr "Defined users" - -#: ../../include/functions_reporting.php:7940 -msgid "Agent without data" -msgstr "Dataless agent" - -#: ../../include/functions_reporting.php:8027 -#: ../../include/functions_reporting.php:8035 -#, php-format -msgid "%d Total modules" -msgstr "%d Total modules" - -#: ../../include/functions_reporting.php:8028 -#, php-format -msgid "%d Modules in normal status" -msgstr "%d Modules in normal status" - -#: ../../include/functions_reporting.php:8029 -#, php-format -msgid "%d Modules in critical status" -msgstr "%d Modules in critical status" - -#: ../../include/functions_reporting.php:8030 -#, php-format -msgid "%d Modules in warning status" -msgstr "%d Modules in warning status" - -#: ../../include/functions_reporting.php:8031 -#, php-format -msgid "%d Modules in unknown status" -msgstr "%d Modules in unknown status" - -#: ../../include/functions_reporting.php:8032 -#, php-format -msgid "%d Modules in not init status" -msgstr "" - -#: ../../include/functions_reporting.php:8036 -#, php-format -msgid "%d Normal modules" -msgstr "%d Normal modules" - -#: ../../include/functions_reporting.php:8037 -#, php-format -msgid "%d Critical modules" -msgstr "%d Critical modules" - -#: ../../include/functions_reporting.php:8038 -#, php-format -msgid "%d Warning modules" -msgstr "%d Warning modules" - -#: ../../include/functions_reporting.php:8039 -#, php-format -msgid "%d Unknown modules" -msgstr "%d Modules in Unknown status" - -#: ../../include/functions_reporting.php:8043 -#, php-format -msgid "%d Total agents" -msgstr "%d Total agents" - -#: ../../include/functions_reporting.php:8044 -#, php-format -msgid "%d Normal agents" -msgstr "%d Agents in Normal status" - -#: ../../include/functions_reporting.php:8045 -#, php-format -msgid "%d Critical agents" -msgstr "%d Agents in critical status" - -#: ../../include/functions_reporting.php:8046 -#, php-format -msgid "%d Warning agents" -msgstr "%d Agents in warning status." - -#: ../../include/functions_reporting.php:8047 -#, php-format -msgid "%d Unknown agents" -msgstr "%d Unknown agents" - -#: ../../include/functions_reporting.php:8048 -#, php-format -msgid "%d not init agents" -msgstr "%d not init agents" - -#: ../../include/functions_reporting.php:9750 -msgid "Total running modules" -msgstr "Total running modules" - -#: ../../include/functions_reporting.php:9753 -#: ../../include/functions_reporting.php:9769 -#: ../../include/functions_reporting.php:9785 -#: ../../include/functions_reporting.php:9808 -#: ../../include/functions_reporting.php:9827 -#: ../../include/functions_reporting.php:9839 -#: ../../include/functions_reporting.php:9851 -#: ../../include/functions_reporting.php:9867 -msgid "Ratio" -msgstr "Ratio" - -#: ../../include/functions_reporting.php:9753 -#: ../../include/functions_reporting.php:9769 -#: ../../include/functions_reporting.php:9785 -#: ../../include/functions_reporting.php:9808 -#: ../../include/functions_reporting.php:9827 -#: ../../include/functions_reporting.php:9839 -#: ../../include/functions_reporting.php:9851 -#: ../../include/functions_reporting.php:9867 -msgid "Modules by second" -msgstr "Modules by second" - -#: ../../include/functions_reporting.php:9765 -msgid "Local modules" -msgstr "Local modules" - -#: ../../include/functions_reporting.php:9776 -msgid "Remote modules" -msgstr "Remote modules" - -#: ../../include/functions_reporting.php:9800 -msgid "Network modules" -msgstr "Network modules" - -#: ../../include/functions_reporting.php:9823 -msgid "Plugin modules" -msgstr "Plugin modules" - -#: ../../include/functions_reporting.php:9835 -msgid "Prediction modules" -msgstr "Prediction modules" - -#: ../../include/functions_reporting.php:9847 -msgid "WMI modules" -msgstr "WMI modules" - -#: ../../include/functions_reporting.php:9859 -msgid "Web modules" -msgstr "Web modules" - -#: ../../include/functions_reporting.php:9921 -#: ../../enterprise/dashboard/widgets/tactical.php:39 -msgid "Server performance" -msgstr "Server performance" - -#: ../../include/functions_reporting.php:10003 -#: ../../enterprise/include/functions_reporting.php:4593 -msgid "Weekly:" -msgstr "Weekly:" - -#: ../../include/functions_reporting.php:10037 -#: ../../enterprise/include/functions_reporting.php:4627 -msgid "Monthly:" -msgstr "Monthly:" - -#: ../../include/functions_reporting.php:10038 -#: ../../enterprise/include/functions_reporting.php:4628 -msgid "From day" -msgstr "From (date):" - -#: ../../include/functions_reporting.php:10039 -#: ../../enterprise/include/functions_reporting.php:4629 -msgid "To day" -msgstr "To day" - -#: ../../include/functions_pandora_networkmap.php:103 -#: ../../mobile/operation/networkmap.php:110 -#: ../../mobile/operation/networkmap.php:129 -#: ../../mobile/operation/networkmap.php:146 -#: ../../operation/agentes/networkmap.dinamic.php:130 -#: ../../enterprise/include/class/NetworkmapEnterprise.class.php:227 -#: ../../enterprise/operation/policies/networkmap.policies.php:64 -msgid "Pandora FMS" -msgstr "Pandora FMS" - -#: ../../include/functions_pandora_networkmap.php:754 -#, php-format -msgid "Edit node %s" -msgstr "Edit node %s" - -#: ../../include/functions_pandora_networkmap.php:755 -msgid "Holding Area" -msgstr "Holding Area" - -#: ../../include/functions_pandora_networkmap.php:756 -msgid "Show details and options" -msgstr "Show details and options" - -#: ../../include/functions_pandora_networkmap.php:757 -msgid "Add a interface link" -msgstr "Add an interface link" - -#: ../../include/functions_pandora_networkmap.php:758 -msgid "Set parent interface" -msgstr "Set parent interface" - -#: ../../include/functions_pandora_networkmap.php:759 -msgid "Set as children" -msgstr "Define as children element" - -#: ../../include/functions_pandora_networkmap.php:760 -msgid "Set parent" -msgstr "Define as parent element" - -#: ../../include/functions_pandora_networkmap.php:761 -#: ../../include/functions_pandora_networkmap.php:768 -msgid "Abort the action of set relationship" -msgstr "Abort the action of set relationship" - -#: ../../include/functions_pandora_networkmap.php:763 -#: ../../include/functions_pandora_networkmap.php:1546 -msgid "Add node" -msgstr "Add node" - -#: ../../include/functions_pandora_networkmap.php:764 -msgid "Set center" -msgstr "Set centre" - -#: ../../include/functions_pandora_networkmap.php:766 -msgid "Refresh Holding area" -msgstr "Refresh Holding Area" - -#: ../../include/functions_pandora_networkmap.php:767 -msgid "Abort the action of set interface relationship" -msgstr "Abort 'set interface relationship'" - -#: ../../include/functions_pandora_networkmap.php:1276 -msgid "Open Minimap" -msgstr "Open Minimap" - -#: ../../include/functions_pandora_networkmap.php:1283 -msgid "Hide Labels" -msgstr "Hide Labels" - -#: ../../include/functions_pandora_networkmap.php:1374 -msgid "Edit node" -msgstr "Edit node" - -#: ../../include/functions_pandora_networkmap.php:1385 -msgid "Adresses" -msgstr "Addresses" - -#: ../../include/functions_pandora_networkmap.php:1387 -msgid "OS type" -msgstr "OS type" - -#: ../../include/functions_pandora_networkmap.php:1392 -#: ../../include/functions_pandora_networkmap.php:1393 -msgid "Node Details" -msgstr "Node Details" - -#: ../../include/functions_pandora_networkmap.php:1402 -msgid "Ip" -msgstr "Ip" - -#: ../../include/functions_pandora_networkmap.php:1403 -msgid "MAC" -msgstr "MAC" - -#: ../../include/functions_pandora_networkmap.php:1412 -#: ../../include/functions_pandora_networkmap.php:1413 -msgid "Interface Information (SNMP)" -msgstr "Interface Information (SNMP)" - -#: ../../include/functions_pandora_networkmap.php:1420 -msgid "Shape" -msgstr "Shape" - -#: ../../include/functions_pandora_networkmap.php:1422 -msgid "Circle" -msgstr "Circle" - -#: ../../include/functions_pandora_networkmap.php:1423 -msgid "Square" -msgstr "Square" - -#: ../../include/functions_pandora_networkmap.php:1424 -msgid "Rhombus" -msgstr "Rhomb" - -#: ../../include/functions_pandora_networkmap.php:1434 -msgid "name node" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1436 -msgid "Update node" -msgstr "" - -#: ../../include/functions_pandora_networkmap.php:1441 -#: ../../include/functions_pandora_networkmap.php:1602 -msgid "name fictional node" -msgstr "Name fictional node" - -#: ../../include/functions_pandora_networkmap.php:1442 -#: ../../include/functions_pandora_networkmap.php:1603 -msgid "Networkmap to link" -msgstr "Networkmap to link" - -#: ../../include/functions_pandora_networkmap.php:1448 -msgid "Update fictional node" -msgstr "Update fictional node" - -#: ../../include/functions_pandora_networkmap.php:1451 -#: ../../include/functions_pandora_networkmap.php:1452 -msgid "Node options" -msgstr "Node Options" - -#: ../../include/functions_pandora_networkmap.php:1459 -#: ../../include/functions_pandora_networkmap.php:1514 -msgid "Node source" -msgstr "Node Source" - -#: ../../include/functions_pandora_networkmap.php:1460 -#: ../../include/functions_pandora_networkmap.php:1515 -msgid "Interface source" -msgstr "Interface Source" - -#: ../../include/functions_pandora_networkmap.php:1461 -#: ../../include/functions_pandora_networkmap.php:1516 -msgid "Interface Target" -msgstr "Interface Target" - -#: ../../include/functions_pandora_networkmap.php:1463 -#: ../../include/functions_pandora_networkmap.php:1517 -msgid "Node target" -msgstr "Node Target" - -#: ../../include/functions_pandora_networkmap.php:1464 -msgid "E." -msgstr "E." - -#: ../../include/functions_pandora_networkmap.php:1495 -msgid "There are not relations" -msgstr "There are no relations." - -#: ../../include/functions_pandora_networkmap.php:1502 -#: ../../include/functions_pandora_networkmap.php:1503 -msgid "Relations" -msgstr "Relations" - -#: ../../include/functions_pandora_networkmap.php:1538 -msgid "Add interface link" -msgstr "Add interface link" - -#: ../../include/functions_pandora_networkmap.php:1565 -#: ../../include/functions_pandora_networkmap.php:1569 -#: ../../include/functions_pandora_networkmap.php:1570 -#: ../../include/functions_pandora_networkmap.php:1590 -#: ../../include/functions_pandora_networkmap.php:1595 -#: ../../include/functions_pandora_networkmap.php:1613 -msgid "Add agent node" -msgstr "Add Agent Node" - -#: ../../include/functions_pandora_networkmap.php:1594 -msgid "Add agent node (filter by group)" -msgstr "Add Agent Node (filter by group)" - -#: ../../include/functions_pandora_networkmap.php:1609 -msgid "Add fictional node" -msgstr "Add Fictional Node" - -#: ../../include/functions_pandora_networkmap.php:1612 -msgid "Add fictional point" -msgstr "Add fictional point" - -#: ../../include/functions_reporting_html.php:70 -#: ../../include/functions_reporting_html.php:3383 -#: ../../include/functions_treeview.php:298 -#: ../../enterprise/include/functions_reporting_pdf.php:2260 -#: ../../enterprise/include/functions_reporting_pdf.php:2298 -msgid "Last data" -msgstr "Last data" - -#: ../../include/functions_reporting_html.php:93 -msgid "Label: " -msgstr "Label: " - -#: ../../include/functions_reporting_html.php:111 -#: ../../enterprise/include/functions_netflow_pdf.php:157 -#: ../../enterprise/include/functions_reporting_csv.php:1505 -#: ../../enterprise/include/functions_reporting_csv.php:1509 -#: ../../enterprise/include/functions_reporting_pdf.php:2163 -msgid "Generated" -msgstr "Generated" - -#: ../../include/functions_reporting_html.php:114 -#: ../../enterprise/include/functions_reporting_pdf.php:2166 -msgid "Report date" -msgstr "Report date" - -#: ../../include/functions_reporting_html.php:119 -#: ../../operation/reporting/reporting_viewer.php:197 -#: ../../enterprise/include/functions_reporting_pdf.php:2171 -msgid "Items period before" -msgstr "Items period before" - -#: ../../include/functions_reporting_html.php:398 -#: ../../enterprise/include/functions_reporting.php:1263 -#: ../../enterprise/include/functions_reporting.php:2055 -#: ../../enterprise/include/functions_reporting.php:2832 -#: ../../enterprise/include/functions_reporting_pdf.php:1266 -#: ../../enterprise/include/functions_reporting_pdf.php:1609 -msgid "Max/Min Values" -msgstr "Max/Min Values" - -#: ../../include/functions_reporting_html.php:399 -#: ../../enterprise/include/functions_reporting.php:1264 -#: ../../enterprise/include/functions_reporting.php:2056 -#: ../../enterprise/include/functions_reporting.php:2833 -#: ../../enterprise/include/functions_reporting.php:4426 -#: ../../enterprise/include/functions_reporting.php:4727 -#: ../../enterprise/include/functions_reporting_csv.php:931 -#: ../../enterprise/include/functions_reporting_csv.php:978 -#: ../../enterprise/include/functions_reporting_csv.php:1050 -#: ../../enterprise/include/functions_reporting_csv.php:1166 -#: ../../enterprise/include/functions_reporting_csv.php:1378 -#: ../../enterprise/include/functions_reporting_pdf.php:1267 -#: ../../enterprise/include/functions_reporting_pdf.php:1610 -#: ../../enterprise/include/functions_reporting_pdf.php:2040 -msgid "SLA Limit" -msgstr "SLA Limit" - -#: ../../include/functions_reporting_html.php:400 -#: ../../enterprise/include/functions_reporting.php:1264 -#: ../../enterprise/include/functions_reporting.php:1396 -#: ../../enterprise/include/functions_reporting.php:2056 -#: ../../enterprise/include/functions_reporting.php:2833 -#: ../../enterprise/include/functions_reporting.php:4427 -#: ../../enterprise/include/functions_reporting.php:4728 -#: ../../enterprise/include/functions_reporting_pdf.php:1268 -#: ../../enterprise/include/functions_reporting_pdf.php:1610 -#: ../../enterprise/include/functions_reporting_pdf.php:1759 -#: ../../enterprise/include/functions_reporting_pdf.php:2041 -msgid "SLA Compliance" -msgstr "SLA Compliance" - -#: ../../include/functions_reporting_html.php:425 -#: ../../enterprise/include/functions_reporting_pdf.php:1275 -msgid "Global Time" -msgstr "Global Time" - -#: ../../include/functions_reporting_html.php:426 -#: ../../enterprise/include/functions_reporting_csv.php:1309 -#: ../../enterprise/include/functions_reporting_pdf.php:1276 -msgid "Time Total" -msgstr "Time Total" - -#: ../../include/functions_reporting_html.php:427 -#: ../../enterprise/include/functions_reporting_pdf.php:1277 -#: ../../enterprise/include/functions_reporting_pdf.php:1850 -msgid "Time Failed" -msgstr "Time Failed" - -#: ../../include/functions_reporting_html.php:428 -#: ../../include/functions_reporting_html.php:2262 -#: ../../enterprise/include/functions_reporting_csv.php:1310 -#: ../../enterprise/include/functions_reporting_pdf.php:1278 -#: ../../enterprise/include/functions_reporting_pdf.php:1851 -msgid "Time OK" -msgstr "Time OK" - -#: ../../include/functions_reporting_html.php:429 -#: ../../enterprise/include/functions_reporting_csv.php:1312 -#: ../../enterprise/include/functions_reporting_pdf.php:1279 -#: ../../enterprise/include/functions_reporting_pdf.php:1852 -msgid "Time Unknown" -msgstr "Time Unknown" - -#: ../../include/functions_reporting_html.php:430 -#: ../../enterprise/include/functions_reporting_csv.php:1313 -#: ../../enterprise/include/functions_reporting_pdf.php:1280 -msgid "Time Not Init" -msgstr "Time Not Init" - -#: ../../include/functions_reporting_html.php:431 -#: ../../enterprise/include/functions_reporting_pdf.php:1281 -msgid "Downtime" -msgstr "Downtime" - -#: ../../include/functions_reporting_html.php:456 -#: ../../enterprise/include/functions_reporting_pdf.php:1287 -msgid "Checks Time" -msgstr "Checks Time" - -#: ../../include/functions_reporting_html.php:457 -#: ../../enterprise/include/functions_reporting_csv.php:1315 -#: ../../enterprise/include/functions_reporting_pdf.php:1288 -msgid "Checks Total" -msgstr "Checks Total" - -#: ../../include/functions_reporting_html.php:458 -#: ../../enterprise/include/functions_reporting_pdf.php:1289 -#: ../../enterprise/include/functions_reporting_pdf.php:1870 -msgid "Checks Failed" -msgstr "Checks Failed" - -#: ../../include/functions_reporting_html.php:459 -#: ../../include/functions_reporting_html.php:2305 -#: ../../enterprise/include/functions_reporting_csv.php:1316 -#: ../../enterprise/include/functions_reporting_pdf.php:1290 -#: ../../enterprise/include/functions_reporting_pdf.php:1871 -msgid "Checks OK" -msgstr "Checks OK" - -#: ../../include/functions_reporting_html.php:460 -#: ../../enterprise/include/functions_reporting_csv.php:1318 -#: ../../enterprise/include/functions_reporting_pdf.php:1291 -#: ../../enterprise/include/functions_reporting_pdf.php:1872 -msgid "Checks Unknown" -msgstr "Checks Unknown" - -#: ../../include/functions_reporting_html.php:685 -#: ../../include/functions_reporting_html.php:2541 -#: ../../enterprise/include/functions_reporting.php:2269 -#: ../../enterprise/include/functions_reporting.php:3038 -#: ../../enterprise/include/functions_reporting_pdf.php:1506 -#: ../../enterprise/include/functions_services.php:1271 -msgid "Unknow" -msgstr "Unknown" - -#: ../../include/functions_reporting_html.php:690 -#: ../../include/functions_reporting_html.php:2546 -#: ../../operation/agentes/group_view.php:170 -#: ../../enterprise/include/functions_reporting.php:1294 -#: ../../enterprise/include/functions_reporting.php:2086 -#: ../../enterprise/include/functions_reporting.php:2274 -#: ../../enterprise/include/functions_reporting.php:2863 -#: ../../enterprise/include/functions_reporting.php:3043 -#: ../../enterprise/include/functions_reporting.php:3764 -#: ../../enterprise/include/functions_reporting_pdf.php:1508 -#: ../../enterprise/include/functions_reporting_pdf.php:1647 -msgid "Not Init" -msgstr "Uninitialised" - -#: ../../include/functions_reporting_html.php:695 -#: ../../include/functions_reporting_html.php:2551 -#: ../../enterprise/include/functions_reporting.php:2279 -#: ../../enterprise/include/functions_reporting.php:3048 -#: ../../enterprise/include/functions_reporting_pdf.php:1510 -msgid "Downtimes" -msgstr "Downtimes" - -#: ../../include/functions_reporting_html.php:700 -#: ../../include/functions_reporting_html.php:2556 -#: ../../enterprise/include/functions_reporting.php:2284 -#: ../../enterprise/include/functions_reporting.php:3053 -#: ../../enterprise/include/functions_reporting_pdf.php:1512 -msgid "Ignore time" -msgstr "Ignore time" - -#: ../../include/functions_reporting_html.php:772 -#: ../../include/functions_reporting_html.php:1529 -#: ../../include/functions_reporting_html.php:2455 -#: ../../include/functions_reporting_html.php:2683 -#: ../../enterprise/include/functions_reporting_pdf.php:804 -#: ../../enterprise/include/functions_reporting_pdf.php:896 -#: ../../enterprise/include/functions_reporting_pdf.php:952 -msgid "Min Value" -msgstr "Min Value" - -#: ../../include/functions_reporting_html.php:773 -#: ../../include/functions_reporting_html.php:1530 -#: ../../include/functions_reporting_html.php:2456 -#: ../../include/functions_reporting_html.php:2684 -#: ../../enterprise/include/functions_reporting_pdf.php:805 -#: ../../enterprise/include/functions_reporting_pdf.php:897 -#: ../../enterprise/include/functions_reporting_pdf.php:953 -#: ../../enterprise/include/functions_reporting_pdf.php:1993 -msgid "Average Value" -msgstr "Average Value" - -#: ../../include/functions_reporting_html.php:774 -#: ../../include/functions_reporting_html.php:1531 -#: ../../include/functions_reporting_html.php:2453 -#: ../../include/functions_reporting_html.php:2686 -#: ../../enterprise/include/functions_reporting_pdf.php:806 -#: ../../enterprise/include/functions_reporting_pdf.php:898 -#: ../../enterprise/include/functions_reporting_pdf.php:954 -#: ../../enterprise/include/functions_reporting_pdf.php:1990 -msgid "Max Value" -msgstr "Max Value" - -#: ../../include/functions_reporting_html.php:807 -#: ../../include/functions_reporting_html.php:1025 -#: ../../include/functions_reporting_html.php:1644 -#: ../../operation/snmpconsole/snmp_view.php:610 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:143 -msgid "Count" -msgstr "Count" - -#: ../../include/functions_reporting_html.php:812 -#: ../../include/functions_reporting_html.php:821 -#: ../../include/functions_reporting_html.php:1649 -msgid "Val. by" -msgstr "Value" - -#: ../../include/functions_reporting_html.php:915 -#: ../../include/functions_reporting_html.php:1111 -msgid "Events by agent" -msgstr "Events per agent" - -#: ../../include/functions_reporting_html.php:934 -#: ../../include/functions_reporting_html.php:1130 -msgid "Events by user validator" -msgstr "Events according to validating user" - -#: ../../include/functions_reporting_html.php:953 -#: ../../include/functions_reporting_html.php:1149 -msgid "Events by Severity" -msgstr "Events according to severity" - -#: ../../include/functions_reporting_html.php:972 -#: ../../include/functions_reporting_html.php:1168 -msgid "Events validated vs unvalidated" -msgstr "Validated vs. unvalidated events" - -#: ../../include/functions_reporting_html.php:1228 -#: ../../enterprise/include/functions_inventory.php:511 -#: ../../enterprise/include/functions_inventory.php:574 -#: ../../enterprise/include/functions_reporting_pdf.php:495 -msgid "Added" -msgstr "Added" - -#: ../../include/functions_reporting_html.php:1379 -#: ../../enterprise/dashboard/widgets/agent_module.php:309 -#: ../../enterprise/include/functions_reporting_pdf.php:618 -#, php-format -msgid "%s in %s : NORMAL" -msgstr "%s in %s : NORMAL" - -#: ../../include/functions_reporting_html.php:1388 -#: ../../enterprise/dashboard/widgets/agent_module.php:317 -#: ../../enterprise/include/functions_reporting_pdf.php:627 -#, php-format -msgid "%s in %s : CRITICAL" -msgstr "%s in %s : CRITICAL" - -#: ../../include/functions_reporting_html.php:1397 -#: ../../enterprise/dashboard/widgets/agent_module.php:325 -#: ../../enterprise/include/functions_reporting_pdf.php:636 -#, php-format -msgid "%s in %s : WARNING" -msgstr "%s in %s : WARNING" - -#: ../../include/functions_reporting_html.php:1406 -#: ../../enterprise/dashboard/widgets/agent_module.php:333 -#: ../../enterprise/include/functions_reporting_pdf.php:645 -#, php-format -msgid "%s in %s : UNKNOWN" -msgstr "%s in %s : UNKNOWN" - -#: ../../include/functions_reporting_html.php:1417 -#: ../../enterprise/dashboard/widgets/agent_module.php:350 -#: ../../enterprise/include/functions_reporting_pdf.php:663 -#, php-format -msgid "%s in %s : ALERTS FIRED" -msgstr "%s in %s: ALERTS TRIGGERED" - -#: ../../include/functions_reporting_html.php:1426 -#: ../../enterprise/dashboard/widgets/agent_module.php:341 -#: ../../enterprise/include/functions_reporting_pdf.php:654 -#, php-format -msgid "%s in %s : Not initialize" -msgstr "%s in %s: not initialized" - -#: ../../include/functions_reporting_html.php:1585 -#: ../../include/functions_reporting_html.php:3272 -msgid "Monitors" -msgstr "Monitors" - -#: ../../include/functions_reporting_html.php:1604 -#: ../../include/functions_reporting_html.php:1959 -#: ../../include/functions_reporting_html.php:1960 -#: ../../mobile/operation/alerts.php:38 -#: ../../operation/agentes/alerts_status.functions.php:74 -#: ../../operation/snmpconsole/snmp_view.php:162 -#: ../../operation/snmpconsole/snmp_view.php:923 -#: ../../enterprise/include/functions_reporting_pdf.php:734 -msgid "Fired" -msgstr "Triggered" - -#: ../../include/functions_reporting_html.php:1617 -#: ../../enterprise/include/functions_reporting_pdf.php:749 -#, php-format -msgid "Last %s" -msgstr "Last %s" - -#: ../../include/functions_reporting_html.php:1737 -msgid "Events validated by user" -msgstr "Events validated by user" - -#: ../../include/functions_reporting_html.php:1756 -#: ../../include/functions_reporting_html.php:3561 -msgid "Events by severity" -msgstr "Events by severity" - -#: ../../include/functions_reporting_html.php:1775 -#: ../../operation/events/event_statistics.php:61 -msgid "Amount events validated" -msgstr "Amount of events validated" - -#: ../../include/functions_reporting_html.php:1905 -#, php-format -msgid "Interface '%s' throughput graph" -msgstr "Interface '%s' throughput graph" - -#: ../../include/functions_reporting_html.php:1908 -msgid "Mac" -msgstr "MAC address" - -#: ../../include/functions_reporting_html.php:1909 -msgid "Actual status" -msgstr "Current status" - -#: ../../include/functions_reporting_html.php:2105 -msgid "Empty modules" -msgstr "Empty modules" - -#: ../../include/functions_reporting_html.php:2112 -msgid "Warning
    Critical" -msgstr "Warning
    Critical" - -#: ../../include/functions_reporting_html.php:2260 -msgid "Total time" -msgstr "Total time" - -#: ../../include/functions_reporting_html.php:2261 -msgid "Time failed" -msgstr "Time failed" - -#: ../../include/functions_reporting_html.php:2263 -msgid "Time Uknown" -msgstr "Time Uknown" - -#: ../../include/functions_reporting_html.php:2264 -msgid "Time Not Init Module" -msgstr "Time Not Init Module" - -#: ../../include/functions_reporting_html.php:2265 -#: ../../enterprise/include/functions_reporting_csv.php:1314 -msgid "Time Downtime" -msgstr "Time Downtime" - -#: ../../include/functions_reporting_html.php:2266 -#: ../../enterprise/include/functions_reporting_pdf.php:1855 -msgid "% Ok" -msgstr "% Ok" - -#: ../../include/functions_reporting_html.php:2303 -msgid "Total checks" -msgstr "Total checks" - -#: ../../include/functions_reporting_html.php:2304 -msgid "Checks failed" -msgstr "Checks failed" - -#: ../../include/functions_reporting_html.php:2306 -msgid "Checks Uknown" -msgstr "Checks Unknown" - -#: ../../include/functions_reporting_html.php:2452 -#: ../../enterprise/include/functions_reporting_pdf.php:1989 -msgid "Agent max value" -msgstr "Agent max value" - -#: ../../include/functions_reporting_html.php:2454 -msgid "Agent min value" -msgstr "Agent min value" - -#: ../../include/functions_reporting_html.php:2695 -#: ../../include/functions_reporting_html.php:2789 -#: ../../enterprise/dashboard/widgets/tactical.php:44 -msgid "Summary" -msgstr "Summary" - -#: ../../include/functions_reporting_html.php:2761 -#: ../../operation/tree.php:163 -msgid "Module status" -msgstr "Module status" - -#: ../../include/functions_reporting_html.php:2881 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1224 -msgid "Alert description" -msgstr "Alert description" - -#: ../../include/functions_reporting_html.php:2931 -msgid "Alerts not fired" -msgstr "Non-triggered alerts" - -#: ../../include/functions_reporting_html.php:2940 -msgid "Total alerts monitored" -msgstr "Total # of alerts monitored" - -#: ../../include/functions_reporting_html.php:2991 -msgid "Total monitors" -msgstr "Total # of monitors" - -#: ../../include/functions_reporting_html.php:2992 -msgid "Monitors down on period" -msgstr "Monitors down on period" - -#: ../../include/functions_reporting_html.php:3008 -msgid "Monitors OK" -msgstr "Monitors in OK status" - -#: ../../include/functions_reporting_html.php:3009 -msgid "Monitors BAD" -msgstr "Monitors BAD" - -#: ../../include/functions_reporting_html.php:3035 -#: ../../include/functions_reporting_html.php:3175 -#: ../../mobile/include/functions_web.php:23 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 -msgid "Monitor" -msgstr "Monitor" - -#: ../../include/functions_reporting_html.php:3083 -#, php-format -msgid "Agents in group: %s" -msgstr "Agents in group : %s" - -#: ../../include/functions_reporting_html.php:3176 -msgid "Last failure" -msgstr "Latest failure" - -#: ../../include/functions_reporting_html.php:3240 -msgid "N/A(*)" -msgstr "N/A(*)" - -#: ../../include/functions_reporting_html.php:3414 -#: ../../mobile/operation/groups.php:133 -msgid "Agents critical" -msgstr "Agents in critical status" - -#: ../../include/functions_reporting_html.php:3417 -msgid "Agents warning" -msgstr "Agents in warning status" - -#: ../../include/functions_reporting_html.php:3423 -msgid "Agents ok" -msgstr "Agents in OK status" - -#: ../../include/functions_reporting_html.php:3432 -#: ../../mobile/operation/groups.php:129 -msgid "Agents not init" -msgstr "Uninitialized agents" - -#: ../../include/functions_reporting_html.php:3443 -#: ../../include/functions_reporting_html.php:3452 -msgid "Agents by status" -msgstr "Agents by status" - -#: ../../include/functions_reporting_html.php:3489 -#: ../../operation/agentes/pandora_networkmap.php:403 -msgid "Nodes" -msgstr "Nodes" - -#: ../../include/functions_reporting_html.php:3496 -#: ../../include/functions_reporting_html.php:3505 -msgid "Node overview" -msgstr "Node overview" - -#: ../../include/functions_reporting_html.php:3523 -#: ../../include/functions_reporting_html.php:3540 -msgid "Critical events" -msgstr "Critical events" - -#: ../../include/functions_reporting_html.php:3527 -#: ../../include/functions_reporting_html.php:3544 -msgid "Warning events" -msgstr "Events in Warning status" - -#: ../../include/functions_reporting_html.php:3531 -#: ../../include/functions_reporting_html.php:3548 -msgid "OK events" -msgstr "Events in OK status" - -#: ../../include/functions_reporting_html.php:3535 -#: ../../include/functions_reporting_html.php:3552 -msgid "Unknown events" -msgstr "Events in Unknown status" - -#: ../../include/functions_reporting_html.php:3575 -msgid "Important Events by Criticity" -msgstr "Important Events by Criticity" - -#: ../../include/functions_reporting_html.php:3601 -msgid "Last activity in Pandora FMS console" -msgstr "Latest activity in the Pandora FMS console" - -#: ../../include/functions_reporting_html.php:3677 -msgid "Events info (1hr.)" -msgstr "Event info. (1hr.)" - -#: ../../include/functions_reporting_html.php:3817 -#: ../../enterprise/include/functions_reporting.php:4556 -#: ../../enterprise/include/functions_reporting_pdf.php:2418 -msgid "This SLA has been affected by the following planned downtimes" -msgstr "This SLA has been affected by the following planned downtimes" - -#: ../../include/functions_reporting_html.php:3822 -#: ../../enterprise/include/functions_reporting.php:4561 -#: ../../enterprise/include/functions_reporting_pdf.php:2423 -msgid "Dates" -msgstr "Dates" - -#: ../../include/functions_reporting_html.php:3863 -#: ../../enterprise/include/functions_reporting.php:4655 -#: ../../enterprise/include/functions_reporting_pdf.php:2462 -msgid "This item is affected by a malformed planned downtime" -msgstr "This item is affected by a erroneous planned downtime" - -#: ../../include/functions_reporting_html.php:3864 -#: ../../enterprise/include/functions_reporting.php:4656 -#: ../../enterprise/include/functions_reporting_pdf.php:2463 -msgid "Go to the planned downtimes section to solve this" -msgstr "Go to the planned downtimes section to solve this" - -#: ../../include/functions_planned_downtimes.php:560 -msgid "Succesful stopped the Downtime" -msgstr "Downtime has been stopped successfully" - -#: ../../include/functions_planned_downtimes.php:561 -msgid "Unsuccesful stopped the Downtime" -msgstr "Downtime could not be stopped successfully" - -#: ../../include/functions_planned_downtimes.php:660 -#, php-format -msgid "Enabled %s elements from the downtime" -msgstr "Enabled %s elements from the downtime" - -#: ../../include/functions_planned_downtimes.php:785 -msgid "This planned downtime are executed now. Can't delete in this moment." -msgstr "" -"This planned downtime are executed now. It can't be deleted in this moment." - -#: ../../include/functions_planned_downtimes.php:790 -msgid "Deleted this planned downtime successfully." -msgstr "Deleted this planned downtime successfully." - -#: ../../include/functions_planned_downtimes.php:792 -msgid "Problems for deleted this planned downtime." -msgstr "Problems for deleted this planned downtime." - -#: ../../include/functions_snmp_browser.php:145 -msgid "Target IP cannot be blank." -msgstr "The target IP cannot be left blank." - -#: ../../include/functions_snmp_browser.php:403 -msgid "Numeric OID" -msgstr "Numeric OID" - -#: ../../include/functions_snmp_browser.php:420 -msgid "Syntax" -msgstr "Syntax" - -#: ../../include/functions_snmp_browser.php:425 -msgid "Display hint" -msgstr "Display hint" - -#: ../../include/functions_snmp_browser.php:430 -msgid "Max access" -msgstr "Max. access" - -#: ../../include/functions_snmp_browser.php:445 -msgid "OID Information" -msgstr "OID Information" - -#: ../../include/functions_snmp_browser.php:510 -msgid "Starting OID" -msgstr "Starting OID" - -#: ../../include/functions_snmp_browser.php:521 -msgid "Browse" -msgstr "Browse" - -#: ../../include/functions_snmp_browser.php:558 -msgid "First match" -msgstr "First match" - -#: ../../include/functions_snmp_browser.php:560 -msgid "Previous match" -msgstr "Previous match" - -#: ../../include/functions_snmp_browser.php:562 -msgid "Next match" -msgstr "Next match" - -#: ../../include/functions_snmp_browser.php:564 -msgid "Last match" -msgstr "Last match" - -#: ../../include/functions_snmp_browser.php:569 -msgid "Expand the tree (can be slow)" -msgstr "Expand the tree (can be slow)" - -#: ../../include/functions_snmp_browser.php:571 -msgid "Collapse the tree" -msgstr "Collapse the tree" - -#: ../../include/functions_snmp_browser.php:590 -msgid "SNMP v3 options" -msgstr "SNMP v3 settings" - -#: ../../include/functions_snmp_browser.php:593 -msgid "Search options" -msgstr "Search options" - -#: ../../include/functions_tags.php:602 -msgid "Click here to open a popup window with URL tag" -msgstr "Click here to open a popup window with URL tag" - -#: ../../include/functions_treeview.php:54 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1347 -msgid "There was a problem loading module" -msgstr "There was a problem loading the module." - -#: ../../include/functions_treeview.php:279 -#: ../../include/functions_treeview.php:286 -#: ../../include/functions_ui.php:3684 ../../include/functions_ui.php:3691 -#: ../../mobile/operation/modules.php:610 -#: ../../mobile/operation/modules.php:617 -#: ../../operation/agentes/status_monitor.php:1362 -#: ../../operation/agentes/status_monitor.php:1369 -#: ../../enterprise/include/functions_services.php:1569 -#: ../../enterprise/operation/agentes/ux_console_view.php:185 -#: ../../enterprise/operation/agentes/ux_console_view.php:257 -msgid "Snapshot view" -msgstr "Command Snapshot view" - -#: ../../include/functions_treeview.php:313 -msgid "Go to module edition" -msgstr "Go to module edition" - -#: ../../include/functions_treeview.php:362 -msgid "There was a problem loading alerts" -msgstr "There was a problem loading the alerts" - -#: ../../include/functions_treeview.php:446 -msgid "Go to alerts edition" -msgstr "Go to alerts edition" - -#: ../../include/functions_treeview.php:506 -#: ../../operation/agentes/agent_fields.php:28 -#: ../../operation/agentes/custom_fields.php:28 -#: ../../operation/agentes/estado_generalagente.php:46 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1057 -msgid "There was a problem loading agent" -msgstr "There was a problem loading agent" - -#: ../../include/functions_treeview.php:571 -#: ../../operation/agentes/estado_generalagente.php:268 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1102 -msgid "Other IP addresses" -msgstr "Other IP addresses" - -#: ../../include/functions_treeview.php:602 -#: ../../operation/agentes/estado_agente.php:501 -#: ../../operation/agentes/estado_generalagente.php:205 -#: ../../operation/gis_maps/ajax.php:332 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1149 -msgid "Remote" -msgstr "Remote" - -#: ../../include/functions_treeview.php:610 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1170 -msgid "Next agent contact" -msgstr "Next agent contact" - -#: ../../include/functions_treeview.php:620 -msgid "Go to agent edition" -msgstr "Go to agent edition" - -#: ../../include/functions_treeview.php:629 -msgid "Agent data" -msgstr "Agent data" - -#: ../../include/functions_treeview.php:642 -#: ../../operation/agentes/estado_generalagente.php:159 -#: ../../operation/gis_maps/ajax.php:315 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1117 -msgid "Agent Version" -msgstr "Agent Version" - -#: ../../include/functions_treeview.php:659 -#: ../../operation/agentes/estado_generalagente.php:310 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1124 -msgid "Position (Long, Lat)" -msgstr "Position (Long, Lat)" - -#: ../../include/functions_treeview.php:676 -#: ../../operation/agentes/estado_generalagente.php:338 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1164 -msgid "Timezone Offset" -msgstr "Timezone Offset" - -#: ../../include/functions_treeview.php:691 -#: ../../operation/agentes/agent_fields.php:45 -#: ../../operation/agentes/estado_generalagente.php:354 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1180 -msgid "Custom field" -msgstr "Custom field" - -#: ../../include/functions_treeview.php:702 -msgid "Advanced information" -msgstr "Advanced information" - -#: ../../include/functions_treeview.php:714 -#: ../../operation/agentes/estado_generalagente.php:256 -msgid "Agent access rate (24h)" -msgstr "Agent access rate (24h)" - -#: ../../include/functions_treeview.php:722 -#: ../../mobile/operation/agent.php:214 -#: ../../operation/agentes/estado_generalagente.php:602 -msgid "Events (24h)" -msgstr "Events (24h)" - -#: ../../include/functions_treeview.php:774 -#: ../../operation/agentes/estado_generalagente.php:478 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:645 -msgid "Interface traffic" -msgstr "Interface traffic" - -#: ../../include/functions_treeview.php:796 -#: ../../operation/agentes/estado_generalagente.php:448 -msgid "Interface information" -msgstr "Interface information" - -#: ../../include/functions_ui.php:225 -msgid "Information" -msgstr "Information" - -#: ../../include/functions_ui.php:231 -#: ../../enterprise/include/functions_visual_map.php:622 -msgid "Success" -msgstr "Success" - -#: ../../include/functions_ui.php:367 -msgid "Request successfully processed" -msgstr "Request successfully processed" - -#: ../../include/functions_ui.php:370 -msgid "Error processing request" -msgstr "Error processing request" - -#: ../../include/functions_ui.php:508 -msgid "" -"Is possible that this view uses part of information which your user has not " -"access" -msgstr "" -"It's possible that this view uses a part of the information to which your " -"user doesn't have access." - -#: ../../include/functions_ui.php:1028 -msgid "The alert would fire when the value is over " -msgstr "" -"The alert will be triggered when the value is over " - -#: ../../include/functions_ui.php:1033 -msgid "The alert would fire when the value is under " -msgstr "" -"The alert will be triggered when the value is under " - -#: ../../include/functions_ui.php:1307 -#: ../../enterprise/meta/include/functions_ui_meta.php:54 -msgid "the Flexible Monitoring System" -msgstr "the Flexible Monitoring System" - -#: ../../include/functions_ui.php:1627 ../../include/functions_ui.php:1661 -#, php-format -msgid "Total items: %s" -msgstr "Total items : %s" - -#: ../../include/functions_ui.php:1968 -msgid "Unknown type" -msgstr "Unknown type" - -#: ../../include/functions_ui.php:2781 -msgid "Type at least two characters to search." -msgstr "Type at least two characters to search." - -#: ../../include/functions_ui.php:3575 -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\tthe database server is not running." -msgstr "" -"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." - -#: ../../include/functions_ui.php:3590 -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

    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 "" -"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 scheme has been created but there is no data " -"in it, you might have a problem with the database access credentials or your " -"scheme is out of date.\n" -"\t\t\t

    Pandora FMS Console cannot find include/config.php or " -"the file has invalid\n" -"\t\t\tpermissions and the HTTP server cannot read it. Please read the " -"documentation to fix this problem.
    " - -#: ../../include/functions_ui.php:3598 -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." -msgstr "" -"The Pandora FMS Console cannot find include/config.php or this file " -"has invalid\n" -"\t\t\tpermissions and the HTTP server cannot read it. Please read the " -"documentation to fix this problem." - -#: ../../include/functions_ui.php:3613 -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." -msgstr "" -"For security reasons, normal operation is not possible until you delete the " -"installer file.\n" -"\t\t\tPlease delete the ./install.php file before running the Pandora " -"FMS Console." - -#: ../../include/functions_ui.php:3618 -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." -msgstr "" -"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." - -#: ../../mobile/include/functions_web.php:21 -#: ../../operation/users/user_edit.php:284 -#: ../../enterprise/extensions/vmware/vmware_view.php:1109 -#: ../../enterprise/extensions/vmware/vmware_view.php:1128 -#: ../../enterprise/mobile/operation/dashboard.php:221 -#: ../../enterprise/operation/menu.php:89 -msgid "Dashboard" -msgstr "Dashboard" - -#: ../../mobile/include/functions_web.php:81 -#: ../../mobile/include/ui.class.php:257 -#: ../../enterprise/meta/general/footer.php:26 -#, php-format -msgid "Pandora FMS %s - Build %s" -msgstr "Pandora FMS %s - Build %s" - -#: ../../mobile/include/functions_web.php:82 -#: ../../mobile/include/ui.class.php:258 -#: ../../enterprise/extensions/cron/functions.php:451 -#: ../../enterprise/extensions/cron/functions.php:549 -msgid "Generated at" -msgstr "Generated at" - -#: ../../mobile/include/ui.class.php:87 ../../mobile/include/ui.class.php:168 -msgid "Pandora FMS mobile" -msgstr "Pandora FMS : Mobile" - -#: ../../mobile/include/ui.class.php:185 ../../mobile/operation/home.php:128 -msgid "Home" -msgstr "Home" - -#: ../../mobile/include/ui.class.php:630 -msgid "Not found header." -msgstr "Header not found." - -#: ../../mobile/include/ui.class.php:633 -msgid "Not found content." -msgstr "Content not found." - -#: ../../mobile/include/ui.class.php:636 -msgid "Not found footer." -msgstr "Footer not found." - -#: ../../mobile/include/ui.class.php:639 -msgid "Incorrect form." -msgstr "Incorrect form." - -#: ../../mobile/include/ui.class.php:642 -msgid "Incorrect grid." -msgstr "Wrong grid." - -#: ../../mobile/include/ui.class.php:645 -msgid "Incorrect collapsible." -msgstr "Wrong collapsible." - -#: ../../mobile/include/user.class.php:152 -#: ../../mobile/include/user.class.php:170 -#: ../../mobile/include/user.class.php:177 -msgid "Double authentication failed" -msgstr "Double authentication failed" - -#: ../../mobile/include/user.class.php:153 -msgid "Secret code not found" -msgstr "Secret code not found" - -#: ../../mobile/include/user.class.php:154 -msgid "Please contact the administrator to reset your double authentication" -msgstr "Please contact the administrator to reset your double authentication" - -#: ../../mobile/include/user.class.php:178 -msgid "There was an error checking the code" -msgstr "There was an error checking the code" - -#: ../../mobile/include/user.class.php:211 -msgid "Login Failed" -msgstr "Login Failed" - -#: ../../mobile/include/user.class.php:212 -msgid "User not found in database or incorrect password." -msgstr "User not found in database or wrong password." - -#: ../../mobile/include/user.class.php:220 -msgid "Login out" -msgstr "Logout" - -#: ../../mobile/include/user.class.php:244 -msgid "user" -msgstr "User" - -#: ../../mobile/include/user.class.php:251 -msgid "password" -msgstr "Password" - -#: ../../mobile/include/user.class.php:301 -#: ../../mobile/include/user.class.php:302 -msgid "Authenticator code" -msgstr "Authentication code" - -#: ../../mobile/index.php:241 ../../mobile/operation/agent.php:67 -#: ../../mobile/operation/agents.php:146 ../../mobile/operation/alerts.php:142 -#: ../../mobile/operation/events.php:431 ../../mobile/operation/groups.php:54 -#: ../../mobile/operation/module_graph.php:271 -#: ../../mobile/operation/modules.php:174 -#: ../../mobile/operation/networkmap.php:79 -#: ../../mobile/operation/networkmaps.php:100 -#: ../../mobile/operation/tactical.php:72 -#: ../../mobile/operation/visualmap.php:66 -#: ../../mobile/operation/visualmaps.php:84 -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" -msgstr "" -"Access to this page is restricted to authorized users only, please contact " -"your system administrator if you should need help.

    . Please remember " -"that any attempts to access this page will be recorded on the Pandora FMS " -"System Database." - -#: ../../mobile/operation/agent.php:108 ../../mobile/operation/agents.php:162 -#: ../../mobile/operation/alerts.php:158 ../../mobile/operation/events.php:568 -#: ../../mobile/operation/groups.php:69 -#: ../../mobile/operation/module_graph.php:368 -#: ../../mobile/operation/module_graph.php:377 -#: ../../mobile/operation/modules.php:190 -#: ../../mobile/operation/networkmap.php:98 -#: ../../mobile/operation/networkmaps.php:116 -#: ../../mobile/operation/tactical.php:88 -#: ../../mobile/operation/visualmap.php:103 -#: ../../mobile/operation/visualmaps.php:100 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:261 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:350 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:422 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:614 -#: ../../enterprise/mobile/operation/dashboard.php:91 -#: ../../enterprise/mobile/operation/dashboard.php:225 -msgid "Back" -msgstr "Back" - -#: ../../mobile/operation/agent.php:112 -msgid "PandoraFMS: Agents" -msgstr "PandoraFMS : Agents" - -#: ../../mobile/operation/agent.php:118 -msgid "No agent found" -msgstr "No agent found." - -#: ../../mobile/operation/agent.php:200 -msgid "Modules by status" -msgstr "Modules by status" - -#: ../../mobile/operation/agent.php:269 -#, php-format -msgid "Last %s Events" -msgstr "Last %s events" - -#: ../../mobile/operation/agents.php:166 -#, php-format -msgid "Filter Agents by %s" -msgstr "Filter Agents by %s" - -#: ../../mobile/operation/agents.php:201 ../../mobile/operation/alerts.php:213 -#: ../../mobile/operation/events.php:659 -#: ../../mobile/operation/modules.php:261 -#: ../../mobile/operation/networkmaps.php:150 -msgid "Apply Filter" -msgstr "Apply Filter" - -#: ../../mobile/operation/agents.php:370 -msgid "No agents" -msgstr "No agents" - -#: ../../mobile/operation/agents.php:460 ../../mobile/operation/alerts.php:306 -#: ../../mobile/operation/events.php:1070 -#: ../../mobile/operation/modules.php:786 -#: ../../mobile/operation/networkmaps.php:216 -msgid "(Default)" -msgstr "(Default)" - -#: ../../mobile/operation/agents.php:466 ../../mobile/operation/alerts.php:316 -#: ../../mobile/operation/events.php:1096 -#: ../../mobile/operation/modules.php:793 -#: ../../mobile/operation/networkmaps.php:222 -#, php-format -msgid "Group: %s" -msgstr "Group : %s" - -#: ../../mobile/operation/agents.php:470 ../../mobile/operation/alerts.php:320 -#: ../../mobile/operation/events.php:1112 -#: ../../mobile/operation/modules.php:805 -#, php-format -msgid "Status: %s" -msgstr "Status : %s" - -#: ../../mobile/operation/agents.php:474 ../../mobile/operation/alerts.php:324 -#: ../../mobile/operation/modules.php:809 -#, php-format -msgid "Free Search: %s" -msgstr "Free Search : %s" - -#: ../../mobile/operation/alerts.php:36 -#: ../../operation/agentes/alerts_status.functions.php:72 -msgid "All (Enabled)" -msgstr "All (Enabled)" - -#: ../../mobile/operation/alerts.php:39 -#: ../../operation/agentes/alerts_status.functions.php:75 -#: ../../operation/snmpconsole/snmp_view.php:162 -#: ../../operation/snmpconsole/snmp_view.php:926 -msgid "Not fired" -msgstr "Not triggered" - -#: ../../mobile/operation/alerts.php:162 -#, php-format -msgid "Filter Alerts by %s" -msgstr "Filter Alerts by %s" - -#: ../../mobile/operation/alerts.php:272 -msgid "Last Fired" -msgstr "Last Fired" - -#: ../../mobile/operation/alerts.php:282 -msgid "No alerts" -msgstr "No alerts" - -#: ../../mobile/operation/alerts.php:312 -#, php-format -msgid "Standby: %s" -msgstr "Standby : %s" - -#: ../../mobile/operation/events.php:382 ../../mobile/operation/events.php:383 -#: ../../mobile/operation/events.php:590 ../../mobile/operation/events.php:591 -msgid "Preset Filters" -msgstr "Preset Filters" - -#: ../../mobile/operation/events.php:443 -msgid "ERROR: Event detail" -msgstr "ERROR : Event details" - -#: ../../mobile/operation/events.php:445 -msgid "Error connecting to DB pandora." -msgstr "Error on connecting to Pandora DB." - -#: ../../mobile/operation/events.php:458 -msgid "Event detail" -msgstr "Event details" - -#: ../../mobile/operation/events.php:541 -msgid "Sucessful validate" -msgstr "Validation successful." - -#: ../../mobile/operation/events.php:543 -msgid "Fail validate" -msgstr "Validation failed." - -#: ../../mobile/operation/events.php:575 -#, php-format -msgid "Filter Events by %s" -msgstr "Filter events by %s" - -#: ../../mobile/operation/events.php:1076 -#, php-format -msgid "Filter: %s" -msgstr "Filter : %s" - -#: ../../mobile/operation/events.php:1089 -#, php-format -msgid "Severity: %s" -msgstr "Severity : %s" - -#: ../../mobile/operation/events.php:1108 -#: ../../mobile/operation/networkmaps.php:229 -#, php-format -msgid "Type: %s" -msgstr "Type: %s" - -#: ../../mobile/operation/events.php:1116 -#, php-format -msgid "Free search: %s" -msgstr "Free search : %s" - -#: ../../mobile/operation/events.php:1120 -#, php-format -msgid "Hours: %s" -msgstr "Hours : %s" - -#: ../../mobile/operation/groups.php:141 ../../operation/tree.php:292 -#: ../../enterprise/dashboard/widgets/tree_view.php:216 -#: ../../enterprise/include/functions_reporting_csv.php:462 -msgid "Unknown modules" -msgstr "Unknown modules" - -#: ../../mobile/operation/groups.php:145 ../../operation/tree.php:297 -#: ../../enterprise/dashboard/widgets/tree_view.php:221 -#: ../../enterprise/include/functions_reporting_csv.php:463 -msgid "Not init modules" -msgstr "Modules in uninitialised status" - -#: ../../mobile/operation/groups.php:149 ../../operation/tree.php:302 -#: ../../enterprise/dashboard/widgets/tree_view.php:226 -#: ../../enterprise/include/functions_reporting_csv.php:459 -msgid "Normal modules" -msgstr "Modules in normal status" - -#: ../../mobile/operation/groups.php:153 ../../operation/tree.php:287 -#: ../../enterprise/dashboard/widgets/tree_view.php:211 -#: ../../enterprise/include/functions_reporting_csv.php:461 -msgid "Warning modules" -msgstr "Modules in warning status" - -#: ../../mobile/operation/groups.php:157 ../../operation/tree.php:282 -#: ../../enterprise/dashboard/widgets/tree_view.php:206 -#: ../../enterprise/include/functions_reporting_csv.php:460 -msgid "Critical modules" -msgstr "Modules in critical status" - -#: ../../mobile/operation/home.php:38 ../../mobile/operation/tactical.php:84 -#: ../../operation/agentes/tactical.php:55 ../../operation/menu.php:45 -#: ../../operation/users/user_edit.php:280 -#: ../../enterprise/dashboard/widgets/tactical.php:27 -#: ../../enterprise/dashboard/widgets/tactical.php:29 -#: ../../enterprise/meta/general/main_header.php:93 -#: ../../enterprise/meta/monitoring/tactical.php:60 -msgid "Tactical view" -msgstr "Tactical view" - -#: ../../mobile/operation/home.php:135 ../../operation/search_results.php:64 -msgid "Global search" -msgstr "Global search" - -#: ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:373 -#, php-format -msgid "PandoraFMS: %s" -msgstr "PandoraFMS : %s" - -#: ../../mobile/operation/module_graph.php:387 -#, php-format -msgid "Options for %s : %s" -msgstr "Options for %s : %s" - -#: ../../mobile/operation/module_graph.php:394 -msgid "Show Alerts" -msgstr "Show Alerts" - -#: ../../mobile/operation/module_graph.php:402 -msgid "Show Events" -msgstr "Show Events" - -#: ../../mobile/operation/module_graph.php:410 -#: ../../operation/agentes/stat_win.php:389 -msgid "Time compare (Separated)" -msgstr "Time comparison (separated)" - -#: ../../mobile/operation/module_graph.php:426 -#: ../../operation/agentes/stat_win.php:395 -msgid "Show unknown graph" -msgstr "Show unknown graph" - -#: ../../mobile/operation/module_graph.php:434 -msgid "Avg Only" -msgstr "Avg Only" - -#: ../../mobile/operation/module_graph.php:439 -msgid "Time range (hours)" -msgstr "Time range (hours)" - -#: ../../mobile/operation/module_graph.php:452 -#: ../../operation/agentes/exportdata.php:310 -#: ../../operation/agentes/graphs.php:132 -#: ../../operation/agentes/interface_traffic_graph_win.php:235 -#: ../../operation/agentes/stat_win.php:314 -msgid "Begin date" -msgstr "Begin date" - -#: ../../mobile/operation/module_graph.php:459 -msgid "Update graph" -msgstr "Update graph" - -#: ../../mobile/operation/module_graph.php:468 -msgid "Error get the graph" -msgstr "Error retrieving the graph" - -#: ../../mobile/operation/modules.php:151 -#: ../../mobile/operation/modules.php:152 -#: ../../mobile/operation/modules.php:244 -#: ../../mobile/operation/modules.php:245 -#: ../../operation/agentes/group_view.php:249 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:410 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:308 -msgid "Tag" -msgstr "Tag" - -#: ../../mobile/operation/modules.php:194 -#, php-format -msgid "Filter Modules by %s" -msgstr "Filter Modules by %s" - -#: ../../mobile/operation/modules.php:543 -msgid "Interval." -msgstr "Interval" - -#: ../../mobile/operation/modules.php:549 -msgid "Last update." -msgstr "Last update" - -#: ../../mobile/operation/modules.php:801 -#, php-format -msgid "Module group: %s" -msgstr "Module group : %s" - -#: ../../mobile/operation/modules.php:814 -#, php-format -msgid "Tag: %s" -msgstr "Tag: %s" - -#: ../../mobile/operation/networkmap.php:164 -#: ../../mobile/operation/networkmaps.php:202 -msgid "No networkmaps" -msgstr "No network maps" - -#: ../../mobile/operation/networkmap.php:222 -#: ../../mobile/operation/networkmap.php:234 -#: ../../enterprise/extensions/vmware/vmware_view.php:1362 -#: ../../enterprise/extensions/vmware/vmware_view.php:1394 -#: ../../enterprise/extensions/vmware/vmware_view.php:1410 -#: ../../enterprise/operation/policies/networkmap.policies.php:70 -#: ../../enterprise/operation/policies/networkmap.policies.php:119 -#: ../../enterprise/operation/policies/networkmap.policies.php:133 -msgid "Map could not be generated" -msgstr "Map could not be generated" - -#: ../../mobile/operation/networkmaps.php:112 -msgid "Networkmaps" -msgstr "Network maps" - -#: ../../mobile/operation/networkmaps.php:120 -#, php-format -msgid "Filter Networkmaps by %s" -msgstr "Filter Network maps by %s" - -#: ../../mobile/operation/tactical.php:193 -msgid "Last activity" -msgstr "Last activity" - -#: ../../mobile/operation/visualmaps.php:96 -msgid "Visual consoles" -msgstr "Visual consoles" - -#: ../../mobile/operation/visualmaps.php:146 -msgid "No maps defined" -msgstr "No maps defined" - -#: ../../operation/agentes/agent_fields.php:38 -#: ../../operation/agentes/status_monitor.php:539 -msgid "Agent custom fields" -msgstr "Agent custom fields" - -#: ../../operation/agentes/agent_fields.php:48 -#: ../../operation/agentes/custom_fields.php:87 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1183 -msgid "empty" -msgstr "empty" - -#: ../../operation/agentes/alerts_status.functions.php:32 -#: ../../enterprise/godmode/alerts/alert_events_list.php:343 -msgid "Alert(s) validated" -msgstr "Alert(s) validated" - -#: ../../operation/agentes/alerts_status.functions.php:33 -msgid "Error processing alert(s)" -msgstr "Error processing alert(s)" - -#: ../../operation/agentes/alerts_status.functions.php:86 -#: ../../operation/agentes/status_monitor.php:341 -#: ../../operation/agentes/status_monitor.php:344 -msgid "Only it is show tags in use." -msgstr "Show only tags in use" - -#: ../../operation/agentes/alerts_status.functions.php:91 -#: ../../operation/agentes/status_monitor.php:349 -msgid "No tags" -msgstr "No tags" - -#: ../../operation/agentes/alerts_status.functions.php:97 -#: ../../operation/agentes/datos_agente.php:202 -msgid "Free text for search" -msgstr "Free text for search" - -#: ../../operation/agentes/alerts_status.functions.php:99 -msgid "Filter by agent name, module name, template name or action name" -msgstr "Filter by agent name, module name, template name or action name" - -#: ../../operation/agentes/alerts_status.functions.php:109 -msgid "No actions" -msgstr "No actions" - -#: ../../operation/agentes/alerts_status.php:108 -msgid "Full list of alerts" -msgstr "Full list of alerts" - -#: ../../operation/agentes/alerts_status.php:132 ../../operation/menu.php:62 -#: ../../operation/users/user_edit.php:281 -msgid "Alert detail" -msgstr "Alert details" - -#: ../../operation/agentes/alerts_status.php:135 -#: ../../enterprise/meta/general/main_header.php:103 -msgid "Alerts view" -msgstr "Alerts view" - -#: ../../operation/agentes/alerts_status.php:144 -msgid "Insufficient permissions to validate alerts" -msgstr "Insufficient permissions to validate alerts" - -#: ../../operation/agentes/alerts_status.php:599 -msgid "No alerts found" -msgstr "No alerts found" - -#: ../../operation/agentes/custom_fields.php:52 -msgid "No fields defined" -msgstr "No fields defined" - -#: ../../operation/agentes/datos_agente.php:165 -msgid "Received data from" -msgstr "Received data from" - -#: ../../operation/agentes/datos_agente.php:172 -msgid "Main database" -msgstr "Main database" - -#: ../../operation/agentes/datos_agente.php:172 -#: ../../enterprise/godmode/menu.php:102 -#: ../../enterprise/include/functions_setup.php:33 -#: ../../enterprise/include/functions_setup.php:63 -msgid "History database" -msgstr "Historical database" - -#: ../../operation/agentes/datos_agente.php:173 -msgid "" -"Switch between the main database and the history database to retrieve module " -"data" -msgstr "" -"Switch between the main database and the historical database in order to " -"retrieve module data." - -#: ../../operation/agentes/ehorus.php:30 -msgid "Missing agent id" -msgstr "Missing agent id" - -#: ../../operation/agentes/ehorus.php:48 -msgid "Missing ehorus agent id" -msgstr "Missing eHorus agent id" - -#: ../../operation/agentes/ehorus.php:80 -msgid "There was an error retrieving an authorization token" -msgstr "There was an error retrieving an authorization token" - -#: ../../operation/agentes/ehorus.php:93 -#: ../../operation/agentes/ehorus.php:129 -msgid "There was an error processing the response" -msgstr "There was an error processing the response" - -#: ../../operation/agentes/ehorus.php:116 -msgid "There was an error retrieving the agent data" -msgstr "There was an error retrieving the agent data" - -#: ../../operation/agentes/ehorus.php:134 -msgid "Remote management of this agent with eHorus" -msgstr "Remote management of this agent with eHorus" - -#: ../../operation/agentes/ehorus.php:136 -msgid "Launch" -msgstr "Launch" - -#: ../../operation/agentes/ehorus.php:142 -msgid "The connection was lost and the authorization token was expired" -msgstr "The connection was lost and the authorization token was expired" - -#: ../../operation/agentes/ehorus.php:144 -msgid "Reload the page to request a new authorization token" -msgstr "Reload the page to request a new authorization token" - -#: ../../operation/agentes/estado_agente.php:156 -msgid "Sucessfully deleted agent" -msgstr "Agent sucessfully deleted" - -#: ../../operation/agentes/estado_agente.php:158 -msgid "There was an error message deleting the agent" -msgstr "An error message appeared when deleting the agent" - -#: ../../operation/agentes/estado_agente.php:594 -msgid "Remote config" -msgstr "Remote config" - -#: ../../operation/agentes/estado_generalagente.php:42 -msgid "The agent has not assigned server. Maybe agent does not run fine." -msgstr "" -"The agent has not assigned a server. Maybe the agent does not run fine." - -#: ../../operation/agentes/estado_generalagente.php:119 -msgid "" -"Agent statuses are re-calculated by the server, they are not shown in real " -"time." -msgstr "" -"Agent statuses are recalculated by the server and aren't shown in real time." - -#: ../../operation/agentes/estado_generalagente.php:196 -msgid "Agent contact" -msgstr "Agent contact" - -#: ../../operation/agentes/estado_generalagente.php:218 -msgid "Next contact" -msgstr "Next contact" - -#: ../../operation/agentes/estado_generalagente.php:241 -msgid "Agent info" -msgstr "Agent info" - -#: ../../operation/agentes/estado_generalagente.php:313 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1128 -msgid "There is no GIS data." -msgstr "There is no GIS data." - -#: ../../operation/agentes/estado_generalagente.php:388 -msgid "Active incident on this agent" -msgstr "Active incident on this agent" - -#: ../../operation/agentes/estado_generalagente.php:397 -#: ../../enterprise/dashboard/widget.php:63 -#: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../enterprise/include/functions_reporting_csv.php:1146 -#: ../../enterprise/include/functions_reporting_csv.php:1293 -#: ../../enterprise/include/functions_reporting_csv.php:1358 -msgid "Title" -msgstr "Title" - -#: ../../operation/agentes/estado_generalagente.php:539 -msgid "Events info (24hr.)" -msgstr "Event info (24hrs.)" - -#: ../../operation/agentes/estado_generalagente.php:553 -#: ../../operation/agentes/pandora_networkmap.view.php:373 -msgid "Last contact: " -msgstr "Last contact : " - -#: ../../operation/agentes/estado_generalagente.php:621 -msgid "Refresh data" -msgstr "Refresh data" - -#: ../../operation/agentes/estado_generalagente.php:623 -msgid "Force remote checks" -msgstr "Force remote checks" - -#: ../../operation/agentes/estado_monitores.php:35 -msgid "Tag's information" -msgstr "Tag's information" - -#: ../../operation/agentes/estado_monitores.php:81 -msgid "Relationship information" -msgstr "Relationship information" - -#: ../../operation/agentes/estado_monitores.php:128 -msgid "" -"To see the list of modules paginated, enable this option in the Styles " -"Configuration." -msgstr "" -"To see the list of modules paginated, enable this option in the Styles " -"Configuration." - -#: ../../operation/agentes/estado_monitores.php:129 -msgid "Full list of monitors" -msgstr "Full list of monitors" - -#: ../../operation/agentes/estado_monitores.php:154 -msgid "List of modules" -msgstr "List of modules" - -#: ../../operation/agentes/estado_monitores.php:367 -#: ../../operation/agentes/status_monitor.php:1530 -#: ../../operation/tree.php:357 -#: ../../enterprise/dashboard/widgets/tree_view.php:283 -msgid "Module: " -msgstr "Module: " - -#: ../../operation/agentes/estado_monitores.php:445 -msgid "Status:" -msgstr "Status:" - -#: ../../operation/agentes/estado_monitores.php:451 -msgid "Not Normal" -msgstr "Abnormal" - -#: ../../operation/agentes/estado_monitores.php:459 -msgid "Free text for search (*):" -msgstr "Free text for search (*):" - -#: ../../operation/agentes/estado_monitores.php:460 -msgid "Search by module name, list matches." -msgstr "Search by module name, list matches." - -#: ../../operation/agentes/estado_monitores.php:475 -msgid "Reset" -msgstr "Reset" - -#: ../../operation/agentes/exportdata.csv.php:68 -#: ../../operation/agentes/exportdata.excel.php:67 -#: ../../operation/agentes/exportdata.php:82 -msgid "Invalid time specified" -msgstr "Invalid time specified" - -#: ../../operation/agentes/exportdata.csv.php:182 -#: ../../operation/agentes/exportdata.excel.php:165 -#: ../../operation/agentes/exportdata.php:218 -msgid "No modules specified" -msgstr "No modules specified" - -#: ../../operation/agentes/exportdata.php:36 ../../operation/menu.php:399 -msgid "Export data" -msgstr "Export data" - -#: ../../operation/agentes/exportdata.php:276 -msgid "No modules of type string. You can not calculate their average" -msgstr "No string type modules. You cannot calculate their average." - -#: ../../operation/agentes/exportdata.php:319 -#: ../../enterprise/include/functions_netflow_pdf.php:163 -#: ../../enterprise/operation/log/log_viewer.php:223 -msgid "End date" -msgstr "End date" - -#: ../../operation/agentes/exportdata.php:327 -msgid "Export type" -msgstr "Export type" - -#: ../../operation/agentes/exportdata.php:332 -msgid "MS Excel" -msgstr "MS Excel" - -#: ../../operation/agentes/exportdata.php:333 -msgid "Average per hour/day" -msgstr "Average per hour/day" - -#: ../../operation/agentes/gis_view.php:91 -msgid "Last position in " -msgstr "Last position in " - -#: ../../operation/agentes/gis_view.php:98 -msgid "Period to show data as path" -msgstr "Period to show data as path" - -#: ../../operation/agentes/gis_view.php:102 -msgid "Refresh path" -msgstr "Refresh path" - -#: ../../operation/agentes/gis_view.php:105 -msgid "Positional data from the last" -msgstr "Positional data from the last" - -#: ../../operation/agentes/gis_view.php:144 -msgid "This agent doesn't have any GIS data." -msgstr "This agent doesn't have any GIS data." - -#: ../../operation/agentes/gis_view.php:172 -#, php-format -msgid "%s Km" -msgstr "%s Km" - -#: ../../operation/agentes/gis_view.php:184 -msgid "Distance" -msgstr "Distance" - -#: ../../operation/agentes/gis_view.php:185 -msgid "# of Packages" -msgstr "# of packages" - -#: ../../operation/agentes/gis_view.php:186 -#: ../../operation/gis_maps/ajax.php:222 -msgid "Manual placement" -msgstr "Manual placement" - -#: ../../operation/agentes/gis_view.php:189 -msgid "positional data" -msgstr "positional data" - -#: ../../operation/agentes/graphs.php:86 -msgid "Other modules" -msgstr "Other modules" - -#: ../../operation/agentes/graphs.php:91 -msgid "Modules network no proc" -msgstr "Modules network no proc" - -#: ../../operation/agentes/graphs.php:136 -#: ../../operation/agentes/interface_traffic_graph_win.php:248 -#: ../../operation/agentes/stat_win.php:338 -#: ../../operation/reporting/graph_viewer.php:217 -msgid "Time range" -msgstr "Time range" - -#: ../../operation/agentes/graphs.php:140 -#: ../../operation/agentes/stat_win.php:345 -msgid "Show events" -msgstr "Show events" - -#: ../../operation/agentes/graphs.php:142 -#: ../../operation/agentes/stat_win.php:362 -msgid "Show alerts" -msgstr "Show alerts" - -#: ../../operation/agentes/graphs.php:143 -msgid "the combined graph does not show the alerts into this graph" -msgstr "the combined graph does not show the alerts into this graph" - -#: ../../operation/agentes/graphs.php:145 -msgid "Show as one combined graph" -msgstr "Show as a single combined graph" - -#: ../../operation/agentes/graphs.php:147 -msgid "one combined graph" -msgstr "single combined graph" - -#: ../../operation/agentes/graphs.php:150 -msgid "several graphs for each module" -msgstr "Several graphs per module" - -#: ../../operation/agentes/graphs.php:157 -msgid "Save as custom graph" -msgstr "Save as a custom graph" - -#: ../../operation/agentes/graphs.php:163 -msgid "Filter graphs" -msgstr "Filter graphs" - -#: ../../operation/agentes/graphs.php:210 -msgid "There was an error loading the graph" -msgstr "There was an error loading the graph" - -#: ../../operation/agentes/graphs.php:218 -#: ../../operation/agentes/graphs.php:221 -msgid "Name custom graph" -msgstr "Name the custom graph" - -#: ../../operation/agentes/graphs.php:243 -msgid "Save custom graph" -msgstr "Save custom graph" - -#: ../../operation/agentes/graphs.php:264 -msgid "Custom graph create from the tab graphs in the agent." -msgstr "Custom graph create from the tab graphs in the agent." - -#: ../../operation/agentes/group_view.php:70 ../../operation/menu.php:48 -#: ../../operation/users/user_edit.php:279 -#: ../../enterprise/meta/monitoring/group_view.php:46 -msgid "Group view" -msgstr "Group view" - -#: ../../operation/agentes/group_view.php:117 -msgid "Summary of the status groups" -msgstr "Summary of the status groups" - -#: ../../operation/agentes/interface_traffic_graph_win.php:48 -#: ../../operation/agentes/stat_win.php:44 -msgid "There was a problem connecting with the node" -msgstr "There was a problem connecting with the node" - -#: ../../operation/agentes/interface_traffic_graph_win.php:66 -msgid "In" -msgstr "In" - -#: ../../operation/agentes/interface_traffic_graph_win.php:67 -msgid "Out" -msgstr "Out" - -#: ../../operation/agentes/interface_traffic_graph_win.php:210 -#: ../../operation/agentes/stat_win.php:268 -msgid "Pandora FMS Graph configuration menu" -msgstr "Pandora FMS' graph configuration menu" - -#: ../../operation/agentes/interface_traffic_graph_win.php:212 -#: ../../operation/agentes/stat_win.php:270 -msgid "Please, make your changes and apply with the Reload button" -msgstr "" -"Please establish your changes and apply the with the Reload button" - -#: ../../operation/agentes/interface_traffic_graph_win.php:229 -#: ../../operation/agentes/stat_win.php:297 -msgid "Refresh time" -msgstr "Refresh time" - -#: ../../operation/agentes/interface_traffic_graph_win.php:242 -#: ../../operation/agentes/stat_win.php:320 -msgid "Begin time" -msgstr "Start time" - -#: ../../operation/agentes/interface_traffic_graph_win.php:254 -#: ../../operation/agentes/stat_win.php:377 -msgid "Show percentil" -msgstr "Show percentile" - -#: ../../operation/agentes/interface_traffic_graph_win.php:260 -#: ../../operation/agentes/stat_win.php:326 -msgid "Zoom factor" -msgstr "Zoom factor" - -#: ../../operation/agentes/interface_traffic_graph_win.php:287 -#: ../../operation/agentes/stat_win.php:421 -msgid "Reload" -msgstr "Reload" - -#: ../../operation/agentes/pandora_networkmap.editor.php:133 -#: ../../operation/agentes/pandora_networkmap.php:369 -#: ../../operation/agentes/pandora_networkmap.view.php:701 -msgid "Networkmap" -msgstr "Network map" - -#: ../../operation/agentes/pandora_networkmap.editor.php:162 -#: ../../operation/agentes/pandora_networkmap.view.php:703 -msgid "Not found networkmap." -msgstr "Network map not found." - -#: ../../operation/agentes/pandora_networkmap.editor.php:187 -msgid "Node radius" -msgstr "Node radius" - -#: ../../operation/agentes/pandora_networkmap.editor.php:198 -msgid "CIDR IP mask" -msgstr "CIDR IP mask" - -#: ../../operation/agentes/pandora_networkmap.editor.php:200 -msgid "Source from recon task" -msgstr "Source from recon task" - -#: ../../operation/agentes/pandora_networkmap.editor.php:202 -msgid "" -"It is setted any recon task, the nodes get from the recontask IP mask " -"instead from the group." -msgstr "" -"If any Recon Task is defined, the nodes obtain their IPs from the " -"recontask's IP mask instead from the group." - -#: ../../operation/agentes/pandora_networkmap.editor.php:206 -msgid "Show only the task with the recon script \"SNMP L2 Recon\"." -msgstr "" -"Display the task which contains the recon script called \"SNMP L2 Recon\" " -"only." - -#: ../../operation/agentes/pandora_networkmap.editor.php:208 -msgid "Source from CIDR IP mask" -msgstr "Source from CIDR IP mask" - -#: ../../operation/agentes/pandora_networkmap.editor.php:212 -msgid "Don't show subgroups:" -msgstr "Don't show subgroups:" - -#: ../../operation/agentes/pandora_networkmap.editor.php:225 -msgid "Method generation networkmap" -msgstr "Method generation of network map" - -#: ../../operation/agentes/pandora_networkmap.editor.php:237 -msgid "Save networkmap" -msgstr "Save network map" - -#: ../../operation/agentes/pandora_networkmap.editor.php:243 -msgid "Update networkmap" -msgstr "Update network map" - -#: ../../operation/agentes/pandora_networkmap.php:153 -msgid "Succesfully created" -msgstr "Successfully created." - -#: ../../operation/agentes/pandora_networkmap.php:247 -msgid "Succesfully updated" -msgstr "Successfully updated" - -#: ../../operation/agentes/pandora_networkmap.php:264 -msgid "Succesfully duplicate" -msgstr "Successfully duplicated" - -#: ../../operation/agentes/pandora_networkmap.php:264 -#: ../../enterprise/godmode/policies/policy_modules.php:1173 -msgid "Could not be duplicated" -msgstr "Could not be duplicated" - -#: ../../operation/agentes/pandora_networkmap.php:273 -msgid "Succesfully deleted" -msgstr "Successfully deleted" - -#: ../../operation/agentes/pandora_networkmap.php:470 -msgid "Pending to generate" -msgstr "Pending to generate" - -#: ../../operation/agentes/pandora_networkmap.php:490 -#: ../../enterprise/operation/services/services.list.php:458 -msgid "Config" -msgstr "Config" - -#: ../../operation/agentes/pandora_networkmap.php:506 -msgid "There are no maps defined." -msgstr "There are no maps defined." - -#: ../../operation/agentes/pandora_networkmap.php:513 -msgid "Create networkmap" -msgstr "Create networkmap" - -#: ../../operation/agentes/pandora_networkmap.view.php:111 -msgid "Success be updated." -msgstr "Updating successful." - -#: ../../operation/agentes/pandora_networkmap.view.php:114 -#: ../../enterprise/extensions/ipam/ipam_action.php:190 -msgid "Could not be updated." -msgstr "Could not be updated." - -#: ../../operation/agentes/pandora_networkmap.view.php:227 -msgid "Name: " -msgstr "Name : " - -#: ../../operation/agentes/pandora_networkmap.view.php:258 -#: ../../operation/agentes/status_monitor.php:1035 -msgid "(Adopt) " -msgstr "(Adopted) " - -#: ../../operation/agentes/pandora_networkmap.view.php:268 -#: ../../operation/agentes/status_monitor.php:1045 -msgid "(Unlinked) (Adopt) " -msgstr "(Unlinked) (Adopted) " - -#: ../../operation/agentes/pandora_networkmap.view.php:272 -#: ../../operation/agentes/status_monitor.php:1049 -msgid "(Unlinked) " -msgstr "(Unlinked) " - -#: ../../operation/agentes/pandora_networkmap.view.php:277 -msgid "Policy: " -msgstr "Policy : " - -#: ../../operation/agentes/pandora_networkmap.view.php:326 -#: ../../enterprise/extensions/vmware/vmware_manager.php:202 -msgid "Status: " -msgstr "Status : " - -#: ../../operation/agentes/pandora_networkmap.view.php:370 -msgid "Data: " -msgstr "Data : " - -#: ../../operation/agentes/pandora_networkmap.view.php:731 -#: ../../operation/snmpconsole/snmp_browser.php:86 -#: ../../operation/snmpconsole/snmp_statistics.php:45 -#: ../../operation/snmpconsole/snmp_view.php:78 -msgid "Normal screen" -msgstr "Normal screen" - -#: ../../operation/agentes/pandora_networkmap.view.php:747 -msgid "List of networkmap" -msgstr "List of networkmap" - -#: ../../operation/agentes/snapshot_view.php:66 -msgid "Current data at" -msgstr "Current data at" - -#: ../../operation/agentes/stat_win.php:115 -msgid "There was a problem locating the source of the graph" -msgstr "There was a problem locating the graph source" - -#: ../../operation/agentes/stat_win.php:305 -msgid "Avg. Only" -msgstr "Avg. Only" - -#: ../../operation/agentes/stat_win.php:356 -msgid "" -"Show events is disabled because this Pandora node is set the event " -"replication." -msgstr "" -"'Show events' is disabled because this Pandora node is set to event " -"replication." - -#: ../../operation/agentes/stat_win.php:368 -msgid "Show event graph" -msgstr "Show event graph" - -#: ../../operation/agentes/status_events.php:31 -#: ../../operation/agentes/status_events.php:32 -msgid "Latest events for this agent" -msgstr "Latest events for this agent" - -#: ../../operation/agentes/status_monitor.php:40 ../../operation/menu.php:59 -msgid "Monitor detail" -msgstr "Monitor detail" - -#: ../../operation/agentes/status_monitor.php:45 -msgid "Monitor view" -msgstr "Monitor view" - -#: ../../operation/agentes/status_monitor.php:306 -msgid "Monitor status" -msgstr "Monitor status" - -#: ../../operation/agentes/status_monitor.php:327 -#: ../../operation/incidents/incident.php:238 -#: ../../enterprise/extensions/vmware/vmware_view.php:1247 -msgid "Show" -msgstr "Show" - -#: ../../operation/agentes/status_monitor.php:390 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:38 -msgid "Web server module" -msgstr "Web server module" - -#: ../../operation/agentes/status_monitor.php:394 -#: ../../operation/agentes/status_monitor.php:962 -msgid "Server type" -msgstr "Server type" - -#: ../../operation/agentes/status_monitor.php:400 -msgid "Show monitors..." -msgstr "Show monitors..." - -#: ../../operation/agentes/status_monitor.php:410 -msgid "Data type" -msgstr "Data type" - -#: ../../operation/agentes/status_monitor.php:529 -msgid "Advanced Options" -msgstr "Advanced Options" - -#: ../../operation/agentes/status_monitor.php:952 -msgid "Data Type" -msgstr "Data Type" - -#: ../../operation/agentes/status_monitor.php:1443 -msgid "This group doesn't have any monitor" -msgstr "This group doesn't have any monitor" - -#: ../../operation/agentes/tactical.php:135 -msgid "Report of State" -msgstr "Status report" - -#: ../../operation/agentes/ver_agente.php:686 -#: ../../enterprise/operation/agentes/ver_agente.php:70 -msgid "Main IP" -msgstr "Main IP" - -#: ../../operation/agentes/ver_agente.php:737 -#: ../../enterprise/operation/agentes/ver_agente.php:113 -msgid "Monitors down" -msgstr "Monitors down" - -#: ../../operation/agentes/ver_agente.php:822 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:152 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:41 -#: ../../enterprise/extensions/ipam/ipam_excel.php:116 -#: ../../enterprise/extensions/ipam/ipam_network.php:535 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:84 -msgid "Address" -msgstr "Address" - -#: ../../operation/agentes/ver_agente.php:863 -msgid "Sons" -msgstr "Sons" - -#: ../../operation/agentes/ver_agente.php:947 -#: ../../operation/search_agents.php:111 -#: ../../operation/servers/recon_view.php:46 -msgid "Manage" -msgstr "Manage" - -#: ../../operation/agentes/ver_agente.php:1076 -msgid "Log Viewer" -msgstr "Log Viewer" - -#: ../../operation/agentes/ver_agente.php:1096 -msgid "Terminal" -msgstr "Terminal" - -#: ../../operation/agentes/ver_agente.php:1116 -#: ../../enterprise/godmode/agentes/collections.agents.php:53 -#: ../../enterprise/godmode/agentes/collections.data.php:104 -#: ../../enterprise/godmode/agentes/collections.data.php:216 -#: ../../enterprise/godmode/agentes/collections.data.php:256 -#: ../../enterprise/godmode/agentes/collections.editor.php:46 -#: ../../enterprise/godmode/agentes/collections.editor.php:350 -#: ../../enterprise/godmode/agentes/collections.editor.php:375 -#: ../../enterprise/include/functions_collection.php:129 -msgid "Files" -msgstr "Files" - -#: ../../operation/events/event_statistics.php:32 -#: ../../operation/incidents/incident_statistics.php:30 -#: ../../operation/menu.php:278 ../../operation/menu.php:365 -#: ../../operation/snmpconsole/snmp_statistics.php:61 -#: ../../operation/snmpconsole/snmp_view.php:72 -#: ../../enterprise/extensions/ipam/ipam_network.php:171 -msgid "Statistics" -msgstr "Statistics" - -#: ../../operation/events/event_statistics.php:41 -msgid "Event graph by user" -msgstr "Event graph by user" - -#: ../../operation/events/events.build_table.php:37 -msgid "More detail" -msgstr "More detail" - -#: ../../operation/events/events.build_table.php:85 -#: ../../operation/events/events.build_table.php:89 -msgid "The Agent: " -msgstr "The Agent: " - -#: ../../operation/events/events.build_table.php:86 -#: ../../operation/events/events.build_table.php:90 -msgid " has " -msgstr " has " - -#: ../../operation/events/events.build_table.php:87 -#: ../../operation/events/events.build_table.php:91 -msgid " events." -msgstr " events." - -#: ../../operation/events/events.build_table.php:754 -msgid "Validate selected" -msgstr "Validate selected" - -#: ../../operation/events/events.php:71 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:137 -msgid "Event" -msgstr "Event" - -#: ../../operation/events/events.php:195 -msgid "" -"Event viewer is disabled due event replication. For more information, please " -"contact with the administrator" -msgstr "" -"Event viewer is disabled due to event replication. For more information, " -"please contact the administrator." - -#: ../../operation/events/events.php:339 -msgid "History event list" -msgstr "History event list" - -#: ../../operation/events/events.php:344 -msgid "RSS Events" -msgstr "RSS Events" - -#: ../../operation/events/events.php:349 -msgid "Marquee display" -msgstr "Marquee display" - -#: ../../operation/events/events.php:354 -msgid "Export to CSV file" -msgstr "Export to CSV file" - -#: ../../operation/events/events.php:358 ../../operation/events/events.php:397 -msgid "Sound events" -msgstr "Sound events" - -#: ../../operation/events/events.php:401 -msgid "History" -msgstr "History" - -#: ../../operation/events/events.php:439 ../../operation/menu.php:319 -msgid "Sound Alerts" -msgstr "Sound Alerts" - -#: ../../operation/events/events.php:472 -msgid "Event viewer" -msgstr "" - -#: ../../operation/events/events.php:492 -msgid "No events selected" -msgstr "No events selected" - -#: ../../operation/events/events.php:518 -msgid "Successfully validated" -msgstr "Successfully validated" - -#: ../../operation/events/events.php:519 ../../operation/events/events.php:843 -#: ../../operation/events/events.php:995 -msgid "Could not be validated" -msgstr "Could not be validated" - -#: ../../operation/events/events.php:523 -msgid "Successfully set in process" -msgstr "Set in process successfully" - -#: ../../operation/events/events.php:524 -msgid "Could not be set in process" -msgstr "Could not be set in process" - -#: ../../operation/events/events.php:875 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:226 -msgid "Successfully delete" -msgstr "Successfully deleted" - -#: ../../operation/events/events.php:878 -msgid "Error deleting event" -msgstr "Error deleting event" - -#: ../../operation/events/events_list.php:191 -#: ../../operation/events/events_list.php:636 -msgid "No filter loaded" -msgstr "No filter loaded" - -#: ../../operation/events/events_list.php:193 -#: ../../operation/events/events_list.php:637 -msgid "Filter loaded" -msgstr "Filter loaded" - -#: ../../operation/events/events_list.php:195 -#: ../../operation/events/events_list.php:258 -#: ../../operation/events/events_list.php:608 -msgid "Save filter" -msgstr "Save filter" - -#: ../../operation/events/events_list.php:197 -#: ../../operation/events/events_list.php:281 -#: ../../operation/events/events_list.php:283 -#: ../../operation/events/events_list.php:612 -#: ../../operation/netflow/nf_live_view.php:329 -msgid "Load filter" -msgstr "Load filter" - -#: ../../operation/events/events_list.php:218 -msgid "New filter" -msgstr "New filter" - -#: ../../operation/events/events_list.php:228 -msgid "Save in Group" -msgstr "Save in Group" - -#: ../../operation/events/events_list.php:245 -msgid "Overwrite filter" -msgstr "Overwrite filter" - -#: ../../operation/events/events_list.php:584 -msgid "Group agents" -msgstr "Group agents" - -#: ../../operation/events/events_list.php:614 -msgid "Show events graph" -msgstr "Show the events graph" - -#: ../../operation/events/events_list.php:643 -#: ../../operation/events/events_list.php:645 -msgid "Event control filter" -msgstr "Event control filter" - -#: ../../operation/events/events_list.php:652 -msgid "Error creating filter." -msgstr "Error creating filter." - -#: ../../operation/events/events_list.php:653 -msgid "Error creating filter is duplicated." -msgstr "Cannot create filter: duplicate filter" - -#: ../../operation/events/events_list.php:654 -msgid "Filter created." -msgstr "Filter created." - -#: ../../operation/events/events_list.php:656 -msgid "Filter updated." -msgstr "Filter updated." - -#: ../../operation/events/events_list.php:657 -msgid "Error updating filter." -msgstr "Error updating filter." - -#: ../../operation/events/events_list.php:1091 -msgid "Filter name cannot be left blank" -msgstr "The filter's name cannot be left blank" - -#: ../../operation/events/events_list.php:1160 -#: ../../operation/events/events_list.php:1246 -msgid "none" -msgstr "none" - -#: ../../operation/events/events_list.php:1568 -msgid "Events generated -by agent-" -msgstr "Events generated -by agent-" - -#: ../../operation/events/events_rss.php:32 -msgid "Your IP is not into the IP list with API access." -msgstr "Your IP is not on the list of IPs with API access." - -#: ../../operation/events/events_rss.php:46 -msgid "The URL of your feed has bad hash." -msgstr "Your feed's URL has a bad hash" - -#: ../../operation/events/events_rss.php:185 ../../operation/menu.php:98 -msgid "SNMP" -msgstr "SNMP" - -#: ../../operation/events/sound_events.php:51 ../../operation/menu.php:307 -msgid "Sound Events" -msgstr "Sound Events" - -#: ../../operation/events/sound_events.php:68 -msgid "Sound console" -msgstr "Sound console" - -#: ../../operation/gis_maps/ajax.php:217 ../../operation/gis_maps/ajax.php:254 -msgid "Position (Lat, Long, Alt)" -msgstr "Position (Lat, Long, Alt)" - -#: ../../operation/gis_maps/ajax.php:218 -msgid "Start contact" -msgstr "Start contact" - -#: ../../operation/gis_maps/ajax.php:220 -msgid "Num reports" -msgstr "Num reports" - -#: ../../operation/gis_maps/ajax.php:258 -msgid "Default position of map." -msgstr "Default map position" - -#: ../../operation/gis_maps/gis_map.php:31 ../../operation/menu.php:185 -msgid "GIS Maps" -msgstr "GIS Maps" - -#: ../../operation/gis_maps/gis_map.php:175 -msgid "No maps found" -msgstr "No maps found" - -#: ../../operation/gis_maps/gis_map.php:194 -msgid "Caution: Do you want delete the map?" -msgstr "Caution: Do you want delete the map?" - -#: ../../operation/gis_maps/gis_map.php:201 -msgid "Do you want to set default the map?" -msgstr "Do you wish to set this map as default?" - -#: ../../operation/gis_maps/gis_map.php:209 -msgid "There was error on setup the default map." -msgstr "There was an error setting up the default map" - -#: ../../operation/gis_maps/render_view.php:145 -msgid "Refresh: " -msgstr "Refresh: " - -#: ../../operation/gis_maps/render_view.php:154 -msgid "Show agents by state: " -msgstr "Show agents according to status: " - -#: ../../operation/gis_maps/render_view.php:157 -#: ../../enterprise/dashboard/widgets/network_map.php:38 -#: ../../enterprise/extensions/vmware/vmware_view.php:1104 -#: ../../enterprise/extensions/vmware/vmware_view.php:1124 -msgid "Map" -msgstr "Map" - -#: ../../operation/incidents/incident.php:33 -msgid "Incident management" -msgstr "Incident management" - -#: ../../operation/incidents/incident.php:72 -msgid "Successfully reclaimed ownership" -msgstr "Successfully reclaimed ownership" - -#: ../../operation/incidents/incident.php:73 -msgid "Could not reclame ownership" -msgstr "Could not reclame ownership" - -#: ../../operation/incidents/incident.php:143 -msgid "Error creating incident" -msgstr "Error creating the incident" - -#: ../../operation/incidents/incident.php:146 -msgid "Incident created" -msgstr "Incident created" - -#: ../../operation/incidents/incident.php:233 -msgid "Incidents:" -msgstr "Incidents:" - -#: ../../operation/incidents/incident.php:234 -msgid "All incidents" -msgstr "All incidents" - -#: ../../operation/incidents/incident.php:256 -msgid "Priorities:" -msgstr "Priorities:" - -#: ../../operation/incidents/incident.php:257 -msgid "All priorities" -msgstr "All priorities" - -#: ../../operation/incidents/incident.php:261 -msgid "Users:" -msgstr "Users:" - -#: ../../operation/incidents/incident.php:262 -#: ../../enterprise/extensions/ipam/ipam_editor.php:60 -msgid "All users" -msgstr "All users" - -#: ../../operation/incidents/incident.php:277 -msgid "Agents:" -msgstr "Agents:" - -#: ../../operation/incidents/incident.php:284 -msgid "Groups:" -msgstr "Groups:" - -#: ../../operation/incidents/incident.php:290 -msgid "Free text:" -msgstr "Free text:" - -#: ../../operation/incidents/incident.php:291 -msgid "Search by incident name or description, list matches." -msgstr "Search by incident name or description, list matches." - -#: ../../operation/incidents/incident.php:399 -msgid "Delete incidents" -msgstr "Delete incidents" - -#: ../../operation/incidents/incident.php:403 -msgid "Become owner" -msgstr "Become owner" - -#: ../../operation/incidents/incident.php:411 -#: ../../operation/incidents/incident_detail.php:238 -msgid "Create incident" -msgstr "Create incident" - -#: ../../operation/incidents/incident_detail.php:120 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:486 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:93 -msgid "No description available" -msgstr "No description available" - -#: ../../operation/incidents/incident_detail.php:160 -msgid "File could not be saved due to database error" -msgstr "The file couldn't be saved due to a database error." - -#: ../../operation/incidents/incident_detail.php:173 -msgid "File uploaded" -msgstr "File uploaded" - -#: ../../operation/incidents/incident_detail.php:174 -msgid "File could not be uploaded" -msgstr "The file could not be uploaded." - -#: ../../operation/incidents/incident_detail.php:233 -msgid "Incident details" -msgstr "Incident details" - -#: ../../operation/incidents/incident_detail.php:259 -msgid "Opened at" -msgstr "Opened at" - -#: ../../operation/incidents/incident_detail.php:261 -#: ../../operation/servers/recon_view.php:107 -#: ../../enterprise/operation/agentes/transactional_map.php:154 -msgid "Updated at" -msgstr "Updated at" - -#: ../../operation/incidents/incident_detail.php:327 -msgid "Creator" -msgstr "Creator" - -#: ../../operation/incidents/incident_detail.php:376 -msgid "Update incident" -msgstr "Update incident" - -#: ../../operation/incidents/incident_detail.php:382 -msgid "Submit" -msgstr "Submit" - -#: ../../operation/incidents/incident_detail.php:396 -#: ../../operation/incidents/incident_detail.php:400 -msgid "Add note" -msgstr "Add note" - -#: ../../operation/incidents/incident_detail.php:432 -msgid "Notes attached to incident" -msgstr "Notes attached to the incident" - -#: ../../operation/incidents/incident_detail.php:453 -#: ../../operation/incidents/incident_detail.php:505 -msgid "Filename" -msgstr "Filename" - -#: ../../operation/incidents/incident_detail.php:481 -msgid "Attached files" -msgstr "Attached files" - -#: ../../operation/incidents/incident_detail.php:499 -#: ../../operation/incidents/incident_detail.php:503 -msgid "Add attachment" -msgstr "Add attachment" - -#: ../../operation/incidents/incident_statistics.php:33 -msgid "Incidents by status" -msgstr "Incidents by status" - -#: ../../operation/incidents/incident_statistics.php:36 -msgid "Incidents by priority" -msgstr "Incidents by priority" - -#: ../../operation/incidents/incident_statistics.php:39 -msgid "Incidents by group" -msgstr "Incidents by group" - -#: ../../operation/incidents/incident_statistics.php:42 -msgid "Incidents by user" -msgstr "Incidents by user" - -#: ../../operation/incidents/incident_statistics.php:45 -msgid "Incidents by source" -msgstr "Incidents by source" - -#: ../../operation/menu.php:31 ../../operation/menu.php:106 -#: ../../enterprise/meta/general/logon_ok.php:56 -#: ../../enterprise/meta/general/main_header.php:82 -#: ../../enterprise/operation/services/services.list.php:60 -#: ../../enterprise/operation/services/services.list.php:64 -#: ../../enterprise/operation/services/services.table_services.php:46 -#: ../../enterprise/operation/services/services.table_services.php:50 -msgid "Monitoring" -msgstr "Monitoring" - -#: ../../operation/menu.php:37 -msgid "Views" -msgstr "Views" - -#: ../../operation/menu.php:51 ../../operation/tree.php:87 -#: ../../enterprise/meta/general/main_header.php:88 -msgid "Tree view" -msgstr "Tree view" - -#: ../../operation/menu.php:70 -msgid "Netflow Live View" -msgstr "Netflow Live View" - -#: ../../operation/menu.php:85 -msgid "SNMP browser" -msgstr "SNMP browser" - -#: ../../operation/menu.php:89 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:30 -msgid "MIB uploader" -msgstr "MIB uploader" - -#: ../../operation/menu.php:117 -#: ../../enterprise/dashboard/widgets/network_map.php:26 -#: ../../enterprise/operation/policies/networkmap.policies.php:128 -msgid "Network map" -msgstr "Network map" - -#: ../../operation/menu.php:190 -msgid "List of Gis maps" -msgstr "List of Gis maps" - -#: ../../operation/menu.php:224 -msgid "Topology maps" -msgstr "Topology maps" - -#: ../../operation/menu.php:288 -msgid "RSS" -msgstr "RSS" - -#: ../../operation/menu.php:293 -msgid "Marquee" -msgstr "Marquee" - -#: ../../operation/menu.php:299 -msgid "CSV File" -msgstr "CSV File" - -#: ../../operation/menu.php:329 -msgid "Workspace" -msgstr "Workspace" - -#: ../../operation/menu.php:342 -msgid "WebChat" -msgstr "WebChat" - -#: ../../operation/menu.php:364 -msgid "List of Incidents" -msgstr "List of Incidents" - -#: ../../operation/menu.php:379 -msgid "Messages List" -msgstr "Message list" - -#: ../../operation/menu.php:380 -msgid "New message" -msgstr "New message" - -#: ../../operation/menu.php:405 -msgid "Scheduled downtime" -msgstr "Scheduled downtime" - -#: ../../operation/menu.php:410 -msgid "Recon view" -msgstr "Recon view" - -#: ../../operation/menu.php:485 -msgid "Tools" -msgstr "Tools" - -#: ../../operation/messages/message_edit.php:35 -#: ../../operation/messages/message_list.php:32 -msgid "Received messages" -msgstr "Received messages" - -#: ../../operation/messages/message_edit.php:39 -#: ../../operation/messages/message_list.php:36 -msgid "Sent messages" -msgstr "Sent messages" - -#: ../../operation/messages/message_edit.php:43 -#: ../../operation/messages/message_list.php:40 -#: ../../operation/messages/message_list.php:226 -msgid "Create message" -msgstr "Create message" - -#: ../../operation/messages/message_edit.php:60 -msgid "This message does not exist in the system" -msgstr "This message doesn't exist on the system." - -#: ../../operation/messages/message_edit.php:79 -#: ../../operation/messages/message_edit.php:160 -#: ../../operation/messages/message_list.php:125 -msgid "Sender" -msgstr "Sender" - -#: ../../operation/messages/message_edit.php:80 -msgid "at" -msgstr "at" - -#: ../../operation/messages/message_edit.php:82 -#: ../../operation/messages/message_edit.php:169 -#: ../../operation/messages/message_list.php:123 -msgid "Destination" -msgstr "Destination" - -#: ../../operation/messages/message_edit.php:92 -#: ../../operation/messages/message_edit.php:210 -#: ../../operation/users/webchat.php:86 -#: ../../enterprise/dashboard/widgets/example.php:25 -msgid "Message" -msgstr "Message" - -#: ../../operation/messages/message_edit.php:104 -msgid "wrote" -msgstr "wrote" - -#: ../../operation/messages/message_edit.php:119 -msgid "Reply" -msgstr "Reply" - -#: ../../operation/messages/message_edit.php:136 -#, php-format -msgid "Message successfully sent to user %s" -msgstr "Message successfully sent to user %s" - -#: ../../operation/messages/message_edit.php:137 -#, php-format -msgid "Error sending message to user %s" -msgstr "Error sending message to user %s" - -#: ../../operation/messages/message_edit.php:145 -msgid "Message successfully sent" -msgstr "Message successfully sent" - -#: ../../operation/messages/message_edit.php:146 -#, php-format -msgid "Error sending message to group %s" -msgstr "Error sending message to group %s" - -#: ../../operation/messages/message_edit.php:203 -msgid "Select user" -msgstr "Select user" - -#: ../../operation/messages/message_edit.php:204 -msgid "OR" -msgstr "OR" - -#: ../../operation/messages/message_edit.php:205 -msgid "Select group" -msgstr "Select group" - -#: ../../operation/messages/message_edit.php:217 -#: ../../operation/users/webchat.php:90 -msgid "Send message" -msgstr "Send message" - -#: ../../operation/messages/message_list.php:74 -msgid "Not deleted. Error deleting messages" -msgstr "Not deleted: error deleting the message(s)." - -#: ../../operation/messages/message_list.php:80 -#: ../../operation/messages/message_list.php:88 -msgid "You have" -msgstr "You have" - -#: ../../operation/messages/message_list.php:81 -msgid "sent message(s)" -msgstr "message(s) sent" - -#: ../../operation/messages/message_list.php:89 -msgid "unread message(s)" -msgstr "unread message(s)" - -#: ../../operation/messages/message_list.php:97 -msgid "There are no messages." -msgstr "There are no messages." - -#: ../../operation/messages/message_list.php:136 -msgid "Click to read" -msgstr "Click to read" - -#: ../../operation/messages/message_list.php:141 -msgid "Mark as unread" -msgstr "Mark as unread" - -#: ../../operation/messages/message_list.php:148 -#: ../../operation/messages/message_list.php:153 -msgid "Message unread - click to read" -msgstr "Message unread - click to read" - -#: ../../operation/messages/message_list.php:180 -msgid "No Subject" -msgstr "No Subject" - -#: ../../operation/netflow/nf_live_view.php:108 -#: ../../operation/netflow/nf_live_view.php:133 -#: ../../operation/netflow/nf_live_view.php:137 -msgid "Netflow live view" -msgstr "Netflow live view" - -#: ../../operation/netflow/nf_live_view.php:122 -#, php-format -msgid "nfdump binary (%s) not found!" -msgstr "nfdump binary (%s) not found!" - -#: ../../operation/netflow/nf_live_view.php:127 -msgid "Make sure nfdump version 1.6.8 or newer is installed!" -msgstr "Make sure that nfdump version 1.6.8 or newer is installed !" - -#: ../../operation/netflow/nf_live_view.php:149 -msgid "Error creating filter" -msgstr "Error creating filter" - -#: ../../operation/netflow/nf_live_view.php:152 -msgid "Filter created successfully" -msgstr "Filter created successfully" - -#: ../../operation/netflow/nf_live_view.php:167 -msgid "Filter updated successfully" -msgstr "Filter updated successfully" - -#: ../../operation/netflow/nf_live_view.php:168 -msgid "Error updating filter" -msgstr "Error updating filter" - -#: ../../operation/netflow/nf_live_view.php:193 -msgid "Draw live filter" -msgstr "Draw live filter" - -#: ../../operation/netflow/nf_live_view.php:224 -msgid "Connection" -msgstr "Connection" - -#: ../../operation/netflow/nf_live_view.php:248 -msgid "The interval will be divided in chunks the length of the resolution." -msgstr "The interval will be divided in chunks the length of the resolution." - -#: ../../operation/netflow/nf_live_view.php:283 -msgid "IP address resolution" -msgstr "IP Address Resolution" - -#: ../../operation/netflow/nf_live_view.php:335 -msgid "Select a filter" -msgstr "Select a filter" - -#: ../../operation/netflow/nf_live_view.php:402 -msgid "Router ip" -msgstr "Router IP" - -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Bytes per second" -msgstr "Bytes per second" - -#: ../../operation/netflow/nf_live_view.php:417 -msgid "Draw" -msgstr "Draw" - -#: ../../operation/netflow/nf_live_view.php:421 -msgid "Save as new filter" -msgstr "Save as a new filter" - -#: ../../operation/netflow/nf_live_view.php:422 -msgid "Update current filter" -msgstr "Update current filter" - -#: ../../operation/netflow/nf_live_view.php:436 -msgid "No filter selected" -msgstr "No filter selected" - -#: ../../operation/reporting/custom_reporting.php:32 -#: ../../operation/reporting/graph_viewer.php:354 -msgid "There are no defined reportings" -msgstr "There are no defined reportings" - -#: ../../operation/reporting/graph_viewer.php:194 -msgid "No data." -msgstr "No data." - -#: ../../operation/reporting/graph_viewer.php:226 -#: ../../operation/reporting/graph_viewer.php:249 -msgid "Graph defined" -msgstr "Graph defined" - -#: ../../operation/reporting/graph_viewer.php:233 -#: ../../enterprise/dashboard/widgets/custom_graph.php:45 -msgid "Horizontal Bars" -msgstr "Horizontal Bars" - -#: ../../operation/reporting/graph_viewer.php:234 -#: ../../enterprise/dashboard/widgets/custom_graph.php:46 -msgid "Vertical Bars" -msgstr "Vertical Bars" - -#: ../../operation/reporting/graph_viewer.php:250 -msgid "Zoom x1" -msgstr "Zoom x1" - -#: ../../operation/reporting/graph_viewer.php:251 -msgid "Zoom x2" -msgstr "Zoom x2" - -#: ../../operation/reporting/graph_viewer.php:252 -msgid "Zoom x3" -msgstr "Zoom x3" - -#: ../../operation/reporting/graph_viewer.php:320 -#: ../../operation/reporting/reporting_viewer.php:314 -msgid "Invalid date selected" -msgstr "Invalid date selected" - -#: ../../operation/reporting/graph_viewer.php:327 -msgid "Custom graph viewer" -msgstr "Custom graph viewer" - -#: ../../operation/reporting/reporting_viewer.php:147 -msgid "View Report" -msgstr "View Report" - -#: ../../operation/reporting/reporting_viewer.php:186 -msgid "Set initial date" -msgstr "Set initial date" - -#: ../../operation/reporting/reporting_viewer.php:212 -msgid "Invalid date selected. Initial date must be before end date." -msgstr "Invalid date selected. Initial date must be before end date." - -#: ../../operation/search_agents.php:33 ../../operation/search_alerts.php:27 -#: ../../operation/search_graphs.php:24 ../../operation/search_maps.php:22 -#: ../../operation/search_modules.php:26 ../../operation/search_reports.php:29 -#: ../../operation/search_users.php:26 -msgid "Zero results found" -msgstr "Zero results found" - -#: ../../operation/search_helps.php:22 -msgid "Zero results found." -msgstr "Zero results found." - -#: ../../operation/search_helps.php:23 -#, php-format -msgid "" -"You can find more help in the Pandora's wiki" -msgstr "" -"You can find more help on the Pandora wiki" - -#: ../../operation/search_helps.php:37 -msgid "Matches" -msgstr "Matches" - -#: ../../operation/search_main.php:52 -msgid "Agents found" -msgstr "Agents found" - -#: ../../operation/search_main.php:54 ../../operation/search_main.php:57 -#: ../../operation/search_main.php:68 ../../operation/search_main.php:71 -#: ../../operation/search_main.php:74 ../../operation/search_main.php:77 -#: ../../operation/search_main.php:80 -#, php-format -msgid "%s Found" -msgstr "%s Found" - -#: ../../operation/search_main.php:55 -msgid "Modules found" -msgstr "Modules found" - -#: ../../operation/search_main.php:66 -msgid "Users found" -msgstr "Users found" - -#: ../../operation/search_main.php:69 -msgid "Graphs found" -msgstr "Graphs found" - -#: ../../operation/search_main.php:72 -msgid "Reports found" -msgstr "Reports found" - -#: ../../operation/search_main.php:75 -msgid "Maps found" -msgstr "Maps found" - -#: ../../operation/search_main.php:78 -msgid "Helps found" -msgstr "Help found" - -#: ../../operation/search_main.php:88 -#, php-format -msgid "Show %s of %s. View all matches" -msgstr "Show %s of %s. Show all matching entities." - -#: ../../operation/search_maps.php:33 -#: ../../enterprise/godmode/services/services.elements.php:136 -msgid "Elements" -msgstr "Elements" - -#: ../../operation/search_results.php:124 -#: ../../enterprise/dashboard/widgets/maps_status.php:29 -msgid "Maps" -msgstr "Maps" - -#: ../../operation/search_results.php:144 -msgid "Helps" -msgstr "Help" - -#: ../../operation/search_users.php:50 -msgid "Profile" -msgstr "Profile" - -#: ../../operation/servers/recon_view.php:36 -#: ../../operation/servers/recon_view.php:51 -msgid "Recon View" -msgstr "Recon View" - -#: ../../operation/servers/recon_view.php:104 -#: ../../operation/servers/recon_view.php:158 -#: ../../enterprise/extensions/ipam/ipam_network.php:151 -#: ../../enterprise/extensions/ipam/ipam_network.php:167 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:613 -#: ../../enterprise/godmode/policies/policy_queue.php:377 -#: ../../enterprise/meta/advanced/policymanager.queue.php:259 -msgid "Progress" -msgstr "Progress" - -#: ../../operation/servers/recon_view.php:140 -msgid "Pending" -msgstr "Pending" - -#: ../../operation/servers/recon_view.php:173 -msgid "has no recon tasks assigned" -msgstr "has no recon tasks assigned" - -#: ../../operation/snmpconsole/snmp_browser.php:92 -msgid "SNMP Browser" -msgstr "SNMP Browser" - -#: ../../operation/snmpconsole/snmp_mib_uploader.php:66 -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 "" -"MIB files will be installed on the system. Please note that an MIB file " -"might depend on another MIB. In order to customize trap definitions, use the " -"SNMP trap editor." - -#: ../../operation/snmpconsole/snmp_statistics.php:116 -#: ../../operation/snmpconsole/snmp_view.php:468 -msgid "There are no SNMP traps in database" -msgstr "There are no SNMP traps on the database" - -#: ../../operation/snmpconsole/snmp_statistics.php:127 -msgid "Traps received by source" -msgstr "Traps received by source" - -#: ../../operation/snmpconsole/snmp_statistics.php:141 -#: ../../operation/snmpconsole/snmp_statistics.php:199 -msgid "Number" -msgstr "Number" - -#: ../../operation/snmpconsole/snmp_statistics.php:156 -#: ../../operation/snmpconsole/snmp_view.php:680 -msgid "View agent details" -msgstr "View agent details" - -#: ../../operation/snmpconsole/snmp_statistics.php:185 -msgid "Traps received by Enterprise String" -msgstr "Traps received by the Enterprise String" - -#: ../../operation/snmpconsole/snmp_statistics.php:198 -msgid "Trap Enterprise String" -msgstr "Trap Enterprise String" - -#: ../../operation/snmpconsole/snmp_view.php:414 -msgid "" -"Search by any alphanumeric field in the trap.\n" -"\t\tREMEMBER trap sources need to be searched by IP Address" -msgstr "" -"Search by any alphanumeric field in the trap.\n" -"\t\tREMEMBER trap sources need to be searched by IP Address" - -#: ../../operation/snmpconsole/snmp_view.php:421 -msgid "Search by trap type" -msgstr "Search by trap type" - -#: ../../operation/snmpconsole/snmp_view.php:435 -msgid "Group by Enterprise String/IP" -msgstr "Group by Enterprise String/IP" - -#: ../../operation/snmpconsole/snmp_view.php:495 -#: ../../enterprise/dashboard/full_dashboard.php:147 -msgid "Exit fullscreen" -msgstr "Exit fullscreen" - -#: ../../operation/snmpconsole/snmp_view.php:521 -#: ../../enterprise/dashboard/full_dashboard.php:250 -#: ../../enterprise/dashboard/public_dashboard.php:276 -msgid "Refresh every" -msgstr "Refresh every" - -#: ../../operation/snmpconsole/snmp_view.php:533 -msgid "SNMP Traps" -msgstr "" - -#: ../../operation/snmpconsole/snmp_view.php:615 -msgid "Trap subtype" -msgstr "Trap subtype" - -#: ../../operation/snmpconsole/snmp_view.php:772 -msgid "Variable bindings:" -msgstr "Variable bindings:" - -#: ../../operation/snmpconsole/snmp_view.php:785 -msgid "See more details" -msgstr "View more details" - -#: ../../operation/snmpconsole/snmp_view.php:798 -msgid "Enterprise String:" -msgstr "Enterprise String:" - -#: ../../operation/snmpconsole/snmp_view.php:804 -#: ../../enterprise/godmode/agentes/collections.data.php:379 -msgid "Description:" -msgstr "Description:" - -#: ../../operation/snmpconsole/snmp_view.php:836 -msgid "Trap type:" -msgstr "Trap type:" - -#: ../../operation/snmpconsole/snmp_view.php:864 -msgid "Count:" -msgstr "Count:" - -#: ../../operation/snmpconsole/snmp_view.php:868 -msgid "First trap:" -msgstr "First trap:" - -#: ../../operation/snmpconsole/snmp_view.php:872 -msgid "Last trap:" -msgstr "Last trap:" - -#: ../../operation/snmpconsole/snmp_view.php:892 -msgid "No matching traps found" -msgstr "No matching traps found" - -#: ../../operation/snmpconsole/snmp_view.php:960 -#: ../../enterprise/dashboard/full_dashboard.php:361 -#: ../../enterprise/dashboard/public_dashboard.php:387 -msgid "Until next" -msgstr "Until next" - -#: ../../operation/tree.php:88 -#, php-format -msgid "Sort the agents by %s" -msgstr "Sort the agents by %s" - -#: ../../operation/tree.php:91 -msgid "tags" -msgstr "tags" - -#: ../../operation/tree.php:97 -msgid "groups" -msgstr "groups" - -#: ../../operation/tree.php:100 -msgid "module groups" -msgstr "module groups" - -#: ../../operation/tree.php:107 -msgid "policies" -msgstr "policies" - -#: ../../operation/tree.php:138 -msgid "Agent status" -msgstr "Agent status" - -#: ../../operation/tree.php:140 -msgid "Search agent" -msgstr "Search agent" - -#: ../../operation/tree.php:165 -msgid "Search module" -msgstr "Search module" - -#: ../../operation/tree.php:189 -msgid "Tree search" -msgstr "Tree search" - -#: ../../operation/tree.php:272 -#: ../../enterprise/dashboard/widgets/tree_view.php:196 -#: ../../enterprise/include/functions_reporting_csv.php:458 -msgid "Total modules" -msgstr "Total modules" - -#: ../../operation/tree.php:281 -#: ../../enterprise/dashboard/widgets/tree_view.php:205 -msgid "Critical agents" -msgstr "Critical agents" - -#: ../../operation/tree.php:286 -#: ../../enterprise/dashboard/widgets/tree_view.php:210 -msgid "Warning agents" -msgstr "Agents in 'Warning' status" - -#: ../../operation/tree.php:291 -#: ../../enterprise/dashboard/widgets/tree_view.php:215 -msgid "Unknown agents" -msgstr "Agents in 'Unknown' status" - -#: ../../operation/tree.php:296 -#: ../../enterprise/dashboard/widgets/tree_view.php:220 -msgid "Not init agents" -msgstr "Uninitialised agents" - -#: ../../operation/tree.php:301 -#: ../../enterprise/dashboard/widgets/tree_view.php:225 -msgid "Normal agents" -msgstr "Agents in 'Normal' status" - -#: ../../operation/users/user_edit.php:130 -#: ../../operation/users/user_edit.php:137 -msgid "Password successfully updated" -msgstr "Password successfully updated" - -#: ../../operation/users/user_edit.php:131 -#: ../../operation/users/user_edit.php:138 -#, php-format -msgid "Error updating passwords: %s" -msgstr "Error updating passwords: %s" - -#: ../../operation/users/user_edit.php:143 -msgid "" -"Passwords didn't match or other problem encountered while updating passwords" -msgstr "" -"The passwords didn't match or another problem occurred during password " -"update." - -#: ../../operation/users/user_edit.php:155 -#: ../../operation/users/user_edit.php:165 -msgid "Error updating user info" -msgstr "Error updating user info" - -#: ../../operation/users/user_edit.php:175 -msgid "Edit my User" -msgstr "Edit my User" - -#: ../../operation/users/user_edit.php:219 -msgid "New Password" -msgstr "New Password" - -#: ../../operation/users/user_edit.php:229 -msgid "" -"You can not change your password from Pandora FMS under the current " -"authentication scheme" -msgstr "" -"You can not change your password from Pandora FMS under the current " -"authentication scheme" - -#: ../../operation/users/user_edit.php:238 -msgid "If checkbox is clicked then block size global configuration is used" -msgstr "If checkbox is clicked then block size global configuration is used" - -#: ../../operation/users/user_edit.php:274 -msgid "Home screen" -msgstr "Home screen" - -#: ../../operation/users/user_edit.php:274 -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" -msgstr "" -"User can customise the home page. By default, it will display 'Agent " -"Detail'. Example: Select 'Other' and type " -"sec=estado&sec2=operation/agentes/estado_agente to show agent detail view" - -#: ../../operation/users/user_edit.php:339 -msgid "Show information" -msgstr "Show information" - -#: ../../operation/users/user_edit.php:345 -msgid "Event filter" -msgstr "Event filter" - -#: ../../operation/users/user_edit.php:350 -msgid "Newsletter Subscribed" -msgstr "Newsletter Subscribed" - -#: ../../operation/users/user_edit.php:352 -msgid "Already subscribed to Pandora FMS newsletter" -msgstr "Already subscribed to Pandora FMS newsletter" - -#: ../../operation/users/user_edit.php:358 -msgid "Newsletter Reminder" -msgstr "Newsletter Reminder" - -#: ../../operation/users/user_edit.php:414 -msgid "Autorefresh" -msgstr "Autorefresh" - -#: ../../operation/users/user_edit.php:414 -msgid "This will activate autorefresh in selected pages" -msgstr "This will activate autorefresh in selected pages" - -#: ../../operation/users/user_edit.php:421 -msgid "Full list of pages" -msgstr "Full list of pages" - -#: ../../operation/users/user_edit.php:423 -msgid "List of pages with autorefresh" -msgstr "List of pages with autorefresh" - -#: ../../operation/users/user_edit.php:429 -msgid "Push selected pages into autorefresh list" -msgstr "Push selected pages into autorefresh list" - -#: ../../operation/users/user_edit.php:433 -msgid "Pop selected pages out of autorefresh list" -msgstr "Pop selected pages out of autorefresh list" - -#: ../../operation/users/user_edit.php:469 -msgid "" -"You can not change your user info from Pandora FMS under the current " -"authentication scheme" -msgstr "" -"You can not change your user info from Pandora FMS under the current " -"authentication scheme" - -#: ../../operation/users/user_edit.php:541 -msgid "This user doesn't have any assigned profile/group." -msgstr "This user doesn't have any profile/group assigned" - -#: ../../operation/users/user_edit.php:710 -msgid "Double autentication information" -msgstr "Double autentication information" - -#: ../../operation/users/user_edit.php:773 -#: ../../operation/users/user_edit.php:849 -msgid "Double autentication activation" -msgstr "Double autentication activation" - -#: ../../operation/users/user_edit.php:799 -msgid "The double authentication will be deactivated" -msgstr "Double authentication will be deactivated" - -#: ../../operation/users/user_edit.php:800 -msgid "Deactivate" -msgstr "Deactivate" - -#: ../../operation/users/user_edit.php:832 -msgid "The double autentication was deactivated successfully" -msgstr "Double authentication was deactivated successfully" - -#: ../../operation/users/user_edit.php:835 -#: ../../operation/users/user_edit.php:839 -msgid "There was an error deactivating the double autentication" -msgstr "There was an error deactivating the double autentication" - -#: ../../operation/users/webchat.php:71 -msgid "Webchat" -msgstr "Webchat" - -#: ../../operation/users/webchat.php:82 -msgid "Users Online" -msgstr "Users Online" - -#: ../../operation/users/webchat.php:157 -msgid "Connection established...get last 24h messages..." -msgstr "Connection established - retrieving messages from the past 24hs." - -#: ../../operation/users/webchat.php:168 -msgid "Error in connection." -msgstr "Error in connection." - -#: ../../operation/users/webchat.php:249 -msgid "Error sendding message." -msgstr "Error sending message." - -#: ../../operation/users/webchat.php:277 -msgid "Error login." -msgstr "Login error." - -#: ../../enterprise/dashboard/dashboards.php:33 -#: ../../enterprise/mobile/operation/home.php:35 -msgid "Dashboards" -msgstr "Dashboards" - -#: ../../enterprise/dashboard/dashboards.php:59 -msgid "Successfully duplicate" -msgstr "Successfully duplicate" - -#: ../../enterprise/dashboard/dashboards.php:60 -msgid "Could not be duplicate" -msgstr "Could not be duplicated" - -#: ../../enterprise/dashboard/dashboards.php:83 -#: ../../enterprise/dashboard/main_dashboard.php:281 -#: ../../enterprise/dashboard/main_dashboard.php:290 -msgid "Cells" -msgstr "Cells" - -#: ../../enterprise/dashboard/dashboards.php:109 -msgid "There are no dashboards defined." -msgstr "There are no dashboards defined." - -#: ../../enterprise/dashboard/dashboards.php:123 -#, php-format -msgid "Private for (%s)" -msgstr "Private for (%s)" - -#: ../../enterprise/dashboard/dashboards.php:154 -msgid "New dashboard" -msgstr "" - -#: ../../enterprise/dashboard/full_dashboard.php:47 -#: ../../enterprise/dashboard/public_dashboard.php:70 -msgid "No slides selected" -msgstr "No slides selected" - -#: ../../enterprise/dashboard/full_dashboard.php:201 -#: ../../enterprise/dashboard/public_dashboard.php:217 -msgid "Change every" -msgstr "Change every" - -#: ../../enterprise/dashboard/full_dashboard.php:222 -#: ../../enterprise/dashboard/public_dashboard.php:244 -#: ../../enterprise/operation/agentes/transactional_map.php:307 -msgid "Stop" -msgstr "Stop" - -#: ../../enterprise/dashboard/full_dashboard.php:228 -#: ../../enterprise/dashboard/public_dashboard.php:250 -msgid "Pause" -msgstr "Pause" - -#: ../../enterprise/dashboard/full_dashboard.php:258 -#: ../../enterprise/dashboard/main_dashboard.php:183 -#: ../../enterprise/dashboard/public_dashboard.php:284 -msgid "Slides mode" -msgstr "Slides mode" - -#: ../../enterprise/dashboard/full_dashboard.php:349 -#: ../../enterprise/dashboard/main_dashboard.php:502 -#: ../../enterprise/dashboard/public_dashboard.php:375 -msgid "Slides" -msgstr "Slides" - -#: ../../enterprise/dashboard/main_dashboard.php:151 -msgid "Show link to public dashboard" -msgstr "Show link to public dashboard" - -#: ../../enterprise/dashboard/main_dashboard.php:168 -msgid "Save the actual layout design" -msgstr "Save actual layout design" - -#: ../../enterprise/dashboard/main_dashboard.php:336 -msgid "Private dashboard" -msgstr "Private dashboard" - -#: ../../enterprise/dashboard/main_dashboard.php:356 -msgid "Error: there are cells not empty." -msgstr "Error: there are cells not empty." - -#: ../../enterprise/dashboard/main_dashboard.php:361 -msgid "Error save conf dashboard" -msgstr "" - -#: ../../enterprise/dashboard/main_dashboard.php:427 -msgid "Add widget" -msgstr "Add widget" - -#: ../../enterprise/dashboard/main_dashboard.php:434 -msgid "Add new widget" -msgstr "Add new widget" - -#: ../../enterprise/dashboard/main_dashboard.php:436 -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." -msgstr "" -"Error, you are trying to add a widget in a empty cell. Please save the " -"layout before to add any widget in this cell." - -#: ../../enterprise/dashboard/main_dashboard.php:440 -msgid "There are unsaved changes" -msgstr "There are unsaved changes" - -#: ../../enterprise/dashboard/widget.php:68 -msgid "Empty for a transparent background color or CSS compatible value" -msgstr "Empty for a transparent background color or CSS compatible value" - -#: ../../enterprise/dashboard/widget.php:316 -msgid "Configure widget" -msgstr "Configure widget" - -#: ../../enterprise/dashboard/widget.php:324 -msgid "Delete widget" -msgstr "Delete widget" - -#: ../../enterprise/dashboard/widget.php:346 -msgid "Config widget" -msgstr "Config widget" - -#: ../../enterprise/dashboard/widget.php:356 -msgid "Please configure this widget before usage" -msgstr "Please configure this widget before usage" - -#: ../../enterprise/dashboard/widget.php:359 -msgid "Widget cannot be loaded" -msgstr "Cannot load widget." - -#: ../../enterprise/dashboard/widget.php:360 -msgid "Please, configure the widget again to recover it" -msgstr "Please configure the widget again to recover it" - -#: ../../enterprise/dashboard/widget.php:456 -msgid "" -"If propagate acl is activated, this group will include its child groups" -msgstr "" -"If propagate acl is activated, this group will include its child groups" - -#: ../../enterprise/dashboard/widgets/agent_module.php:30 -#: ../../enterprise/dashboard/widgets/agent_module.php:32 -msgid "Show Agent/Module View" -msgstr "" - -#: ../../enterprise/dashboard/widgets/agent_module.php:375 -#: ../../enterprise/dashboard/widgets/custom_graph.php:72 -#: ../../enterprise/dashboard/widgets/events_list.php:80 -#: ../../enterprise/dashboard/widgets/events_list.php:86 -#: ../../enterprise/dashboard/widgets/events_list.php:94 -#: ../../enterprise/dashboard/widgets/groups_status.php:53 -#: ../../enterprise/dashboard/widgets/groups_status.php:59 -#: ../../enterprise/dashboard/widgets/module_icon.php:116 -#: ../../enterprise/dashboard/widgets/module_icon.php:123 -#: ../../enterprise/dashboard/widgets/module_status.php:111 -#: ../../enterprise/dashboard/widgets/module_status.php:118 -#: ../../enterprise/dashboard/widgets/module_table_value.php:102 -#: ../../enterprise/dashboard/widgets/module_table_value.php:110 -#: ../../enterprise/dashboard/widgets/module_value.php:99 -#: ../../enterprise/dashboard/widgets/module_value.php:106 -#: ../../enterprise/dashboard/widgets/single_graph.php:93 -#: ../../enterprise/dashboard/widgets/single_graph.php:100 -#: ../../enterprise/dashboard/widgets/sla_percent.php:96 -#: ../../enterprise/dashboard/widgets/sla_percent.php:103 -msgid "You don't have access" -msgstr "You don't have access" - -#: ../../enterprise/dashboard/widgets/alerts_fired.php:24 -msgid "Alerts Fired" -msgstr "Alerts Fired" - -#: ../../enterprise/dashboard/widgets/alerts_fired.php:26 -msgid "Alerts Fired report" -msgstr "Alerts Fired report" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:27 -msgid "Show a defined custom graph" -msgstr "Show a defined custom graph" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:49 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:202 -msgid "Stacked" -msgstr "Stacked" - -#: ../../enterprise/dashboard/widgets/events_list.php:28 -msgid "Latest events list" -msgstr "Latest events list" - -#: ../../enterprise/dashboard/widgets/events_list.php:39 -msgid "Limit" -msgstr "Limit" - -#: ../../enterprise/dashboard/widgets/events_list.php:49 -msgid "Only pending" -msgstr "Only pending" - -#: ../../enterprise/dashboard/widgets/example.php:23 -msgid "Welcome message to Pandora FMS" -msgstr "Welcome message to Pandora FMS" - -#: ../../enterprise/dashboard/widgets/example.php:26 -#: ../../enterprise/extensions/vmware/vmware_view.php:1099 -msgid "Welcome" -msgstr "Welcome" - -#: ../../enterprise/dashboard/widgets/example.php:40 -msgid "" -"This is an example of a dashboard widget. A widget may contain elements" -msgstr "" -"This is an example of a dashboard widget. A widget may contain elements" - -#: ../../enterprise/dashboard/widgets/example.php:41 -msgid "" -"To add more elements, click on \"Add widgets\" on the top of this " -"page." -msgstr "" -"To add more elements, click on \"Add widgets\" on the top of this " -"page." - -#: ../../enterprise/dashboard/widgets/example.php:42 -#: ../../enterprise/dashboard/widgets/example.php:44 -msgid "" -"To delete this message, click on the delete button on top right corner of " -"this element." -msgstr "" -"To delete this message, click on the delete button on top right corner of " -"this element." - -#: ../../enterprise/dashboard/widgets/example.php:43 -msgid "" -"To do so, just click on the title and drag and drop it to the desired place." -msgstr "" -"To do so, just click on the title and drag and drop it to the desired place." - -#: ../../enterprise/dashboard/widgets/example.php:45 -msgid "Thanks for using Pandora FMS" -msgstr "Thanks for using Pandora FMS." - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:30 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:32 -msgid "Graph Module Histogram" -msgstr "" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:66 -#: ../../enterprise/dashboard/widgets/sla_percent.php:63 -msgid "2 Hours" -msgstr "" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:67 -#: ../../enterprise/dashboard/widgets/sla_percent.php:64 -msgid "12 Hours" -msgstr "" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:68 -#: ../../enterprise/dashboard/widgets/sla_percent.php:65 -msgid "24 Hours" -msgstr "" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:69 -#: ../../enterprise/dashboard/widgets/sla_percent.php:66 -msgid "48 Hours" -msgstr "" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:74 -#: ../../enterprise/dashboard/widgets/module_icon.php:89 -#: ../../enterprise/dashboard/widgets/module_status.php:86 -#: ../../enterprise/dashboard/widgets/module_value.php:77 -#: ../../enterprise/dashboard/widgets/sla_percent.php:74 -msgid "Text size of label in px" -msgstr "Text size of label in px" - -#: ../../enterprise/dashboard/widgets/url.php:23 -msgid "Show the URL content" -msgstr "Show the URL content" - -#: ../../enterprise/dashboard/widgets/url.php:26 -msgid "My URL" -msgstr "My URL" - -#: ../../enterprise/dashboard/widgets/url.php:49 -#: ../../enterprise/dashboard/widgets/post.php:36 -#: ../../enterprise/dashboard/widgets/tactical.php:63 -#: ../../enterprise/dashboard/widgets/tactical.php:71 -msgid "Please, configure this widget before use" -msgstr "Please configure this widget before usage" - -#: ../../enterprise/dashboard/widgets/groups_status.php:24 -msgid "Groups status" -msgstr "Groups status" - -#: ../../enterprise/dashboard/widgets/groups_status.php:26 -msgid "General and quick group status report" -msgstr "General and quick group status report" - -#: ../../enterprise/dashboard/widgets/groups_status.php:89 -#: ../../enterprise/dashboard/widgets/groups_status.php:161 -msgid "Total nº:" -msgstr "" - -#: ../../enterprise/dashboard/widgets/groups_status.php:219 -msgid "Not agents in this group" -msgstr "" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:27 -msgid "Map made by user" -msgstr "Map made by user" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:29 -msgid "Show a map made by user" -msgstr "Show a map made by user" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:32 -msgid "WARNING: " -msgstr "" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:32 -msgid "" -"If your visual console is bigger than widget size, it will not fit in the " -"widget, instead, both vertical and horizonal scroll bars will be drawn. If " -"you want to \"fit\" a visual console into a widget, create it with the real " -"size you want to be fitter inside the widget." -msgstr "" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:35 -msgid "Layout" -msgstr "Layout" - -#: ../../enterprise/dashboard/widgets/maps_status.php:25 -msgid "Maps status" -msgstr "Maps status" - -#: ../../enterprise/dashboard/widgets/maps_status.php:27 -msgid "General and quick visual maps report" -msgstr "General and quick visual maps report" - -#: ../../enterprise/dashboard/widgets/module_icon.php:28 -msgid "Module with icon" -msgstr "Module with icon" - -#: ../../enterprise/dashboard/widgets/module_icon.php:30 -msgid "Show a value of module and icon" -msgstr "Show a value of module and icon" - -#: ../../enterprise/dashboard/widgets/module_icon.php:86 -#: ../../enterprise/dashboard/widgets/module_table_value.php:71 -#: ../../enterprise/dashboard/widgets/module_value.php:74 -#: ../../enterprise/dashboard/widgets/sla_percent.php:71 -msgid "Text size of value in px" -msgstr "Text size of value in px" - -#: ../../enterprise/dashboard/widgets/module_icon.php:92 -#: ../../enterprise/dashboard/widgets/module_status.php:89 -msgid "Size of icon" -msgstr "Size of icon" - -#: ../../enterprise/dashboard/widgets/module_status.php:28 -msgid "Status of module" -msgstr "Status of module" - -#: ../../enterprise/dashboard/widgets/module_status.php:30 -msgid "Show status of a module" -msgstr "Show status of a module" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:28 -msgid "Show module value in a table" -msgstr "Show module value in a table" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:30 -msgid "Show a value of module in a table" -msgstr "Show a value of module in a table" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:74 -msgid "Separator of data" -msgstr "Separator of data" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:76 -msgid "Carriage Return" -msgstr "Carriage Return" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:77 -msgid "Vertical Bar" -msgstr "Vertical Bar" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:78 -msgid "Semicolon" -msgstr "Semicolon" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:79 -msgid "Colon" -msgstr "Colon" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:80 -msgid "Commas" -msgstr "Commas" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:81 -msgid "Blank" -msgstr "Blank" - -#: ../../enterprise/dashboard/widgets/module_value.php:28 -msgid "Show module value" -msgstr "Show module value" - -#: ../../enterprise/dashboard/widgets/module_value.php:30 -msgid "Show a value of module" -msgstr "Show a value of module" - -#: ../../enterprise/dashboard/widgets/monitor_health.php:21 -msgid "Global health" -msgstr "Global health" - -#: ../../enterprise/dashboard/widgets/monitor_health.php:23 -msgid "Show a list of global monitor health" -msgstr "Show a list of global monitor health" - -#: ../../enterprise/dashboard/widgets/network_map.php:30 -msgid "Show a map of the monitored network" -msgstr "Show a map of the monitored network." - -#: ../../enterprise/dashboard/widgets/network_map.php:42 -msgid "X offset" -msgstr "" - -#: ../../enterprise/dashboard/widgets/network_map.php:45 -msgid "Introduce x-axis data. Right=positive Left=negative" -msgstr "" - -#: ../../enterprise/dashboard/widgets/network_map.php:47 -msgid "Y offset" -msgstr "" - -#: ../../enterprise/dashboard/widgets/network_map.php:50 -msgid "Introduce Y-axis data. Top=positive Bottom=negative" -msgstr "" - -#: ../../enterprise/dashboard/widgets/network_map.php:53 -msgid "Zoom level" -msgstr "" - -#: ../../enterprise/dashboard/widgets/network_map.php:56 -msgid "" -"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" -msgstr "" - -#: ../../enterprise/dashboard/widgets/post.php:23 -msgid "Panel with a message" -msgstr "Panel with a message" - -#: ../../enterprise/dashboard/widgets/post.php:26 -msgid "My Post" -msgstr "My Post" - -#: ../../enterprise/dashboard/widgets/reports.php:29 -msgid "Show a report made by user" -msgstr "Show a report made by user" - -#: ../../enterprise/dashboard/widgets/service_map.php:22 -#: ../../enterprise/operation/services/services.service.php:92 -#: ../../enterprise/operation/services/services.service_map.php:102 -msgid "Service Map" -msgstr "Service Map" - -#: ../../enterprise/dashboard/widgets/service_map.php:24 -msgid "Show a service map" -msgstr "Show a service map" - -#: ../../enterprise/dashboard/widgets/service_map.php:57 -msgid "The user doesn't have permission to read agents" -msgstr "The user doesn't have permission to read agents" - -#: ../../enterprise/dashboard/widgets/service_map.php:62 -msgid "Missing id" -msgstr "Missing id" - -#: ../../enterprise/dashboard/widgets/single_graph.php:29 -msgid "Single graph" -msgstr "Single graph" - -#: ../../enterprise/dashboard/widgets/single_graph.php:31 -msgid "Show a graph of an agent module" -msgstr "Show a graph of an agent module" - -#: ../../enterprise/dashboard/widgets/sla_percent.php:29 -#: ../../enterprise/dashboard/widgets/sla_percent.php:31 -msgid "Show SLA percent" -msgstr "" - -#: ../../enterprise/dashboard/widgets/top_n.php:34 -msgid "Show a top n of agents modules." -msgstr "Show a top n of agents modules." - -#: ../../enterprise/dashboard/widgets/top_n.php:108 -msgid "" -"Please could you fill the widget data previous to filling the list items." -msgstr "" -"Please could you fill the widget data previous to filling the list items." - -#: ../../enterprise/dashboard/widgets/top_n.php:114 -#: ../../enterprise/dashboard/widgets/top_n.php:297 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:73 -msgid "avg" -msgstr "avg" - -#: ../../enterprise/dashboard/widgets/top_n.php:272 -msgid "Selection module one by one" -msgstr "Selection module one by one" - -#: ../../enterprise/dashboard/widgets/top_n.php:283 -msgid "Selection several modules" -msgstr "Selection several modules" - -#: ../../enterprise/dashboard/widgets/top_n.php:311 -msgid "Regex for to filter modules" -msgstr "Regex for to filter modules" - -#: ../../enterprise/dashboard/widgets/top_n.php:320 -#: ../../enterprise/dashboard/widgets/tree_view.php:73 -msgid "Filter modules" -msgstr "Filter modules" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:26 -msgid "Top N Events by agent." -msgstr "Top N Events by agent." - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:28 -msgid "Top N events by agent." -msgstr "Top N events by agent." - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:31 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:31 -msgid "Amount to show" -msgstr "Amount to show" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:39 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:39 -msgid "Legend Position" -msgstr "Legend Position" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:43 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:43 -msgid "No legend" -msgstr "No legend" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:63 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:64 -msgid "Please select one or more groups." -msgstr "Please select one or more groups." - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:124 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:129 -msgid "There is not data to show." -msgstr "There is not data to show." - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:26 -msgid "Top N Events by module." -msgstr "Top N Events by module." - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:28 -msgid "Top N events by module." -msgstr "Top N events by module." - -#: ../../enterprise/dashboard/widgets/tree_view.php:22 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1212 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1416 -msgid "Tree View" -msgstr "Tree View" - -#: ../../enterprise/dashboard/widgets/tree_view.php:24 -msgid "Show the tree view" -msgstr "Show the tree view" - -#: ../../enterprise/dashboard/widgets/tree_view.php:41 -msgid "Tab" -msgstr "Tab" - -#: ../../enterprise/dashboard/widgets/tree_view.php:47 -msgid "Open all nodes" -msgstr "Open all nodes" - -#: ../../enterprise/dashboard/widgets/tree_view.php:58 -msgid "Agents status" -msgstr "Agents status" - -#: ../../enterprise/dashboard/widgets/tree_view.php:60 -msgid "Filter agents" -msgstr "Filter agents" - -#: ../../enterprise/dashboard/widgets/tree_view.php:71 -msgid "Modules status" -msgstr "Modules status" - -#: ../../enterprise/dashboard/widgets/tree_view.php:82 -msgid "" -"The user doesn't have permission to read agents. Please contact with your " -"pandora administrator." -msgstr "" -"The user doesn't have permission to read agents. Please contact with your " -"pandora administrator." - -#: ../../enterprise/dashboard/widgets/tree_view.php:89 -msgid "This widget only working in desktop version." -msgstr "This widget will only work on desktop version." - -#: ../../enterprise/extensions/backup/main.php:63 -msgid "Pandora database backup utility" -msgstr "Pandora database backup utility" - -#: ../../enterprise/extensions/backup/main.php:70 -msgid "Filter backups" -msgstr "" - -#: ../../enterprise/extensions/backup/main.php:82 -msgid "Path backups" -msgstr "" - -#: ../../enterprise/extensions/backup/main.php:102 -#: ../../enterprise/extensions/cron/main.php:268 -#: ../../enterprise/extensions/cron/main.php:282 -msgid "Path" -msgstr "Path" - -#: ../../enterprise/extensions/backup/main.php:168 -msgid "Lost" -msgstr "Lost" - -#: ../../enterprise/extensions/backup/main.php:198 -msgid "Backups list" -msgstr "Backups list" - -#: ../../enterprise/extensions/backup/main.php:203 -msgid "Create backup" -msgstr "Create backup" - -#: ../../enterprise/extensions/backup/main.php:217 -msgid "Path to save backup" -msgstr "" - -#: ../../enterprise/extensions/backup.php:63 -msgid "Backup" -msgstr "Backup" - -#: ../../enterprise/extensions/cron/functions.php:17 -#: ../../enterprise/extensions/cron/functions.php:52 -#: ../../enterprise/extensions/cron/functions.php:73 -#: ../../enterprise/extensions/cron/functions.php:104 -#: ../../enterprise/extensions/cron/functions.php:134 -#: ../../enterprise/extensions/cron/functions.php:175 -msgid "Report to build" -msgstr "Report to build" - -#: ../../enterprise/extensions/cron/functions.php:23 -#: ../../enterprise/extensions/cron/functions.php:48 -msgid "Send to emails (separated by comma)" -msgstr "Send to e-mail addresses (separated by a comma)" - -#: ../../enterprise/extensions/cron/functions.php:27 -#: ../../enterprise/extensions/cron/functions.php:119 -msgid "Template to build" -msgstr "" - -#: ../../enterprise/extensions/cron/functions.php:46 -#: ../../enterprise/extensions/cron/main.php:249 -msgid "Report per agent" -msgstr "" - -#: ../../enterprise/extensions/cron/functions.php:58 -#: ../../enterprise/extensions/cron/functions.php:63 -#: ../../enterprise/extensions/cron/functions.php:79 -#: ../../enterprise/extensions/cron/functions.php:135 -#: ../../enterprise/extensions/cron/functions.php:176 -msgid "Save to disk into path" -msgstr "Save to disk in path" - -#: ../../enterprise/extensions/cron/functions.php:105 -#: ../../enterprise/extensions/cron/functions.php:120 -msgid "Send to email" -msgstr "Send to e-mail" - -#: ../../enterprise/extensions/cron/functions.php:106 -msgid "Send custom report by email" -msgstr "Send custom report by e-mail" - -#: ../../enterprise/extensions/cron/functions.php:121 -msgid "Send custom report (from template) by email" -msgstr "" - -#: ../../enterprise/extensions/cron/functions.php:136 -#: ../../enterprise/extensions/cron/functions.php:177 -msgid "Save custom report to disk" -msgstr "Save custom report to disk" - -#: ../../enterprise/extensions/cron/functions.php:149 -#: ../../enterprise/extensions/cron/functions.php:162 -msgid "Backup Pandora database" -msgstr "Backup Pandora database" - -#: ../../enterprise/extensions/cron/functions.php:192 -msgid "Not scheduled" -msgstr "Not scheduled" - -#: ../../enterprise/extensions/cron/functions.php:193 -#: ../../enterprise/extensions/vmware/functions.php:25 -msgid "Hourly" -msgstr "Hourly" - -#: ../../enterprise/extensions/cron/functions.php:197 -#: ../../enterprise/extensions/vmware/functions.php:29 -msgid "Yearly" -msgstr "Annually" - -#: ../../enterprise/extensions/cron/functions.php:446 -#: ../../enterprise/extensions/cron/functions.php:544 -msgid "This is the automatic generated report" -msgstr "This is the automatically generated report" - -#: ../../enterprise/extensions/cron/functions.php:449 -#: ../../enterprise/extensions/cron/functions.php:547 -msgid "Open the attached file to view it" -msgstr "Open the attached file to view it" - -#: ../../enterprise/extensions/cron/functions.php:455 -#: ../../enterprise/extensions/cron/functions.php:553 -msgid "Please do not answer or reply to this email" -msgstr "Please do not answer or reply to this e-mail" - -#: ../../enterprise/extensions/cron/main.php:39 -#: ../../enterprise/extensions/cron.php:117 -#: ../../enterprise/extensions/cron.php:123 -msgid "Cron jobs" -msgstr "Cron jobs" - -#: ../../enterprise/extensions/cron/main.php:45 -msgid "Add new job" -msgstr "Add new job" - -#: ../../enterprise/extensions/cron/main.php:83 -#: ../../enterprise/extensions/cron/main.php:142 -msgid "Path doesn't exists or is not writable" -msgstr "Path doesn't exist or is not writable." - -#: ../../enterprise/extensions/cron/main.php:117 -#: ../../enterprise/extensions/cron/main.php:135 -msgid "Edit job" -msgstr "Edit job" - -#: ../../enterprise/extensions/cron/main.php:161 -msgid "Cron extension is not running" -msgstr "Cron extension is not running" - -#: ../../enterprise/extensions/cron/main.php:162 -msgid "Cron extension has never run or it's not configured well" -msgstr "Cron extension has never run or it's not configured well." - -#: ../../enterprise/extensions/cron/main.php:164 -msgid "" -"This extension relies on a proper setup of cron, the time-based scheduling " -"service" -msgstr "" -"This extension relies on a proper setup of cron, the time-based scheduling " -"service." - -#: ../../enterprise/extensions/cron/main.php:166 -msgid "Please, add the following line to your crontab file" -msgstr "Please add the following line to your crontab file" - -#: ../../enterprise/extensions/cron/main.php:172 -msgid "Last execution" -msgstr "Last execution" - -#: ../../enterprise/extensions/cron/main.php:179 -msgid "Cron extension is running" -msgstr "Cron extension is running" - -#: ../../enterprise/extensions/cron/main.php:188 -msgid "Scheduled jobs" -msgstr "Scheduled jobs" - -#: ../../enterprise/extensions/cron/main.php:197 -#: ../../enterprise/extensions/cron/main.php:317 -msgid "Task" -msgstr "Task" - -#: ../../enterprise/extensions/cron/main.php:198 -#: ../../enterprise/extensions/cron/main.php:326 -#: ../../enterprise/extensions/vmware/main.php:275 -msgid "Scheduled" -msgstr "Scheduled" - -#: ../../enterprise/extensions/cron/main.php:199 -#: ../../enterprise/extensions/cron/main.php:329 -msgid "Next execution" -msgstr "" - -#: ../../enterprise/extensions/cron/main.php:200 -msgid "Last run" -msgstr "Last run" - -#: ../../enterprise/extensions/cron/main.php:209 -msgid "Force run" -msgstr "Force run" - -#: ../../enterprise/extensions/csv_import/main.php:40 -#, php-format -msgid "Created agent %s" -msgstr "Created agent %s" - -#: ../../enterprise/extensions/csv_import/main.php:41 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2036 -#, php-format -msgid "Could not create agent %s" -msgstr "Could not create agent %s" - -#: ../../enterprise/extensions/csv_import/main.php:46 -#: ../../enterprise/extensions/csv_import_group/main.php:46 -msgid "File processed" -msgstr "File processed" - -#: ../../enterprise/extensions/csv_import/main.php:56 -#: ../../enterprise/extensions/csv_import_group/main.php:56 -msgid "CSV format" -msgstr "CSV format" - -#: ../../enterprise/extensions/csv_import/main.php:57 -#: ../../enterprise/extensions/csv_import_group/main.php:57 -msgid "The CSV file must have the fields in the following order" -msgstr "The CSV file must have the fields in the following order" - -#: ../../enterprise/extensions/csv_import/main.php:72 -#: ../../enterprise/extensions/csv_import_group/main.php:72 -msgid "Upload file" -msgstr "Upload file" - -#: ../../enterprise/extensions/csv_import/main.php:79 -#: ../../enterprise/extensions/csv_import_group/main.php:75 -msgid "Separator" -msgstr "Separator" - -#: ../../enterprise/extensions/csv_import/main.php:83 -#: ../../enterprise/extensions/csv_import_group/main.php:79 -msgid "Upload CSV file" -msgstr "Upload CSV file" - -#: ../../enterprise/extensions/csv_import.php:27 -msgid "CSV import" -msgstr "CSV import" - -#: ../../enterprise/extensions/csv_import_group/main.php:40 -#, php-format -msgid "Created group %s" -msgstr "Created group %s" - -#: ../../enterprise/extensions/csv_import_group/main.php:41 -#, php-format -msgid "Could not create group %s" -msgstr "Could not create group %s" - -#: ../../enterprise/extensions/csv_import_group.php:27 -msgid "CSV import group" -msgstr "CSV import group" - -#: ../../enterprise/extensions/disabled/check_acls.php:16 -msgid "ACL users for this agent" -msgstr "ACL users for this agent" - -#: ../../enterprise/extensions/disabled/check_acls.php:100 -msgid "There are no defined users" -msgstr "There are no defined users" - -#: ../../enterprise/extensions/disabled/check_acls.php:188 -msgid "ACL module tags for the modules in this agent" -msgstr "ACL module tags for the modules in this agent" - -#: ../../enterprise/extensions/disabled/check_acls.php:198 -msgid "Only admin users can see this section." -msgstr "Only admin users can see this section." - -#: ../../enterprise/extensions/disabled/check_acls.php:202 -msgid "Check ACL" -msgstr "Check ACL" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:21 -msgid "Export to Excel" -msgstr "Export to Excel" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:59 -msgid "Assign next free IP" -msgstr "Assign next free IP" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:73 -msgid "Next available IP" -msgstr "Next available IP" - -#: ../../enterprise/extensions/ipam/ipam_action.php:79 -#: ../../enterprise/extensions/ipam/ipam_action.php:115 -msgid "Incorrect format in Subnet field" -msgstr "Wrong format in Subnet field" - -#: ../../enterprise/extensions/ipam/ipam_action.php:83 -#: ../../enterprise/extensions/ipam/ipam_action.php:120 -msgid "The location is not filled, please add a location." -msgstr "The location is not filled, please add a location." - -#: ../../enterprise/extensions/ipam/ipam_action.php:194 -msgid "Successfully updated." -msgstr "Successfully updated." - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:84 -msgid "There is not an available IP." -msgstr "There is not an available IP." - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:87 -msgid "Next available IP Address is:" -msgstr "Next available IP Address is:" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:110 -msgid "Reserve this IP now" -msgstr "Reserve this IP now" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:126 -msgid "Manage this IP now" -msgstr "Manage this IP now" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:157 -#: ../../enterprise/extensions/ipam/ipam_excel.php:116 -#: ../../enterprise/extensions/ipam/ipam_network.php:274 -#: ../../enterprise/extensions/ipam/ipam_network.php:275 -#: ../../enterprise/extensions/ipam/ipam_network.php:536 -msgid "Hostname" -msgstr "Hostname" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:167 -msgid "Operating system" -msgstr "Operating system" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:177 -msgid "This agent has other IPs" -msgstr "This agent has other IPs" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:186 -msgid "Generate events" -msgstr "Generate events" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:191 -#: ../../enterprise/extensions/ipam/ipam_massive.php:77 -#: ../../enterprise/extensions/ipam/ipam_network.php:231 -#: ../../enterprise/extensions/ipam/ipam_network.php:540 -msgid "Managed" -msgstr "Managed" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:201 -#: ../../enterprise/extensions/ipam/ipam_massive.php:78 -#: ../../enterprise/extensions/ipam/ipam_network.php:237 -#: ../../enterprise/extensions/ipam/ipam_network.php:306 -#: ../../enterprise/extensions/ipam/ipam_network.php:541 -msgid "Reserved" -msgstr "Reserved" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:226 -msgid "Edited" -msgstr "Edited" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:236 -msgid "Tracking" -msgstr "Tracking" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:252 -msgid "Ping" -msgstr "Ping" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:294 -msgid "Ping to host" -msgstr "Ping to host" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:43 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:44 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:52 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:53 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:54 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:55 -msgid "Example:" -msgstr "Example:" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:46 -msgid "Bit mask" -msgstr "Bit mask" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:46 -msgid "Net mask" -msgstr "Net mask" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:48 -msgid "Mask format" -msgstr "Mask format" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:50 -msgid "Mask" -msgstr "Mask" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:63 -msgid "Calculate" -msgstr "Calculate" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:70 -msgid "Address field is empty" -msgstr "Address field is empty" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:76 -msgid "Mask field is empty" -msgstr "Mask field is empty" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:94 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:109 -msgid "Incorrect address format" -msgstr "Incorrect address format" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:98 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:102 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:113 -msgid "Incorrect mask format" -msgstr "Incorrect mask format" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:141 -msgid "Network mask" -msgstr "Network mask" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:155 -msgid "Network wildcard" -msgstr "Network wildcard" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:160 -msgid "Network address" -msgstr "Network address" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:165 -msgid "Broadcast address" -msgstr "Broadcast address" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:170 -msgid "First valid IP" -msgstr "First valid IP" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:175 -msgid "Last valid IP" -msgstr "Last valid IP" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:181 -msgid "Hosts/Net" -msgstr "Hosts/Net" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:35 -msgid "Network not found" -msgstr "Network not found" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:69 -msgid "Format: IP/Mask" -msgstr "Format: IP/Mask" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:71 -msgid "Examples" -msgstr "Examples" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:89 -msgid "For example: Central Data Center" -msgstr "For example: Central Data Centre" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:93 -msgid "Scan interval" -msgstr "Scan interval" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:93 -msgid "0 for manually scan" -msgstr "0 for manually scan" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:98 -msgid "Operator users" -msgstr "Operator users" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:98 -msgid "" -"The list of users can manage the networks in the IPAM. Only the admin users " -"can manage networks and edit the networks." -msgstr "" -"The list of users can manage the networks in the IPAM. Only the admin users " -"can manage networks and edit the networks." - -#: ../../enterprise/extensions/ipam/ipam_excel.php:116 -#: ../../enterprise/extensions/ipam/ipam_network.php:225 -#: ../../enterprise/extensions/ipam/ipam_network.php:550 -msgid "Alive" -msgstr "Alive" - -#: ../../enterprise/extensions/ipam/ipam_list.php:133 -msgid "No networks found" -msgstr "No networks found" - -#: ../../enterprise/extensions/ipam/ipam_list.php:175 -msgid "IPs" -msgstr "IPs" - -#: ../../enterprise/extensions/ipam/ipam_list.php:230 -#: ../../enterprise/extensions/ipam.php:189 -msgid "Manage addresses" -msgstr "Manage addresses" - -#: ../../enterprise/extensions/ipam/ipam_list.php:233 -#: ../../enterprise/extensions/ipam.php:205 -msgid "Addresses view" -msgstr "Addresses view" - -#: ../../enterprise/extensions/ipam/ipam_list.php:239 -msgid "Edit network" -msgstr "Edit network" - -#: ../../enterprise/extensions/ipam/ipam_list.php:243 -msgid "Delete network" -msgstr "Delete network" - -#: ../../enterprise/extensions/ipam/ipam_massive.php:68 -msgid "Addresses" -msgstr "Addresses" - -#: ../../enterprise/extensions/ipam/ipam_network.php:104 -msgid "No addresses found on this network" -msgstr "No addresses found on this network" - -#: ../../enterprise/extensions/ipam/ipam_network.php:121 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:324 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:53 -msgid "Subnet" -msgstr "Subnet" - -#: ../../enterprise/extensions/ipam/ipam_network.php:219 -msgid "Total IPs" -msgstr "Total IPs" - -#: ../../enterprise/extensions/ipam/ipam_network.php:227 -#: ../../enterprise/extensions/ipam/ipam_network.php:553 -msgid "Not alive" -msgstr "Not alive" - -#: ../../enterprise/extensions/ipam/ipam_network.php:233 -msgid "Not managed" -msgstr "Unmanaged" - -#: ../../enterprise/extensions/ipam/ipam_network.php:239 -msgid "Not Reserved" -msgstr "Not Reserved" - -#: ../../enterprise/extensions/ipam/ipam_network.php:272 -msgid "DESC" -msgstr "DESC" - -#: ../../enterprise/extensions/ipam/ipam_network.php:273 -msgid "ASC" -msgstr "ASC" - -#: ../../enterprise/extensions/ipam/ipam_network.php:274 -msgid "A -> Z" -msgstr "A -> Z" - -#: ../../enterprise/extensions/ipam/ipam_network.php:275 -msgid "Z -> A" -msgstr "Z -> A" - -#: ../../enterprise/extensions/ipam/ipam_network.php:276 -#: ../../enterprise/extensions/ipam/ipam_network.php:277 -msgid "Last check" -msgstr "Last check" - -#: ../../enterprise/extensions/ipam/ipam_network.php:276 -msgid "Newer -> Older" -msgstr "Newer -> Older" - -#: ../../enterprise/extensions/ipam/ipam_network.php:277 -msgid "Older -> Newer" -msgstr "Older -> Newer" - -#: ../../enterprise/extensions/ipam/ipam_network.php:284 -msgid "Exact address match" -msgstr "Exact address match" - -#: ../../enterprise/extensions/ipam/ipam_network.php:288 -msgid "Big" -msgstr "Big" - -#: ../../enterprise/extensions/ipam/ipam_network.php:289 -msgid "Tiny" -msgstr "Tiny" - -#: ../../enterprise/extensions/ipam/ipam_network.php:290 -msgid "Icons style" -msgstr "Icons style" - -#: ../../enterprise/extensions/ipam/ipam_network.php:297 -msgid "Show not alive hosts" -msgstr "Show not alive hosts" - -#: ../../enterprise/extensions/ipam/ipam_network.php:300 -msgid "Show only managed addresses" -msgstr "Show only managed addresses" - -#: ../../enterprise/extensions/ipam/ipam_network.php:303 -msgid "Reserved addresses" -msgstr "Reserved addresses" - -#: ../../enterprise/extensions/ipam/ipam_network.php:307 -msgid "Unreserved" -msgstr "Unreserved" - -#: ../../enterprise/extensions/ipam/ipam_network.php:332 -msgid "Filter options" -msgstr "Filter options" - -#: ../../enterprise/extensions/ipam/ipam_network.php:472 -msgid "Edit address" -msgstr "Edit address" - -#: ../../enterprise/extensions/ipam/ipam_network.php:477 -msgid "Disabled address" -msgstr "Disabled address" - -#: ../../enterprise/extensions/ipam/ipam_network.php:477 -msgid "This address will not be updated by the server" -msgstr "This address will not be updated by the server" - -#: ../../enterprise/extensions/ipam/ipam_network.php:574 -#: ../../enterprise/extensions/ipam/ipam_network.php:609 -#: ../../enterprise/extensions/ipam/ipam_network.php:632 -msgid "Change to automatic mode" -msgstr "Change to automatic mode" - -#: ../../enterprise/extensions/ipam/ipam_network.php:575 -#: ../../enterprise/extensions/ipam/ipam_network.php:610 -#: ../../enterprise/extensions/ipam/ipam_network.php:633 -msgid "Change to manual mode" -msgstr "Change to manual mode" - -#: ../../enterprise/extensions/ipam/ipam_network.php:649 -msgid "Add comments" -msgstr "Add comments" - -#: ../../enterprise/extensions/ipam/ipam_network.php:666 -msgid "Update agent address" -msgstr "Update agent address" - -#: ../../enterprise/extensions/ipam/ipam_network.php:783 -msgid "Please, uncheck auto option to set manual agent." -msgstr "Please, uncheck auto option to set manual agent." - -#: ../../enterprise/extensions/ipam.php:168 -#: ../../enterprise/extensions/ipam.php:284 -msgid "Subnetworks calculator" -msgstr "Subnetworks calculator" - -#: ../../enterprise/extensions/ipam.php:240 -#: ../../enterprise/extensions/ipam.php:308 -#: ../../enterprise/extensions/ipam.php:330 -#: ../../enterprise/extensions/ipam.php:331 -msgid "IPAM" -msgstr "IPAM" - -#: ../../enterprise/extensions/resource_exportation/functions.php:19 -msgid "Export agents" -msgstr "" - -#: ../../enterprise/extensions/resource_registration/functions.php:37 -#, php-format -msgid "Error create '%s' policy, the name exist and there aren't free name." -msgstr "" -"Error create '%s' policy, the name exists and there aren't free names." - -#: ../../enterprise/extensions/resource_registration/functions.php:44 -#, php-format -msgid "" -"Warning create '%s' policy, the name exist, the policy have a name %s." -msgstr "" -"Warning on creating '%s' policy, the name exists and the policy has the name " -"%s." - -#: ../../enterprise/extensions/resource_registration/functions.php:51 -msgid "Error the policy haven't name." -msgstr "Error. The policy doesn't have a name." - -#: ../../enterprise/extensions/resource_registration/functions.php:65 -#, php-format -msgid "Success create '%s' policy." -msgstr "Success in creating '%s' policy." - -#: ../../enterprise/extensions/resource_registration/functions.php:66 -#, php-format -msgid "Error create '%s' policy." -msgstr "Error in creating '%s' policy." - -#: ../../enterprise/extensions/resource_registration/functions.php:104 -#, php-format -msgid "Error add '%s' agent. The agent does not exist in pandora" -msgstr "" - -#: ../../enterprise/extensions/resource_registration/functions.php:108 -#, php-format -msgid "Success add '%s' agent." -msgstr "Success in adding '%s' agent." - -#: ../../enterprise/extensions/resource_registration/functions.php:109 -#, php-format -msgid "Error add '%s' agent." -msgstr "Error in adding '%s' agent." - -#: ../../enterprise/extensions/resource_registration/functions.php:128 -msgid "The collection does not exist in pandora" -msgstr "" - -#: ../../enterprise/extensions/resource_registration/functions.php:132 -#, php-format -msgid "Success add '%s' collection." -msgstr "Success in adding '%s' collection." - -#: ../../enterprise/extensions/resource_registration/functions.php:133 -#, php-format -msgid "Error add '%s' collection." -msgstr "Error in adding '%s' collection." - -#: ../../enterprise/extensions/resource_registration/functions.php:149 -#, php-format -msgid "Success add '%s' agent plugin." -msgstr "Success add '%s' agent plugin." - -#: ../../enterprise/extensions/resource_registration/functions.php:150 -#, php-format -msgid "Error add '%s' agent plugin." -msgstr "Error add '%s' agent plugin." - -#: ../../enterprise/extensions/resource_registration/functions.php:161 -msgid "Error add the module, haven't type." -msgstr "Error on adding the module, it doesn't have a type." - -#: ../../enterprise/extensions/resource_registration/functions.php:235 -#: ../../enterprise/extensions/resource_registration/functions.php:265 -#: ../../enterprise/extensions/resource_registration/functions.php:322 -#: ../../enterprise/extensions/resource_registration/functions.php:368 -msgid "Error add the module, error in tag component." -msgstr "Error on adding the module, error in tag component." - -#: ../../enterprise/extensions/resource_registration/functions.php:409 -msgid "Error add the module plugin importation, plugin is not registered" -msgstr "Error add the module plugin importation, plugin is not registered" - -#: ../../enterprise/extensions/resource_registration/functions.php:420 -#, php-format -msgid "Success add '%s' module." -msgstr "Success in adding '%s' module." - -#: ../../enterprise/extensions/resource_registration/functions.php:421 -#, php-format -msgid "Error add '%s' module." -msgstr "Error on adding '%s' module." - -#: ../../enterprise/extensions/resource_registration/functions.php:431 -#, php-format -msgid "Error add the alert, the template '%s' don't exist." -msgstr "Error on adding the alert, the template '%s' doesn't exist." - -#: ../../enterprise/extensions/resource_registration/functions.php:439 -#, php-format -msgid "Error add the alert, the module '%s' don't exist." -msgstr "Error on adding the alert, the module '%s' doesn't exist." - -#: ../../enterprise/extensions/resource_registration/functions.php:452 -#, php-format -msgid "Success add '%s' alert." -msgstr "Success in adding '%s' alert." - -#: ../../enterprise/extensions/resource_registration/functions.php:453 -#, php-format -msgid "Error add '%s' alert." -msgstr "Error on adding '%s' alert." - -#: ../../enterprise/extensions/resource_registration/functions.php:469 -#, php-format -msgid "Error add the alert, the action '%s' don't exist." -msgstr "Error on adding the alert, the action '%s' doesn't exist." - -#: ../../enterprise/extensions/resource_registration/functions.php:481 -#, php-format -msgid "Success add '%s' action." -msgstr "Success in adding '%s' action." - -#: ../../enterprise/extensions/translate_string.php:165 -#: ../../enterprise/extensions/translate_string.php:326 -msgid "Translate string" -msgstr "Translate string" - -#: ../../enterprise/extensions/translate_string.php:271 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:151 -msgid "Please search for anything text." -msgstr "Please search for anything text." - -#: ../../enterprise/extensions/translate_string.php:280 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:161 -msgid "Original string" -msgstr "Original string" - -#: ../../enterprise/extensions/translate_string.php:281 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:162 -msgid "Translation in selected language" -msgstr "Translation in selected language" - -#: ../../enterprise/extensions/translate_string.php:282 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:163 -msgid "Customize translation" -msgstr "Customize translation" - -#: ../../enterprise/extensions/vmware/vmware_view.php:638 -#: ../../enterprise/extensions/vmware/vmware_view.php:1040 -msgid "Top 5 VMs CPU Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:645 -#: ../../enterprise/extensions/vmware/vmware_view.php:1047 -msgid "Top 5 VMs Memory Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:654 -#: ../../enterprise/extensions/vmware/vmware_view.php:1056 -msgid "Top 5 VMs Disk Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:661 -#: ../../enterprise/extensions/vmware/vmware_view.php:1063 -msgid "Top 5 VMs Network Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:718 -msgid "Host ESX" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:953 -msgid "CPU Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:963 -msgid "Memory Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:973 -msgid "Disk I/O Rate" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:983 -msgid "Network Usage" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1115 -msgid "ESX Detail" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1132 -msgid "ESX details" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1143 -msgid "VMware View" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1231 -msgid "" -"Some ESX Hosts are not up to date, please check vmware plugin configuration." -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1234 -msgid "VMWare plugin is working." -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1243 -msgid "View VMWare map" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1244 -msgid "View VMWare dashboard" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1245 -msgid "View ESX Host statistics from" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1253 -msgid "this link" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1253 -msgid "administration page" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1323 -msgid "Show Datastores" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1326 -msgid "Show ESX" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1329 -msgid "Show VM" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1347 -msgid "Zoom" -msgstr "Zoom" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1357 -msgid "View options" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1404 -msgid "VMware map" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:30 -msgid "WMware Plugin Settings" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:79 -msgid "VMWare configuration updated." -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:142 -msgid "VMWare scheduled execution disabled." -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:165 -msgid "There was an error updating the execution data of the plugin" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:168 -#: ../../enterprise/extensions/vmware/main.php:178 -msgid "VMWare scheduled execution updated." -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:174 -msgid "There was an error activating the execution of the plugin" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:194 -msgid "Config Path" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:201 -msgid "Plugin Path" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:226 -msgid "Config parameters" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:233 -msgid "V-Center IP" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:238 -msgid "Datacenter Name" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:265 -msgid "Plugin execution" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:266 -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" -msgstr "" - -#: ../../enterprise/extensions/vmware/main.php:298 -#: ../../enterprise/godmode/agentes/collections.php:269 -msgid "Apply changes" -msgstr "Apply changes" - -#: ../../enterprise/extensions/vmware/vmware_manager.php:160 -msgid "Power Status: " -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_manager.php:206 -msgid "Change Status" -msgstr "" - -#: ../../enterprise/extensions/vmware/functions.php:161 -#: ../../enterprise/extensions/vmware/functions.php:189 -msgid "The file does not exists" -msgstr "" - -#: ../../enterprise/extensions/vmware/functions.php:165 -msgid "The file is not readable by HTTP Server" -msgstr "" - -#: ../../enterprise/extensions/vmware/functions.php:166 -#: ../../enterprise/extensions/vmware/functions.php:171 -msgid "Please check that the web server has write rights on the file" -msgstr "" - -#: ../../enterprise/extensions/vmware/functions.php:170 -msgid "The file is not writable by HTTP Server" -msgstr "" - -#: ../../enterprise/extensions/vmware.php:46 -msgid "VMware" -msgstr "" - -#: ../../enterprise/godmode/admin_access_logs.php:42 -msgid "Show extended info" -msgstr "Show extended info" - -#: ../../enterprise/godmode/admin_access_logs.php:61 -msgid "" -"Maybe delete the extended data or the audit data is previous to table " -"tsession_extended." -msgstr "" -"Maybe delete the extended data or the audit data is previous to table " -"tsession_extended." - -#: ../../enterprise/godmode/admin_access_logs.php:71 -msgid "Security check is ok." -msgstr "Security check is ok." - -#: ../../enterprise/godmode/admin_access_logs.php:78 -msgid "Security check is fail." -msgstr "Security check failed" - -#: ../../enterprise/godmode/admin_access_logs.php:115 -msgid "Extended info:" -msgstr "Extended info:" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:107 -msgid "Error: The conf file of agent is not readble." -msgstr "Error: The conf file of agent is not readble." - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:112 -msgid "Error: The conf file of agent is not writable." -msgstr "Error: The conf file of agent is not writable." - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:150 -#: ../../enterprise/godmode/policies/policy_modules.php:326 -msgid "Add module" -msgstr "Add module" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:176 -msgid "No module was found" -msgstr "No module was found" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:204 -msgid "Delete remote conf agent files in Pandora" -msgstr "Delete remote conf agent files in Pandora" - -#: ../../enterprise/godmode/agentes/collection_manager.php:37 -#: ../../enterprise/operation/agentes/collection_view.php:47 -msgid "This agent have not a remote configuration, please set it." -msgstr "This agent has no remote configuration, please set it." - -#: ../../enterprise/godmode/agentes/collection_manager.php:76 -msgid "Succesful add the collection" -msgstr "Success in adding the collection." - -#: ../../enterprise/godmode/agentes/collection_manager.php:77 -msgid "Unsuccesful add the collection" -msgstr "Adding the collection was unsuccessful." - -#: ../../enterprise/godmode/agentes/collection_manager.php:91 -#: ../../enterprise/godmode/agentes/collections.php:128 -#: ../../enterprise/godmode/agentes/collections.php:143 -msgid "Successful create collection package." -msgstr "Successful in creating collection package." - -#: ../../enterprise/godmode/agentes/collection_manager.php:92 -#: ../../enterprise/godmode/agentes/collections.php:144 -msgid "Can not create collection package." -msgstr "Cannot create collection package." - -#: ../../enterprise/godmode/agentes/collection_manager.php:106 -#: ../../enterprise/godmode/agentes/collections.php:231 -#: ../../enterprise/godmode/policies/policy_collections.php:122 -#: ../../enterprise/godmode/policies/policy_collections.php:193 -msgid "Short Name" -msgstr "Short Name" - -#: ../../enterprise/godmode/agentes/collection_manager.php:121 -#: ../../enterprise/godmode/agentes/collection_manager.php:204 -#: ../../enterprise/operation/agentes/collection_view.php:91 -#: ../../enterprise/operation/agentes/policy_view.php:154 -msgid "Show files" -msgstr "Show files" - -#: ../../enterprise/godmode/agentes/collection_manager.php:138 -#: ../../enterprise/godmode/agentes/collection_manager.php:139 -#: ../../enterprise/godmode/agentes/collection_manager.php:223 -#: ../../enterprise/godmode/agentes/collection_manager.php:224 -#: ../../enterprise/godmode/agentes/collections.data.php:341 -#: ../../enterprise/godmode/agentes/collections.data.php:342 -msgid "Need to regenerate" -msgstr "Need to regenerate" - -#: ../../enterprise/godmode/agentes/collection_manager.php:144 -#: ../../enterprise/godmode/agentes/collection_manager.php:145 -#: ../../enterprise/godmode/agentes/collection_manager.php:229 -#: ../../enterprise/godmode/agentes/collection_manager.php:230 -#: ../../enterprise/godmode/agentes/collections.data.php:346 -#: ../../enterprise/godmode/agentes/collections.data.php:347 -#: ../../enterprise/godmode/agentes/collections.php:274 -#: ../../enterprise/godmode/agentes/collections.php:275 -#: ../../enterprise/operation/agentes/collection_view.php:106 -#: ../../enterprise/operation/agentes/collection_view.php:107 -msgid "The collection directory does not exist." -msgstr "The collection directory does not exist." - -#: ../../enterprise/godmode/agentes/collection_manager.php:164 -#: ../../enterprise/operation/agentes/collection_view.php:64 -#: ../../enterprise/operation/agentes/policy_view.php:132 -msgid "Dir" -msgstr "Dir" - -#: ../../enterprise/godmode/agentes/collections.agents.php:38 -msgid "Show Agent >" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.agents.php:113 -msgid "This collection has not been added to any agents" -msgstr "" - -#: ../../enterprise/godmode/agentes/collections.data.php:47 -#: ../../enterprise/godmode/agentes/collections.data.php:125 -#: ../../enterprise/godmode/agentes/collections.data.php:144 -#: ../../enterprise/godmode/agentes/collections.data.php:159 -#: ../../enterprise/godmode/agentes/collections.data.php:181 -#: ../../enterprise/godmode/agentes/collections.data.php:223 -msgid "Manager configuration > New" -msgstr "Manager configuration > New" - -#: ../../enterprise/godmode/agentes/collections.data.php:94 -#: ../../enterprise/godmode/agentes/collections.data.php:200 -#: ../../enterprise/godmode/agentes/collections.data.php:269 -#: ../../enterprise/godmode/agentes/collections.data.php:283 -#: ../../enterprise/godmode/agentes/collections.data.php:289 -#: ../../enterprise/godmode/agentes/collections.editor.php:55 -msgid "Manager configuration > Edit " -msgstr "Manager configuration > Edit " - -#: ../../enterprise/godmode/agentes/collections.data.php:132 -msgid "" -"Unable to create the collection. Another collection with the same short name." -msgstr "" -"Unable to create the collection. Another collection with the same short name." - -#: ../../enterprise/godmode/agentes/collections.data.php:150 -#: ../../enterprise/godmode/agentes/collections.data.php:165 -msgid "Unable to create the collection" -msgstr "Unable to create the collection" - -#: ../../enterprise/godmode/agentes/collections.data.php:150 -msgid "Invalid characters in short name" -msgstr "Invalid characters in short name" - -#: ../../enterprise/godmode/agentes/collections.data.php:165 -#: ../../enterprise/include/functions_local_components.php:138 -msgid "Empty name" -msgstr "Empty name" - -#: ../../enterprise/godmode/agentes/collections.data.php:187 -#: ../../enterprise/godmode/agentes/collections.data.php:231 -msgid "Unable to create the collection." -msgstr "Unable to create the collection." - -#: ../../enterprise/godmode/agentes/collections.data.php:208 -#: ../../enterprise/godmode/agentes/collections.data.php:295 -msgid "Correct create collection" -msgstr "Correct create collection" - -#: ../../enterprise/godmode/agentes/collections.data.php:273 -msgid "Unable to edit the collection, empty name." -msgstr "Unable to edit the collection, empty name." - -#: ../../enterprise/godmode/agentes/collections.data.php:286 -msgid "Unable to edit the collection." -msgstr "Unable to edit the collection." - -#: ../../enterprise/godmode/agentes/collections.data.php:308 -msgid "Error: The collection directory does not exist." -msgstr "Error: The collection directory does not exist." - -#: ../../enterprise/godmode/agentes/collections.data.php:325 -msgid "Recreate file" -msgstr "Create file again" - -#: ../../enterprise/godmode/agentes/collections.data.php:369 -msgid "Short name:" -msgstr "Short name:" - -#: ../../enterprise/godmode/agentes/collections.data.php:375 -msgid "" -"The collection's short name is the name of dir in attachment dir and the " -"package collection." -msgstr "" -"The collection's short name is the name of dir in attachment dir and the " -"package collection." - -#: ../../enterprise/godmode/agentes/collections.data.php:375 -msgid "Short name must contain only alphanumeric characters, - or _ ." -msgstr "Short name must contain only alphanumeric characters, - or _ ." - -#: ../../enterprise/godmode/agentes/collections.data.php:375 -msgid "Empty for default short name fc_X where X is the collection id." -msgstr "Empty for default short name fc_X where X is the collection id." - -#: ../../enterprise/godmode/agentes/collections.editor.php:63 -msgid "Files in " -msgstr "Files in " - -#: ../../enterprise/godmode/agentes/collections.editor.php:112 -#: ../../enterprise/godmode/agentes/collections.editor.php:173 -msgid "Back to file explorer" -msgstr "Back to file explorer" - -#: ../../enterprise/godmode/agentes/collections.editor.php:236 -msgid "Correct update file." -msgstr "Correct update file." - -#: ../../enterprise/godmode/agentes/collections.editor.php:237 -msgid "Incorrect update file." -msgstr "Incorrect update file." - -#: ../../enterprise/godmode/agentes/collections.editor.php:376 -msgid "Please, first save a new collection before to upload files." -msgstr "Please save a new collection first before uploading files." - -#: ../../enterprise/godmode/agentes/collections.php:48 -msgid "Success: recreate file" -msgstr "Success in recreating file" - -#: ../../enterprise/godmode/agentes/collections.php:51 -msgid "Error: recreate file " -msgstr "Error: recreate file " - -#: ../../enterprise/godmode/agentes/collections.php:64 -#: ../../enterprise/godmode/agentes/collections.php:86 -#: ../../enterprise/godmode/agentes/collections.php:157 -msgid "Collections Management" -msgstr "Collections Management" - -#: ../../enterprise/godmode/agentes/collections.php:120 -msgid "Manager collection" -msgstr "Manager collection" - -#: ../../enterprise/godmode/agentes/collections.php:164 -msgid "Error: The main directory of collections does not exist." -msgstr "Error: The main directory of collections does not exist." - -#: ../../enterprise/godmode/agentes/collections.php:254 -msgid "Are you sure to delete?" -msgstr "Are you sure you want to delete ?" - -#: ../../enterprise/godmode/agentes/collections.php:255 -msgid "Delete collection" -msgstr "Delete collection" - -#: ../../enterprise/godmode/agentes/collections.php:261 -msgid "Are you sure to re-apply?" -msgstr "Are you sure to re-apply?" - -#: ../../enterprise/godmode/agentes/collections.php:262 -msgid "Re-Apply changes" -msgstr "Reapply changes" - -#: ../../enterprise/godmode/agentes/collections.php:268 -msgid "Are you sure to apply?" -msgstr "Do you want to apply?" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:57 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:81 -msgid "Successfully added inventory module" -msgstr "Inventory module added successfully" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:60 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:85 -msgid "Error adding inventory module" -msgstr "Error adding inventory module" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:69 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:106 -msgid "Successfully deleted inventory module" -msgstr "Successfully deleted inventory module" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:72 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:110 -msgid "Error deleting inventory module" -msgstr "Error deleting inventory module" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:80 -msgid "Successfully forced inventory module" -msgstr "Successfully forced inventory module" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:83 -msgid "Error forcing inventory module" -msgstr "Error forcing inventory module" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:108 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:92 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:141 -msgid "Successfully updated inventory module" -msgstr "Successfully updated inventory module" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:111 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:96 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:145 -msgid "Error updating inventory module" -msgstr "Error updating inventory module" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:129 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:54 -msgid "Inventory module error" -msgstr "Inventory module error" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:172 -#: ../../enterprise/godmode/agentes/inventory_manager.php:235 -#: ../../enterprise/meta/advanced/synchronizing.user.php:532 -msgid "Target" -msgstr "Target" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:182 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:196 -msgid "7 days" -msgstr "7 days" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:195 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:207 -msgid "Update all" -msgstr "Update all" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:43 -msgid "Data Copy" -msgstr "Data Copy" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:52 -msgid "No selected agents to copy" -msgstr "No selected agents to copy" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:66 -msgid "No source agent selected" -msgstr "No source agent selected" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:107 -msgid "Making copy of configuration file for" -msgstr "Making copy of configuration file for" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:116 -msgid "Error copying md5 file " -msgstr "Error copying md5 file " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:116 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -msgid " md5 file" -msgstr " md5 file" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:125 -msgid "Copied " -msgstr "Copied " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:122 -msgid "Error copying " -msgstr "Error copying " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:122 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:125 -msgid " config file" -msgstr " config file" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:138 -msgid "Remote configuration management" -msgstr "Remote configuration management" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:143 -msgid "Source group" -msgstr "Source group" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:185 -msgid "To agent(s):" -msgstr "To agent(s):" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:210 -msgid "Replicate configuration" -msgstr "Replicate configuration" - -#: ../../enterprise/godmode/agentes/module_manager.php:16 -msgid "Create a new web Server module" -msgstr "Create a new webserver module" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:42 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:43 -msgid "The changes on this field are linked with the configuration data." -msgstr "The changes on this field are linked with the configuration data." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:48 -msgid "Using local component" -msgstr "Using local component" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:121 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:122 -msgid "Show configuration data" -msgstr "Show configuration data" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:132 -msgid "Hide configuration data" -msgstr "Hide configuration data" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:140 -msgid "Data configuration" -msgstr "Data configuration" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:146 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:82 -#: ../../enterprise/godmode/modules/configure_local_component.php:315 -#: ../../enterprise/meta/include/functions_wizard_meta.php:552 -msgid "Load basic" -msgstr "Load basic" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:146 -#: ../../enterprise/godmode/modules/configure_local_component.php:317 -msgid "Load a basic structure on data configuration" -msgstr "Load a basic structure on data configuration" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:151 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:86 -#: ../../enterprise/godmode/modules/configure_local_component.php:323 -#: ../../enterprise/include/functions_metaconsole.php:1330 -#: ../../enterprise/include/functions_metaconsole.php:1353 -#: ../../enterprise/include/functions_metaconsole.php:1376 -#: ../../enterprise/include/functions_metaconsole.php:1399 -#: ../../enterprise/include/functions_metaconsole.php:1422 -#: ../../enterprise/include/functions_metaconsole.php:1445 -#: ../../enterprise/meta/include/functions_wizard_meta.php:175 -#: ../../enterprise/meta/include/functions_wizard_meta.php:556 -msgid "Check" -msgstr "Check" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:151 -#: ../../enterprise/godmode/modules/configure_local_component.php:324 -msgid "Check the correct structure of the data configuration" -msgstr "Check the correct structure of the data configuration" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:162 -#: ../../enterprise/godmode/modules/configure_local_component.php:327 -msgid "First line must be \"module_begin\"" -msgstr "First line must be \"module_begin\"" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:163 -#: ../../enterprise/godmode/modules/configure_local_component.php:328 -msgid "Data configuration is empty" -msgstr "Data configuration is empty" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:164 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:168 -#: ../../enterprise/godmode/modules/configure_local_component.php:329 -#: ../../enterprise/godmode/modules/configure_local_component.php:333 -msgid "Last line must be \"module_end\"" -msgstr "Last line must be \"module_end\"" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:165 -#: ../../enterprise/godmode/modules/configure_local_component.php:330 -msgid "" -"Name is missed. Please add a line with \"module_name yourmodulename\" to " -"data configuration" -msgstr "" -"Name is missed. Please add a line with \"module_name yourmodulename\" to " -"data configuration" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 -#: ../../enterprise/godmode/modules/configure_local_component.php:331 -msgid "" -"Type is missed. Please add a line with \"module_type yourmoduletype\" to " -"data configuration" -msgstr "" -"Type is missed. Please add a line with \"module_type yourmoduletype\" to " -"data configuration" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:167 -#: ../../enterprise/godmode/modules/configure_local_component.php:332 -msgid "Type is wrong. Please set a correct type" -msgstr "Type is wrong. Please set a correct type" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:169 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:136 -#: ../../enterprise/godmode/modules/configure_local_component.php:334 -#: ../../enterprise/meta/include/functions_wizard_meta.php:569 -msgid "There is a line with a unknown token 'token_fail'." -msgstr "There is a line with a unknown token 'token_fail'." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 -#: ../../enterprise/godmode/modules/configure_local_component.php:335 -msgid "Error in the syntax, please check the data configuration." -msgstr "Error in the syntax, please check the data configuration." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171 -#: ../../enterprise/godmode/modules/configure_local_component.php:336 -msgid "Data configuration are built correctly" -msgstr "Data configuration are built correctly" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25 -msgid "Synthetic arithmetic" -msgstr "Synthetic arithmetic" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28 -msgid "Synthetic average" -msgstr "Synthetic average" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:107 -msgid "Fixed value" -msgstr "Fixed value" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:112 -msgid "Add module to operation as add" -msgstr "Add module to operation as add" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:113 -msgid "Add module to operations as deduct" -msgstr "Add module to operations as deduct" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 -msgid "Add module to operations as multiplicate " -msgstr "Add module to operations as multiplicate " - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:115 -msgid "Add module to operations as divide" -msgstr "Add module to operations as divide" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:116 -msgid "Remove selected modules" -msgstr "Remove selected modules" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 -msgid "Add module to average operation" -msgstr "Add module to average operation" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122 -msgid "Remove selected modules from operations stack" -msgstr "Remove selected modules from operations stack" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:137 -msgid "Move down selected modules" -msgstr "Move down selected modules" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:138 -msgid "Move up selected modules" -msgstr "Move up selected modules" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 -msgid "Select Service" -msgstr "Select Service" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:177 -msgid "Netflow filter" -msgstr "Netflow filter" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 -msgid "Select filter" -msgstr "Select filter" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:60 -#: ../../enterprise/include/functions_enterprise.php:295 -#: ../../enterprise/meta/include/functions_wizard_meta.php:493 -#: ../../enterprise/meta/include/functions_wizard_meta.php:544 -msgid "Web checks" -msgstr "Web Checks" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:84 -#: ../../enterprise/meta/include/functions_wizard_meta.php:554 -msgid "Load a basic structure on Web Checks" -msgstr "Load a basic structure on Web Checks" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:88 -#: ../../enterprise/meta/include/functions_wizard_meta.php:558 -msgid "Check the correct structure of the WebCheck" -msgstr "Check the correct structure of the WebCheck" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:94 -msgid "Requests" -msgstr "Requests" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:97 -msgid "Agent browser id" -msgstr "Agent browser id" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:104 -#: ../../enterprise/meta/include/functions_wizard_meta.php:950 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1455 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:111 -msgid "HTTP auth (login)" -msgstr "HTTP auth (login)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:115 -msgid "HTTP auth (pass)" -msgstr "HTTP auth (pass)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:122 -msgid "HTTP auth (server)" -msgstr "HTTP auth (server)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:126 -msgid "HTTP auth (realm)" -msgstr "HTTP auth (realm)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:132 -#: ../../enterprise/meta/include/functions_wizard_meta.php:565 -msgid "First line must be \"task_begin\"" -msgstr "First line must be \"task_begin\"" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:133 -#: ../../enterprise/meta/include/functions_wizard_meta.php:566 -msgid "Webchecks configuration is empty" -msgstr "Webchecks configuration is empty" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:134 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:135 -#: ../../enterprise/meta/include/functions_wizard_meta.php:567 -#: ../../enterprise/meta/include/functions_wizard_meta.php:568 -msgid "Last line must be \"task_end\"" -msgstr "Last line must be \"task_end\"" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:137 -msgid "There isn't get or post" -msgstr "There isn't get or post" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:138 -#: ../../enterprise/meta/include/functions_wizard_meta.php:570 -msgid "Web checks are built correctly" -msgstr "Web checks are built correctly" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:67 -msgid "Plug-in updated succesfully" -msgstr "" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:67 -msgid "Plug-in cannot be updated" -msgstr "" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:74 -msgid "Plug-in deleted succesfully" -msgstr "Plug-in deleted succesfully" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:74 -msgid "Plug-in cannot be deleted" -msgstr "Plug-in cannot be deleted" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:83 -#: ../../enterprise/godmode/policies/policy_plugins.php:55 -msgid "Plug-in added succesfully" -msgstr "Plug-in added succesfully" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:83 -#: ../../enterprise/godmode/policies/policy_plugins.php:56 -msgid "Plug-in cannot be added" -msgstr "Plug-in cannot be added" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:98 -msgid "Plug-in disabled succesfully" -msgstr "Plug-in disabled succesfully" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:98 -msgid "Plug-in cannot be disabled" -msgstr "Plug-in cannot be disabled" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:113 -msgid "Plug-in enabled succesfully" -msgstr "Plug-in enabled succesfully" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:113 -msgid "Plug-in cannot be enabled" -msgstr "Plug-in cannot be enabled" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:124 -#: ../../enterprise/godmode/policies/policy_plugins.php:66 -msgid "New plug-in" -msgstr "New plug-in" - -#: ../../enterprise/godmode/alerts/alert_events.php:45 -#: ../../enterprise/godmode/alerts/alert_events_list.php:55 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:70 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:49 -msgid "List event alerts" -msgstr "List event alerts" - -#: ../../enterprise/godmode/alerts/alert_events.php:50 -#: ../../enterprise/godmode/alerts/alert_events_list.php:59 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:75 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:54 -msgid "Builder event alert" -msgstr "Builder event alert" - -#: ../../enterprise/godmode/alerts/alert_events.php:58 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:79 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:58 -msgid "List event rules" -msgstr "List event rules" - -#: ../../enterprise/godmode/alerts/alert_events.php:71 -msgid "Configure event alert" -msgstr "Configure event alert" - -#: ../../enterprise/godmode/alerts/alert_events.php:347 -msgid "Could not be created, please fill alert name" -msgstr "Could not be created, please fill alert name." - -#: ../../enterprise/godmode/alerts/alert_events.php:463 -msgid "Rule evaluation mode" -msgstr "Rule evaluation mode" - -#: ../../enterprise/godmode/alerts/alert_events.php:467 -msgid "Group by" -msgstr "Group by" - -#: ../../enterprise/godmode/alerts/alert_events.php:523 -msgid "Please Read" -msgstr "Please read" - -#: ../../enterprise/godmode/alerts/alert_events.php:524 -msgid "" -"Since the alert can have multiple actions. You can edit them from the alert " -"list of events." -msgstr "" -"Since the alert can have multiple actions. You can edit them from the alert " -"list of events." - -#: ../../enterprise/godmode/alerts/alert_events_list.php:67 -#: ../../enterprise/godmode/alerts/alert_events_list.php:114 -#: ../../enterprise/godmode/alerts/alert_events_list.php:129 -#: ../../enterprise/godmode/alerts/alert_events_list.php:144 -#: ../../enterprise/godmode/menu.php:134 -#: ../../enterprise/meta/general/main_header.php:263 -msgid "Event alerts" -msgstr "Event alerts" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:328 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:357 -msgid "Error processing action" -msgstr "Error processing action" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:343 -msgid "Error validating alert(s)" -msgstr "Error validating alert(s)" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:421 -msgid "Ac." -msgstr "Ac." - -#: ../../enterprise/godmode/alerts/alert_events_list.php:426 -msgid "Val." -msgstr "Val." - -#: ../../enterprise/godmode/alerts/alert_events_list.php:486 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:440 -msgid "Move up" -msgstr "Move up" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:498 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:447 -msgid "Move down" -msgstr "Move down" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:536 -msgid "No associated actions" -msgstr "No associated actions" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:640 -msgid "View associated rules" -msgstr "View associated rules" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:657 -msgid "There are no defined events alerts" -msgstr "There are no defined events alerts" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:91 -msgid "Event rules" -msgstr "Event rules" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:203 -msgid "Error creating rule" -msgstr "Error creating rule" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:208 -msgid "Successfully created rule" -msgstr "Successfully created rule" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:255 -msgid "Error updating rule" -msgstr "Error updating rule" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:259 -msgid "Successfully updating rule" -msgstr "Successfully updating rule" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:269 -msgid "Error updating rule operators" -msgstr "Error updating rule operators" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:272 -msgid "Successfully update rule operators" -msgstr "Updating rule operators successful." - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:408 -msgid "(Agent)" -msgstr "(Agent)" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:411 -msgid "Operator" -msgstr "Operator" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:492 -msgid "Logic expression for these rules:" -msgstr "Logic expression for these rules:" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:500 -msgid "Update operators" -msgstr "Update operators" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:506 -msgid "There are no defined alert event rules" -msgstr "There are no defined alert event rules" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:69 -msgid "Configure event rule" -msgstr "Configure event rule" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:134 -msgid "User comment" -msgstr "User comment" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:134 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:137 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 -msgid "This field will be processed with regexp" -msgstr "This field will be processed with regexp" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:140 -msgid "Window" -msgstr "Window" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 -msgid "Success: create the alerts." -msgstr "Creating of the alerts successful." - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 -msgid "Failed: create the alerts for this modules, please check." -msgstr "Failure in creating the alerts for these modules, please check." - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:116 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:115 -msgid "Modules agents in policy" -msgstr "Module agents in policy" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 -msgid "Success: remove the alerts." -msgstr "Removal of the alerts successful." - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 -msgid "Failed: remove the alerts for this modules, please check." -msgstr "Failure in removing the alerts for these modules, please check." - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:166 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:37 +msgid "SNMP Trap generator" +msgstr "SNMP Trap generator" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +msgid "Empty parameters" +msgstr "Empty parameters" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:56 +msgid "Successfully generated" +msgstr "Successfully generated" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:57 +#, php-format +msgid "Could not be generated: %s" +msgstr "Could not be generated: %s" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:81 +msgid "SNMP Type" +msgstr "SNMP Type" + +#: ../../godmode/snmpconsole/snmp_trap_generator.php:89 +msgid "Generate trap" +msgstr "Generate trap" + +#: ../../godmode/snmpconsole/snmp_alert.php:78 +msgid "Update alert" +msgstr "Update alert" + +#: ../../godmode/snmpconsole/snmp_alert.php:82 +msgid "Create alert" +msgstr "Create alert" + +#: ../../godmode/snmpconsole/snmp_alert.php:86 +msgid "Alert overview" +msgstr "Alert overview" + +#: ../../godmode/snmpconsole/snmp_alert.php:243 +msgid "There was a problem creating the alert" +msgstr "There was a problem creating the alert" + +#: ../../godmode/snmpconsole/snmp_alert.php:314 +msgid "There was a problem updating the alert" +msgstr "There was a problem updating the alert" + +#: ../../godmode/snmpconsole/snmp_alert.php:536 +msgid "There was a problem duplicating the alert" +msgstr "There was a problem duplicating the alert" + +#: ../../godmode/snmpconsole/snmp_alert.php:540 +msgid "Successfully Duplicate" +msgstr "Duplicate successful" + +#: ../../godmode/snmpconsole/snmp_alert.php:556 +msgid "There was a problem deleting the alert" +msgstr "There was a problem deleting the alert" + +#: ../../godmode/snmpconsole/snmp_alert.php:585 +#, php-format +msgid "Successfully deleted alerts (%s / %s)" +msgstr "Successfully deleted alerts (%s / %s)" + +#: ../../godmode/snmpconsole/snmp_alert.php:589 +#, php-format +msgid "Unsuccessfully deleted alerts (%s / %s)" +msgstr "Unsuccessfully deleted alerts (%s / %s)" + +#: ../../godmode/snmpconsole/snmp_alert.php:643 +msgid "Custom Value/OID" +msgstr "Custom Value/OID" + +#: ../../godmode/snmpconsole/snmp_alert.php:669 +msgid "Single value" +msgstr "Single value" + +#: ../../godmode/snmpconsole/snmp_alert.php:676 +#: ../../godmode/snmpconsole/snmp_alert.php:686 +#: ../../godmode/snmpconsole/snmp_alert.php:696 +#: ../../godmode/snmpconsole/snmp_alert.php:708 +#: ../../godmode/snmpconsole/snmp_alert.php:720 +#: ../../godmode/snmpconsole/snmp_alert.php:732 +#: ../../godmode/snmpconsole/snmp_alert.php:744 +#: ../../godmode/snmpconsole/snmp_alert.php:754 +#: ../../godmode/snmpconsole/snmp_alert.php:764 +#: ../../godmode/snmpconsole/snmp_alert.php:774 +#: ../../godmode/snmpconsole/snmp_alert.php:784 +#: ../../godmode/snmpconsole/snmp_alert.php:793 +#: ../../godmode/snmpconsole/snmp_alert.php:802 +#: ../../godmode/snmpconsole/snmp_alert.php:811 +#: ../../godmode/snmpconsole/snmp_alert.php:820 +#: ../../godmode/snmpconsole/snmp_alert.php:829 +#: ../../godmode/snmpconsole/snmp_alert.php:838 +#: ../../godmode/snmpconsole/snmp_alert.php:846 +#: ../../godmode/snmpconsole/snmp_alert.php:854 +#: ../../godmode/snmpconsole/snmp_alert.php:862 +msgid "Variable bindings/Data" +msgstr "Variable bindings/Data" + +#: ../../godmode/snmpconsole/snmp_alert.php:911 +#: ../../godmode/alerts/configure_alert_template.php:553 +msgid "Min. number of alerts" +msgstr "Min. number of alerts" + +#: ../../godmode/snmpconsole/snmp_alert.php:914 +#: ../../godmode/alerts/configure_alert_template.php:560 +msgid "Max. number of alerts" +msgstr "Max. number of alerts" + +#: ../../godmode/snmpconsole/snmp_alert.php:919 +#: ../../godmode/alerts/alert_view.php:306 +#: ../../godmode/alerts/configure_alert_template.php:549 +#: ../../godmode/alerts/alert_templates.php:89 +msgid "Time threshold" +msgstr "Time threshold" + +#: ../../godmode/snmpconsole/snmp_alert.php:933 +msgid "Other value" +msgstr "Other value" + +#: ../../godmode/snmpconsole/snmp_alert.php:946 +#: ../../godmode/snmpconsole/snmp_alert.php:1151 +msgid "Alert action" +msgstr "Alert action" + +#: ../../godmode/snmpconsole/snmp_alert.php:1000 msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -"Single value, each Custom OIDs/Datas." +"Single value, each Variable bindings/Datas." msgstr "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -"Single value, each Custom OIDs/Datas." +"Single value, each Variable bindings/Datas." -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:182 -msgid "SNMP Alerts to be deleted" -msgstr "SNMP alerts to be deleted" +#: ../../godmode/snmpconsole/snmp_alert.php:1019 +msgid "Alert SNMP control filter" +msgstr "Alert SNMP control filter" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:212 -#: ../../enterprise/godmode/policies/policy_agents.php:268 -#: ../../enterprise/godmode/policies/policy_agents.php:276 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:162 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:444 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:361 -msgid "Filter agent" -msgstr "Filter agent" +#: ../../godmode/snmpconsole/snmp_alert.php:1112 +msgid "There are no SNMP alerts" +msgstr "There are no SNMP alerts" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:215 -msgid "Filter module" -msgstr "Filter Module" +#: ../../godmode/snmpconsole/snmp_alert.php:1160 +msgid "Custom Value/Enterprise String" +msgstr "Custom Value/Enterprise String" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:334 -msgid "Updated modules on database" -msgstr "Updated modules in the database" +#: ../../godmode/snmpconsole/snmp_alert.php:1165 +msgid "TF." +msgstr "TF." -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:336 -msgid "Agent configuration files updated" -msgstr "Agent configuration files updated." +#: ../../godmode/snmpconsole/snmp_alert.php:1226 +#: ../../godmode/alerts/alert_templates.php:338 +#: ../../godmode/modules/manage_network_components.php:613 +#: ../../godmode/agentes/module_manager.php:761 +msgid "Duplicate" +msgstr "Duplicate" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:354 -#: ../../enterprise/godmode/policies/policy_queue.php:378 -#: ../../enterprise/meta/advanced/policymanager.queue.php:260 -msgid "Finished" -msgstr "Finished" +#: ../../godmode/snmpconsole/snmp_alert.php:1234 +#: ../../godmode/alerts/alert_list.list.php:703 +#: ../../godmode/alerts/alert_list.list.php:707 +#: ../../godmode/alerts/alert_list.list.php:841 +msgid "Add action" +msgstr "Add action" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:62 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:62 -msgid "Successful update the tags" -msgstr "Successful update the tags" +#: ../../godmode/snmpconsole/snmp_alert.php:1256 +msgid "ID Alert SNMP" +msgstr "SNMP Alert ID" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:63 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:63 -msgid "Unsuccessful update the tags" -msgstr "Unsuccessful update the tags" +#: ../../godmode/snmpconsole/snmp_alert.php:1487 +msgid "Add action " +msgstr "Add Action " -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:102 -msgid "Tags unused" -msgstr "Tags unused" +#: ../../godmode/snmpconsole/snmp_filters.php:38 +#: ../../godmode/events/event_filter.php:175 +#: ../../godmode/netflow/nf_edit_form.php:182 +#: ../../godmode/netflow/nf_edit.php:167 +msgid "Create filter" +msgstr "Create new filter" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:118 -msgid "Tags used" -msgstr "Tags used" +#: ../../godmode/snmpconsole/snmp_filters.php:42 +msgid "Filter overview" +msgstr "Filter overview" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:186 +#: ../../godmode/snmpconsole/snmp_filters.php:51 +msgid "There was a problem updating the filter" +msgstr "There was a problem updating the filter" + +#: ../../godmode/snmpconsole/snmp_filters.php:63 +msgid "There was a problem creating the filter" +msgstr "There was a problem creating the filter" + +#: ../../godmode/snmpconsole/snmp_filters.php:73 +msgid "There was a problem deleting the filter" +msgstr "There was a problem deleting the filter" + +#: ../../godmode/snmpconsole/snmp_filters.php:98 +msgid "" +"This field contains a substring, could be part of a IP address, a numeric " +"OID, or a plain substring" +msgstr "" +"This field contains a substring which could be part of an IP address, a " +"numeric OID, or a plain substring." + +#: ../../godmode/alerts/configure_alert_special_days.php:55 +msgid "Configure special day" +msgstr "Configure special day" + +#: ../../godmode/alerts/configure_alert_special_days.php:79 +#: ../../godmode/alerts/alert_special_days.php:235 +msgid "Same day of the week" +msgstr "Same day of the week" + +#: ../../godmode/alerts/alert_special_days.php:44 ../../godmode/menu.php:164 +#: ../../godmode/menu.php:165 +msgid "Special days list" +msgstr "List of special days" + +#: ../../godmode/alerts/alert_special_days.php:86 +msgid "Skipped dates: " +msgstr "Skipped dates: " + +#: ../../godmode/alerts/alert_special_days.php:106 +msgid "Success to upload iCalendar" +msgstr "Success to upload iCalendar" + +#: ../../godmode/alerts/alert_special_days.php:106 +msgid "Fail to upload iCalendar" +msgstr "Fail to upload iCalendar" + +#: ../../godmode/alerts/alert_special_days.php:232 +msgid "iCalendar(.ics) file" +msgstr "iCalendar(.ics) file" + +#: ../../godmode/alerts/alert_special_days.php:254 +msgid "Overwrite" +msgstr "Overwrite" + +#: ../../godmode/alerts/alert_special_days.php:255 +msgid "Check this box, if you want to overwrite existing same days." +msgstr "Check this box, if you want to overwrite existing same days." + +#: ../../godmode/alerts/alert_special_days.php:273 +msgid "Display range: " +msgstr "Display range: " + +#: ../../godmode/alerts/alert_special_days.php:347 +msgid "January" +msgstr "January" + +#: ../../godmode/alerts/alert_special_days.php:350 +msgid "February" +msgstr "February" + +#: ../../godmode/alerts/alert_special_days.php:353 +msgid "March" +msgstr "March" + +#: ../../godmode/alerts/alert_special_days.php:356 +msgid "April" +msgstr "April" + +#: ../../godmode/alerts/alert_special_days.php:359 +msgid "May" +msgstr "May" + +#: ../../godmode/alerts/alert_special_days.php:362 +msgid "June" +msgstr "June" + +#: ../../godmode/alerts/alert_special_days.php:365 +msgid "July" +msgstr "July" + +#: ../../godmode/alerts/alert_special_days.php:368 +msgid "August" +msgstr "August" + +#: ../../godmode/alerts/alert_special_days.php:371 +msgid "September" +msgstr "September" + +#: ../../godmode/alerts/alert_special_days.php:374 +msgid "October" +msgstr "October" + +#: ../../godmode/alerts/alert_special_days.php:377 +msgid "November" +msgstr "November" + +#: ../../godmode/alerts/alert_special_days.php:380 +msgid "December" +msgstr "December" + +#: ../../godmode/alerts/alert_special_days.php:422 +msgid "Same as " +msgstr "Same as " + +#: ../../godmode/alerts/alert_view.php:61 +#: ../../godmode/alerts/alert_view.php:62 +#: ../../godmode/alerts/alert_view.php:63 +#: ../../godmode/alerts/alert_list.php:313 +msgid "List alerts" +msgstr "List alerts" + +#: ../../godmode/alerts/alert_view.php:170 +#: ../../godmode/alerts/configure_alert_template.php:850 +msgid "The alert would fire when the value is below " +msgstr "" +"The alert is triggered when the value is below " + +#: ../../godmode/alerts/alert_view.php:174 +#: ../../godmode/alerts/configure_alert_template.php:851 +msgid "The alert would fire when the value is above " +msgstr "" +"The alert is triggered when the value is over " + +#: ../../godmode/alerts/alert_view.php:179 +#: ../../godmode/alerts/configure_alert_template.php:854 +msgid "The alert would fire when the module value changes" +msgstr "The alert is triggered when the module's value changes" + +#: ../../godmode/alerts/alert_view.php:182 +#: ../../godmode/alerts/configure_alert_template.php:855 +msgid "The alert would fire when the module value does not change" +msgstr "The alert is triggered when the module's value remains the same" + +#: ../../godmode/alerts/alert_view.php:192 +#: ../../godmode/alerts/configure_alert_template.php:856 +msgid "The alert would fire when the module is in unknown status" +msgstr "The alert is triggered when the module is in unknown status" + +#: ../../godmode/alerts/alert_view.php:298 +#: ../../godmode/alerts/configure_alert_template.php:536 +msgid "Use special days list" +msgstr "Use special days list" + +#: ../../godmode/alerts/alert_view.php:310 +msgid "Number of alerts" +msgstr "Number of alerts" + +#: ../../godmode/alerts/alert_view.php:325 +msgid "Firing conditions" +msgstr "Firing conditions" + +#: ../../godmode/alerts/alert_view.php:348 +#: ../../godmode/alerts/alert_view.php:370 +msgid "Every time that the alert is fired" +msgstr "Every time that the alert is fired" + +#: ../../godmode/alerts/alert_view.php:356 +#: ../../godmode/alerts/alert_list.list.php:505 +msgid "" +"The default actions will be executed every time that the alert is fired and " +"no other action is executed" +msgstr "" +"Default actions will run every time an alert is fired and no other action is " +"executed." + +#: ../../godmode/alerts/alert_view.php:414 +msgid "" +"Select the desired action and mode to see the Firing/Recovery fields for " +"this action" +msgstr "" +"Select the desired action and mode to view the Firing/Recovery fields for " +"this action" + +#: ../../godmode/alerts/alert_view.php:417 +msgid "Select the action" +msgstr "Choose an action" + +#: ../../godmode/alerts/alert_view.php:420 +#: ../../godmode/alerts/configure_alert_action.php:148 +msgid "Firing" +msgstr "Firing" + +#: ../../godmode/alerts/alert_view.php:421 +msgid "Recovering" +msgstr "Recovering" + +#: ../../godmode/alerts/alert_view.php:423 +#: ../../godmode/massive/massive_edit_modules.php:545 +#: ../../godmode/servers/manage_recontask_form.php:237 +#: ../../godmode/servers/manage_recontask.php:291 +msgid "Mode" +msgstr "Mode" + +#: ../../godmode/alerts/alert_view.php:438 +#: ../../godmode/alerts/alert_view.php:532 +#: ../../godmode/alerts/configure_alert_template.php:670 +msgid "Firing fields" +msgstr "Triggering fields" + +#: ../../godmode/alerts/alert_view.php:439 +msgid "" +"Fields passed to the command executed by this action when the alert is fired" +msgstr "" +"When the alert is triggered, action definining fields will be passed to the " +"command." + +#: ../../godmode/alerts/alert_view.php:442 +#: ../../godmode/alerts/alert_view.php:531 +msgid "Fields configured on the command associated to the action" +msgstr "Fields configured on the command associated to the action" + +#: ../../godmode/alerts/alert_view.php:443 +msgid "Template fields" +msgstr "Template fields" + +#: ../../godmode/alerts/alert_view.php:444 +msgid "Triggering fields configured in template" +msgstr "Triggering fields configured in template" + +#: ../../godmode/alerts/alert_view.php:445 +msgid "Action fields" +msgstr "Action fields" + +#: ../../godmode/alerts/alert_view.php:446 +msgid "Triggering fields configured in action" +msgstr "Triggering fields configured in action" + +#: ../../godmode/alerts/alert_view.php:448 +msgid "Executed on firing" +msgstr "Executed upon triggering" + +#: ../../godmode/alerts/alert_view.php:449 +#: ../../godmode/alerts/alert_view.php:532 +msgid "Fields used on execution when the alert is fired" +msgstr "Fields used on execution when the alert is fired" + +#: ../../godmode/alerts/alert_view.php:471 +#: ../../godmode/alerts/alert_view.php:548 +#: ../../godmode/alerts/alert_commands.php:105 +#: ../../godmode/alerts/alert_commands.php:109 +#: ../../godmode/alerts/alert_commands.php:127 +#: ../../godmode/alerts/alert_commands.php:135 +#: ../../godmode/alerts/configure_alert_template.php:684 #, php-format -msgid "Successfully updated alerts (%s / %s)" -msgstr "Successfully updated alerts (%s / %s)" +msgid "Field %s" +msgstr "Field %s" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:190 +#: ../../godmode/alerts/alert_view.php:508 +#: ../../godmode/alerts/alert_view.php:595 +#: ../../godmode/alerts/configure_alert_action.php:153 +#: ../../godmode/servers/plugin.php:381 +msgid "Command preview" +msgstr "Command preview" + +#: ../../godmode/alerts/alert_view.php:516 +msgid "The alert recovering is disabled on this template." +msgstr "Alert recovery is disabled for this template" + +#: ../../godmode/alerts/alert_view.php:529 +msgid "Recovering fields" +msgstr "Recovery fields" + +#: ../../godmode/alerts/alert_view.php:529 +msgid "" +"Fields passed to the command executed by this action when the alert is " +"recovered" +msgstr "" +"Fields passed to the command executed by this action when the alert is " +"recovered" + +#: ../../godmode/alerts/alert_view.php:533 +msgid "Template recovery fields" +msgstr "Template recovery fields" + +#: ../../godmode/alerts/alert_view.php:533 +msgid "Recovery fields configured in alert template" +msgstr "Recovery fields configured on alert templates" + +#: ../../godmode/alerts/alert_view.php:534 +msgid "Action recovery fields" +msgstr "Action recovery fields" + +#: ../../godmode/alerts/alert_view.php:534 +msgid "Recovery fields configured in alert action" +msgstr "Recovery fields configured on alert action" + +#: ../../godmode/alerts/alert_view.php:535 +msgid "Executed on recovery" +msgstr "Executed upon recovery" + +#: ../../godmode/alerts/alert_view.php:535 +msgid "Fields used on execution when the alert is recovered" +msgstr "Fields used upon execution when the alert is recovered" + +#: ../../godmode/alerts/alert_actions.php:66 +#: ../../godmode/alerts/alert_actions.php:92 +#: ../../godmode/alerts/alert_actions.php:110 +#: ../../godmode/alerts/alert_actions.php:127 +#: ../../godmode/alerts/alert_actions.php:207 +#: ../../godmode/alerts/alert_actions.php:218 +#: ../../godmode/alerts/alert_actions.php:287 +#: ../../godmode/alerts/alert_actions.php:306 +#: ../../godmode/alerts/alert_actions.php:319 +msgid "Alert actions" +msgstr "Alert actions" + +#: ../../godmode/alerts/alert_actions.php:141 +msgid "Could not be copied" +msgstr "Could not be copied" + +#: ../../godmode/alerts/alert_actions.php:398 +msgid "No alert actions configured" +msgstr "No alert actions established" + +#: ../../godmode/alerts/alert_commands.php:149 +#: ../../godmode/alerts/alert_commands.php:159 +#: ../../godmode/alerts/configure_alert_template.php:689 +#: ../../godmode/alerts/configure_alert_template.php:703 +#: ../../godmode/alerts/configure_alert_template.php:775 +#: ../../godmode/users/configure_user.php:532 +#: ../../godmode/modules/manage_network_components_form_common.php:59 +msgid "Basic" +msgstr "Basic" + +#: ../../godmode/alerts/alert_commands.php:249 +msgid "Alert commands" +msgstr "Alert commands" + +#: ../../godmode/alerts/alert_commands.php:372 +msgid "No alert commands configured" +msgstr "No alert commands configured" + +#: ../../godmode/alerts/configure_alert_command.php:42 +msgid "Configure alert command" +msgstr "Configure alert command" + +#: ../../godmode/alerts/configure_alert_command.php:127 +msgid "Update Command" +msgstr "Update Command" + +#: ../../godmode/alerts/configure_alert_command.php:130 +#: ../../godmode/alerts/configure_alert_action.php:136 +msgid "Create Command" +msgstr "Create Command" + +#: ../../godmode/alerts/configure_alert_command.php:150 +#: ../../godmode/alerts/configure_alert_action.php:128 +#: ../../godmode/events/event_responses.editor.php:114 +#: ../../godmode/events/event_responses.editor.php:121 +#: ../../godmode/events/event_responses.editor.php:124 +#: ../../godmode/massive/massive_edit_plugins.php:437 +#: ../../godmode/servers/recon_script.php:370 +#: ../../godmode/servers/plugin.php:388 ../../godmode/servers/plugin.php:394 +#: ../../godmode/servers/plugin.php:737 +msgid "Command" +msgstr "Command" + +#: ../../godmode/alerts/configure_alert_command.php:160 #, php-format -msgid "Unsuccessfully updated alerts (%s / %s)" -msgstr "Updating of alerts unsuccessful (%s / %s)." +msgid "Field %s description" +msgstr "%s field description" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 -msgid "SNMP Alerts to be edit" -msgstr "SNMP Alerts to be edited" - -#: ../../enterprise/godmode/massive/massive_operations.php:27 -#: ../../enterprise/godmode/menu.php:47 -msgid "Satellite operations" -msgstr "Satellite Operations" - -#: ../../enterprise/godmode/massive/massive_operations.php:47 -#: ../../enterprise/godmode/menu.php:35 -msgid "SNMP operations" -msgstr "SNMP operations" - -#: ../../enterprise/godmode/massive/massive_operations.php:67 -#: ../../enterprise/godmode/menu.php:24 -msgid "Policies operations" -msgstr "Policies operations" - -#: ../../enterprise/godmode/massive/massive_operations.php:78 -msgid "Bulk alerts policy add" -msgstr "Bulk alerts policy add" - -#: ../../enterprise/godmode/massive/massive_operations.php:79 -msgid "Bulk alerts policy delete" -msgstr "Bulk alerts policy delete" - -#: ../../enterprise/godmode/massive/massive_operations.php:80 -msgid "Bulk tags module policy edit" -msgstr "Bulk tags module policy edit" - -#: ../../enterprise/godmode/massive/massive_operations.php:81 -msgid "Bulk modules policy tags edit" -msgstr "Bulk modules policy tags edit" - -#: ../../enterprise/godmode/massive/massive_operations.php:89 -msgid "Bulk alert SNMP delete" -msgstr "Bulk alert SNMP delete" - -#: ../../enterprise/godmode/massive/massive_operations.php:90 -msgid "Bulk alert SNMP edit" -msgstr "Bulk alert SNMP edit" - -#: ../../enterprise/godmode/massive/massive_operations.php:98 -msgid "Bulk Satellite modules edit" -msgstr "Bulk Satellite modules edit" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:100 -msgid "Modules unused" -msgstr "Modules unused" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:116 -msgid "Modules used" -msgstr "Modules used" - -#: ../../enterprise/godmode/menu.php:16 -msgid "Manage Satellite Server" -msgstr "" - -#: ../../enterprise/godmode/menu.php:58 ../../enterprise/godmode/menu.php:149 -msgid "Duplicate config" -msgstr "Duplicate config" - -#: ../../enterprise/godmode/menu.php:66 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:27 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:28 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:47 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 -#: ../../enterprise/include/functions_policies.php:3251 -msgid "Inventory modules" -msgstr "Inventory modules" - -#: ../../enterprise/godmode/menu.php:75 -#: ../../enterprise/meta/include/functions_components_meta.php:52 -#: ../../enterprise/meta/include/functions_components_meta.php:69 -msgid "Local components" -msgstr "Local components" - -#: ../../enterprise/godmode/menu.php:83 -msgid "Manage policies" -msgstr "Manage policies" - -#: ../../enterprise/godmode/menu.php:109 -msgid "Enterprise ACL Setup" -msgstr "Enterprise ACL Setup" - -#: ../../enterprise/godmode/menu.php:116 -msgid "Skins" -msgstr "Skins" - -#: ../../enterprise/godmode/menu.php:125 -#: ../../enterprise/godmode/servers/manage_export.php:41 -#: ../../enterprise/godmode/servers/manage_export_form.php:56 -msgid "Export targets" -msgstr "Export targets" - -#: ../../enterprise/godmode/menu.php:143 -msgid "Log Collector" -msgstr "Log Collector" - -#: ../../enterprise/godmode/menu.php:156 -msgid "Password policy" -msgstr "Password policy" - -#: ../../enterprise/godmode/modules/configure_local_component.php:135 -msgid "Update Local Component" -msgstr "Update Local Component" - -#: ../../enterprise/godmode/modules/configure_local_component.php:138 -msgid "Create Local Component" -msgstr "Create Local Component" - -#: ../../enterprise/godmode/modules/configure_local_component.php:176 -msgid "Throw unknown events" -msgstr "Discard unknown events" - -#: ../../enterprise/godmode/modules/configure_local_component.php:410 -msgid "Macros" -msgstr "Macros" - -#: ../../enterprise/godmode/modules/local_components.php:89 -msgid "Local component management" -msgstr "Local component management" - -#: ../../enterprise/godmode/modules/local_components.php:441 -msgid "Search by name, description or data, list matches." -msgstr "Search by name, description or data, list matches." - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:67 -msgid "Successfully created inventory module" -msgstr "Inventory module successfully created." - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:71 -msgid "Error creating inventory module" -msgstr "Error in creating inventory module." - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:157 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:86 -msgid "Interpreter" -msgstr "Interpreter" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:200 -msgid "No inventory modules defined" -msgstr "No inventory modules defined" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217 -msgid "Local module" -msgstr "Local Module" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:220 -msgid "Remote/Local" -msgstr "Remote / Local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:88 -msgid "Left blank for the LOCAL inventory modules" -msgstr "Left blank for the LOCAL inventory modules" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:90 -msgid "Block Mode" -msgstr "Block Mode" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:94 -msgid "separate fields with " -msgstr "separate fields with " - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:98 -msgid "" -"Here is placed the script for the REMOTE inventory modules Local inventory " -"modules don't use this field" -msgstr "" -"Here is placed the script for the REMOTE inventory modules Local inventory " -"modules don't use this field" - -#: ../../enterprise/godmode/policies/configure_policy.php:43 -msgid "Add policy" -msgstr "Add policy" - -#: ../../enterprise/godmode/policies/policies.php:114 -msgid "Policy name already exists" -msgstr "Policy name already exists" - -#: ../../enterprise/godmode/policies/policies.php:170 -msgid "Policies Management" -msgstr "Policies Management" - -#: ../../enterprise/godmode/policies/policies.php:186 -msgid "All policy agents added to delete queue" -msgstr "All policy agents added to delete queue." - -#: ../../enterprise/godmode/policies/policies.php:187 -msgid "Policy agents cannot be added to the delete queue" -msgstr "Policy agents cannot be added to the delete queue." - -#: ../../enterprise/godmode/policies/policies.php:237 -msgid "a" -msgstr "a" - -#: ../../enterprise/godmode/policies/policies.php:360 -msgid "Policy updated" -msgstr "Policy updated." - -#: ../../enterprise/godmode/policies/policies.php:364 -msgid "Pending update policy only database" -msgstr "Pending update policy only database" - -#: ../../enterprise/godmode/policies/policies.php:368 -msgid "Pending update policy" -msgstr "Pending update policy" - -#: ../../enterprise/godmode/policies/policies.php:381 -#: ../../enterprise/godmode/policies/policy_linking.php:122 -#: ../../enterprise/include/functions_policies.php:3280 -msgid "Linking" -msgstr "Linking" - -#: ../../enterprise/godmode/policies/policies.php:393 -msgid "Agent Wizard" -msgstr "" - -#: ../../enterprise/godmode/policies/policies.php:401 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:37 -#: ../../enterprise/include/functions_policies.php:3270 -msgid "External alerts" -msgstr "External alerts" - -#: ../../enterprise/godmode/policies/policies.php:405 -#: ../../enterprise/godmode/policies/policy.php:46 -#: ../../enterprise/include/functions_policies.php:3298 -msgid "Queue" -msgstr "Queue" - -#: ../../enterprise/godmode/policies/policies.php:449 -msgid "A policy with agents cannot be deleted. Purge it first" -msgstr "A policy with agents cannot be deleted. Please purge it first." - -#: ../../enterprise/godmode/policies/policies.php:455 -msgid "Deleting all policy agents" -msgstr "Deleting all policy agents" - -#: ../../enterprise/godmode/policies/policies.php:458 -msgid "All the policy agents will be deleted" -msgstr "All the policy agents will be deleted." - -#: ../../enterprise/godmode/policies/policies.php:462 -msgid "Delete all agents" -msgstr "Delete all agents" - -#: ../../enterprise/godmode/policies/policy.php:114 -#: ../../enterprise/godmode/policies/policy.php:137 -#: ../../enterprise/meta/advanced/policymanager.apply.php:142 -#: ../../enterprise/meta/advanced/policymanager.apply.php:146 -msgid "Operation successfully added to the queue" -msgstr "Operation successfully added to the queue" - -#: ../../enterprise/godmode/policies/policy.php:117 -#: ../../enterprise/godmode/policies/policy.php:138 -#: ../../enterprise/meta/advanced/policymanager.apply.php:150 -#: ../../enterprise/meta/advanced/policymanager.apply.php:154 -#: ../../enterprise/meta/advanced/policymanager.apply.php:158 -msgid "Operation cannot be added to the queue" -msgstr "Operation cannot be added to the queue" - -#: ../../enterprise/godmode/policies/policy.php:120 -#: ../../enterprise/godmode/policies/policy.php:141 -#: ../../enterprise/meta/advanced/policymanager.apply.php:135 -msgid "Duplicated or incompatible operation in the queue" -msgstr "Duplicated or incompatible operation in the queue" - -#: ../../enterprise/godmode/policies/policy_agents.php:90 -msgid "" -"Successfully added to delete pending agents. Will be deleted in the next " -"policy application." -msgstr "" -"Successfully added to agents pending for deletion. They will be deleted in " -"the next policy application." - -#: ../../enterprise/godmode/policies/policy_agents.php:95 -#: ../../enterprise/godmode/policies/policy_alerts.php:169 -#: ../../enterprise/godmode/policies/policy_collections.php:73 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:100 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:100 -#: ../../enterprise/godmode/policies/policy_modules.php:1101 -#: ../../enterprise/godmode/policies/policy_plugins.php:42 -msgid "Successfully reverted deletion" -msgstr "Reverting deletion successful." - -#: ../../enterprise/godmode/policies/policy_agents.php:96 -#: ../../enterprise/godmode/policies/policy_alerts.php:170 -#: ../../enterprise/godmode/policies/policy_collections.php:74 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:101 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:103 -#: ../../enterprise/godmode/policies/policy_modules.php:1102 -#: ../../enterprise/godmode/policies/policy_plugins.php:43 -msgid "Could not be reverted" -msgstr "Could not be reverted." - -#: ../../enterprise/godmode/policies/policy_agents.php:121 -msgid "Successfully added to delete queue" -msgstr "Successfully added to delete queue." - -#: ../../enterprise/godmode/policies/policy_agents.php:122 -msgid "Could not be added to delete queue" -msgstr "Could not be added to the delete queue." - -#: ../../enterprise/godmode/policies/policy_agents.php:157 -msgid "Successfully deleted from delete pending agents" -msgstr "Successfully deleted from agents pending deletion." - -#: ../../enterprise/godmode/policies/policy_agents.php:158 -msgid "Could not be deleted from delete pending agents" -msgstr "Could not be deleted from agents pending deletion" - -#: ../../enterprise/godmode/policies/policy_agents.php:285 -msgid "Agents in Policy" -msgstr "Agents in Policy" - -#: ../../enterprise/godmode/policies/policy_agents.php:322 -msgid "Add agents to policy" -msgstr "Add agents to policy" - -#: ../../enterprise/godmode/policies/policy_agents.php:328 -msgid "Delete agents from policy" -msgstr "Delete agents from policy" - -#: ../../enterprise/godmode/policies/policy_agents.php:368 -msgid "Applied" -msgstr "Applied" - -#: ../../enterprise/godmode/policies/policy_agents.php:369 -msgid "Not applied" -msgstr "Not applied" - -#: ../../enterprise/godmode/policies/policy_agents.php:378 -#: ../../enterprise/operation/agentes/policy_view.php:304 -msgid "R." -msgstr "R." - -#: ../../enterprise/godmode/policies/policy_agents.php:380 -msgid "Unlinked modules" -msgstr "Unlinked modules" - -#: ../../enterprise/godmode/policies/policy_agents.php:380 -msgid "U." -msgstr "U." - -#: ../../enterprise/godmode/policies/policy_agents.php:382 -#: ../../enterprise/operation/agentes/policy_view.php:50 -msgid "Last application" -msgstr "Last application" - -#: ../../enterprise/godmode/policies/policy_agents.php:383 -msgid "Add to delete queue" -msgstr "Add to delete queue" - -#: ../../enterprise/godmode/policies/policy_agents.php:433 -msgid "This agent can not be remotely configured" -msgstr "This agent can not be remotely configured." - -#: ../../enterprise/godmode/policies/policy_agents.php:457 -#: ../../enterprise/godmode/policies/policy_queue.php:176 -msgid "Add to apply queue" -msgstr "Add to apply queue" - -#: ../../enterprise/godmode/policies/policy_agents.php:474 -#: ../../enterprise/godmode/policies/policy_alerts.php:417 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:252 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:264 -#: ../../enterprise/godmode/policies/policy_modules.php:1264 -msgid "Undo deletion" -msgstr "Undo deletion" - -#: ../../enterprise/godmode/policies/policy_agents.php:488 -#: ../../enterprise/operation/agentes/policy_view.php:62 -msgid "Policy applied" -msgstr "Policy applied" - -#: ../../enterprise/godmode/policies/policy_agents.php:492 -msgid "Need apply" -msgstr "Need apply" - -#: ../../enterprise/godmode/policies/policy_agents.php:500 -msgid "Applying policy" -msgstr "Applying policy" - -#: ../../enterprise/godmode/policies/policy_agents.php:506 -msgid "Deleting from policy" -msgstr "Deleting from policy" - -#: ../../enterprise/godmode/policies/policy_alerts.php:148 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:73 -msgid "Created successfuly" -msgstr "Successfully created" - -#: ../../enterprise/godmode/policies/policy_alerts.php:164 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:95 -msgid "" -"Successfully added to delete pending alerts. Will be deleted in the next " -"policy application." -msgstr "" -"Successfully added to alerts pending deletion. It will be deleted in the " -"next policy application." - -#: ../../enterprise/godmode/policies/policy_alerts.php:188 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:120 -msgid "Added action successfuly" -msgstr "Action successfully added" - -#: ../../enterprise/godmode/policies/policy_alerts.php:206 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:140 -msgid "Deleted action successfuly" -msgstr "Action successfully deleted" - -#: ../../enterprise/godmode/policies/policy_alerts.php:511 -msgid "Policy module" -msgstr "Policy module" - -#: ../../enterprise/godmode/policies/policy_collections.php:68 -msgid "" -"Successfully added to delete the collection. Will be deleted in the next " -"policy application." -msgstr "" -"Successfully added to deletion of the collection. It will be deleted in the " -"next policy application." - -#: ../../enterprise/godmode/policies/policy_collections.php:161 -#: ../../enterprise/godmode/policies/policy_collections.php:213 -#: ../../enterprise/operation/agentes/collection_view.php:102 -#: ../../enterprise/operation/agentes/policy_view.php:164 -msgid "Outdate" -msgstr "Outdated" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 -msgid "Duplicated alert" -msgstr "Duplicated alert" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:170 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:299 -msgid "Modules in policy agents" -msgstr "Modules in policy agents" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:315 -msgid "Alert Template" -msgstr "Alert Template" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:65 -msgid "Module is not selected" -msgstr "Module is not selected" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:93 -#: ../../enterprise/godmode/policies/policy_modules.php:1082 -#: ../../enterprise/godmode/policies/policy_modules.php:1096 -msgid "" -"Successfully added to delete pending modules. Will be deleted in the next " -"policy application." -msgstr "" -"Successfully added to modules pending for deletion. They will be deleted in " -"the next policy application." - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:186 -msgid "Select inventory module" -msgstr "Select inventory module" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:235 -msgid "There are no defined inventory modules" -msgstr "There are no defined inventory modules" - -#: ../../enterprise/godmode/policies/policy_linking.php:26 -msgid "Linking modules" -msgstr "Linking modules" - -#: ../../enterprise/godmode/policies/policy_linking.php:53 -msgid "Error: Update linking modules to policy" -msgstr "Error : Update linking modules to policy" - -#: ../../enterprise/godmode/policies/policy_linking.php:56 -msgid "Success: Update linking modules to policy" -msgstr "Success : Update linking modules to policy" - -#: ../../enterprise/godmode/policies/policy_linking.php:66 -msgid "Free text for filter (*)" -msgstr "Free text for filter (*)" - -#: ../../enterprise/godmode/policies/policy_linking.php:67 -msgid "Free text for filter" -msgstr "Free text for filter" - -#: ../../enterprise/godmode/policies/policy_linking.php:110 -msgid "List of modules unlinked" -msgstr "List of unlinked modules" - -#: ../../enterprise/godmode/policies/policy_linking.php:143 -msgid "There are no defined modules unlinked" -msgstr "There are no defined modules unlinked" - -#: ../../enterprise/godmode/policies/policy_modules.php:262 -msgid "" -"If you change this description, you must change into the text of Data " -"configuration." -msgstr "" -"If you change this description, you must change to the text of Data " -"configuration." - -#: ../../enterprise/godmode/policies/policy_modules.php:320 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1417 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:101 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:87 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 -msgid "Edit module" -msgstr "Edit module" - -#: ../../enterprise/godmode/policies/policy_modules.php:351 -msgid "Module macros" -msgstr "Module macros" - -#: ../../enterprise/godmode/policies/policy_modules.php:448 -msgid "Could not be added module(s). You must select a policy" -msgstr "Module(s) could not be added. You must select a policy first." - -#: ../../enterprise/godmode/policies/policy_modules.php:476 +#: ../../godmode/alerts/configure_alert_command.php:175 #, php-format -msgid "Successfully added module(s) (%s/%s) to policy %s" -msgstr "Successfully added module(s) (%s/%s) to policy %s" +msgid "Field %s values" +msgstr "%s field values" -#: ../../enterprise/godmode/policies/policy_modules.php:478 +#: ../../godmode/alerts/configure_alert_action.php:57 +#: ../../godmode/alerts/configure_alert_action.php:66 +msgid "Configure alert action" +msgstr "Configure alert action" + +#: ../../godmode/alerts/configure_alert_action.php:98 +msgid "Update Action" +msgstr "Update Action" + +#: ../../godmode/alerts/configure_alert_action.php:101 +#: ../../godmode/alerts/alert_list.builder.php:109 +msgid "Create Action" +msgstr "Create Action" + +#: ../../godmode/alerts/configure_alert_action.php:149 +msgid "Recovery" +msgstr "Recovery" + +#: ../../godmode/alerts/alert_list.list.php:58 +msgid "Template name" +msgstr "Template name" + +#: ../../godmode/alerts/alert_list.list.php:124 +msgid "Field content" +msgstr "Field content" + +#: ../../godmode/alerts/alert_list.list.php:133 +msgid "Enabled / Disabled" +msgstr "Enabled / Disabled" + +#: ../../godmode/alerts/alert_list.list.php:135 +#: ../../godmode/alerts/alert_list.list.php:793 +#: ../../godmode/extensions.php:273 ../../godmode/users/user_list.php:466 +msgid "Enable" +msgstr "Enable" + +#: ../../godmode/alerts/alert_list.list.php:412 +#: ../../godmode/massive/massive_copy_modules.php:133 +msgid "Operations" +msgstr "Operations" + +#: ../../godmode/alerts/alert_list.list.php:526 +msgid "On" +msgstr "On" + +#: ../../godmode/alerts/alert_list.list.php:530 +msgid "Until" +msgstr "Until" + +#: ../../godmode/alerts/alert_list.list.php:552 +msgid "Delete action" +msgstr "Delete action" + +#: ../../godmode/alerts/alert_list.list.php:559 +#: ../../godmode/alerts/alert_list.list.php:871 +msgid "Update action" +msgstr "Update action" + +#: ../../godmode/alerts/alert_list.list.php:718 +msgid "View alert advanced details" +msgstr "View the alert's advanced details" + +#: ../../godmode/alerts/alert_list.list.php:729 +msgid "No alerts defined" +msgstr "No alerts defined" + +#: ../../godmode/alerts/alert_list.list.php:802 +msgid "Set off standby" +msgstr "Turn off standby" + +#: ../../godmode/alerts/alert_list.list.php:811 +msgid "Set standby" +msgstr "Set standby" + +#: ../../godmode/alerts/configure_alert_template.php:118 +#: ../../godmode/modules/manage_network_components.php:160 #, php-format -msgid "Could not be added module(s) (%s/%s) to policy %s" -msgstr "module(s) could not be added (%s/%s) to policy %s." +msgid "Successfully created from %s" +msgstr "Successfully created from %s" -#: ../../enterprise/godmode/policies/policy_modules.php:768 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1908 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2002 -msgid "Successfully added module." -msgstr "Module successfully added." +#: ../../godmode/alerts/configure_alert_template.php:168 +#: ../../godmode/alerts/configure_alert_template.php:173 +msgid "Conditions" +msgstr "Conditions" -#: ../../enterprise/godmode/policies/policy_modules.php:769 -msgid "Could not be added module." -msgstr "Module could not be added." +#: ../../godmode/alerts/configure_alert_template.php:188 +#: ../../godmode/alerts/configure_alert_template.php:193 +msgid "Advanced fields" +msgstr "Advanced fields" -#: ../../enterprise/godmode/policies/policy_modules.php:1052 +#: ../../godmode/alerts/configure_alert_template.php:499 +#: ../../godmode/alerts/alert_list.builder.php:131 +msgid "Create Template" +msgstr "Create Template" + +#: ../../godmode/alerts/configure_alert_template.php:520 +msgid "Days of week" +msgstr "Days of week" + +#: ../../godmode/alerts/configure_alert_template.php:539 +#: ../../godmode/reporting/reporting_builder.item_editor.php:847 +msgid "Time from" +msgstr "Set initial time" + +#: ../../godmode/alerts/configure_alert_template.php:543 +#: ../../godmode/reporting/reporting_builder.item_editor.php:856 +msgid "Time to" +msgstr "Set end time" + +#: ../../godmode/alerts/configure_alert_template.php:557 +msgid "Reset counter for non-sustained alerts" +msgstr "Reset counter for non-sustained alerts" + +#: ../../godmode/alerts/configure_alert_template.php:557 msgid "" -"The module type in Data configuration is empty, take from combo box of form." +"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 "" -"The module type in Data configuration is empty, take it from the combo box " -"of form." +"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" -#: ../../enterprise/godmode/policies/policy_modules.php:1055 +#: ../../godmode/alerts/configure_alert_template.php:564 +#: ../../godmode/alerts/alert_list.builder.php:94 +msgid "Default action" +msgstr "Default action" + +#: ../../godmode/alerts/configure_alert_template.php:588 msgid "" -"The module name in Data configuration is empty, take from text field of form." +"Unless they're left blank, the fields from the action will override those " +"set on the template." msgstr "" -"The module name in Data configuration is empty, take it from the text field " -"of form." +"Unless they're left blank, the fields from the action will override those " +"set on the template." -#: ../../enterprise/godmode/policies/policy_modules.php:1086 -msgid "Could not be added to deleted all modules." -msgstr "Could not be added to deleted all modules." +#: ../../godmode/alerts/configure_alert_template.php:590 +msgid "Condition type" +msgstr "Condition type" -#: ../../enterprise/godmode/policies/policy_modules.php:1172 -msgid "Successfully duplicate the module." -msgstr "Duplication of the module successful." +#: ../../godmode/alerts/configure_alert_template.php:597 +msgid "Trigger when matches the value" +msgstr "Triggered when the value matches" -#: ../../enterprise/godmode/policies/policy_modules.php:1232 -msgid "Local component" -msgstr "Local component" +#: ../../godmode/alerts/configure_alert_template.php:609 +msgid "The regular expression is valid" +msgstr "The regular expression is valid" -#: ../../enterprise/godmode/policies/policy_modules.php:1298 -msgid "There are no defined modules" -msgstr "There are no defined modules" +#: ../../godmode/alerts/configure_alert_template.php:614 +msgid "The regular expression is not valid" +msgstr "The regular expression is not valid" -#: ../../enterprise/godmode/policies/policy_modules.php:1316 -msgid "Copy selected modules to policy: " -msgstr "Copy selected modules to policy : " +#: ../../godmode/alerts/configure_alert_template.php:662 +msgid "Alert recovery" +msgstr "Alert recovery" -#: ../../enterprise/godmode/policies/policy_modules.php:1494 -msgid "Are you sure to copy modules into policy?\\n" -msgstr "Are you sure to copy modules into policy ? \\n" +#: ../../godmode/alerts/configure_alert_template.php:671 +msgid "Recovery fields" +msgstr "Recovery fields" -#: ../../enterprise/godmode/policies/policy_modules.php:1514 -msgid "Please select any module to copy" -msgstr "Please select any module to copy" +#: ../../godmode/alerts/configure_alert_template.php:772 +#: ../../godmode/modules/manage_network_components_form_common.php:58 +msgid "Wizard level" +msgstr "Wizard level" -#: ../../enterprise/godmode/policies/policy_plugins.php:33 -msgid "" -"Successfully added to delete pending plugins. Will be deleted in the next " -"policy application." -msgstr "" -"Successfully added to plugins pending deletion. It will be deleted in the " -"next policy application." +#: ../../godmode/alerts/configure_alert_template.php:774 +msgid "No wizard" +msgstr "No wizard" -#: ../../enterprise/godmode/policies/policy_plugins.php:34 -msgid "Cannot be added to delete pending plugins." -msgstr "Cannot be added to plugins pending deletion." +#: ../../godmode/alerts/configure_alert_template.php:821 +#: ../../godmode/alerts/configure_alert_template.php:825 +msgid "Next" +msgstr "Next" -#: ../../enterprise/godmode/policies/policy_plugins.php:116 -msgid "There are no defined plugins" -msgstr "There are no defined plugins" - -#: ../../enterprise/godmode/policies/policy_queue.php:59 -#: ../../enterprise/meta/advanced/policymanager.queue.php:60 -msgid "Operation successfully deleted from the queue" -msgstr "Operation successfully deleted from the queue." - -#: ../../enterprise/godmode/policies/policy_queue.php:60 -#: ../../enterprise/meta/advanced/policymanager.queue.php:61 -msgid "Operation cannot be deleted from the queue" -msgstr "Operation cannot be deleted from the queue." - -#: ../../enterprise/godmode/policies/policy_queue.php:101 -msgid "Operations successfully deleted from the queue" -msgstr "Operations successfully deleted from the queue." - -#: ../../enterprise/godmode/policies/policy_queue.php:102 -msgid "Operations cannot be deleted from the queue" -msgstr "Operations cannot be deleted from the queue." - -#: ../../enterprise/godmode/policies/policy_queue.php:160 -msgid "Update pending" -msgstr "Update pending" - -#: ../../enterprise/godmode/policies/policy_queue.php:162 -msgid "Update pending agents" -msgstr "Update pending agents" - -#: ../../enterprise/godmode/policies/policy_queue.php:180 -msgid "Add to apply queue only for database" -msgstr "Add to apply queue only for database" - -#: ../../enterprise/godmode/policies/policy_queue.php:186 -msgid "Link pending modules" -msgstr "Link pending modules" - -#: ../../enterprise/godmode/policies/policy_queue.php:192 -msgid "Will be linked in the next policy application" -msgstr "Will be linked in the next policy application" - -#: ../../enterprise/godmode/policies/policy_queue.php:195 -msgid "Unlink pending modules" -msgstr "Unlink pending modules" - -#: ../../enterprise/godmode/policies/policy_queue.php:201 -msgid "Will be unlinked in the next policy application" -msgstr "Will be unlinked in the next policy application." - -#: ../../enterprise/godmode/policies/policy_queue.php:206 -msgid "Delete pending" -msgstr "Delete pending" - -#: ../../enterprise/godmode/policies/policy_queue.php:208 -msgid "Delete pending agents" -msgstr "Delete pending agents" - -#: ../../enterprise/godmode/policies/policy_queue.php:214 -#: ../../enterprise/godmode/policies/policy_queue.php:223 -#: ../../enterprise/godmode/policies/policy_queue.php:232 -#: ../../enterprise/godmode/policies/policy_queue.php:241 -#: ../../enterprise/godmode/policies/policy_queue.php:250 -#: ../../enterprise/godmode/policies/policy_queue.php:259 -#: ../../enterprise/godmode/policies/policy_queue.php:268 -msgid "Will be deleted in the next policy application" -msgstr "Will be deleted in the next policy application" - -#: ../../enterprise/godmode/policies/policy_queue.php:217 -msgid "Delete pending modules" -msgstr "Delete pending modules" - -#: ../../enterprise/godmode/policies/policy_queue.php:226 -msgid "Delete pending inventory modules" -msgstr "Delete pending inventory modules" - -#: ../../enterprise/godmode/policies/policy_queue.php:235 -msgid "Delete pending alerts" -msgstr "Delete pending alerts" - -#: ../../enterprise/godmode/policies/policy_queue.php:244 -msgid "Delete pending external alerts" -msgstr "Delete pending external alerts" - -#: ../../enterprise/godmode/policies/policy_queue.php:253 -msgid "Delete pending file collections" -msgstr "Delete pending file collections" - -#: ../../enterprise/godmode/policies/policy_queue.php:262 -msgid "Delete pending plugins" -msgstr "Delete pending plugins" - -#: ../../enterprise/godmode/policies/policy_queue.php:274 -msgid "Advices" -msgstr "Advices" - -#: ../../enterprise/godmode/policies/policy_queue.php:277 -msgid "Queue summary" -msgstr "Queue summary" - -#: ../../enterprise/godmode/policies/policy_queue.php:344 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -msgid "Apply (database and files)" -msgstr "Apply (database and files)" - -#: ../../enterprise/godmode/policies/policy_queue.php:344 -#: ../../enterprise/godmode/policies/policy_queue.php:418 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:309 -msgid "Apply (only database)" -msgstr "Apply (only database)" - -#: ../../enterprise/godmode/policies/policy_queue.php:350 -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -msgid "Complete" -msgstr "Complete" - -#: ../../enterprise/godmode/policies/policy_queue.php:350 -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -msgid "Incomplete" -msgstr "Incomplete" - -#: ../../enterprise/godmode/policies/policy_queue.php:364 -msgid "Queue filter" -msgstr "Queue filter" - -#: ../../enterprise/godmode/policies/policy_queue.php:446 -#: ../../enterprise/meta/advanced/policymanager.queue.php:334 -msgid "Delete from queue" -msgstr "Delete from queue" - -#: ../../enterprise/godmode/policies/policy_queue.php:459 -msgid "Empty queue" -msgstr "Empty queue" - -#: ../../enterprise/godmode/policies/policy_queue.php:476 -msgid "This operation could take a long time" -msgstr "This operation could take a long time." - -#: ../../enterprise/godmode/policies/policy_queue.php:487 -msgid "Apply all" -msgstr "Apply all" - -#: ../../enterprise/godmode/policies/policy_queue.php:493 -msgid "Delete all" -msgstr "Delete all" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:73 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:49 -msgid "Graph template editor" -msgstr "Graph template editor" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:136 -msgid "Template updated successfully" -msgstr "Template updated successfully." - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:137 -msgid "Error updating template" -msgstr "Error updating template" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:183 -msgid "3 hours" -msgstr "3 hours" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:188 -msgid "4 days" -msgstr "4 days" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:149 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1948 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2012 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2105 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2179 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2450 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2548 -msgid "Exact match" -msgstr "Exact match" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:165 -msgid "Decrease Weight" -msgstr "Decrease Weight" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:168 -msgid "Increase Weight" -msgstr "Increase Weight" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:70 -msgid "Graph template management" -msgstr "Graph template management" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:163 -msgid "There are no defined graph templates" -msgstr "There are no defined graph templates" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:168 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:118 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:389 -msgid "Create template" -msgstr "Create template" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:64 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:151 -msgid "Cleanup sucessfully" -msgstr "Cleanup sucessful." - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:67 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:154 -msgid "Cleanup error" -msgstr "Cleanup error" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:97 -msgid "Wizard template" -msgstr "Wizard template" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:142 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:256 -msgid "Clean up template" -msgstr "Clean up template" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:462 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:381 -msgid "Agents available" -msgstr "Agents available" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:173 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:179 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:463 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:466 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:380 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:386 -msgid "Select all" -msgstr "Select all" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:179 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:465 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:387 -msgid "Agents to apply" -msgstr "Agents to apply" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:204 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:408 -msgid "Add agents to template" -msgstr "Add agents to template" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:208 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412 -msgid "Undo agents to template" -msgstr "Undo agents to template" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:227 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:430 -msgid "Apply template" -msgstr "Apply template" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:389 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:421 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:755 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:786 -msgid "Please set template distinct than " -msgstr "Please set template distinct from " - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:416 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:781 -msgid "" -"This will be delete all reports created in previous template applications. " -"Do you want to continue?" -msgstr "" -"This will delete all reports created in previous template applications. Do " -"you want to continue ?" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:28 -#: ../../enterprise/godmode/reporting/mysql_builder.php:122 -msgid "Custom Mysql template builder" -msgstr "Custom MySQL template builder" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:59 -msgid "Create custom SQL" -msgstr "Create custom SQL" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:70 -msgid ": Create new custom" -msgstr "Create new custom :" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:90 -msgid "Create new custom" -msgstr "Create new custom" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:125 -msgid "Successfully operation" -msgstr "Operation successful." - -#: ../../enterprise/godmode/reporting/mysql_builder.php:125 -msgid "Could not be operation" -msgstr "Cannot not be an operation." - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:68 -msgid "Advance Reporting" -msgstr "Advance Reporting" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:73 -#: ../../enterprise/include/functions_reporting.php:38 -msgid "Global" -msgstr "Global" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:101 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:143 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:169 -msgid "Elements to apply" -msgstr "Elements to apply" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:189 -msgid "Sum" -msgstr "Sum" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:284 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1620 -msgid ">=" -msgstr ">=" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:286 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1622 -msgid "<" -msgstr "<" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:304 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1653 -msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom" -msgstr "" -"Show a summary chart with max, min and average number of total modules at " -"the end of the report." - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:81 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:90 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:134 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:100 -msgid "Edit template" -msgstr "Edit template" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:130 -msgid "List templates" -msgstr "List templates" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:291 -#: ../../enterprise/operation/reporting/custom_reporting.php:17 -msgid "PDF" -msgstr "PDF" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:292 -#: ../../enterprise/operation/reporting/custom_reporting.php:19 -msgid "JSON" -msgstr "JSON" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:346 -#: ../../enterprise/operation/reporting/custom_reporting.php:50 -msgid "Export to PDF" -msgstr "Export to PDF" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:348 -#: ../../enterprise/operation/reporting/custom_reporting.php:54 -msgid "Export to JSON" -msgstr "Export to JSON" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:384 -msgid "You haven't created templates yet." -msgstr "You haven't created templates yet." - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:397 -msgid "Generate a dynamic report\"" -msgstr "Generate a dynamic report\"" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:474 -msgid "Add agents" -msgstr "Add agents" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:477 -msgid "Undo agents" -msgstr "Undo agents" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:485 -msgid "Generate" -msgstr "Generate" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:768 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:759 -msgid "Please set agent distinct than " -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:105 -msgid "Advance Options" -msgstr "Advance Options" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1464 -msgid "" -"Case insensitive regular expression for agent name. For example: Network.* " -"will match with the following agent names: network_agent1, NetworK CHECKS" -msgstr "" -"Case insensitive regular expression for agent name, e.g. Network.* will " -"match with the following agent names : network_agent1, NetworK CHECKS" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1478 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2058 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2229 -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 "" -"Case insensitive regular expression or string for module name, e.g. if you " -"use this field with \"Module exact match\" enabled then this field has to be " -"filled out with the literal string of the module name, if not you can use a " -"regular expression, e.g. *usage.* will match: cpu_usage, vram usage in " -"machine 1." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1489 -msgid "Module exact match" -msgstr "Module exact match" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1489 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1995 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2060 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2158 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2233 -msgid "Check it if you want to match module name literally" -msgstr "Check if you want to literally match module name." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1529 -msgid "Query SQL" -msgstr "SQL query" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1544 -msgid "SQL preview" -msgstr "SQL preview" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1606 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:267 -msgid "" -"If this option was checked, only adding in elements that type of modules " -"support this option." -msgstr "" -"If this option was checked, only adding in elements that type of modules " -"support this option." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1772 -msgid "Modules to match" -msgstr "Modules to match" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1774 -msgid "Select the modules to match when create a report for agents" -msgstr "Select the modules to match when creating a report for agents." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1855 -msgid "Modules to match (Free text)" -msgstr "Modules to match (Free text)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1857 -msgid "Free text to filter the modules of agents when apply this template." -msgstr "" -"Free text to filter the modules of agents when applying this template." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1871 -msgid "Create a graph for each agent" -msgstr "Create a graph for each agent" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1873 -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 "" -"If this is checked, the regexp or name of modules match only once to each " -"agent, instead of creating a big graph with all modules from all agents." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1960 -msgid "Please save the SLA template for start to add items in this list." -msgstr "" -"Please save the SLA template before starting to add items to this list." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2009 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2176 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2453 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2551 -msgid "Not literally" -msgstr "Not literally" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2053 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2223 -msgid "" -"Case insensitive regular expression for agent name. For example: Network* " -"will match with the following agent names: network_agent1, NetworK CHECKS" -msgstr "" -"Case insensitive regular expression for agent name. For example: Network* " -"will match with the following agent names: network_agent1, NetworK CHECKS" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2120 -msgid "Please save the template to start adding items into the list." -msgstr "Please save the template to start adding items to the list." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2472 -msgid "Name and SLA limit should not be empty" -msgstr "" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:194 -msgid "Sucessfully applied" -msgstr "Sucessfully applied." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:194 -msgid "reports" -msgstr "Reports" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:194 -msgid "items" -msgstr "Items" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:196 -msgid "Could not be applied" -msgstr "Could not be applied." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:216 -msgid "Create template report wizard" -msgstr "Create template report wizard" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:263 -msgid "Create report per agent" -msgstr "Create report per agent" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:272 -msgid "" -"Left in blank if you want to use default name: Template name - agents (num " -"agents) - Date" -msgstr "" -"Please leave it blank if you intend to use the default name: Template name - " -"agents (num agents) - Date" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:278 -msgid "Target group" -msgstr "Target group" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:305 -msgid "Filter by" -msgstr "Filter by" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:368 -msgid "Filter tag" -msgstr "Filter tag" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:183 -msgid "Order:" -msgstr "Order:" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:203 -msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom:" -msgstr "" -"Show a resume table with max, min, average of total modules on the report " -"bottom:" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:218 -msgid "Show address instead module name" -msgstr "Show address instead module name" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:89 -#: ../../enterprise/include/functions_reporting.php:35 -msgid "Wizard SLA" -msgstr "SLA-Wizard" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:115 -msgid "hourly S.L.A." -msgstr "hourly S.L.A." - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:116 -msgid "Availability Graph S.L.A." -msgstr "Availability Graph S.L.A." - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:203 -msgid "SLA min value" -msgstr "SLA min value" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:204 -msgid "SLA min Value" -msgstr "SLA min value" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 -msgid "SLA max value" -msgstr "SLA max value" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:208 -msgid "SLA max Value" -msgstr "SLA max value" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 -msgid "SLA Limit %" -msgstr "SLA limit %" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:212 -msgid "SLA Limit Value" -msgstr "SLA limit value" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:104 -msgid "Available" -msgstr "Available" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:113 -msgid "Push the selected services into the list" -msgstr "Push the selected services into the list" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:118 -msgid "Remove the services from the list" -msgstr "Remove the services from the list" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:172 -msgid "Icon preview" -msgstr "Icon preview" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:238 -msgid "The services list is empty" -msgstr "The services list is empty" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:30 -msgid "Credential Boxes List" -msgstr "" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:33 -msgid "Credential Boxes" -msgstr "" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:374 -#: ../../enterprise/godmode/servers/list_satellite.php:69 -msgid "No Data" -msgstr "" - -#: ../../enterprise/godmode/servers/list_satellite.php:26 -msgid "Satellite Server" -msgstr "" - -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 -msgid "Add Credential Box" -msgstr "" - -#: ../../enterprise/godmode/servers/manage_export.php:61 -msgid "Error updating export target" -msgstr "Error updating export target" - -#: ../../enterprise/godmode/servers/manage_export.php:64 -msgid "Successfully updated export target" -msgstr "Successfully updated export target" - -#: ../../enterprise/godmode/servers/manage_export.php:73 -msgid "Error deleting export target" -msgstr "Error deleting export target" - -#: ../../enterprise/godmode/servers/manage_export.php:76 -msgid "Successfully deleted export target" -msgstr "Successfully deleted export target" - -#: ../../enterprise/godmode/servers/manage_export.php:98 -msgid "" -"Can't be created export target: User and password must be filled with FTP " -"mode" -msgstr "" -"Can't be created export target: User and password must be filled with FTP " -"mode" - -#: ../../enterprise/godmode/servers/manage_export.php:121 -msgid "There are no defined export targets" -msgstr "There are no defined export targets" - -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:76 -msgid "Preffix" -msgstr "Preffix" - -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:88 -msgid "Transfer mode" -msgstr "Transfer mode" - -#: ../../enterprise/godmode/servers/manage_export_form.php:109 -msgid "Target directory" -msgstr "Target directory" - -#: ../../enterprise/godmode/servers/manage_export_form.php:113 -msgid "Extra options" -msgstr "Extra options" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:130 -msgid "Error: The conf file of server is not readble." -msgstr "Error: The conf file of server is not readble." - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:135 -msgid "Error: The conf file of server is not writable." -msgstr "Error: The conf file of server is not writable." - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:160 -msgid "Delete remote conf server files in Pandora" -msgstr "Delete remote conf server files in Pandora" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:164 -msgid "" -"Delete this conf file implies that Pandora will send back local config to " -"console" -msgstr "" -"Delete this conf file implies that Pandora will send back local config to " -"console" - -#: ../../enterprise/godmode/services/services.elements.php:70 -#: ../../enterprise/godmode/services/services.service.php:266 -msgid "" -"This values are by default because the service is auto calculate mode." -msgstr "" -"This values are by default because the service is auto calculate mode." - -#: ../../enterprise/godmode/services/services.elements.php:82 -msgid "Invalid service" -msgstr "Invalid service" - -#: ../../enterprise/godmode/services/services.elements.php:96 -#: ../../enterprise/godmode/services/services.service.php:171 -#: ../../enterprise/operation/services/services.service.php:55 -#: ../../enterprise/operation/services/services.service_map.php:63 -#: ../../enterprise/operation/services/services.table_services.php:39 -msgid "Services list" -msgstr "" - -#: ../../enterprise/godmode/services/services.elements.php:102 -#: ../../enterprise/godmode/services/services.service.php:177 -#: ../../enterprise/operation/services/services.service.php:61 -#: ../../enterprise/operation/services/services.service_map.php:69 -msgid "Services table view" -msgstr "" - -#: ../../enterprise/godmode/services/services.elements.php:109 -#: ../../enterprise/godmode/services/services.service.php:182 -#: ../../enterprise/operation/services/services.service.php:66 -#: ../../enterprise/operation/services/services.service_map.php:75 -msgid "Config Service" -msgstr "Config Service" - -#: ../../enterprise/godmode/services/services.elements.php:115 -#: ../../enterprise/godmode/services/services.service.php:187 -#: ../../enterprise/operation/services/services.service.php:71 -#: ../../enterprise/operation/services/services.service_map.php:81 -msgid "Config Elements" -msgstr "Config Elements" - -#: ../../enterprise/godmode/services/services.elements.php:123 -#: ../../enterprise/godmode/services/services.service.php:194 -#: ../../enterprise/operation/services/services.service.php:79 -#: ../../enterprise/operation/services/services.service_map.php:89 -msgid "View Service" -msgstr "View Service" - -#: ../../enterprise/godmode/services/services.elements.php:130 -#: ../../enterprise/godmode/services/services.service.php:200 -#: ../../enterprise/operation/services/services.service.php:85 -#: ../../enterprise/operation/services/services.service_map.php:95 -msgid "Service map" -msgstr "Service map" - -#: ../../enterprise/godmode/services/services.elements.php:142 -#: ../../enterprise/include/functions_services.php:1647 -msgid "Edit service elements" -msgstr "Edit service elements" - -#: ../../enterprise/godmode/services/services.elements.php:156 -msgid "Error empty module" -msgstr "Error empty module" - -#: ../../enterprise/godmode/services/services.elements.php:165 -msgid "Error empty agent" -msgstr "Error empty agent" - -#: ../../enterprise/godmode/services/services.elements.php:174 -msgid "Error empty service" -msgstr "Error empty service" - -#: ../../enterprise/godmode/services/services.elements.php:196 -msgid "Service element created successfully" -msgstr "Service element created successfully" - -#: ../../enterprise/godmode/services/services.elements.php:197 -msgid "Error creating service element" -msgstr "Error creating service item" - -#: ../../enterprise/godmode/services/services.elements.php:271 -msgid "Service element updated successfully" -msgstr "Service item updated successfully" - -#: ../../enterprise/godmode/services/services.elements.php:272 -msgid "Error updating service element" -msgstr "Error updating service item" - -#: ../../enterprise/godmode/services/services.elements.php:279 -msgid "Service element deleted successfully" -msgstr "Service item deleted successfully" - -#: ../../enterprise/godmode/services/services.elements.php:280 -msgid "Error deleting service element" -msgstr "Error deleting service item" - -#: ../../enterprise/godmode/services/services.elements.php:318 -msgid "Edit element service" -msgstr "Edit element service" - -#: ../../enterprise/godmode/services/services.elements.php:321 -msgid "Create element service" -msgstr "Create element service" - -#: ../../enterprise/godmode/services/services.elements.php:371 -msgid "First select an agent" -msgstr "First select an agent" - -#: ../../enterprise/godmode/services/services.elements.php:389 -msgid "Critical weight" -msgstr "Critical weight" - -#: ../../enterprise/godmode/services/services.elements.php:394 -msgid "Warning weight" -msgstr "Warning weight" - -#: ../../enterprise/godmode/services/services.elements.php:399 -msgid "Unknown weight" -msgstr "Unknown weight" - -#: ../../enterprise/godmode/services/services.elements.php:404 -msgid "Ok weight" -msgstr "Ok weight" - -#: ../../enterprise/godmode/services/services.elements.php:412 -msgid "" -"Only the critical elements are relevant to calculate the service status" -msgstr "" -"Only the critical elements are relevant to calculate the service status" - -#: ../../enterprise/godmode/services/services.service.php:54 -#: ../../enterprise/operation/services/services.list.php:507 -#: ../../enterprise/operation/services/services.table_services.php:375 -msgid "Create Service" -msgstr "Create Service" - -#: ../../enterprise/godmode/services/services.service.php:62 -msgid "Service created successfully" -msgstr "Service created successfully" - -#: ../../enterprise/godmode/services/services.service.php:63 -msgid "Error creating service" -msgstr "Error creating service" - -#: ../../enterprise/godmode/services/services.service.php:85 -msgid "No name and description specified for the service" -msgstr "No name and description specified for the service" - -#: ../../enterprise/godmode/services/services.service.php:90 -msgid "No name specified for the service" -msgstr "No name specified for the service" - -#: ../../enterprise/godmode/services/services.service.php:95 -msgid "No description specified for the service" -msgstr "No description specified for the service" - -#: ../../enterprise/godmode/services/services.service.php:109 -msgid "Error updating service" -msgstr "Error updating service" - -#: ../../enterprise/godmode/services/services.service.php:113 -msgid "Service updated successfully" -msgstr "Service updated successfully" - -#: ../../enterprise/godmode/services/services.service.php:126 -#: ../../enterprise/godmode/services/services.service.php:153 -#: ../../enterprise/operation/services/services.service.php:37 -#: ../../enterprise/operation/services/services.service_map.php:44 -msgid "Not found" -msgstr "Not found" - -#: ../../enterprise/godmode/services/services.service.php:130 -msgid "New Service" -msgstr "New Service" - -#: ../../enterprise/godmode/services/services.service.php:229 -msgid "No Services or concrete action" -msgstr "No Services or concrete action" - -#: ../../enterprise/godmode/services/services.service.php:240 -msgid "General Data" -msgstr "General Data" - -#: ../../enterprise/godmode/services/services.service.php:256 -msgid "You should set the weights manually" -msgstr "You should set the weights manually" - -#: ../../enterprise/godmode/services/services.service.php:259 -msgid "The weights have default values" -msgstr "The weights have default values" - -#: ../../enterprise/godmode/services/services.service.php:261 -#: ../../enterprise/operation/services/services.list.php:191 -#: ../../enterprise/operation/services/services.table_services.php:160 -msgid "Simple" -msgstr "Simple" - -#: ../../enterprise/godmode/services/services.service.php:262 -msgid "" -"Only the elements configured as 'critical element' are used to calculate the " -"service status" -msgstr "" -"Only the elements configured as 'critical element' are used to calculate the " -"service status" - -#: ../../enterprise/godmode/services/services.service.php:282 -msgid "Agent to store data" -msgstr "Agent to store data" - -#: ../../enterprise/godmode/services/services.service.php:305 -msgid "S.L.A. interval" -msgstr "S.L.A. interval" - -#: ../../enterprise/godmode/services/services.service.php:310 -msgid "S.L.A. limit" -msgstr "S.L.A. limit" - -#: ../../enterprise/godmode/services/services.service.php:312 -msgid "Please set limit between 0 to 100." -msgstr "Please set limit between 0 to 100." - -#: ../../enterprise/godmode/services/services.service.php:320 -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 "" -"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." - -#: ../../enterprise/godmode/services/services.service.php:334 -msgid "Warning Service alert" -msgstr "Warning Service alert" - -#: ../../enterprise/godmode/services/services.service.php:345 -msgid "Critical Service alert" -msgstr "Critical Service alert" - -#: ../../enterprise/godmode/services/services.service.php:363 -msgid "SLA critical service alert" -msgstr "SLA critical service alert" - -#: ../../enterprise/godmode/setup/edit_skin.php:42 -#: ../../enterprise/godmode/setup/setup_skins.php:36 -msgid "Skins configuration" -msgstr "Skins configuration" - -#: ../../enterprise/godmode/setup/edit_skin.php:45 -msgid "Successfully updated skin" -msgstr "Updating skin successful" - -#: ../../enterprise/godmode/setup/edit_skin.php:48 -#: ../../enterprise/godmode/setup/edit_skin.php:60 -msgid "Error updating skin" -msgstr "Error in updating skin" - -#: ../../enterprise/godmode/setup/edit_skin.php:171 -msgid "Error creating skin" -msgstr "Error on creating skin." - -#: ../../enterprise/godmode/setup/edit_skin.php:176 -msgid "Successfully created skin" -msgstr "Creation of skin successful." - -#: ../../enterprise/godmode/setup/edit_skin.php:216 -#: ../../enterprise/godmode/setup/setup_skins.php:118 -msgid "Relative path" -msgstr "Relative path" - -#: ../../enterprise/godmode/setup/edit_skin.php:217 -msgid "" -"Zip file with skin subdirectory. The name of the zip file only can have " -"alphanumeric characters." -msgstr "" -"Zip file with skin subdirectory. The name of the zip file only can have " -"alphanumeric characters." - -#: ../../enterprise/godmode/setup/edit_skin.php:239 -msgid "Group/s" -msgstr "Group/s" - -#: ../../enterprise/godmode/setup/setup.php:38 -msgid "" -"Before activating this option check your ACL Setup. You may lose access to " -"the console." -msgstr "" -"Before activating this option, check your ACL Setup. You may lose access to " -"the console." - -#: ../../enterprise/godmode/setup/setup.php:48 -msgid " Bytes" -msgstr " Bytes" - -#: ../../enterprise/godmode/setup/setup.php:64 -msgid "Seconds" -msgstr "Seconds" - -#: ../../enterprise/godmode/setup/setup.php:72 -msgid "" -"Limit the number of events that are replicated metaconsole each specified " -"range." -msgstr "" -"Limit the number of events that are replicated metaconsole each specified " -"range." - -#: ../../enterprise/godmode/setup/setup.php:78 -msgid "Last replication at" -msgstr "Last replication at" - -#: ../../enterprise/godmode/setup/setup.php:80 -msgid "No replication yet" -msgstr "No replication yet" - -#: ../../enterprise/godmode/setup/setup.php:90 -msgid "Only validated events" -msgstr "Only validated events" - -#: ../../enterprise/godmode/setup/setup.php:96 -msgid "Metaconsole DB engine" -msgstr "Metaconsole DB engine" - -#: ../../enterprise/godmode/setup/setup.php:97 -msgid "MySQL" -msgstr "MySQL" - -#: ../../enterprise/godmode/setup/setup.php:97 -msgid "Oracle" -msgstr "Oracle" - -#: ../../enterprise/godmode/setup/setup.php:103 -msgid "Metaconsole DB host" -msgstr "Metaconsole DB host" - -#: ../../enterprise/godmode/setup/setup.php:110 -msgid "Metaconsole DB name" -msgstr "Metaconsole DB name" - -#: ../../enterprise/godmode/setup/setup.php:117 -msgid "Metaconsole DB user" -msgstr "Metaconsole DB user" - -#: ../../enterprise/godmode/setup/setup.php:124 -msgid "Metaconsole DB password" -msgstr "Metaconsole DB password" - -#: ../../enterprise/godmode/setup/setup.php:131 -msgid "Metaconsole DB port" -msgstr "Metaconsole DB port" - -#: ../../enterprise/godmode/setup/setup.php:147 -msgid "" -"The inventory modules included in the changes blacklist will not generate " -"events when change." -msgstr "" -"The inventory modules included in the changes blacklist will not generate " -"events if changed." - -#: ../../enterprise/godmode/setup/setup.php:178 -msgid "Out of black list" -msgstr "Out of black list" - -#: ../../enterprise/godmode/setup/setup.php:180 -msgid "In black list" -msgstr "Into black list" - -#: ../../enterprise/godmode/setup/setup.php:186 -msgid "Push selected modules into blacklist" -msgstr "Push selected modules into blacklist." - -#: ../../enterprise/godmode/setup/setup.php:190 -msgid "Pop selected modules out of blacklist" -msgstr "Push selected modules out of blacklist." - -#: ../../enterprise/godmode/setup/setup.php:216 -msgid "Enterprise options" -msgstr "Enterprise Options" - -#: ../../enterprise/godmode/setup/setup.php:249 -#: ../../enterprise/meta/advanced/metasetup.password.php:85 -msgid " Caracters" -msgstr " Characters" - -#: ../../enterprise/godmode/setup/setup.php:262 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -msgid "Set 0 if never expire." -msgstr "Set to '0' to never let it expire." - -#: ../../enterprise/godmode/setup/setup.php:263 -#: ../../enterprise/meta/advanced/metasetup.password.php:102 -msgid " Days" -msgstr " Days" - -#: ../../enterprise/godmode/setup/setup.php:272 -#: ../../enterprise/meta/advanced/metasetup.password.php:113 -msgid " Minutes" -msgstr " Minutes" - -#: ../../enterprise/godmode/setup/setup.php:276 -#: ../../enterprise/meta/advanced/metasetup.password.php:117 -msgid "Two attempts minimum" -msgstr "Two attempts minimum" - -#: ../../enterprise/godmode/setup/setup.php:277 -#: ../../enterprise/meta/advanced/metasetup.password.php:118 -msgid " Attempts" -msgstr " Attempts" - -#: ../../enterprise/godmode/setup/setup.php:309 -msgid "Enterprise password policy" -msgstr "Enterprise password policy" - -#: ../../enterprise/godmode/setup/setup.php:310 -msgid "" -"Rules applied to the management of passwords. This policy applies to all " -"users except the administrator." -msgstr "" -"Rules applied to the management of passwords. This policy applies to all " -"users except to the administrator." - -#: ../../enterprise/godmode/setup/setup_acl.php:40 -msgid "Enterprise ACL setup" -msgstr "Enterprise ACL setup" - -#: ../../enterprise/godmode/setup/setup_acl.php:147 -#: ../../enterprise/godmode/setup/setup_acl.php:179 -msgid "Add new ACL element to profile" -msgstr "Add new ACL element to profile" - -#: ../../enterprise/godmode/setup/setup_acl.php:152 -#: ../../enterprise/godmode/setup/setup_acl.php:224 -msgid "Section" -msgstr "Section" - -#: ../../enterprise/godmode/setup/setup_acl.php:157 -#: ../../enterprise/godmode/setup/setup_acl.php:313 -msgid "Mobile" -msgstr "Mobile" - -#: ../../enterprise/godmode/setup/setup_acl.php:161 -#: ../../enterprise/godmode/setup/setup_acl.php:225 -msgid "Section 2" -msgstr "Section 2" - -#: ../../enterprise/godmode/setup/setup_acl.php:166 -#: ../../enterprise/godmode/setup/setup_acl.php:226 -msgid "Section 3" -msgstr "Section 3" - -#: ../../enterprise/godmode/setup/setup_acl.php:178 -msgid "Hidden" -msgstr "Hidden" - -#: ../../enterprise/godmode/setup/setup_acl.php:184 -msgid "Page" -msgstr "Page" - -#: ../../enterprise/godmode/setup/setup_acl.php:203 -msgid "Filter by profile" -msgstr "Filter by profile" - -#: ../../enterprise/godmode/setup/setup_auth.php:31 -msgid "Active directory" -msgstr "Active directory" - -#: ../../enterprise/godmode/setup/setup_auth.php:32 -msgid "Remote Pandora FMS" -msgstr "Remote Pandora FMS" - -#: ../../enterprise/godmode/setup/setup_auth.php:33 -msgid "Remote Babel Enterprise" -msgstr "Remote Babel Enterprise" - -#: ../../enterprise/godmode/setup/setup_auth.php:34 -msgid "Remote Integria" -msgstr "Remote Integria" - -#: ../../enterprise/godmode/setup/setup_auth.php:35 -msgid "SAML" -msgstr "SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:154 -msgid "You must select a profile from the list of profiles." -msgstr "You must select a profile from the list of profiles." - -#: ../../enterprise/godmode/setup/setup_auth.php:346 -msgid "SimpleSAML path" -msgstr "SimpleSAML path" - -#: ../../enterprise/godmode/setup/setup_auth.php:346 -msgid "" -"Select the path where SimpleSAML has been installed (by default '/opt/')" -msgstr "" -"Select the path where SimpleSAML has been installed (by default '/opt/')" - -#: ../../enterprise/godmode/setup/setup_auth.php:355 -msgid "" -"Enable this option to assign profiles, groups and tags to users from " -"specific AD groups (updated at the next login)" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:389 -#: ../../enterprise/meta/include/functions_meta.php:754 -msgid "Auto enable node access" -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:390 -msgid "New users will be able to log in to the nodes." -msgstr "" - -#: ../../enterprise/godmode/setup/setup_auth.php:427 -#: ../../enterprise/godmode/setup/setup_auth.php:468 -msgid "AD Groups" -msgstr "AD Groups" - -#: ../../enterprise/godmode/setup/setup_auth.php:470 -msgid "Select profile" -msgstr "Select profile" - -#: ../../enterprise/godmode/setup/setup_auth.php:479 -msgid "Add new permissions" -msgstr "Add new permissions" - -#: ../../enterprise/godmode/setup/setup_history.php:49 -msgid "Enable event history" -msgstr "Enable event history" - -#: ../../enterprise/godmode/setup/setup_history.php:49 -msgid "" -"Event history is ONLY used for event reports, is not used in graphs or event " -"viewer." -msgstr "" -"Event history is ONLY used for event reports, is not used in graphs or event " -"viewer." - -#: ../../enterprise/godmode/setup/setup_history.php:68 -msgid "Number of days before data is transfered to history database." -msgstr "Number of days before the data is transfered to history database." - -#: ../../enterprise/godmode/setup/setup_history.php:71 -msgid "" -"Data size of mechanism used to transfer data (similar to a data buffer.)" -msgstr "" -"Data size of mechanism used to transfer the data (similar to a data buffer.)" - -#: ../../enterprise/godmode/setup/setup_history.php:74 -msgid "Time interval between data transfer." -msgstr "Time interval between data transfer." - -#: ../../enterprise/godmode/setup/setup_history.php:77 -msgid "Event days" -msgstr "Event days" - -#: ../../enterprise/godmode/setup/setup_history.php:77 -msgid "Number of days before events is transfered to history database." -msgstr "Number of days before events is transferred to history database." - -#: ../../enterprise/godmode/setup/setup_log_collector.php:44 -msgid "Log storage directory" -msgstr "Log storage directory" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:45 -msgid "Directory where log data will be stored." -msgstr "Directory where the log data will be stored." - -#: ../../enterprise/godmode/setup/setup_log_collector.php:48 -msgid "Sets the maximum lifetime for log data in days." -msgstr "Sets the maximum lifetime for log data in days." - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:29 -msgid "Metaconsole setup" -msgstr "Metaconsole setup" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:76 -#: ../../enterprise/meta/advanced/metasetup.auth.php:53 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:138 -#: ../../enterprise/meta/advanced/metasetup.password.php:53 -#: ../../enterprise/meta/advanced/metasetup.performance.php:53 -#: ../../enterprise/meta/advanced/metasetup.setup.php:85 -#: ../../enterprise/meta/advanced/metasetup.visual.php:56 -msgid "Successfully update" -msgstr "Update successful." - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:77 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:139 -msgid "Could not be update" -msgstr "Could not be updated." - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:168 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:301 -msgid "Pandora FMS Metaconsole item edition" -msgstr "Pandora FMS Metaconsole item edition" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:175 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:310 -msgid "Auth token" -msgstr "Auth token" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:175 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:312 -msgid "" -"Token previously configured on the destination Pandora console in order to " -"use delegated authentification." -msgstr "" -"Token previously configured on the destination Pandora console in order to " -"use delegated authentification." - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:179 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:248 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:315 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:389 -msgid "Console URL" -msgstr "Console URL" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:188 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:249 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:321 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:390 -msgid "DB Host" -msgstr "DB Host" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:192 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 -msgid "DB Name" -msgstr "DB Name" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:197 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:327 -msgid "DB User" -msgstr "DB User" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:201 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:330 -msgid "DB Password" -msgstr "DB Password" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:206 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:336 -msgid "Console User" -msgstr "Console User" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:210 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:339 -msgid "Console Password" -msgstr "Console Password" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:244 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:381 -msgid "DB" -msgstr "DB" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:245 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 -msgid "API" -msgstr "API" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:246 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:383 -msgid "Compatibility" -msgstr "Compatibility" - -#: ../../enterprise/godmode/setup/setup_skins.php:71 -msgid "Error deleting skin" -msgstr "Error deleting skin" - -#: ../../enterprise/godmode/setup/setup_skins.php:74 -msgid "Successfully deleted skin" -msgstr "Successfully deleted skin" - -#: ../../enterprise/godmode/setup/setup_skins.php:117 -msgid "Skin name" -msgstr "Skin name" - -#: ../../enterprise/godmode/setup/setup_skins.php:143 -msgid "There are no defined skins" -msgstr "There are no defined skins" - -#: ../../enterprise/godmode/setup/setup_skins.php:148 -msgid "Create skin" -msgstr "Create skin" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:174 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:187 -msgid "Successfully added trap custom values" -msgstr "Success in adding trap custom values." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:177 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:190 -msgid "Error adding trap custom values" -msgstr "Error in adding trap custom values." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:194 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:256 -msgid "This custom OID is preexistent." -msgstr "" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225 -msgid "No change in data" -msgstr "No change in data" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:228 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:249 -msgid "Successfully updated trap custom values" -msgstr "Updating trap custom values successful." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:231 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:252 -msgid "Error updating trap custom values" -msgstr "Error in updating trap custom values." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:268 -msgid "Successfully deleted trap custom values" -msgstr "Deletion of trap custom values successful." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:272 -msgid "Error deleting trap custom values" -msgstr "Error in deleting trap custom values." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:279 +#: ../../godmode/alerts/configure_alert_template.php:845 #, php-format -msgid "Uploaded %s/%s traps" -msgstr "Uploaded %s/%s traps" +msgid "The alert would fire when the value doesn\\'t match %s" +msgstr "The alert is triggered when the value doesn't match %s" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283 -msgid "Fail uploaded file" -msgstr "Failure in uploading file" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287 +#: ../../godmode/alerts/configure_alert_template.php:849 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." +"The alert would fire when the value is not between and " msgstr "" -"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." +"The alert will activate when the value is not between and " -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:296 -msgid "Load MIB" -msgstr "Load MIB" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:298 -msgid "Upload MIB" -msgstr "Upload MIB" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:319 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:65 -msgid "Custom OID" -msgstr "Custom OID" - -#: ../../enterprise/include/ajax/dashboard.ajax.php:297 -msgid "Only one service map widget is supported at this moment" -msgstr "Only one service map widget is supported at this moment" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:251 -msgid "Error accesing to API, auth error." -msgstr "Error accesing to API, auth error." - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:255 -msgid "Error accesing to API." -msgstr "Error accesing to API." - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:259 -msgid "Error could not resolve the host." -msgstr "Error could not resolve the host." - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:270 -msgid "Database credentials not found" -msgstr "Database credentials not found" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:274 -msgid "Error connecting to the specified host" -msgstr "Error on connecting to the specified host" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:278 -msgid "Connected to the host, but cannot found the specified database" -msgstr "Connected to host, but cannot find the specified database." - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:289 -#: ../../enterprise/include/ajax/metaconsole.ajax.php:313 -msgid "Server connection failed" -msgstr "Server connection failed" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:293 +#: ../../godmode/alerts/configure_alert_template.php:857 msgid "" -"\"Translate string\" extension is missed in the server. This extension is " -"mandatory to be configured on metaconsole." +"The alert template cannot have the same value for min and max thresholds." msgstr "" -"\"Translate string\" extension is missing in the server. This extension is " -"mandatory to be configured on metaconsole." +"The alert template cannot have the same value for min and max thresholds." + +#: ../../godmode/alerts/alert_list.php:80 +msgid "Already added" +msgstr "Already added" + +#: ../../godmode/alerts/alert_list.php:264 +#: ../../godmode/massive/massive_standby_alerts.php:96 +msgid "Successfully set standby" +msgstr "Succesfully set to standby mode" + +#: ../../godmode/alerts/alert_list.php:264 +#: ../../godmode/massive/massive_standby_alerts.php:96 +msgid "Could not be set standby" +msgstr "Could not be set to standby mode" + +#: ../../godmode/alerts/alert_list.php:281 +#: ../../godmode/massive/massive_standby_alerts.php:78 +msgid "Successfully set off standby" +msgstr "Successfully turned off standby" + +#: ../../godmode/alerts/alert_list.php:281 +#: ../../godmode/massive/massive_standby_alerts.php:78 +msgid "Could not be set off standby" +msgstr "Standby mode could not be deactivated" + +#: ../../godmode/alerts/alert_list.php:317 +msgid "Builder alert" +msgstr "Builder alert" + +#: ../../godmode/alerts/alert_list.php:326 +#: ../../godmode/alerts/alert_list.php:329 +#: ../../godmode/users/configure_profile.php:268 +msgid "Manage alerts" +msgstr "Manage alerts" + +#: ../../godmode/alerts/alert_list.builder.php:78 +msgid "Latest value" +msgstr "Latest value" + +#: ../../godmode/alerts/alert_list.builder.php:144 +msgid "Add alert" +msgstr "Add alert" + +#: ../../godmode/alerts/alert_templates.php:62 +msgid "Everyday" +msgstr "Everyday" + +#: ../../godmode/alerts/alert_templates.php:73 +msgid "Every" +msgstr "Every" + +#: ../../godmode/alerts/alert_templates.php:83 +msgid "and" +msgstr "and" + +#: ../../godmode/alerts/alert_templates.php:359 +msgid "No alert templates defined" +msgstr "No alert templates defined" + +#: ../../godmode/menu.php:29 +msgid "Manage agents" +msgstr "Manage agents" + +#: ../../godmode/menu.php:39 +msgid "Component groups" +msgstr "Component groups" + +#: ../../godmode/menu.php:42 +msgid "Module categories" +msgstr "Module categories" + +#: ../../godmode/menu.php:46 +msgid "Module types" +msgstr "Module types" + +#: ../../godmode/menu.php:56 ../../godmode/netflow/nf_edit_form.php:66 +#: ../../godmode/netflow/nf_edit_form.php:71 +#: ../../godmode/netflow/nf_edit.php:48 ../../godmode/netflow/nf_edit.php:52 +msgid "Netflow filters" +msgstr "Netflow filters" + +#: ../../godmode/menu.php:62 +msgid "Resources" +msgstr "Resources" + +#: ../../godmode/menu.php:70 +msgid "Manage agents groups" +msgstr "Manage agent groups" + +#: ../../godmode/menu.php:76 +msgid "Module tags" +msgstr "Module tags" + +#: ../../godmode/menu.php:83 ../../godmode/users/profile_list.php:312 +msgid "Users management" +msgstr "Manage users" + +#: ../../godmode/menu.php:85 ../../godmode/users/configure_profile.php:45 +#: ../../godmode/users/configure_user.php:86 +#: ../../godmode/users/profile_list.php:49 +#: ../../godmode/users/user_list.php:117 +msgid "Profile management" +msgstr "Profile management" + +#: ../../godmode/menu.php:91 ../../godmode/users/profile_list.php:302 +msgid "Profiles" +msgstr "Profiles" + +#: ../../godmode/menu.php:98 +msgid "Network components" +msgstr "Network components" + +#: ../../godmode/menu.php:101 ../../godmode/agentes/configurar_agente.php:322 +msgid "Module templates" +msgstr "Module templates" + +#: ../../godmode/menu.php:111 +msgid "Bulk operations" +msgstr "Bulk operations" + +#: ../../godmode/menu.php:116 ../../godmode/massive/massive_operations.php:165 +msgid "Agents operations" +msgstr "Agent operations" + +#: ../../godmode/menu.php:117 ../../godmode/massive/massive_operations.php:170 +msgid "Modules operations" +msgstr "Module operations" + +#: ../../godmode/menu.php:118 ../../godmode/massive/massive_operations.php:175 +msgid "Plugins operations" +msgstr "Plugin operations" + +#: ../../godmode/menu.php:120 ../../godmode/massive/massive_operations.php:160 +msgid "Users operations" +msgstr "User operations" + +#: ../../godmode/menu.php:122 ../../godmode/massive/massive_operations.php:155 +msgid "Alerts operations" +msgstr "Alert operations" + +#: ../../godmode/menu.php:145 +msgid "List of Alerts" +msgstr "List of Alerts" + +#: ../../godmode/menu.php:151 ../../godmode/agentes/configurar_agente.php:542 +msgid "Templates" +msgstr "Templates" + +#: ../../godmode/menu.php:160 +msgid "Commands" +msgstr "Commands" + +#: ../../godmode/menu.php:180 +msgid "Event filters" +msgstr "Event filters" + +#: ../../godmode/menu.php:185 +msgid "Custom events" +msgstr "Custom events" + +#: ../../godmode/menu.php:187 ../../godmode/events/events.php:48 +msgid "Event responses" +msgstr "Event responses" + +#: ../../godmode/menu.php:207 +msgid "Manage servers" +msgstr "Manage servers" + +#: ../../godmode/menu.php:215 +msgid "Plugins" +msgstr "Plugins" + +#: ../../godmode/menu.php:218 +#: ../../godmode/servers/manage_recontask_form.php:274 +msgid "Recon script" +msgstr "Recon script" + +#: ../../godmode/menu.php:244 +msgid "General Setup" +msgstr "General Setup" + +#: ../../godmode/menu.php:253 ../../godmode/setup/setup.php:82 +#: ../../godmode/setup/setup.php:116 +msgid "Authentication" +msgstr "Authentication" + +#: ../../godmode/menu.php:256 ../../godmode/setup/setup.php:86 +#: ../../godmode/setup/setup.php:120 +msgid "Performance" +msgstr "Performance" + +#: ../../godmode/menu.php:259 ../../godmode/setup/setup.php:90 +#: ../../godmode/setup/setup.php:125 +msgid "Visual styles" +msgstr "Visual styles" + +#: ../../godmode/menu.php:273 ../../godmode/setup/gis.php:32 +msgid "Map conections GIS" +msgstr "GIS map connection" + +#: ../../godmode/menu.php:277 ../../godmode/setup/os.php:143 +msgid "Edit OS" +msgstr "Edit OS" -#: ../../enterprise/include/ajax/metaconsole.ajax.php:297 -msgid "" -"Server name doesnt match. Check the node server name and configure the same " -"one on metasetup" -msgstr "" -"Server name doesn't match. Check the node server name and configure the same " -"one on metasetup." - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:308 -msgid "Last event replication" -msgstr "Last event replication" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:322 -msgid "Agent cache activated" -msgstr "Agent cache activated" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:326 -msgid "Agent cache failed" -msgstr "Agent cache failed" - -#: ../../enterprise/include/ajax/transactional.ajax.php:178 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:151 -msgid "The phase does not have a defined script" -msgstr "" - -#: ../../enterprise/include/ajax/transactional.ajax.php:217 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:201 -msgid "Edit Data" -msgstr "" - -#: ../../enterprise/include/functions_alert_event.php:925 -msgid "Module alert" -msgstr "Module alert" - -#: ../../enterprise/include/functions_backup.php:135 -msgid "No description" -msgstr "No description" - -#: ../../enterprise/include/functions_backup.php:242 -#: ../../enterprise/include/functions_backup.php:324 -msgid "Restoring a backup" -msgstr "Restoring a backup" - -#: ../../enterprise/include/functions_backup.php:244 -#: ../../enterprise/include/functions_backup.php:326 -msgid "Restoring a Pandora database backup must be done manually" -msgstr "Restoring the Pandora database backup must be done manually." - -#: ../../enterprise/include/functions_backup.php:245 -#: ../../enterprise/include/functions_backup.php:327 -msgid "" -"It's a complex operation that needs human intervation to avoid system " -"failures and data loosing" -msgstr "" -"It's a complex operation that needs human intervation to avoid system " -"failures and data loss." - -#: ../../enterprise/include/functions_backup.php:246 -#: ../../enterprise/include/functions_backup.php:328 -msgid "To restore the selected backup, please follow these steps" -msgstr "To restore the selected backup, please follow these steps" - -#: ../../enterprise/include/functions_backup.php:252 -#: ../../enterprise/include/functions_backup.php:334 -msgid "Open a root shell in your system located at " -msgstr "Open a root shell in your system located at " - -#: ../../enterprise/include/functions_backup.php:256 -msgid "Connect to MySQL database using the following command" -msgstr "Please connect to MySQL database using the following command" - -#: ../../enterprise/include/functions_backup.php:263 -msgid "Create a new database" -msgstr "Create a new database" - -#: ../../enterprise/include/functions_backup.php:276 -msgid "Restore the backup" -msgstr "Restore the backup" - -#: ../../enterprise/include/functions_backup.php:284 -#: ../../enterprise/include/functions_backup.php:349 -msgid "Modify console configuration to use this new database" -msgstr "Please modify console configuration to use this new database." - -#: ../../enterprise/include/functions_backup.php:285 -#: ../../enterprise/include/functions_backup.php:350 -msgid "Open configuration file" -msgstr "Open configuration file" - -#: ../../enterprise/include/functions_backup.php:289 -#: ../../enterprise/include/functions_backup.php:301 -#: ../../enterprise/include/functions_backup.php:354 -#: ../../enterprise/include/functions_backup.php:366 -msgid "Find" -msgstr "Find" - -#: ../../enterprise/include/functions_backup.php:291 -#: ../../enterprise/include/functions_backup.php:304 -#: ../../enterprise/include/functions_backup.php:356 -#: ../../enterprise/include/functions_backup.php:369 -msgid "and replace with" -msgstr "and replace it with" - -#: ../../enterprise/include/functions_backup.php:298 -#: ../../enterprise/include/functions_backup.php:363 -msgid "Modify servers configuration to use this new database" -msgstr "Modify server configuration to use this new database." - -#: ../../enterprise/include/functions_backup.php:299 -#: ../../enterprise/include/functions_backup.php:364 -msgid "Find servers configuration file and replace the following lines" -msgstr "" -"Please find the server configuration file and replace the following lines" - -#: ../../enterprise/include/functions_backup.php:311 -#: ../../enterprise/include/functions_backup.php:376 -msgid "Restart the servers and login again into the console" -msgstr "Please restart the servers and login to the console again." - -#: ../../enterprise/include/functions_backup.php:341 -msgid "Run import command using the following command" -msgstr "Please run the import command using the following command" - -#: ../../enterprise/include/functions_backup.php:345 -msgid "Into your destination database." -msgstr "Into your destination database." - -#: ../../enterprise/include/functions_collection.php:42 -#, php-format -msgid "Fail create the directory: %s" -msgstr "Failure in creating the directory: %s" - -#: ../../enterprise/include/functions_collection.php:69 -msgid "No files in collection" -msgstr "No files in collection" - -#: ../../enterprise/include/functions_collection.php:77 -msgid "File of collection is bigger than the limit (" -msgstr "File of collection is bigger than the limit (" - -#: ../../enterprise/include/functions_dashboard.php:360 -#, php-format -msgid "Copy of %s" -msgstr "" - -#: ../../enterprise/include/functions_enterprise.php:298 -msgid "Tree view by tags" -msgstr "Tree view by tags" - -#: ../../enterprise/include/functions_enterprise.php:321 -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" -msgstr "" -"If event purge is lower than events days passed to history DB you will lose " -"data. We recommend that events days purge is longer than events days passed " -"to history DB" - -#: ../../enterprise/include/functions_enterprise.php:323 -msgid "" -"Problems with event days purge and event days that pass data to history DB." -msgstr "" -"Problems with event days purge and event days that pass data to history DB." - -#: ../../enterprise/include/functions_enterprise.php:331 -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 "" -"If the number of days purged is lower than history days passed to the " -"history DB, data will be lost. It's recommended that days purged be longer " -"than days passed to history DB." - -#: ../../enterprise/include/functions_enterprise.php:333 -msgid "Problems with days purge and days that pass data to history DB" -msgstr "Problems with days purged and days that pass data to history DB" - -#: ../../enterprise/include/functions_events.php:164 -#: ../../enterprise/include/functions_reporting_csv.php:1449 -msgid "Hours" -msgstr "Hours" - -#: ../../enterprise/include/functions_events.php:177 -#: ../../enterprise/include/functions_events.php:194 -msgid "More than 5 tags" -msgstr "" - -#: ../../enterprise/include/functions_events.php:212 -msgid "Active filter" -msgstr "" - -#: ../../enterprise/include/functions_events.php:213 -msgid "Active filters" -msgstr "" - -#: ../../enterprise/include/functions_groups.php:47 -msgid "Metaconsole" -msgstr "Metaconsole" - -#: ../../enterprise/include/functions_inventory.php:54 -#: ../../enterprise/include/functions_inventory.php:494 -msgid "No changes found" -msgstr "No changes found." - -#: ../../enterprise/include/functions_inventory.php:64 -msgid "Agent alias" -msgstr "" - -#: ../../enterprise/include/functions_inventory.php:80 -msgid "Get CSV file" -msgstr "Get CSV file" - -#: ../../enterprise/include/functions_license.php:49 -msgid "Client" -msgstr "Client" - -#: ../../enterprise/include/functions_license.php:49 -msgid "Trial" -msgstr "Trial" - -#: ../../enterprise/include/functions_local_components.php:142 -msgid "Empty configuration" -msgstr "Empty configuration" - -#: ../../enterprise/include/functions_local_components.php:146 -msgid "Empty OS" -msgstr "Empty OS" - -#: ../../enterprise/include/functions_log.php:346 -msgid "Lines" -msgstr "Lines" - -#: ../../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:48 -msgid "Old pass: " -msgstr "" - -#: ../../enterprise/include/functions_login.php:51 -msgid "New pass: " -msgstr "" - -#: ../../enterprise/include/functions_login.php:55 -msgid "Confirm: " -msgstr "" - -#: ../../enterprise/include/functions_login.php:61 -msgid "Change" -msgstr "Change" - -#: ../../enterprise/include/functions_login.php:92 -msgid "Login blocked" -msgstr "" - -#: ../../enterprise/include/functions_login.php:100 -msgid "User has been blocked. Try again in " -msgstr "User has been blocked. Please try again in " - -#: ../../enterprise/include/functions_login.php:100 -msgid " minutes" -msgstr " minutes" - -#: ../../enterprise/include/functions_login.php:129 -msgid "Login successfully" -msgstr "" - -#: ../../enterprise/include/functions_login.php:136 -msgid "Successfully" -msgstr "" - -#: ../../enterprise/include/functions_login.php:137 -msgid "User pass successfully updated" -msgstr "User pass successfully updated" - -#: ../../enterprise/include/functions_login.php:238 -msgid "Password must be different from the " -msgstr "Password must be different from the " - -#: ../../enterprise/include/functions_login.php:238 -msgid " previous changes." -msgstr " previous changes." - -#: ../../enterprise/include/functions_login.php:252 -msgid "Password must be different" -msgstr "Password must be different" - -#: ../../enterprise/include/functions_login.php:262 -msgid "Password too short" -msgstr "Password too short" - -#: ../../enterprise/include/functions_login.php:273 -msgid "Password must contain numbers" -msgstr "Password has to contain numbers." - -#: ../../enterprise/include/functions_login.php:285 -msgid "Password must contain symbols" -msgstr "Password has to contain symbols." - -#: ../../enterprise/include/functions_login.php:305 -msgid "Invalid old password" -msgstr "Invalid old password" - -#: ../../enterprise/include/functions_login.php:340 -msgid "Password confirm does not match" -msgstr "Password confirm does not match" - -#: ../../enterprise/include/functions_login.php:348 -msgid "Password empty" -msgstr "Password empty" - -#: ../../enterprise/include/functions_metaconsole.php:842 -msgid "Group does not exist. Agent " -msgstr "Group does not exist. Agent " - -#: ../../enterprise/include/functions_metaconsole.php:848 -msgid "Created group in destination DB" -msgstr "Created group in destination DB" - -#: ../../enterprise/include/functions_metaconsole.php:852 -msgid "Error creating group. Agent " -msgstr "Error creating group. Agent " - -#: ../../enterprise/include/functions_metaconsole.php:858 -msgid "Group already exists in destination DB" -msgstr "Group already exists in destination DB" - -#: ../../enterprise/include/functions_netflow_pdf.php:45 -#: ../../enterprise/include/functions_reporting_pdf.php:51 -msgid "Automated Pandora FMS report for user defined report" -msgstr "Automated Pandora FMS report for user defined report" - -#: ../../enterprise/include/functions_netflow_pdf.php:56 -#: ../../enterprise/include/functions_reporting_pdf.php:2190 -msgid "Contents" -msgstr "Contents" - -#: ../../enterprise/include/functions_netflow_pdf.php:160 -#: ../../enterprise/operation/log/log_viewer.php:215 -msgid "Start date" -msgstr "Start date" - -#: ../../enterprise/include/functions_policies.php:3035 -msgid "Policy linkation" -msgstr "Policy linking" - -#: ../../enterprise/include/functions_policies.php:3040 -msgid "Module linked" -msgstr "Module linked" - -#: ../../enterprise/include/functions_policies.php:3042 -#: ../../enterprise/include/functions_policies.php:3052 -msgid "Unlink from policy" -msgstr "Unlink from policy" - -#: ../../enterprise/include/functions_policies.php:3045 -msgid "Module unlinked" -msgstr "Module unlinked" - -#: ../../enterprise/include/functions_policies.php:3047 -#: ../../enterprise/include/functions_policies.php:3057 -msgid "Relink to policy" -msgstr "Relink to policy" - -#: ../../enterprise/include/functions_policies.php:3050 -msgid "Module pending to link" -msgstr "Module pending to link" - -#: ../../enterprise/include/functions_policies.php:3055 -msgid "Module pending to unlink" -msgstr "Module pending to unlink" - -#: ../../enterprise/include/functions_policies.php:3781 -msgid "Create a new policy map" -msgstr "Create a new policy map" - -#: ../../enterprise/include/functions_policies.php:4100 -#, php-format -msgid "" -"This extension makes registration of policies enterprise.
    You can get " -"more policies in our Public Resource Library" -msgstr "" -"This extension registers Enterprise policies.
    You can get more policies " -"in our Public Resource Library" - -#: ../../enterprise/include/functions_reporting.php:41 -msgid "Advance options" -msgstr "Advanced options" - -#: ../../enterprise/include/functions_reporting.php:59 -msgid "Templates list" -msgstr "Templates list" - -#: ../../enterprise/include/functions_reporting.php:65 -#: ../../enterprise/meta/general/main_header.php:165 -msgid "Templates wizard" -msgstr "Templates wizard" - -#: ../../enterprise/include/functions_reporting.php:85 -msgid "Templates Wizard" -msgstr "Templates Wizard" - -#: ../../enterprise/include/functions_reporting.php:633 -msgid "Availability item created from wizard." -msgstr "Availability item created from wizard." - -#: ../../enterprise/include/functions_reporting.php:1300 -#: ../../enterprise/include/functions_reporting.php:2092 -#: ../../enterprise/include/functions_reporting.php:2869 -#: ../../enterprise/include/functions_reporting_pdf.php:1653 -msgid "Planned Downtimes" -msgstr "Planned Downtimes" - -#: ../../enterprise/include/functions_reporting.php:1306 -#: ../../enterprise/include/functions_reporting.php:2098 -#: ../../enterprise/include/functions_reporting.php:2875 -#: ../../enterprise/include/functions_reporting_pdf.php:1659 -msgid "Ignore Time" -msgstr "Ignore Time" - -#: ../../enterprise/include/functions_reporting.php:1326 -#: ../../enterprise/include/functions_reporting_pdf.php:1674 -msgid "SLA Compliance per days" -msgstr "SLA Compliance per days" - -#: ../../enterprise/include/functions_reporting.php:1393 -#: ../../enterprise/include/functions_reporting_pdf.php:1753 -msgid "Summary of SLA Failures" -msgstr "Summary of SLA Failures" - -#: ../../enterprise/include/functions_reporting.php:1395 -#: ../../enterprise/include/functions_reporting_csv.php:1085 -#: ../../enterprise/include/functions_reporting_pdf.php:1757 -msgid "Day" -msgstr "Day" - -#: ../../enterprise/include/functions_reporting.php:2135 -msgid "T. Total" -msgstr "T. Total" - -#: ../../enterprise/include/functions_reporting.php:2136 -#: ../../enterprise/include/functions_reporting.php:2899 -msgid "T. OK" -msgstr "T. OK" - -#: ../../enterprise/include/functions_reporting.php:2137 -#: ../../enterprise/include/functions_reporting.php:2900 -msgid "T. Error" -msgstr "T. Error" - -#: ../../enterprise/include/functions_reporting.php:2138 -#: ../../enterprise/include/functions_reporting.php:2901 -msgid "T. Unknown" -msgstr "T. Unknown" - -#: ../../enterprise/include/functions_reporting.php:2139 -#: ../../enterprise/include/functions_reporting.php:2902 -msgid "T. Not_init" -msgstr "T. Not_init" - -#: ../../enterprise/include/functions_reporting.php:2140 -#: ../../enterprise/include/functions_reporting.php:2903 -msgid "T. Downtime" -msgstr "T. Downtime" - -#: ../../enterprise/include/functions_reporting.php:2141 -#: ../../enterprise/include/functions_reporting.php:2904 -msgid "SLA %" -msgstr "SLA %" - -#: ../../enterprise/include/functions_reporting.php:3528 -msgid "Module Histogram Graph" -msgstr "" - -#: ../../enterprise/include/functions_reporting.php:4038 -msgid "There are no SLAs defined." -msgstr "There are no SLAs defined." - -#: ../../enterprise/include/functions_reporting.php:4152 -#: ../../enterprise/include/functions_reporting.php:4771 -#: ../../enterprise/include/functions_services.php:1216 -#: ../../enterprise/include/functions_services.php:1218 -#: ../../enterprise/include/functions_services.php:1239 -#: ../../enterprise/include/functions_services.php:1240 -#: ../../enterprise/include/functions_services.php:1242 -#: ../../enterprise/include/functions_services.php:1276 -#: ../../enterprise/include/functions_services.php:1278 -msgid "Nonexistent" -msgstr "Nonexistent" - -#: ../../enterprise/include/functions_reporting.php:5308 -#: ../../enterprise/include/functions_reporting.php:5787 -#, php-format -msgid "Graph agents(%s) - %s" -msgstr "Graph agents(%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:5735 -#, php-format -msgid "Graph agent(%s) - %s" -msgstr "Graph agent(%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:6188 -#: ../../enterprise/include/functions_reporting.php:6238 -msgid "Template editor" -msgstr "Template editor" - -#: ../../enterprise/include/functions_reporting.php:6252 -msgid "Get PDF file" -msgstr "Get PDF file" - -#: ../../enterprise/include/functions_reporting_csv.php:363 -msgid "Serialized data " -msgstr "Serialized data " - -#: ../../enterprise/include/functions_reporting_csv.php:455 -#: ../../enterprise/include/functions_reporting_csv.php:523 -#: ../../enterprise/include/functions_reporting_csv.php:558 -#: ../../enterprise/include/functions_reporting_csv.php:594 -#: ../../enterprise/include/functions_reporting_csv.php:631 -#: ../../enterprise/include/functions_reporting_csv.php:699 -#: ../../enterprise/include/functions_reporting_csv.php:735 -#: ../../enterprise/include/functions_reporting_csv.php:771 -#: ../../enterprise/include/functions_reporting_csv.php:807 -#: ../../enterprise/include/functions_reporting_csv.php:843 -msgid "Report type" -msgstr "Report type" - -#: ../../enterprise/include/functions_reporting_csv.php:457 -msgid "Uknown agents" -msgstr "Uknown agents" - -#: ../../enterprise/include/functions_reporting_csv.php:466 -msgid "Last 8 hours events" -msgstr "Last 8 hours events" - -#: ../../enterprise/include/functions_reporting_csv.php:668 -msgid "Illegal query or any other error" -msgstr "Illegal query or any other error" - -#: ../../enterprise/include/functions_reporting_csv.php:843 -msgid "% OK" -msgstr "% OK" - -#: ../../enterprise/include/functions_reporting_csv.php:843 -msgid "% Wrong" -msgstr "% Wrong" - -#: ../../enterprise/include/functions_reporting_csv.php:867 -msgid "Simple Graph" -msgstr "Simple Graph" - -#: ../../enterprise/include/functions_reporting_csv.php:929 -#: ../../enterprise/include/functions_reporting_csv.php:976 -#: ../../enterprise/include/functions_reporting_csv.php:1048 -#: ../../enterprise/include/functions_reporting_csv.php:1164 -#: ../../enterprise/include/functions_reporting_csv.php:1376 -msgid "SLA Max" -msgstr "SLA Max" - -#: ../../enterprise/include/functions_reporting_csv.php:930 -#: ../../enterprise/include/functions_reporting_csv.php:977 -#: ../../enterprise/include/functions_reporting_csv.php:1049 -#: ../../enterprise/include/functions_reporting_csv.php:1165 -#: ../../enterprise/include/functions_reporting_csv.php:1377 -msgid "SLA Min" -msgstr "SLA Min" - -#: ../../enterprise/include/functions_reporting_csv.php:932 -#: ../../enterprise/include/functions_reporting_csv.php:979 -msgid "Time Total " -msgstr "Time Total " - -#: ../../enterprise/include/functions_reporting_csv.php:933 -#: ../../enterprise/include/functions_reporting_csv.php:980 -msgid "Time OK " -msgstr "Time OK " - -#: ../../enterprise/include/functions_reporting_csv.php:934 -#: ../../enterprise/include/functions_reporting_csv.php:981 -msgid "Time Error " -msgstr "Time Error " - -#: ../../enterprise/include/functions_reporting_csv.php:935 -#: ../../enterprise/include/functions_reporting_csv.php:982 -msgid "Time Unknown " -msgstr "Time Unknown " - -#: ../../enterprise/include/functions_reporting_csv.php:936 -#: ../../enterprise/include/functions_reporting_csv.php:983 -msgid "Time Not Init " -msgstr "Time Not Init " - -#: ../../enterprise/include/functions_reporting_csv.php:937 -#: ../../enterprise/include/functions_reporting_csv.php:984 -msgid "Time Downtime " -msgstr "Time Downtime " - -#: ../../enterprise/include/functions_reporting_csv.php:938 -#: ../../enterprise/include/functions_reporting_csv.php:985 -msgid "Checks Total " -msgstr "Checks Total " - -#: ../../enterprise/include/functions_reporting_csv.php:939 -#: ../../enterprise/include/functions_reporting_csv.php:986 -msgid "Checks OK " -msgstr "Checks OK " - -#: ../../enterprise/include/functions_reporting_csv.php:940 -#: ../../enterprise/include/functions_reporting_csv.php:987 -msgid "Checks Error " -msgstr "Checks Error " - -#: ../../enterprise/include/functions_reporting_csv.php:941 -#: ../../enterprise/include/functions_reporting_csv.php:988 -msgid "Checks Unknown " -msgstr "Checks Unknown " - -#: ../../enterprise/include/functions_reporting_csv.php:942 -#: ../../enterprise/include/functions_reporting_csv.php:989 -msgid "Checks Not Init " -msgstr "Checks Not Init " - -#: ../../enterprise/include/functions_reporting_csv.php:943 -#: ../../enterprise/include/functions_reporting_csv.php:990 -msgid "SLA " -msgstr "SLA " - -#: ../../enterprise/include/functions_reporting_csv.php:944 -#: ../../enterprise/include/functions_reporting_csv.php:991 -msgid "Status " -msgstr "Status " - -#: ../../enterprise/include/functions_reporting_csv.php:1036 -#: ../../enterprise/include/functions_reporting_csv.php:1149 -#: ../../enterprise/include/functions_reporting_csv.php:1296 -#: ../../enterprise/include/functions_reporting_csv.php:1361 -msgid "Subtitle" -msgstr "Subtitle" - -#: ../../enterprise/include/functions_reporting_csv.php:1051 -#: ../../enterprise/include/functions_reporting_csv.php:1180 -#: ../../enterprise/include/functions_reporting_csv.php:1392 -msgid "Time Total Month" -msgstr "Time Total Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1052 -#: ../../enterprise/include/functions_reporting_csv.php:1181 -#: ../../enterprise/include/functions_reporting_csv.php:1393 -msgid "Time OK Month" -msgstr "Time OK Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1053 -#: ../../enterprise/include/functions_reporting_csv.php:1182 -#: ../../enterprise/include/functions_reporting_csv.php:1394 -msgid "Time Error Month" -msgstr "Time Error Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1054 -#: ../../enterprise/include/functions_reporting_csv.php:1183 -#: ../../enterprise/include/functions_reporting_csv.php:1395 -msgid "Time Unknown Month" -msgstr "Time Unknown Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1055 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1396 -msgid "Time Downtime Month" -msgstr "Time Downtime Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1056 -#: ../../enterprise/include/functions_reporting_csv.php:1185 -#: ../../enterprise/include/functions_reporting_csv.php:1397 -msgid "Time Not Init Month" -msgstr "Time Not Init Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1057 -#: ../../enterprise/include/functions_reporting_csv.php:1186 -#: ../../enterprise/include/functions_reporting_csv.php:1398 -msgid "Checks Total Month" -msgstr "Checks Total Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1058 -#: ../../enterprise/include/functions_reporting_csv.php:1187 -#: ../../enterprise/include/functions_reporting_csv.php:1399 -msgid "Checks OK Month" -msgstr "Checks OK Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1059 -#: ../../enterprise/include/functions_reporting_csv.php:1188 -#: ../../enterprise/include/functions_reporting_csv.php:1400 -msgid "Checks Error Month" -msgstr "Checks Error Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1060 -#: ../../enterprise/include/functions_reporting_csv.php:1189 -#: ../../enterprise/include/functions_reporting_csv.php:1401 -msgid "Checks Unknown Month" -msgstr "Checks Unknown Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1061 -#: ../../enterprise/include/functions_reporting_csv.php:1190 -#: ../../enterprise/include/functions_reporting_csv.php:1402 -msgid "Checks Not Init Month" -msgstr "Checks Not Init Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1062 -#: ../../enterprise/include/functions_reporting_csv.php:1191 -#: ../../enterprise/include/functions_reporting_csv.php:1403 -msgid "SLA Month" -msgstr "SLA Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1063 -#: ../../enterprise/include/functions_reporting_csv.php:1192 -#: ../../enterprise/include/functions_reporting_csv.php:1404 -msgid "Status Month" -msgstr "Status Month" - -#: ../../enterprise/include/functions_reporting_csv.php:1086 -#: ../../enterprise/include/functions_reporting_csv.php:1238 -msgid "Time Total Day" -msgstr "Time Total Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1087 -#: ../../enterprise/include/functions_reporting_csv.php:1239 -msgid "Time OK Day" -msgstr "Time OK Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1088 -#: ../../enterprise/include/functions_reporting_csv.php:1240 -msgid "Time Error Day" -msgstr "Time Error Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1089 -#: ../../enterprise/include/functions_reporting_csv.php:1241 -msgid "Time Unknown Day" -msgstr "Time Unknown Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1090 -#: ../../enterprise/include/functions_reporting_csv.php:1242 -msgid "Time Not Init Day" -msgstr "Time Not Init Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1091 -#: ../../enterprise/include/functions_reporting_csv.php:1243 -msgid "Time Downtime Day" -msgstr "Time Downtime Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1092 -#: ../../enterprise/include/functions_reporting_csv.php:1244 -msgid "Time Out Day" -msgstr "Time Out Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1093 -#: ../../enterprise/include/functions_reporting_csv.php:1245 -msgid "Checks Total Day" -msgstr "Checks Total Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1094 -#: ../../enterprise/include/functions_reporting_csv.php:1246 -msgid "Checks OK Day" -msgstr "Checks OK Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1095 -#: ../../enterprise/include/functions_reporting_csv.php:1247 -msgid "Checks Error Day" -msgstr "Checks Error Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1096 -#: ../../enterprise/include/functions_reporting_csv.php:1248 -msgid "Checks Unknown Day" -msgstr "Checks Unknown Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1097 -#: ../../enterprise/include/functions_reporting_csv.php:1249 -msgid "Checks Not Init Day" -msgstr "Checks Not Init Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1098 -#: ../../enterprise/include/functions_reporting_csv.php:1250 -msgid "SLA Day" -msgstr "SLA Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1099 -#: ../../enterprise/include/functions_reporting_csv.php:1251 -msgid "SLA Fixed Day" -msgstr "SLA Fixed Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1100 -#: ../../enterprise/include/functions_reporting_csv.php:1252 -msgid "Date From Day" -msgstr "Date From Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1101 -#: ../../enterprise/include/functions_reporting_csv.php:1253 -msgid "Date To Day" -msgstr "Date To Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1102 -#: ../../enterprise/include/functions_reporting_csv.php:1254 -msgid "Status Day" -msgstr "Status Day" - -#: ../../enterprise/include/functions_reporting_csv.php:1160 -#: ../../enterprise/include/functions_reporting_csv.php:1372 -msgid "Month Number" -msgstr "Month Number" - -#: ../../enterprise/include/functions_reporting_csv.php:1161 -#: ../../enterprise/include/functions_reporting_csv.php:1373 -msgid "Year" -msgstr "Year" - -#: ../../enterprise/include/functions_reporting_csv.php:1211 -msgid "Time Total week" -msgstr "Time Total week" - -#: ../../enterprise/include/functions_reporting_csv.php:1212 -msgid "Time OK week" -msgstr "Time OK week" - -#: ../../enterprise/include/functions_reporting_csv.php:1213 -msgid "Time Error week" -msgstr "Time Error week" - -#: ../../enterprise/include/functions_reporting_csv.php:1214 -msgid "Time Unknown week" -msgstr "Time Unknown week" - -#: ../../enterprise/include/functions_reporting_csv.php:1215 -msgid "Time Downtime week" -msgstr "Time Downtime week" - -#: ../../enterprise/include/functions_reporting_csv.php:1216 -msgid "Time Not Init week" -msgstr "Time Not Init week" - -#: ../../enterprise/include/functions_reporting_csv.php:1217 -msgid "Checks Total week" -msgstr "Checks Total week" - -#: ../../enterprise/include/functions_reporting_csv.php:1218 -msgid "Checks OK week" -msgstr "Checks OK week" - -#: ../../enterprise/include/functions_reporting_csv.php:1219 -msgid "Checks Error week" -msgstr "Checks Error week" - -#: ../../enterprise/include/functions_reporting_csv.php:1220 -msgid "Checks Unknown week" -msgstr "Checks Unknown week" - -#: ../../enterprise/include/functions_reporting_csv.php:1221 -msgid "Status week" -msgstr "Status week" - -#: ../../enterprise/include/functions_reporting_csv.php:1237 -msgid "Day Week" -msgstr "Day Week" - -#: ../../enterprise/include/functions_reporting_csv.php:1306 -msgid "SLA max" -msgstr "SLA max" - -#: ../../enterprise/include/functions_reporting_csv.php:1307 -msgid "SLA min" -msgstr "SLA min" - -#: ../../enterprise/include/functions_reporting_csv.php:1308 -msgid "SLA limit" -msgstr "SLA limit" - -#: ../../enterprise/include/functions_reporting_csv.php:1311 -msgid "Time Error" -msgstr "Time Error" - -#: ../../enterprise/include/functions_reporting_csv.php:1317 -msgid "Checks Error" -msgstr "Checks Error" - -#: ../../enterprise/include/functions_reporting_csv.php:1319 -msgid "Checks Not Init" -msgstr "Checks Not Init" - -#: ../../enterprise/include/functions_reporting_csv.php:1321 -msgid "SLA Fixed" -msgstr "SLA Fixed" - -#: ../../enterprise/include/functions_reporting_csv.php:1423 -msgid "Time Total day" -msgstr "Time Total day" - -#: ../../enterprise/include/functions_reporting_csv.php:1424 -msgid "Time OK day" -msgstr "Time OK day" - -#: ../../enterprise/include/functions_reporting_csv.php:1425 -msgid "Time Error day" -msgstr "Time Error day" - -#: ../../enterprise/include/functions_reporting_csv.php:1426 -msgid "Time Unknown day" -msgstr "Time Unknown day" - -#: ../../enterprise/include/functions_reporting_csv.php:1427 -msgid "Time Downtime day" -msgstr "Time Downtime day" - -#: ../../enterprise/include/functions_reporting_csv.php:1428 -msgid "Time Not Init day" -msgstr "Time Not Init day" - -#: ../../enterprise/include/functions_reporting_csv.php:1429 -msgid "Checks Total day" -msgstr "Checks Total day" - -#: ../../enterprise/include/functions_reporting_csv.php:1430 -msgid "Checks OK day" -msgstr "Checks OK day" - -#: ../../enterprise/include/functions_reporting_csv.php:1431 -msgid "Checks Error day" -msgstr "Checks Error day" - -#: ../../enterprise/include/functions_reporting_csv.php:1432 -msgid "Checks Unknown day" -msgstr "Checks Unknown day" - -#: ../../enterprise/include/functions_reporting_csv.php:1433 -msgid "Status day" -msgstr "Status day" - -#: ../../enterprise/include/functions_reporting_csv.php:1450 -msgid "Time Total hours" -msgstr "Time Total hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1451 -msgid "Time OK hours" -msgstr "Time OK hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1452 -msgid "Time Error hours" -msgstr "Time Error hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1453 -msgid "Time Unknown hours" -msgstr "Time Unknown hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1454 -msgid "Time Not Init hours" -msgstr "Time Not Init hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1455 -msgid "Time Downtime hours" -msgstr "Time Downtime hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1456 -msgid "Time Out hours" -msgstr "Time Out hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1457 -msgid "Checks Total hours" -msgstr "Checks Total hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1458 -msgid "Checks OK hours" -msgstr "Checks OK hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1459 -msgid "Checks Error hours" -msgstr "Checks Error hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1460 -msgid "Checks Unknown hours" -msgstr "Checks Unknown hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1461 -msgid "Checks Not Init hours" -msgstr "Checks Not Init hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1462 -msgid "SLA hours" -msgstr "SLA hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1463 -msgid "SLA Fixed hours" -msgstr "SLA Fixed hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1464 -msgid "Date From hours" -msgstr "Date From hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1465 -msgid "Date To hours" -msgstr "Date To hours" - -#: ../../enterprise/include/functions_reporting_csv.php:1466 -msgid "Status hours" -msgstr "Status hours" - -#: ../../enterprise/include/functions_reporting_pdf.php:1498 -msgid "Legend Graph" -msgstr "Legend Graph" - -#: ../../enterprise/include/functions_reporting_pdf.php:1849 -msgid "Total Time" -msgstr "Total Time" - -#: ../../enterprise/include/functions_reporting_pdf.php:1853 -msgid "Time Not init" -msgstr "Time Not init" - -#: ../../enterprise/include/functions_reporting_pdf.php:1854 -msgid "Time Downtimes" -msgstr "Time Downtimes" - -#: ../../enterprise/include/functions_reporting_pdf.php:1869 -msgid "Total Checks" -msgstr "Total Checks" - -#: ../../enterprise/include/functions_reporting_pdf.php:1991 -msgid "Agent min" -msgstr "Min amount of agents" - -#: ../../enterprise/include/functions_reporting_pdf.php:1992 -msgid "Agent min Value" -msgstr "Agent min Value" - -#: ../../enterprise/include/functions_reporting_pdf.php:2316 -msgid "SO" -msgstr "SO" - -#: ../../enterprise/include/functions_reporting_pdf.php:2357 -msgid "There are no modules." -msgstr "There are no modules." - -#: ../../enterprise/include/functions_services.php:23 -msgid "Service does not exist." -msgstr "Service does not exist." - -#: ../../enterprise/include/functions_services.php:30 -msgid "Module store the service does not exist." -msgstr "Module for storing the service does not exist." - -#: ../../enterprise/include/functions_services.php:35 -msgid "Module store SLA service does not exist." -msgstr "Module for storing SLA service does not exist." - -#: ../../enterprise/include/functions_services.php:41 -msgid "Agent store the service does not exist." -msgstr "Agent for storing the service does not exist." - -#: ../../enterprise/include/functions_services.php:47 -msgid "Agent store SLA service does not exist." -msgstr "Agent to store the SLA service does not exist." - -#: ../../enterprise/include/functions_services.php:57 -msgid "Alert critical SLA service does not exist." -msgstr "Alert for critical SLA service does not exist." - -#: ../../enterprise/include/functions_services.php:68 -msgid "Alert warning service does not exist." -msgstr "Alert warning service does not exist." - -#: ../../enterprise/include/functions_services.php:79 -msgid "Alert critical service does not exist." -msgstr "Alert for critical service does not exist." - -#: ../../enterprise/include/functions_services.php:90 -msgid "Alert unknown service does not exist." -msgstr "Alert for unknown service does not exist." - -#: ../../enterprise/include/functions_services.php:328 -#, php-format -msgid "Module automatic create for the service %s" -msgstr "Automatic module creation for the service %s" - -#: ../../enterprise/include/functions_services.php:1261 -msgid "Critical (Alert)" -msgstr "Critical (Alert)" - -#: ../../enterprise/include/functions_services.php:1391 -msgid "There are no service elements defined" -msgstr "There are no service elements defined." - -#: ../../enterprise/include/functions_services.php:1417 -msgid "Weight Critical" -msgstr "Weight Critical" - -#: ../../enterprise/include/functions_services.php:1418 -msgid "Weight Warning" -msgstr "Weight Warning" - -#: ../../enterprise/include/functions_services.php:1419 -msgid "Weight Unknown" -msgstr "Weight Unknown" - -#: ../../enterprise/include/functions_services.php:1420 -msgid "Weight Ok" -msgstr "Weight Ok" - -#: ../../enterprise/include/functions_services.php:1446 -#: ../../enterprise/include/functions_services.php:1461 -#: ../../enterprise/include/functions_services.php:1496 -msgid "Nonexistent. This element should be deleted" -msgstr "Nonexistent. This element should be deleted" - -#: ../../enterprise/include/functions_services.php:1661 -msgid "Delete service element" -msgstr "Delete service element" - -#: ../../enterprise/include/functions_services.php:1703 -msgid "FAIL" -msgstr "FAIL" - -#: ../../enterprise/include/functions_setup.php:37 -#: ../../enterprise/include/functions_setup.php:68 -msgid "Log collector" -msgstr "Log collector" - -#: ../../enterprise/include/functions_setup.php:80 -msgid "Auto provisioning into Metaconsole" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:90 -msgid "URL Metaconsole Api" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:95 -msgid "Api pass" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:99 -msgid "Meta user" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:103 -msgid "Meta pass" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:107 -msgid "Metaconsole APi Online" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:109 -#: ../../enterprise/include/functions_setup.php:139 -msgid "Please click in the dot to re-check" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:115 -msgid "Pandora user" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:116 -msgid "Normally the admin user" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:120 -msgid "Pandora pass" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:124 -msgid "Public url console" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:125 -msgid "Without the index.php such as http://domain/pandora_url" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:131 -msgid "Register your node in metaconsole" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:133 -msgid "Register the node" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:138 -msgid "Status your node in metaconsole" -msgstr "" - -#: ../../enterprise/include/functions_transactional.php:496 -msgid "Error in dependencies field" -msgstr "" - -#: ../../enterprise/include/functions_transactional.php:505 -msgid "Error in enables field" -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:147 -#: ../../enterprise/include/functions_update_manager.php:320 -#, php-format -msgid "There is a error: %s" -msgstr "There is an error: %s" - -#: ../../enterprise/include/functions_update_manager.php:161 -#, php-format -msgid "There are %s updates, and the first to update is:" -msgstr "There are %s updates, and the first to update is:" - -#: ../../enterprise/include/functions_update_manager.php:169 -msgid "Version number:" -msgstr "Version number:" - -#: ../../enterprise/include/functions_update_manager.php:170 -msgid "Show details" -msgstr "Show details" - -#: ../../enterprise/include/functions_update_manager.php:190 -msgid "" -"There are new database changes available to apply. Do you want to start the " -"DB update process?" -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:191 -msgid "We recommend launching " -msgstr "" - -#: ../../enterprise/include/functions_update_manager.php:207 -msgid "Update to the next version" -msgstr "" - -#: ../../enterprise/include/functions_visual_map.php:182 -#: ../../enterprise/include/functions_visual_map.php:235 -msgid "Crit:" -msgstr "Crit:" - -#: ../../enterprise/include/functions_visual_map.php:184 -#: ../../enterprise/include/functions_visual_map.php:237 -msgid "Warn:" -msgstr "Warn:" - -#: ../../enterprise/include/functions_visual_map.php:186 -#: ../../enterprise/include/functions_visual_map.php:239 -msgid "Ok:" -msgstr "Ok:" - -#: ../../enterprise/include/functions_visual_map.php:188 -#: ../../enterprise/include/functions_visual_map.php:241 -msgid "Value:" -msgstr "Value :" - -#: ../../enterprise/include/functions_visual_map.php:615 -msgid "None of the services was added" -msgstr "None of the services was added" - -#: ../../enterprise/include/functions_visual_map.php:618 -#, php-format -msgid "%d services couldn't be added" -msgstr "%d services couldn't be added" - -#: ../../enterprise/include/functions_visual_map.php:626 -msgid "There was an error retrieving the visual map information" -msgstr "There was an error retrieving the visual map information" - -#: ../../enterprise/include/functions_visual_map.php:630 -msgid "No services selected" -msgstr "No services selected" - -#: ../../enterprise/load_enterprise.php:1 -msgid "Invalid licence." -msgstr "Invalid licence." - -#: ../../enterprise/load_enterprise.php:1 -msgid "Please contact Artica at info@artica.es for a valid licence." -msgstr "Please contact Artica at info@artica.es for a valid licence." - -#: ../../enterprise/load_enterprise.php:1 -msgid "Or disable Pandora FMS enterprise" -msgstr "Or disable Pandora FMS enterprise" - -#: ../../enterprise/load_enterprise.php:1 -msgid "Request new licence" -msgstr "Request new licence" - -#: ../../enterprise/load_enterprise.php:1 -msgid "" -"Metaconsole unreached

    " -"This node has a metaconsole license and cannot contact with the metaconsole." -msgstr "" - -#: ../../enterprise/load_enterprise.php:1 -#, php-format -msgid "" -"License out of limits

    " -"This node has a metaconsole license and it allows %d agents and you have %d " -"agents cached." -msgstr "" - -#: ../../enterprise/load_enterprise.php:1 -#, php-format -msgid "" -"License out of limits

    " -"This license allows %d agents and you have %d agents configured." -msgstr "" -"Licence out of limits

    " -"This licence allows %d agents and you have %d agents configured." - -#: ../../enterprise/load_enterprise.php:1 -#, php-format -msgid "" -"License out of limits

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

    " -"This license allows %d modules and you have %d modules configured." - -#: ../../enterprise/load_enterprise.php:1 -msgid "" -"This license has expired. " -"

    You can not get updates until you renew the license." -msgstr "" -"This licence has expired. " -"

    You cannot get any updates until you've renewed the licence." - -#: ../../enterprise/load_enterprise.php:1 -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:" -msgstr "" -"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 licence :" - -#: ../../enterprise/load_enterprise.php:1 -msgid "Please contact Artica at info@artica.es to renew the license." -msgstr "Please contact Artica at info@artica.es to renew the licence." - -#: ../../enterprise/load_enterprise.php:1 -msgid "Renew" -msgstr "Renew" - -#: ../../enterprise/load_enterprise.php:1 -msgid "Activate license" -msgstr "Activate license" - -#: ../../enterprise/load_enterprise.php:1 -msgid "Your request key is:" -msgstr "Your request key is:" - -#: ../../enterprise/load_enterprise.php:1 -#, php-format -msgid "" -"You can activate it manually here or " -"automatically filling the form below:" -msgstr "" -"You can activate it manually here or " -"automatically filling the form below:" - -#: ../../enterprise/load_enterprise.php:1 -msgid "Auth Key:" -msgstr "Auth Key:" - -#: ../../enterprise/load_enterprise.php:1 -msgid "Online validation" -msgstr "Online validation" - -#: ../../enterprise/load_enterprise.php:1 -msgid "ERROR:" -msgstr "ERROR:" - -#: ../../enterprise/load_enterprise.php:1 -msgid "When connecting to Artica server." -msgstr "When connecting to Artica server." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:83 -msgid "redirected ip server in conf into source DB" -msgstr "Redirected IP-server in conf into source DB" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:85 -msgid "created agent in destination DB" -msgstr "created agent in destination DB" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:86 -msgid "created agent modules in destination DB" -msgstr "created agent modules in destination DB" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:87 -msgid "created agent alerts in destination DB" -msgstr "created agent alerts in destination DB" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:88 -msgid "created alerts actions in destination DB" -msgstr "created alert actions in destination DB" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:89 -msgid "disabled agent in source DB" -msgstr "disabled agents in source DB" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:90 -msgid "" -"Not set metaconsole IP in the \"IP list with API access\" guess Pandora " -"Console." -msgstr "" -"Unset metaconsole IP in the \"IP list with API access\" guess Pandora " -"Console." - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:98 -msgid "Successfully moved" -msgstr "Successfully moved" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:98 -msgid "Could not be moved" -msgstr "Could not be moved" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 -msgid "Move Agents" -msgstr "Move Agents" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:140 -msgid "Source Server" -msgstr "Source Server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:142 -msgid "Destination Server" -msgstr "Destination Server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:150 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:152 -msgid "Group filter" -msgstr "Group filter" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:152 -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" -msgstr "" -"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" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:158 -msgid "Create group if doesn’t exist in destination" -msgstr "Create group if doesn’t exist in destination" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:158 -msgid "Based on name" -msgstr "Based on name" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:167 -msgid "Add agents to destination server" -msgstr "Add agents to destination server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:169 -msgid "Remove agents to doesn't move to destination server" -msgstr "Remove agents to doesn't move to destination server" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:179 -msgid "Move" -msgstr "Move" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:282 -msgid "Please choose other server." -msgstr "Please choose other server." - -#: ../../enterprise/meta/advanced/agents_setup.php:37 -msgid "Propagation" -msgstr "Propagation" - -#: ../../enterprise/meta/advanced/component_management.php:60 -msgid "Module groups Management" -msgstr "Module groups Management" - -#: ../../enterprise/meta/advanced/component_management.php:64 -msgid "OS Management" -msgstr "OS Management" - -#: ../../enterprise/meta/advanced/license_meta.php:40 -msgid "Metaconsole and all nodes license updated" -msgstr "" - -#: ../../enterprise/meta/advanced/license_meta.php:43 -#, php-format -msgid "Metaconsole license updated but %d of %d node synchronization failed" -msgstr "" - -#: ../../enterprise/meta/advanced/license_meta.php:72 -msgid "Licence" +#: ../../godmode/menu.php:279 +msgid "License" msgstr "Licence" -#: ../../enterprise/meta/advanced/license_meta.php:113 -msgid "Validate and sync" +#: ../../godmode/menu.php:288 +msgid "Admin tools" +msgstr "Admin tools" + +#: ../../godmode/menu.php:296 +msgid "System audit log" +msgstr "System audit log" + +#: ../../godmode/menu.php:300 +msgid "Diagnostic info" +msgstr "Diagnostic info" + +#: ../../godmode/menu.php:302 +msgid "Site news" +msgstr "Site news" + +#: ../../godmode/menu.php:304 ../../godmode/setup/file_manager.php:30 +msgid "File manager" +msgstr "File manager" + +#: ../../godmode/menu.php:309 +msgid "DB maintenance" +msgstr "DB maintenance" + +#: ../../godmode/menu.php:315 +msgid "DB information" +msgstr "DB information" + +#: ../../godmode/menu.php:316 ../../godmode/db/db_purge.php:38 +msgid "Database purge" +msgstr "Database purge" + +#: ../../godmode/menu.php:318 +msgid "Database audit" +msgstr "Database audit" + +#: ../../godmode/menu.php:319 +msgid "Database event" +msgstr "Database events" + +#: ../../godmode/menu.php:401 +msgid "Extension manager view" msgstr "" -#: ../../enterprise/meta/advanced/metasetup.auth.php:47 -#: ../../enterprise/meta/advanced/metasetup.password.php:47 -#: ../../enterprise/meta/advanced/metasetup.performance.php:47 -#: ../../enterprise/meta/advanced/metasetup.setup.php:79 -#: ../../enterprise/meta/advanced/metasetup.visual.php:50 -#, php-format -msgid "Could not be update: Error in %s" -msgstr "Could not be updated : Error in %s" +#: ../../godmode/menu.php:405 +msgid "Extension manager" +msgstr "Extension manager" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:87 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:155 -msgid "Could not be create, duplicated server name." -msgstr "Could not be create, duplicated server name." +#: ../../godmode/menu.php:433 +msgid "Update manager" +msgstr "Update manager" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:128 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:206 -msgid "Node synchronization process failed" -msgstr "" +#: ../../godmode/menu.php:439 +msgid "Update Manager offline" +msgstr "Update Manager offline" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:227 -msgid "Could not be delete" -msgstr "Could not be deleted." +#: ../../godmode/menu.php:442 +msgid "Update Manager online" +msgstr "Update Manager online" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:316 +#: ../../godmode/menu.php:444 +msgid "Update Manager options" +msgstr "Update Manager options" + +#: ../../godmode/extensions.php:27 +msgid "Extensions" +msgstr "Extensions" + +#: ../../godmode/extensions.php:27 +msgid "Defined extensions" +msgstr "Defined extensions" + +#: ../../godmode/extensions.php:32 +msgid "There are no extensions defined" +msgstr "There are no extensions defined" + +#: ../../godmode/extensions.php:145 +msgid "Enterprise" +msgstr "Enterprise" + +#: ../../godmode/extensions.php:146 +msgid "Godmode Function" +msgstr "Godmode Function" + +#: ../../godmode/extensions.php:147 +msgid "Godmode Menu" +msgstr "Godmode Menu" + +#: ../../godmode/extensions.php:148 +msgid "Operation Menu" +msgstr "Operation Menu" + +#: ../../godmode/extensions.php:149 +msgid "Operation Function" +msgstr "Operation Function" + +#: ../../godmode/extensions.php:150 +msgid "Login Function" +msgstr "Login Function" + +#: ../../godmode/extensions.php:151 +msgid "Agent operation tab" +msgstr "Agent operation tab" + +#: ../../godmode/extensions.php:152 +msgid "Agent godmode tab" +msgstr "Agent godmode tab" + +#: ../../godmode/setup/performance.php:49 msgid "" -"Complete path to Pandora console without last \"/\" character. Example " +"If the compaction or purge of the data is more frequent than the events " +"deletion, anomalies in module graphs could appear" msgstr "" -"Complete path to Pandora console without last \"/\" character. Example " +"If data compression or purge is more frequent than event cleanups, it could " +"lead to anomalies in module graphs." -#: ../../enterprise/meta/advanced/metasetup.consoles.php:333 -msgid "DB port" -msgstr "DB port" +#: ../../godmode/setup/performance.php:64 +msgid "" +"Configure a purge period more frequent than a compact data period has no " +"sense" +msgstr "" +"Configuring a more frequent purge interval than a data compacting interval " +"makes no sense." -#: ../../enterprise/meta/advanced/metasetup.consoles.php:385 -msgid "Agent cache" -msgstr "Agent cache" +#: ../../godmode/setup/performance.php:73 +msgid "Max. days before delete autodisabled agents" +msgstr "Max. days before delete autodisabled agents" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:386 -#: ../../enterprise/meta/advanced/policymanager.sync.php:315 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:351 -#: ../../enterprise/meta/advanced/synchronizing.component.php:327 -#: ../../enterprise/meta/advanced/synchronizing.group.php:164 -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:108 -#: ../../enterprise/meta/advanced/synchronizing.os.php:108 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:108 -#: ../../enterprise/meta/advanced/synchronizing.user.php:587 -msgid "Sync" -msgstr "Sync" +#: ../../godmode/setup/performance.php:76 +msgid "This number is days to keep past special days. 0 means never remove." +msgstr "This number is days to keep past special days. 0 means never remove." -#: ../../enterprise/meta/advanced/metasetup.consoles.php:472 -msgid "There aren't server added to metaconsole" -msgstr "There are no servers added to metaconsole." - -#: ../../enterprise/meta/advanced/metasetup.password.php:73 -msgid "Passwords" -msgstr "Passwords" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:82 -#: ../../enterprise/meta/include/functions_meta.php:1291 -msgid "Active events history" -msgstr "Active events history" - -#: ../../enterprise/meta/advanced/metasetup.php:55 -msgid "Consoles Setup" -msgstr "Consoles Setup" - -#: ../../enterprise/meta/advanced/metasetup.php:60 -#: ../../enterprise/meta/advanced/metasetup.php:116 -msgid "General setup" -msgstr "General setup" - -#: ../../enterprise/meta/advanced/metasetup.php:65 -#: ../../enterprise/meta/advanced/metasetup.php:119 -msgid "Passwords setup" -msgstr "Passwords setup" - -#: ../../enterprise/meta/advanced/metasetup.php:75 -#: ../../enterprise/meta/advanced/metasetup.php:125 -msgid "Visual setup" -msgstr "Visual setup" - -#: ../../enterprise/meta/advanced/metasetup.php:80 -#: ../../enterprise/meta/advanced/metasetup.php:128 -msgid "Performance setup" -msgstr "Performance setup" - -#: ../../enterprise/meta/advanced/metasetup.php:90 -#: ../../enterprise/meta/advanced/metasetup.php:134 -msgid "Strings translation" -msgstr "Strings translation" - -#: ../../enterprise/meta/advanced/metasetup.php:95 -msgid "Options Update Manager" +#: ../../godmode/setup/performance.php:79 +msgid "Number of macro fields in alerts and templates between 1 and 15" msgstr "" -#: ../../enterprise/meta/advanced/metasetup.php:100 -#: ../../enterprise/meta/advanced/metasetup.php:139 -msgid "Offline Update Manager" +#: ../../godmode/setup/performance.php:96 +msgid "Item limit for realtime reports" +msgstr "Item limit for realtime reports" + +#: ../../godmode/setup/performance.php:96 +msgid "" +"Set a value too high cause a slowdown on console and a performance penalty " +"in the system." +msgstr "" +"Setting too high a value will cause a slowdown on console and a performance " +"penalty in the system." + +#: ../../godmode/setup/performance.php:100 +msgid "Data will be compacted in intervals of the specified length." +msgstr "Data will be compacted in intervals of the specified length." + +#: ../../godmode/setup/performance.php:107 +msgid "Last day" +msgstr "Last day" + +#: ../../godmode/setup/performance.php:109 +msgid "10 days" +msgstr "10 days" + +#: ../../godmode/setup/performance.php:111 +msgid "2 weeks" +msgstr "2 weeks" + +#: ../../godmode/setup/performance.php:121 +msgid "" +"If realtime statistics are disabled, statistics interval resfresh will be " +"set here." +msgstr "" +"If realtime statistics are disabled, the refresh interval for statistics " +"will be set here." + +#: ../../godmode/setup/performance.php:128 +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." +msgstr "" +"This number is the maximum number of files for the attachment directory. If " +"this number is reached, a warning message will appear in the header's " +"notification space." + +#: ../../godmode/setup/performance.php:135 +msgid "Big Operation Step to purge old data" +msgstr "Big Operation Step to purge old data" + +#: ../../godmode/setup/performance.php:135 +msgid "" +"The number of blocks that a time interval is split into. A bigger value " +"means bigger blocks, which is faster but heavier on the database. Default is " +"100." +msgstr "" +"The number of blocks that a time interval is split into. A bigger value " +"means bigger blocks, which is faster but heavier on the database. Default is " +"100." + +#: ../../godmode/setup/performance.php:138 +msgid "" +"The number of rows that are processed in a single query in deletion. Default " +"is 1000. Increase to 3000-5000 in fast systems. Decrease to 500 or 250 on " +"systems with locks." +msgstr "" +"The number of rows that are processed in a single query in deletion. Default " +"is 1000. Increase to 3000-5000 in fast systems. Decrease to 500 or 250 on " +"systems with locks." + +#: ../../godmode/setup/performance.php:143 +msgid "Database maintenance options" +msgstr "Database maintenance options" + +#: ../../godmode/setup/news.php:28 +msgid "Site news management" +msgstr "Site news management" + +#: ../../godmode/setup/news.php:88 +#: ../../godmode/events/event_edit_filter.php:174 +#: ../../godmode/netflow/nf_edit_form.php:132 +#: ../../godmode/modules/manage_nc_groups.php:99 +msgid "Not updated. Error updating data" +msgstr "Couldn't update. Error updating data." + +#: ../../godmode/setup/news.php:130 ../../godmode/setup/links.php:86 +msgid "Name error" +msgstr "Map not found" + +#: ../../godmode/setup/news.php:167 +msgid "Modal screen" +msgstr "Modal Window" + +#: ../../godmode/setup/news.php:170 +msgid "Expire" +msgstr "Expire" + +#: ../../godmode/setup/news.php:173 ../../godmode/setup/news.php:224 +msgid "Expiration" +msgstr "Expiration" + +#: ../../godmode/setup/news.php:215 +msgid "There are no defined news" +msgstr "There are no news defined" + +#: ../../godmode/setup/news.php:242 +msgid "Modal" +msgstr "Modal" + +#: ../../godmode/setup/news.php:245 +msgid "Board" +msgstr "Board" + +#: ../../godmode/setup/news.php:256 +msgid "Expired" +msgstr "Expired" + +#: ../../godmode/setup/snmp_wizard.php:30 +#: ../../godmode/agentes/configurar_agente.php:392 +#: ../../godmode/agentes/configurar_agente.php:558 +msgid "SNMP Wizard" +msgstr "SNMP Wizard" + +#: ../../godmode/setup/snmp_wizard.php:42 +#: ../../godmode/massive/massive_edit_modules.php:475 +#: ../../godmode/modules/manage_network_components_form_network.php:80 +#: ../../godmode/modules/manage_network_components_form_plugin.php:27 +#: ../../godmode/modules/manage_network_components_form_wmi.php:56 +#: ../../godmode/agentes/module_manager_editor_common.php:412 +msgid "Post process" +msgstr "Post process" + +#: ../../godmode/setup/snmp_wizard.php:43 +msgid "OP" +msgstr "OP" + +#: ../../godmode/setup/snmp_wizard.php:166 +msgid "Unsucessful update the snmp translation" +msgstr "SNMP translation failed to update" + +#: ../../godmode/setup/snmp_wizard.php:173 +msgid "Unsucessful update the snmp translation." +msgstr "SNMP translation failed to update." + +#: ../../godmode/setup/snmp_wizard.php:221 +msgid "Unsucessful delete the snmp translation" +msgstr "SNMP translation failed to delete" + +#: ../../godmode/setup/snmp_wizard.php:228 +msgid "Unsucessful delete the snmp translation." +msgstr "SNMP translation failed to delete." + +#: ../../godmode/setup/snmp_wizard.php:289 +msgid "Unsucessful save the snmp translation" +msgstr "SNMP translation failed to save" + +#: ../../godmode/setup/snmp_wizard.php:298 +msgid "Unsucessful save the snmp translation." +msgstr "SNMP translation failed to save." + +#: ../../godmode/setup/gis.php:62 +msgid "Map connection name" +msgstr "Map connection name" + +#: ../../godmode/setup/gis.php:83 +msgid "Do you wan delete this connection?" +msgstr "do you wish to delete this connection?" + +#: ../../godmode/setup/os.php:73 +msgid "Fail creating OS" +msgstr "Failure creating OS" + +#: ../../godmode/setup/os.php:80 +msgid "Success creating OS" +msgstr "Success creating OS" + +#: ../../godmode/setup/os.php:100 +msgid "Success updatng OS" +msgstr "Success updating OS" + +#: ../../godmode/setup/os.php:100 +msgid "Error updating OS" +msgstr "Error updating OS" + +#: ../../godmode/setup/os.php:119 +msgid "There are agents with this OS." +msgstr "This OS is being used" + +#: ../../godmode/setup/os.php:124 +msgid "Success deleting" +msgstr "Success deleting" + +#: ../../godmode/setup/os.php:124 +msgid "Error deleting" +msgstr "Error deleting" + +#: ../../godmode/setup/os.php:133 +msgid "List OS" +msgstr "List OS" + +#: ../../godmode/setup/os.php:137 +msgid "Builder OS" +msgstr "OS editor" + +#: ../../godmode/setup/setup_ehorus.php:85 +msgid "API Hostname" +msgstr "API Hostname" + +#: ../../godmode/setup/setup_ehorus.php:87 +msgid "Hostname of the eHorus API" +msgstr "Hostname of the eHorus API" + +#: ../../godmode/setup/setup_ehorus.php:87 +msgid "Without protocol and port" +msgstr "Without protocol and port" + +#: ../../godmode/setup/setup_ehorus.php:87 +msgid "e.g., portal.ehorus.com" +msgstr "e.g., switch.eHorus.com" + +#: ../../godmode/setup/setup_ehorus.php:92 +msgid "API Port" +msgstr "API Port" + +#: ../../godmode/setup/setup_ehorus.php:94 +msgid "e.g., 18080" +msgstr "e.g., 18080" + +#: ../../godmode/setup/setup_ehorus.php:99 +msgid "Request timeout" +msgstr "Request timeout" + +#: ../../godmode/setup/setup_ehorus.php:101 +msgid "" +"Time in seconds to set the maximum time of the requests to the eHorus API" +msgstr "" +"Time in seconds to set the maximum time of the requests to the eHorus API" + +#: ../../godmode/setup/setup_ehorus.php:101 +msgid "0 to disable" +msgstr "0 to disable" + +#: ../../godmode/setup/setup_ehorus.php:106 +msgid "Test" +msgstr "Test" + +#: ../../godmode/setup/setup_ehorus.php:107 +msgid "Start" +msgstr "Start" + +#: ../../godmode/setup/setup_ehorus.php:122 +msgid "Remote Management System" +msgstr "Remote Management System" + +#: ../../godmode/setup/setup_ehorus.php:130 +msgid "Custom field eHorusID created" +msgstr "Custom field eHorusID created" + +#: ../../godmode/setup/setup_ehorus.php:130 +msgid "Error creating custom field" +msgstr "Error creating custom field" + +#: ../../godmode/setup/setup_ehorus.php:133 +msgid "eHorus has his own agent identifiers" +msgstr "eHorus has its own agent identifiers" + +#: ../../godmode/setup/setup_ehorus.php:134 +msgid "To store them, it will be necessary to use an agent custom field" +msgstr "To store them, it is necessary to use an agent custom field" + +#: ../../godmode/setup/setup_ehorus.php:135 +msgid "" +"Possibly the eHorus id will have to be filled in by hand for every agent" +msgstr "" +"Possibly the eHorus id will have to be filled out manually for every agent" + +#: ../../godmode/setup/setup_ehorus.php:140 +msgid "The custom field does not exists already" +msgstr "The custom field does not exist yet" + +#: ../../godmode/setup/setup_ehorus.php:154 +msgid "eHorus API" +msgstr "eHorus API" + +#: ../../godmode/setup/setup_ehorus.php:186 +msgid "Connection timeout" +msgstr "Connection timeout" + +#: ../../godmode/setup/setup_ehorus.php:187 +msgid "Empty user or password" +msgstr "Empty user or password" + +#: ../../godmode/setup/setup_ehorus.php:188 +msgid "User not found" +msgstr "User not found" + +#: ../../godmode/setup/setup_ehorus.php:189 +msgid "Invalid password" +msgstr "Invalid password" + +#: ../../godmode/setup/license.php:27 +msgid "License management" +msgstr "Licence Management" + +#: ../../godmode/setup/license.php:37 +msgid "License updated" +msgstr "Licence updated" + +#: ../../godmode/setup/license.php:64 +msgid "Customer key" +msgstr "Customer key" + +#: ../../godmode/setup/license.php:67 +msgid "Expires" +msgstr "Expires" + +#: ../../godmode/setup/license.php:70 +msgid "Platform Limit" +msgstr "Platform Limit" + +#: ../../godmode/setup/license.php:71 ../../godmode/setup/license.php:74 +#: ../../godmode/setup/license.php:77 ../../godmode/setup/license.php:80 +msgid "agents" +msgstr "agents" + +#: ../../godmode/setup/license.php:73 +msgid "Current Platform Count" +msgstr "Current Platform Count" + +#: ../../godmode/setup/license.php:76 +msgid "Current Platform Count (enabled: items)" +msgstr "Current Platform Count (enabled: items)" + +#: ../../godmode/setup/license.php:79 +msgid "Current Platform Count (disabled: items)" +msgstr "Current Platform Count (disabled: items)" + +#: ../../godmode/setup/license.php:82 +msgid "License Mode" +msgstr "Licence Mode" + +#: ../../godmode/setup/license.php:85 +msgid "NMS" +msgstr "NMS" + +#: ../../godmode/setup/license.php:86 ../../godmode/setup/license.php:89 +msgid "enabled" +msgstr "enabled" + +#: ../../godmode/setup/license.php:86 ../../godmode/setup/license.php:89 +msgid "disabled" +msgstr "Disabled" + +#: ../../godmode/setup/license.php:88 +msgid "Satellite" +msgstr "Satellite" + +#: ../../godmode/setup/license.php:91 +msgid "Licensed to" +msgstr "Licensed to" + +#: ../../godmode/setup/license.php:100 ../../godmode/setup/license.php:104 +msgid "Request new license" +msgstr "Request new licence" + +#: ../../godmode/setup/license.php:108 +msgid "To get your Pandora FMS Enterprise License:" +msgstr "To get your Pandora FMS Enterprise Licence:" + +#: ../../godmode/setup/license.php:111 +#, php-format +msgid "Go to %s" +msgstr "Go to %s" + +#: ../../godmode/setup/license.php:114 +msgid "Enter the auth key and the following request key:" +msgstr "Enter the auth key and the following request key:" + +#: ../../godmode/setup/license.php:120 +msgid "Enter your name (or a company name) and a contact email address." +msgstr "Enter your name (or a company name) and a contact e-mail address." + +#: ../../godmode/setup/license.php:123 +msgid "Click on Generate." +msgstr "Click on Generate." + +#: ../../godmode/setup/license.php:126 +msgid "" +"Click here, enter " +"the generated license key and click on Validate." +msgstr "" +"Click here, enter " +"the generated licence key and click on Validate." + +#: ../../godmode/setup/links.php:27 +msgid "Link management" +msgstr "Link management" + +#: ../../godmode/setup/links.php:39 +msgid "There was a problem creating link" +msgstr "There was a problem creating the link" + +#: ../../godmode/setup/links.php:56 +msgid "There was a problem modifying link" +msgstr "There was a problem modifying the link" + +#: ../../godmode/setup/links.php:67 +msgid "There was a problem deleting link" +msgstr "There was a problem deleting the link" + +#: ../../godmode/setup/links.php:106 ../../godmode/setup/links.php:136 +msgid "Link name" +msgstr "Link name" + +#: ../../godmode/setup/links.php:109 +msgid "Link" +msgstr "Link" + +#: ../../godmode/setup/links.php:132 +msgid "There isn't links" +msgstr "There aren't links" + +#: ../../godmode/setup/setup_general.php:58 +msgid "Directory where agent remote configuration is stored." +msgstr "Directory in which the agent's remote configuration is stored" + +#: ../../godmode/setup/setup_general.php:67 +msgid "Database" +msgstr "Database" + +#: ../../godmode/setup/setup_general.php:75 +msgid "" +"If SSL is not properly configured you will lose access to Pandora FMS " +"Console. Do you want to continue?" +msgstr "" +"If SSL is not properly configured, you will lose access to the Pandora FMS " +"Console. Do you want to continue?" + +#: ../../godmode/setup/setup_general.php:78 +msgid "Use cert of SSL" +msgstr "Use cert of SSL" + +#: ../../godmode/setup/setup_general.php:83 +msgid "Path of SSL Cert." +msgstr "Path of SSL Cert." + +#: ../../godmode/setup/setup_general.php:83 +msgid "" +"Path where you put your cert and name of this cert. Remember your cert only " +"in .pem extension." +msgstr "" +"Path where you put your cert and name of this cert. Remember your cert " +"should only be in .pem extension." + +#: ../../godmode/setup/setup_general.php:86 +msgid "Directory where temporary data is stored." +msgstr "Directory in which temporary data is stored." + +#: ../../godmode/setup/setup_general.php:99 +msgid "Please be careful if you put a password put https access." +msgstr "" +"Please bear in mind that if you set a password, you should use HTTPS access." + +#: ../../godmode/setup/setup_general.php:140 +msgid "Change timezone" +msgstr "Change timezone" + +#: ../../godmode/setup/setup_general.php:148 +#: ../../godmode/setup/setup_general.php:153 +#: ../../godmode/setup/setup_general.php:158 +msgid "Play sound" +msgstr "Play sound" + +#: ../../godmode/setup/setup_general.php:162 +msgid "" +"Set this value when your PandoraFMS across inverse proxy or for example with " +"mod_proxy of Apache." +msgstr "" +"Set this value when you need your Pandora to be accessible via a public URL " +"(for example using Apache mod_proxy settings)" + +#: ../../godmode/setup/setup_general.php:166 +msgid "" +"When it is set as \"yes\" in some important sections check if the user have " +"gone from url Pandora." +msgstr "If enabled, actively checks if the user comes from Pandora's URL" + +#: ../../godmode/setup/setup_general.php:174 +msgid "" +"If set to yes no events or alerts will be generated, but agents will " +"continue receiving data." +msgstr "" +"If enabled, no events or alerts will be generated, although agents will " +"continue to receive data." + +#: ../../godmode/setup/setup_general.php:183 +msgid "The string modules with several lines show as command output" +msgstr "" +"String module outputs with more than one line will be shown as a snapshot." + +#: ../../godmode/setup/setup_general.php:187 +msgid "Directory where the server logs are stored." +msgstr "The directory in which server logs are stored." + +#: ../../godmode/setup/setup_general.php:192 +msgid "Full mode" +msgstr "Full assist mode" + +#: ../../godmode/setup/setup_general.php:193 +msgid "On demand" +msgstr "On demand" + +#: ../../godmode/setup/setup_general.php:194 +msgid "Expert" +msgstr "Expert" + +#: ../../godmode/setup/setup_general.php:197 +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." +msgstr "" +"These are settings for the 'helper' cartoon. When 'Full mode' is enabled the " +"icon in the header and help texts will all be active and will automatically " +"show. 'On demand' mode is the same as 'Full mode' but users will choose when " +"the helper activates. In 'Expert' mode, the icons in the header and help " +"texts are all disabled." + +#: ../../godmode/setup/setup_general.php:204 +msgid "The planned downtimes created in the past will affect the SLA reports" +msgstr "" +"The planned downtimes created in the past will affect the SLA reports" + +#: ../../godmode/setup/setup_general.php:209 +#, php-format +msgid "" +"Your PHP environment is setted with %d max_input_vars. Maybe you must not " +"set this value with upper values." +msgstr "" +"Your PHP environment is setted with %d max_input_vars. Maybe you must not " +"set this value with upper values." + +#: ../../godmode/setup/setup_general.php:213 +msgid "Include agents manually disabled" +msgstr "Include agents manually disabled" + +#: ../../godmode/setup/setup_general.php:217 +msgid "audit log directory" +msgstr "audit log directory" + +#: ../../godmode/setup/setup_general.php:218 +msgid "Directory where audit log is stored." +msgstr "Directory where audit log is stored." + +#: ../../godmode/setup/setup_general.php:224 +msgid "General options" +msgstr "General settings" + +#: ../../godmode/setup/setup_general.php:283 +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 "" +"If Enterprise ACL System is enabled without rules you will lose access to " +"Pandora FMS Console (even admin). Do you want to continue?" + +#: ../../godmode/setup/setup_netflow.php:42 +msgid "Directory where netflow data will be stored." +msgstr "Directory where netflow data will be stored." + +#: ../../godmode/setup/setup_netflow.php:46 +msgid "Specifies the time interval in seconds to rotate netflow data files." +msgstr "Specifies the time interval in seconds to rotate netflow data files." + +#: ../../godmode/setup/setup_netflow.php:58 +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." +msgstr "" +"Maximum number of points that a netflow area chart will display. Higher " +"resolutions take more time to render. Values between 50 and 100 are " +"recommended" + +#: ../../godmode/setup/setup_netflow.php:62 +msgid "" +"Disable the definition of custom filters in the live view. Only existing " +"filters can be used." +msgstr "" +"Disable the definition of custom filters in the live view. Only existing " +"filters can be used." + +#: ../../godmode/setup/setup_netflow.php:65 +msgid "Sets the maximum lifetime for netflow data in days." +msgstr "Sets the max. lifespan for netflow data, in days." + +#: ../../godmode/setup/gis_step_2.php:39 +msgid "Create new map connection" +msgstr "Create new map connection" + +#: ../../godmode/setup/gis_step_2.php:58 +msgid "Edit map connection" +msgstr "Edit map connection" + +#: ../../godmode/setup/gis_step_2.php:150 +msgid "Connection Name" +msgstr "Connection Name" + +#: ../../godmode/setup/gis_step_2.php:150 +msgid "Descriptive name for the connection" +msgstr "Descriptive name for the connection" + +#: ../../godmode/setup/gis_step_2.php:153 +msgid "Group that owns the connection" +msgstr "Group that owns the connection" + +#: ../../godmode/setup/gis_step_2.php:156 +msgid "Number of zoom levels" +msgstr "Number of zoom levels" + +#: ../../godmode/setup/gis_step_2.php:160 +msgid "Default zoom level" +msgstr "Default zoom level" + +#: ../../godmode/setup/gis_step_2.php:160 +msgid "Zoom level used when the map is opened" +msgstr "Zoom level used when the map is opened" + +#: ../../godmode/setup/gis_step_2.php:163 +msgid "Basic configuration" +msgstr "Basic configuration" + +#: ../../godmode/setup/gis_step_2.php:168 +msgid "Open Street Maps" +msgstr "Open Street Maps" + +#: ../../godmode/setup/gis_step_2.php:169 +msgid "Google Maps" +msgstr "Google Maps" + +#: ../../godmode/setup/gis_step_2.php:170 +msgid "Static Image" +msgstr "Static Image" + +#: ../../godmode/setup/gis_step_2.php:172 +msgid "Please select the connection type" +msgstr "Please select the connection type" + +#: ../../godmode/setup/gis_step_2.php:174 +msgid "Map connection type" +msgstr "Map connection type" + +#: ../../godmode/setup/gis_step_2.php:210 +msgid "Tile Server URL" +msgstr "Tile Server URL" + +#: ../../godmode/setup/gis_step_2.php:216 +msgid "Google Physical" +msgstr "Google Physical" + +#: ../../godmode/setup/gis_step_2.php:217 +msgid "Google Hybrid" +msgstr "Google Hybrid" + +#: ../../godmode/setup/gis_step_2.php:218 +msgid "Google Satelite" +msgstr "Google Satelite" + +#: ../../godmode/setup/gis_step_2.php:222 +msgid "Google Map Type" +msgstr "Google Map Type" + +#: ../../godmode/setup/gis_step_2.php:226 +msgid "Google Maps Key" +msgstr "Google Maps Key" + +#: ../../godmode/setup/gis_step_2.php:235 +msgid "Image URL" +msgstr "Image URL" + +#: ../../godmode/setup/gis_step_2.php:239 +msgid "Corners of the area of the image" +msgstr "Corners of the area of the image" + +#: ../../godmode/setup/gis_step_2.php:242 +msgid "Left" +msgstr "Left" + +#: ../../godmode/setup/gis_step_2.php:244 +msgid "Bottom" +msgstr "Bottom" + +#: ../../godmode/setup/gis_step_2.php:248 +msgid "Right" +msgstr "Right" + +#: ../../godmode/setup/gis_step_2.php:250 +msgid "Top" +msgstr "Top" + +#: ../../godmode/setup/gis_step_2.php:254 +msgid "Image Size" +msgstr "Image Size" + +#: ../../godmode/setup/gis_step_2.php:259 +#: ../../godmode/events/event_responses.editor.php:106 +#: ../../godmode/reporting/visual_console_builder.wizard.php:137 +#: ../../godmode/reporting/graph_builder.main.php:141 +msgid "Height" +msgstr "Height" + +#: ../../godmode/setup/gis_step_2.php:279 +msgid "" +"Preview to select the center of the map and the default position of an agent " +"without gis data" +msgstr "" +"Previes to select the center of the map and the default position for an " +"agent without GIS data." + +#: ../../godmode/setup/gis_step_2.php:280 +msgid "Load preview map" +msgstr "Load preview map" + +#: ../../godmode/setup/gis_step_2.php:289 +msgid "Map Center" +msgstr "Map Centre" + +#: ../../godmode/setup/gis_step_2.php:289 +msgid "Position to center the map when the map is opened" +msgstr "Position to centre the map when the map is opened" + +#: ../../godmode/setup/gis_step_2.php:290 +msgid "Default position for agents without GIS data" +msgstr "Default position for agents without GIS data" + +#: ../../godmode/setup/gis_step_2.php:292 +msgid "Change in the map" +msgstr "Change on the map" + +#: ../../godmode/setup/gis_step_2.php:292 +msgid "This selects what to change by clicking on the map" +msgstr "This selects what to change by clicking on the map" + +#: ../../godmode/setup/gis_step_2.php:353 +#: ../../godmode/setup/gis_step_2.php:446 +msgid "Center" +msgstr "Centre" + +#: ../../godmode/setup/gis_step_2.php:413 +msgid "Refresh preview map" +msgstr "Refresh preview map" + +#: ../../godmode/setup/setup_visuals.php:76 +msgid "This interval will affect to Visual Console pages" +msgstr "This interval will affect Visual Console pages" + +#: ../../godmode/setup/setup_visuals.php:80 +msgid "Paginated module view" +msgstr "Paginated module view" + +#: ../../godmode/setup/setup_visuals.php:104 +msgid "Click to display lateral menus" +msgstr "Click to display lateral menus" + +#: ../../godmode/setup/setup_visuals.php:105 +msgid "" +"When enabled, the lateral menus are shown when left clicking them, instead " +"of hovering over them" +msgstr "" +"When enabled, the lateral menus are shown when left-clicked, not by hovering " +"over them." + +#: ../../godmode/setup/setup_visuals.php:121 +msgid "Space between items in Service maps" +msgstr "Space between items in Service maps" + +#: ../../godmode/setup/setup_visuals.php:127 +msgid "Text menu options always visible, don't hide" +msgstr "Text menu options always visible" + +#: ../../godmode/setup/setup_visuals.php:138 +msgid "Behaviour configuration" +msgstr "Behaviour configuration" + +#: ../../godmode/setup/setup_visuals.php:159 +msgid "Colors" +msgstr "Colours" + +#: ../../godmode/setup/setup_visuals.php:160 +msgid "Faces" +msgstr "Faces" + +#: ../../godmode/setup/setup_visuals.php:161 +msgid "Colors and text" +msgstr "Colours and text" + +#: ../../godmode/setup/setup_visuals.php:169 +msgid "You can place your custom images into the folder images/backgrounds/" +msgstr "You can place custom images in the folder images/backgrounds/" + +#: ../../godmode/setup/setup_visuals.php:188 +msgid "Custom logo (header)" +msgstr "Custom logo (header)" + +#: ../../godmode/setup/setup_visuals.php:207 +msgid "Custom logo (login)" +msgstr "Custom logo (login)" + +#: ../../godmode/setup/setup_visuals.php:224 +msgid "Disable logo in graphs" +msgstr "Disable logo in graphs" + +#: ../../godmode/setup/setup_visuals.php:259 +msgid "Style configuration" +msgstr "Style configuration" + +#: ../../godmode/setup/setup_visuals.php:275 +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." +msgstr "" +"Enabling this shows a label with the agent name on the GIS maps. If you have " +"a lot of agents on the map, it will be unreadable. Disabled by default." + +#: ../../godmode/setup/setup_visuals.php:287 +msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used" +msgstr "Agent icon for GIS Maps. If set to \"none\", group icon will be used" + +#: ../../godmode/setup/setup_visuals.php:296 +msgid "GIS configuration" +msgstr "GIS configuration" + +#: ../../godmode/setup/setup_visuals.php:342 +msgid "" +"When the agent name have a lot of characters, in some places in Pandora " +"Console it is necesary truncate to N characters." +msgstr "" +"When the agent name has a lot of characters, it is needed to truncate it " +"into N characters in some sections in Pandora Console." + +#: ../../godmode/setup/setup_visuals.php:343 +#: ../../godmode/setup/setup_visuals.php:351 +msgid "Small:" +msgstr "Small:" + +#: ../../godmode/setup/setup_visuals.php:345 +#: ../../godmode/setup/setup_visuals.php:353 +msgid "Normal:" +msgstr "Normal:" + +#: ../../godmode/setup/setup_visuals.php:350 +msgid "" +"When the module name have a lot of characters, in some places in Pandora " +"Console it is necesary truncate to N characters." +msgstr "" +"When the module name has a lot of characters, it is necessary to truncate it " +"into N characters in some sections in Pandora Console." + +#: ../../godmode/setup/setup_visuals.php:357 +msgid "" +"When the description name have a lot of characters, in some places in " +"Pandora Console it is necesary truncate to N characters." +msgstr "" +"If the description name has a lot of characters, in some places in Pandora " +"Console it is necessary to truncate it to N characters." + +#: ../../godmode/setup/setup_visuals.php:362 +msgid "" +"When the item title name have a lot of characters, in some places in Pandora " +"Console it is necesary truncate to N characters." +msgstr "" +"When the item title name has a lot of characters, it is needed to truncate " +"it into N characters in some sections in Pandora Console." + +#: ../../godmode/setup/setup_visuals.php:367 +msgid "Show unit along with value in reports" +msgstr "Show unit along with value in reports" + +#: ../../godmode/setup/setup_visuals.php:368 +msgid "This enabling this, max, min and avg values will be shown with units." +msgstr "When enabled, max, min and avg values are shown with units" + +#: ../../godmode/setup/setup_visuals.php:376 +msgid "Font and Text configuration" +msgstr "Font and text settings" + +#: ../../godmode/setup/setup_visuals.php:431 +msgid "Graph resolution (1-low, 5-high)" +msgstr "Graph resolution (1-low, 5-high)" + +#: ../../godmode/setup/setup_visuals.php:445 +msgid "" +"Number of decimals shown in reports. It must be a number between 0 and 5" +msgstr "" +"Number of decimals shown in reports. It must be a number between 0 and 5" + +#: ../../godmode/setup/setup_visuals.php:470 +msgid "The data number of the module graphs will be rounded and shortened" +msgstr "The numeric data of module graphs will be rounded out and shortened." + +#: ../../godmode/setup/setup_visuals.php:480 +msgid "Type of module charts" +msgstr "Type of module charts" + +#: ../../godmode/setup/setup_visuals.php:489 +msgid "Type of interface charts" +msgstr "Type of interface charts" + +#: ../../godmode/setup/setup_visuals.php:498 +msgid "Show only average" +msgstr "Show only average" + +#: ../../godmode/setup/setup_visuals.php:499 +msgid "Hide Max and Min values in graphs" +msgstr "Hide Max and Min values in graphs" + +#: ../../godmode/setup/setup_visuals.php:506 +#: ../../godmode/reporting/visual_console_builder.wizard.php:218 +msgid "Percentile" +msgstr "Percentile" + +#: ../../godmode/setup/setup_visuals.php:507 +msgid "Show percentile 95 in graphs" +msgstr "Show percentile 95 in graphs" + +#: ../../godmode/setup/setup_visuals.php:512 +msgid "Charts configuration" +msgstr "Chart settings" + +#: ../../godmode/setup/setup_visuals.php:528 +msgid "" +"This interval will affect to the lines between elements on the Visual Console" +msgstr "" +"This interval will affect to the lines between elements on the Visual Console" + +#: ../../godmode/setup/setup_visuals.php:533 +msgid "Show report info with description" +msgstr "Show report info with description" + +#: ../../godmode/setup/setup_visuals.php:535 +msgid "" +"Custom report description info. It will be applied to all reports and " +"templates by default." +msgstr "" +"Custom report description info. Applied to all reports and templates by " +"default." + +#: ../../godmode/setup/setup_visuals.php:543 +msgid "Custom report front page" +msgstr "Front page for custom reports" + +#: ../../godmode/setup/setup_visuals.php:545 +msgid "" +"Custom report front page. It will be applied to all reports and templates by " +"default." +msgstr "" +"It's the custom report's front page. It'll be applied to all reports and " +"templates by default." + +#: ../../godmode/setup/setup_visuals.php:576 +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." +msgstr "" +"The directory for custom logos can be found on the Pandora Console under " +"\"images/custom_logo\". You can upload more files (ONLY IN JPEG) using the " +"console's upload tool." + +#: ../../godmode/setup/setup_visuals.php:614 +msgid "Show QR Code icon in the header" +msgstr "Display the QR Code's icon on the header" + +#: ../../godmode/setup/setup_visuals.php:626 +msgid "Custom directory where the graphviz binaries are stored." +msgstr "Custom directory in which graphviz binaries are stored." + +#: ../../godmode/setup/setup_visuals.php:639 +msgid "Show only the group name" +msgstr "Show only the group's name" + +#: ../../godmode/setup/setup_visuals.php:652 +msgid "Example" +msgstr "Example" + +#: ../../godmode/setup/setup_visuals.php:665 +msgid "Comparation in rollover" +msgstr "Rollover comparison" + +#: ../../godmode/setup/setup_visuals.php:667 +msgid "Timestamp in rollover" +msgstr "Timestamp in rollover" + +#: ../../godmode/setup/setup_visuals.php:675 +msgid "Custom values post process" +msgstr "Custom value post processing" + +#: ../../godmode/setup/setup_visuals.php:689 +msgid "Delete custom values" +msgstr "Delete custom values" + +#: ../../godmode/setup/setup_visuals.php:709 +msgid "Interval values" +msgstr "Interval values" + +#: ../../godmode/setup/setup_visuals.php:717 +msgid "Add new custom value to intervals" +msgstr "Add new custom value to intervals" + +#: ../../godmode/setup/setup_visuals.php:734 +msgid "Other configuration" +msgstr "Other configuration" + +#: ../../godmode/setup/setup_visuals.php:922 +#: ../../godmode/setup/setup_visuals.php:962 +msgid "Logo preview" +msgstr "Logo preview" + +#: ../../godmode/setup/setup_visuals.php:1002 +msgid "Background preview" +msgstr "Background preview" + +#: ../../godmode/setup/setup_visuals.php:1046 +msgid "Gis icons preview" +msgstr "GIS icon preview" + +#: ../../godmode/setup/setup_visuals.php:1101 +msgid "Status set preview" +msgstr "Status set preview" + +#: ../../godmode/setup/os.list.php:75 +msgid "There are no defined operating systems" +msgstr "There are no operating systems defined" + +#: ../../godmode/setup/os.list.php:81 +msgid "Create OS" +msgstr "Create OS" + +#: ../../godmode/setup/setup.php:145 +msgid "Correct update the setup options" +msgstr "Correctly updated the setup options" + +#: ../../godmode/setup/setup_auth.php:50 +msgid "" +"Enable this option if you want to fallback to local authentication when " +"remote (ldap etc...) authentication failed." +msgstr "" +"Please enable this option if you wish to fallback to a local authentication " +"protocol, should remote authentication (LDAP etc,) fails." + +#: ../../godmode/setup/setup_auth.php:129 +msgid "" +"If this option is enabled, the users can use double authentication with " +"their accounts" +msgstr "" +"If this option is enabled, double authentication for user accounts will be " +"available." + +#: ../../godmode/setup/setup_auth.php:141 +msgid "Session timeout (mins)" +msgstr "Session timeout (mins)" + +#: ../../godmode/setup/setup_auth.php:142 +#: ../../godmode/users/configure_user.php:548 +msgid "" +"This is defined in minutes, If you wish a permanent session should putting -" +"1 in this field." +msgstr "" +"This is defined in minutes. If you want a permanent session, introduce -1 in " +"this field." + +#: ../../godmode/setup/setup_auth.php:177 +msgid "Local Pandora FMS" +msgstr "Local Pandora FMS" + +#: ../../godmode/setup/setup_auth.php:177 +msgid "ldap" +msgstr "LDAP" + +#: ../../godmode/setup/os.builder.php:34 +#: ../../godmode/reporting/visual_console_builder.data.php:102 +msgid "Name:" +msgstr "Name:" + +#: ../../godmode/events/event_filter.php:167 +#: ../../godmode/netflow/nf_edit.php:162 +msgid "There are no defined filters" +msgstr "There are no filters set" + +#: ../../godmode/events/custom_events.php:131 +msgid "Show event fields" +msgstr "Show event fields" + +#: ../../godmode/events/custom_events.php:133 +msgid "Load default event fields" +msgstr "Load default event fields" + +#: ../../godmode/events/custom_events.php:133 +msgid "Default event fields will be loaded. Do you want to continue?" +msgstr "Default event fields will be loaded. Continue?" + +#: ../../godmode/events/custom_events.php:181 +msgid "Fields available" +msgstr "Fields available" + +#: ../../godmode/events/custom_events.php:185 +msgid "Add fields to select" +msgstr "Add fields to select" + +#: ../../godmode/events/custom_events.php:189 +msgid "Delete fields to select" +msgstr "Delete fields to select" + +#: ../../godmode/events/custom_events.php:193 +msgid "Fields selected" +msgstr "Fields selected" + +#: ../../godmode/events/event_edit_filter.php:166 +#: ../../godmode/netflow/nf_edit_form.php:110 +#: ../../godmode/modules/manage_nc_groups.php:83 +msgid "Not updated. Blank name" +msgstr "Couldn't update. Blank name." + +#: ../../godmode/events/event_edit_filter.php:203 +msgid "Update Filter" +msgstr "Update Filter" + +#: ../../godmode/events/event_edit_filter.php:206 +msgid "Create Filter" +msgstr "Create Filter" + +#: ../../godmode/events/event_edit_filter.php:219 +msgid "Save in group" +msgstr "Save in group" + +#: ../../godmode/events/event_edit_filter.php:220 +msgid "" +"This group will be use to restrict the visibility of this filter with ACLs" +msgstr "" +"This group will be used to restrict visibility for this filter with ACLs." + +#: ../../godmode/events/event_edit_filter.php:286 +msgid "Choose between the users who have validated an event. " +msgstr "Choose among the users who have validated an event. " + +#: ../../godmode/events/event_responses.editor.php:63 +msgid "Edit event responses" +msgstr "Edit event responses" + +#: ../../godmode/events/event_responses.editor.php:93 +msgid "For Command type Modal Window mode is enforced" +msgstr "For Command type Modal Window mode is enforced" + +#: ../../godmode/events/event_responses.editor.php:94 +msgid "Modal window" +msgstr "Modal window" + +#: ../../godmode/events/event_responses.editor.php:94 +msgid "New window" +msgstr "New window" + +#: ../../godmode/events/events.php:42 +#: ../../godmode/netflow/nf_edit_form.php:55 +msgid "Filter list" +msgstr "Filter list" + +#: ../../godmode/events/events.php:65 ../../godmode/events/events.php:80 +#: ../../godmode/reporting/reporting_builder.list_items.php:179 +msgid "Filters" +msgstr "Filters" + +#: ../../godmode/events/event_responses.list.php:38 +msgid "No responses found" +msgstr "No responses found" + +#: ../../godmode/events/event_responses.list.php:76 +msgid "Create response" +msgstr "Create response" + +#: ../../godmode/events/event_responses.php:52 +msgid "Response added succesfully" +msgstr "Response added succesfully" + +#: ../../godmode/events/event_responses.php:55 +msgid "Response cannot be added" +msgstr "Response cannot be added" + +#: ../../godmode/events/event_responses.php:81 +msgid "Response updated succesfully" +msgstr "Response successfully updated" + +#: ../../godmode/events/event_responses.php:84 +msgid "Response cannot be updated" +msgstr "Response cannot be updated" + +#: ../../godmode/events/event_responses.php:93 +msgid "Response deleted succesfully" +msgstr "Response successfully deleted" + +#: ../../godmode/events/event_responses.php:96 +msgid "Response cannot be deleted" +msgstr "Response cannot be deleted" + +#: ../../godmode/massive/massive_add_action_alerts.php:96 +msgid "No alerts selected" +msgstr "No alerts selected" + +#: ../../godmode/massive/massive_add_action_alerts.php:120 +msgid "No actions selected" +msgstr "No actions selected" + +#: ../../godmode/massive/massive_add_action_alerts.php:154 +#: ../../godmode/massive/massive_add_alerts.php:154 +#: ../../godmode/massive/massive_edit_agents.php:210 +#: ../../godmode/massive/massive_delete_action_alerts.php:154 +#: ../../godmode/massive/massive_enable_disable_alerts.php:138 +#: ../../godmode/massive/massive_delete_agents.php:108 +#: ../../godmode/massive/massive_standby_alerts.php:139 +#: ../../godmode/massive/massive_delete_modules.php:441 +#: ../../godmode/massive/massive_copy_modules.php:74 +#: ../../godmode/massive/massive_copy_modules.php:185 +#: ../../godmode/massive/massive_edit_modules.php:285 +#: ../../godmode/massive/massive_delete_alerts.php:215 +msgid "Group recursion" +msgstr "Group recursion" + +#: ../../godmode/massive/massive_add_action_alerts.php:157 +#: ../../godmode/massive/massive_delete_action_alerts.php:158 +msgid "Agents with templates" +msgstr "Agents with templates" + +#: ../../godmode/massive/massive_add_action_alerts.php:168 +#: ../../godmode/massive/massive_add_alerts.php:167 +#: ../../godmode/massive/massive_delete_action_alerts.php:169 +#: ../../godmode/massive/massive_delete_modules.php:499 +#: ../../godmode/massive/massive_edit_modules.php:346 +#: ../../godmode/massive/massive_delete_alerts.php:227 +msgid "When select agents" +msgstr "When selecting agents" + +#: ../../godmode/massive/massive_add_action_alerts.php:172 +#: ../../godmode/massive/massive_delete_action_alerts.php:173 +#: ../../godmode/massive/massive_delete_modules.php:501 +#: ../../godmode/massive/massive_edit_modules.php:350 +msgid "Show unknown and not init modules" +msgstr "Show unknown and not init modules" + +#: ../../godmode/massive/massive_add_action_alerts.php:228 +#: ../../godmode/massive/massive_add_alerts.php:213 +#: ../../godmode/massive/massive_edit_agents.php:553 +#: ../../godmode/massive/massive_delete_agents.php:163 +#: ../../godmode/massive/massive_delete_modules.php:727 +#: ../../godmode/massive/massive_copy_modules.php:424 +#: ../../godmode/massive/massive_edit_modules.php:653 +#: ../../godmode/massive/massive_delete_alerts.php:266 +msgid "" +"Unsucessful sending the data, please contact with your administrator or make " +"with less elements." +msgstr "" +"Data sending unsuccessful, please contact your administrator or try again " +"with less items." + +#: ../../godmode/massive/massive_add_alerts.php:78 +#: ../../godmode/massive/massive_delete_alerts.php:78 +msgid "No alert selected" +msgstr "No alert selected" + +#: ../../godmode/massive/massive_edit_agents.php:97 +msgid "No values changed" +msgstr "No values changed" + +#: ../../godmode/massive/massive_edit_agents.php:126 +msgid "Configuration files deleted successfully" +msgstr "Configuration files deleted successfully" + +#: ../../godmode/massive/massive_edit_agents.php:127 +msgid "Configuration files cannot be deleted" +msgstr "Configuration files cannot be deleted" + +#: ../../godmode/massive/massive_edit_agents.php:185 +msgid "Agents updated successfully" +msgstr "Agents updated successfully" + +#: ../../godmode/massive/massive_edit_agents.php:186 +msgid "Agents cannot be updated" +msgstr "Agents cannot be updated" + +#: ../../godmode/massive/massive_edit_agents.php:225 +#: ../../godmode/massive/massive_delete_agents.php:123 +msgid "Show agents" +msgstr "Show agents" + +#: ../../godmode/massive/massive_edit_agents.php:291 +#: ../../godmode/agentes/agent_manager.php:266 +msgid "Cascade protection" +msgstr "Cascade protection" + +#: ../../godmode/massive/massive_edit_agents.php:294 +#: ../../godmode/massive/massive_edit_agents.php:299 +#: ../../godmode/massive/massive_edit_agents.php:303 +#: ../../godmode/massive/massive_edit_agents.php:307 +#: ../../godmode/massive/massive_edit_agents.php:318 +#: ../../godmode/massive/massive_edit_agents.php:357 +#: ../../godmode/massive/massive_edit_agents.php:363 +#: ../../godmode/massive/massive_edit_agents.php:402 +#: ../../godmode/massive/massive_edit_agents.php:411 +#: ../../godmode/massive/massive_edit_agents.php:418 +#: ../../godmode/massive/massive_edit_modules.php:406 +#: ../../godmode/massive/massive_edit_modules.php:451 +#: ../../godmode/massive/massive_edit_modules.php:466 +#: ../../godmode/massive/massive_edit_modules.php:470 +#: ../../godmode/massive/massive_edit_modules.php:490 +#: ../../godmode/massive/massive_edit_modules.php:496 +#: ../../godmode/massive/massive_edit_modules.php:504 +#: ../../godmode/massive/massive_edit_modules.php:508 +#: ../../godmode/massive/massive_edit_modules.php:511 +#: ../../godmode/massive/massive_edit_modules.php:524 +#: ../../godmode/massive/massive_edit_modules.php:537 +#: ../../godmode/massive/massive_edit_modules.php:545 +#: ../../godmode/massive/massive_edit_modules.php:558 +#: ../../godmode/massive/massive_edit_modules.php:566 +#: ../../godmode/massive/massive_edit_modules.php:572 +#: ../../godmode/massive/massive_edit_modules.php:584 +#: ../../godmode/massive/massive_edit_modules.php:603 +msgid "No change" +msgstr "No change" + +#: ../../godmode/massive/massive_edit_agents.php:352 +#: ../../godmode/groups/configure_group.php:178 +#: ../../godmode/agentes/module_manager_editor_common.php:361 +#: ../../godmode/agentes/agent_manager.php:323 +msgid "Custom ID" +msgstr "Custom ID" + +#: ../../godmode/massive/massive_edit_agents.php:356 +#: ../../godmode/agentes/agent_manager.php:327 +msgid "Module definition" +msgstr "Module definition" + +#: ../../godmode/massive/massive_edit_agents.php:358 +#: ../../godmode/agentes/agent_manager.php:329 +msgid "Learning mode" +msgstr "Apprentice mode" + +#: ../../godmode/massive/massive_edit_agents.php:359 +#: ../../godmode/agentes/agent_manager.php:332 +msgid "Normal mode" +msgstr "Normal mode" + +#: ../../godmode/massive/massive_edit_agents.php:365 +#: ../../godmode/agentes/agent_manager.php:343 +msgid "Active" +msgstr "Active" + +#: ../../godmode/massive/massive_edit_agents.php:371 +msgid "Delete available remote configurations" +msgstr "Delete the available remote configurations" + +#: ../../godmode/massive/massive_edit_agents.php:375 +#: ../../godmode/agentes/agent_manager.php:350 +#: ../../godmode/agentes/agent_manager.php:372 +msgid "Not available" +msgstr "Not available" + +#: ../../godmode/massive/massive_edit_agents.php:401 +#: ../../godmode/agentes/agent_manager.php:381 +msgid "Agent icon" +msgstr "Agent icon" + +#: ../../godmode/massive/massive_edit_agents.php:403 +msgid "Without status" +msgstr "Without status" + +#: ../../godmode/massive/massive_edit_agents.php:406 +msgid "Bad" +msgstr "Bad" + +#: ../../godmode/massive/massive_edit_agents.php:410 +#: ../../godmode/agentes/agent_conf_gis.php:78 +#: ../../godmode/agentes/agent_manager.php:410 +msgid "Ignore new GIS data:" +msgstr "Ignore new GIS data:" + +#: ../../godmode/massive/massive_edit_agents.php:417 +#: ../../godmode/agentes/agent_manager.php:425 +msgid "The agent still runs but the alerts and events will be stop" +msgstr "" +"The agent will continue to run, but alerts and events will be stopped" + +#: ../../godmode/massive/massive_edit_agents.php:446 +#: ../../godmode/agentes/agent_manager.php:448 +msgid "This field allows url insertion using the BBCode's url tag" +msgstr "This field allows url insertion using the BBCode's url tag" + +#: ../../godmode/massive/massive_edit_agents.php:448 +#: ../../godmode/agentes/agent_manager.php:450 +msgid "The format is: [url='url to navigate']'text to show'[/url]" +msgstr "The format is: [url='url to navigate']'text to show'[/url]" + +#: ../../godmode/massive/massive_edit_agents.php:450 +#: ../../godmode/agentes/agent_manager.php:452 +msgid "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" +msgstr "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" + +#: ../../godmode/massive/massive_delete_action_alerts.php:56 +msgid "Could not be deleted. No agents selected" +msgstr "Could not be deleted. No agents selected" + +#: ../../godmode/massive/massive_delete_action_alerts.php:81 +msgid "Could not be deleted. No alerts selected" +msgstr "Could not be deleted. No alerts selected" + +#: ../../godmode/massive/massive_delete_action_alerts.php:124 +msgid "Could not be deleted. No action selected" +msgstr "Could not be deleted. No action selected" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:154 +msgid "Enabled alerts" +msgstr "Alerts enabled" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:154 +#: ../../godmode/massive/massive_enable_disable_alerts.php:171 +#: ../../godmode/massive/massive_standby_alerts.php:154 +#: ../../godmode/massive/massive_standby_alerts.php:171 +msgid "Format" +msgstr "Format" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:165 +msgid "Disable selected alerts" +msgstr "Disable the selected alerts" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:169 +msgid "Enable selected alerts" +msgstr "Enable selected alerts" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:171 +msgid "Disabled alerts" +msgstr "Disabled alerts" + +#: ../../godmode/massive/massive_operations.php:36 +msgid "Bulk alert add" +msgstr "Add alerts in bulk" + +#: ../../godmode/massive/massive_operations.php:37 +msgid "Bulk alert delete" +msgstr "Delete alerts in bulk" + +#: ../../godmode/massive/massive_operations.php:38 +msgid "Bulk alert actions add" +msgstr "Add alert actions in bulk" + +#: ../../godmode/massive/massive_operations.php:39 +msgid "Bulk alert actions delete" +msgstr "Delete alert actions in bulk" + +#: ../../godmode/massive/massive_operations.php:40 +msgid "Bulk alert enable/disable" +msgstr "Enable/disable alerts in bulk" + +#: ../../godmode/massive/massive_operations.php:41 +msgid "Bulk alert setting standby" +msgstr "Set alerts standby in bulk" + +#: ../../godmode/massive/massive_operations.php:44 +msgid "Bulk agent edit" +msgstr "Edit agents in bulk" + +#: ../../godmode/massive/massive_operations.php:45 +msgid "Bulk agent delete" +msgstr "Delete agents in bulk" + +#: ../../godmode/massive/massive_operations.php:49 +msgid "Bulk profile add" +msgstr "Add profiles in bulk" + +#: ../../godmode/massive/massive_operations.php:50 +msgid "Bulk profile delete" +msgstr "Delete profiles in bulk" + +#: ../../godmode/massive/massive_operations.php:57 +msgid "Bulk module delete" +msgstr "Delete modules in bulk" + +#: ../../godmode/massive/massive_operations.php:58 +msgid "Bulk module edit" +msgstr "Edit modules in bulk" + +#: ../../godmode/massive/massive_operations.php:59 +msgid "Bulk module copy" +msgstr "Copy modules in bulk" + +#: ../../godmode/massive/massive_operations.php:62 +msgid "Bulk plugin edit" +msgstr "Edit plugins in bulk" + +#: ../../godmode/massive/massive_operations.php:215 +msgid "Massive operations" +msgstr "Massive operations" + +#: ../../godmode/massive/massive_operations.php:223 +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 "" +"In order to perform massive operations PHP needs to be have timeout " +"parameters set correctly. Please open the PHP configuration file (php.ini) " +"for example: sudo vi /etc/php5/apache2/php.ini;
    And set the " +"timeout parameters to the correct value:
    max_execution_time = 0 " +"and max_input_time = -1" + +#: ../../godmode/massive/massive_operations.php:239 +msgid "Please wait..." +msgstr "Please wait..." + +#: ../../godmode/massive/massive_operations.php:276 +msgid "The blank fields will not be updated" +msgstr "Fields left blank will not be updated" + +#: ../../godmode/massive/massive_edit_plugins.php:151 +msgid "Error retrieving the plugin macros" +msgstr "Error retrieving plugin macros" + +#: ../../godmode/massive/massive_edit_plugins.php:158 +msgid "Error retrieving the modified macros" +msgstr "Error retrieving modified macros" + +#: ../../godmode/massive/massive_edit_plugins.php:172 +msgid "Error retrieving the module plugin macros" +msgstr "Error retrieving module plugin macros" + +#: ../../godmode/massive/massive_edit_plugins.php:190 +msgid "Error retrieving the module plugin macros data" +msgstr "Error retrieving data from module plugin macros" + +#: ../../godmode/massive/massive_edit_plugins.php:224 +msgid "Error building the new macros" +msgstr "Error creating new macros" + +#: ../../godmode/massive/massive_edit_plugins.php:253 +#, php-format +msgid "%d modules updated" +msgstr "%d modules updated" + +#: ../../godmode/massive/massive_edit_plugins.php:272 +msgid "There are not registered plugins" +msgstr "There are no registered plugins" + +#: ../../godmode/massive/massive_edit_plugins.php:421 +msgid "Invalid plugin data" +msgstr "Invalid plugin data" + +#: ../../godmode/massive/massive_edit_plugins.php:528 +msgid "Clear" +msgstr "Clear" + +#: ../../godmode/massive/massive_edit_plugins.php:556 +msgid "Invalid macros array" +msgstr "Invalid array of macros" + +#: ../../godmode/massive/massive_edit_plugins.php:581 +msgid "Multiple values" +msgstr "Multiple values" + +#: ../../godmode/massive/massive_edit_plugins.php:613 +#: ../../godmode/massive/massive_edit_plugins.php:750 +#: ../../godmode/massive/massive_edit_plugins.php:766 +msgid "Invalid agents array" +msgstr "Invalid array of agents" + +#: ../../godmode/massive/massive_edit_plugins.php:629 +msgid "Invalid agent element" +msgstr "Invalid agent item" + +#: ../../godmode/massive/massive_edit_plugins.php:640 +msgid "Invalid modules array" +msgstr "Invalid array of modules" + +#: ../../godmode/massive/massive_edit_plugins.php:668 +msgid "Invalid module element" +msgstr "Invalid module item" + +#: ../../godmode/massive/massive_edit_plugins.php:876 +msgid "There are no modules using this plugin" +msgstr "There are no modules using this plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:955 +msgid "There was a problem loading the module plugin macros data" +msgstr "There was a problem loading the data from the module plugin macros" + +#: ../../godmode/massive/massive_delete_agents.php:57 +#, php-format +msgid "" +"There was an error deleting the agent, the operation has been cancelled " +"Could not delete agent %s" +msgstr "" +"There was an error deleting the agent. The operation has been cancelled, " +"could not delete agent %s" + +#: ../../godmode/massive/massive_delete_agents.php:63 +#, php-format +msgid "Successfully deleted (%s)" +msgstr "Successfully deleted (%s)" + +#: ../../godmode/massive/massive_standby_alerts.php:154 +msgid "Not standby alerts" +msgstr "Not standby alerts" + +#: ../../godmode/massive/massive_standby_alerts.php:165 +#: ../../godmode/massive/massive_standby_alerts.php:169 +msgid "Set standby selected alerts" +msgstr "Set selected alerts to standby" + +#: ../../godmode/massive/massive_standby_alerts.php:171 +msgid "Standby alerts" +msgstr "Standby alerts" + +#: ../../godmode/massive/massive_delete_modules.php:56 +msgid "No module selected" +msgstr "No module selected" + +#: ../../godmode/massive/massive_delete_modules.php:230 +msgid "" +"There was an error deleting the modules, the operation has been cancelled" +msgstr "" +"There was an error deleting the selected modules. The operation has been " +"cancelled." + +#: ../../godmode/massive/massive_delete_modules.php:396 +#: ../../godmode/massive/massive_edit_modules.php:239 +msgid "Selection mode" +msgstr "Selection mode" + +#: ../../godmode/massive/massive_delete_modules.php:397 +#: ../../godmode/massive/massive_edit_modules.php:240 +msgid "Select modules first " +msgstr "Select modules first " + +#: ../../godmode/massive/massive_delete_modules.php:399 +#: ../../godmode/massive/massive_edit_modules.php:242 +msgid "Select agents first " +msgstr "Select agents first " + +#: ../../godmode/massive/massive_delete_modules.php:405 +#: ../../godmode/massive/massive_edit_modules.php:249 +msgid "Module type" +msgstr "Module type" + +#: ../../godmode/massive/massive_delete_modules.php:414 +#: ../../godmode/massive/massive_edit_modules.php:258 +msgid "Select all modules of this type" +msgstr "Select all modules of the same type" + +#: ../../godmode/massive/massive_delete_modules.php:435 +#: ../../godmode/massive/massive_edit_modules.php:279 +msgid "Agent group" +msgstr "Agent group" + +#: ../../godmode/massive/massive_delete_modules.php:443 +#: ../../godmode/massive/massive_edit_modules.php:287 +msgid "Select all modules of this group" +msgstr "Select all modules from this group" + +#: ../../godmode/massive/massive_delete_modules.php:464 +#: ../../godmode/massive/massive_edit_modules.php:293 +msgid "Module Status" +msgstr "Module Status" + +#: ../../godmode/massive/massive_delete_modules.php:483 +#: ../../godmode/massive/massive_edit_modules.php:311 +msgid "When select modules" +msgstr "When selecting modules" + +#: ../../godmode/massive/massive_delete_modules.php:486 +#: ../../godmode/massive/massive_edit_modules.php:314 +msgid "Show common agents" +msgstr "Show common agents" + +#: ../../godmode/massive/massive_delete_modules.php:487 +#: ../../godmode/massive/massive_edit_modules.php:315 +msgid "Show all agents" +msgstr "Show all agents" + +#: ../../godmode/massive/massive_copy_modules.php:136 +msgid "Copy modules" +msgstr "Copy modules" + +#: ../../godmode/massive/massive_copy_modules.php:141 +msgid "Copy alerts" +msgstr "Copy alerts" + +#: ../../godmode/massive/massive_copy_modules.php:150 +msgid "No modules for this agent" +msgstr "No modules for this agent" + +#: ../../godmode/massive/massive_copy_modules.php:159 +msgid "No alerts for this agent" +msgstr "No alerts for this agent" + +#: ../../godmode/massive/massive_copy_modules.php:168 +msgid "Targets" +msgstr "Targets" + +#: ../../godmode/massive/massive_copy_modules.php:217 +msgid "To agent(s)" +msgstr "To agent(s)" + +#: ../../godmode/massive/massive_copy_modules.php:442 +msgid "No operation selected" +msgstr "No operation selected" + +#: ../../godmode/massive/massive_delete_profiles.php:61 +msgid "Not deleted. You must select an existing user" +msgstr "Could not be deleted. An existing user must be chosen." + +#: ../../godmode/massive/massive_delete_profiles.php:87 +msgid "Profiles deleted successfully" +msgstr "Profiles deleted successfully" + +#: ../../godmode/massive/massive_delete_profiles.php:88 +msgid "Profiles cannot be deleted" +msgstr "Profiles cannot be deleted" + +#: ../../godmode/massive/massive_edit_modules.php:324 +msgid "Agent Status" +msgstr "Agent Status" + +#: ../../godmode/massive/massive_edit_modules.php:357 +#: ../../godmode/modules/manage_network_components_form_common.php:107 +msgid "Dynamic Interval" +msgstr "Dynamic Interval" + +#: ../../godmode/massive/massive_edit_modules.php:359 +msgid "Dynamic Min." +msgstr "Dynamic Min." + +#: ../../godmode/massive/massive_edit_modules.php:362 +#: ../../godmode/modules/manage_network_components_form_common.php:113 +msgid "Dynamic Max." +msgstr "Dynamic Max." + +#: ../../godmode/massive/massive_edit_modules.php:365 +#: ../../godmode/modules/manage_network_components_form_common.php:115 +msgid "Dynamic Two Tailed: " +msgstr "Dynamic Two Tailed: " + +#: ../../godmode/massive/massive_edit_modules.php:400 +#: ../../godmode/massive/massive_edit_modules.php:446 +#: ../../godmode/modules/manage_network_components_form_common.php:128 +#: ../../godmode/modules/manage_network_components_form_common.php:145 +#: ../../godmode/agentes/module_manager_editor_common.php:292 +#: ../../godmode/agentes/module_manager_editor_common.php:314 +msgid "Inverse interval" +msgstr "Inverse interval" + +#: ../../godmode/massive/massive_edit_modules.php:479 +msgid "SMNP community" +msgstr "SMNP community" + +#: ../../godmode/massive/massive_edit_modules.php:485 +#: ../../godmode/agentes/module_manager_editor_network.php:86 +msgid "Force primary key" +msgstr "Force primary key" + +#: ../../godmode/massive/massive_edit_modules.php:494 +#: ../../godmode/modules/manage_network_components_form_network.php:40 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:356 +#: ../../godmode/agentes/module_manager_editor_network.php:132 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:717 +msgid "SNMP version" +msgstr "SNMP version" + +#: ../../godmode/massive/massive_edit_modules.php:501 +#: ../../godmode/massive/massive_edit_modules.php:505 +#: ../../godmode/agentes/module_manager_editor_network.php:219 +#: ../../godmode/agentes/module_manager_editor_network.php:229 +msgid "The pass length must be eight character minimum." +msgstr "The pass length must be eight character minimum." + +#: ../../godmode/massive/massive_edit_modules.php:526 +#: ../../godmode/modules/manage_network_components_form_wmi.php:48 +#: ../../godmode/agentes/module_manager_editor_wmi.php:54 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:261 +msgid "Username" +msgstr "Username" + +#: ../../godmode/massive/massive_edit_modules.php:532 +#: ../../godmode/agentes/module_manager_editor_common.php:427 +msgid "Export target" +msgstr "Export target" + +#: ../../godmode/massive/massive_edit_modules.php:543 +#: ../../godmode/modules/manage_network_components_form_common.php:148 +#: ../../godmode/agentes/module_manager_editor_common.php:318 +msgid "FF threshold" +msgstr "FF threshold" + +#: ../../godmode/massive/massive_edit_modules.php:545 +#: ../../godmode/massive/massive_edit_modules.php:547 +#: ../../godmode/modules/manage_network_components_form_common.php:153 +#: ../../godmode/agentes/module_manager_editor_common.php:324 +msgid "Each state changing" +msgstr "Change each status" + +#: ../../godmode/massive/massive_edit_modules.php:545 +#: ../../godmode/massive/massive_edit_modules.php:546 +#: ../../godmode/modules/manage_network_components_form_common.php:150 +#: ../../godmode/agentes/module_manager_editor_common.php:321 +msgid "All state changing" +msgstr "Change all statuses" + +#: ../../godmode/massive/massive_edit_modules.php:548 +#: ../../godmode/modules/manage_network_components_form_common.php:154 +#: ../../godmode/agentes/module_manager_editor_common.php:325 +msgid "To normal" +msgstr "To 'normal'" + +#: ../../godmode/massive/massive_edit_modules.php:549 +#: ../../godmode/modules/manage_network_components_form_common.php:156 +#: ../../godmode/agentes/module_manager_editor_common.php:328 +msgid "To warning" +msgstr "To 'warning'" + +#: ../../godmode/massive/massive_edit_modules.php:550 +#: ../../godmode/modules/manage_network_components_form_common.php:158 +#: ../../godmode/agentes/module_manager_editor_common.php:331 +msgid "To critical" +msgstr "To 'critical'" + +#: ../../godmode/massive/massive_edit_modules.php:552 +#: ../../godmode/agentes/module_manager_editor_common.php:456 +msgid "FF interval" +msgstr "FF interval" + +#: ../../godmode/massive/massive_edit_modules.php:553 +#: ../../godmode/agentes/module_manager_editor_common.php:459 +msgid "Module execution flip flop time interval (in secs)." +msgstr "Module execution flip flop time interval (in secs)." + +#: ../../godmode/massive/massive_edit_modules.php:554 +#: ../../godmode/agentes/module_manager_editor_common.php:462 +msgid "FF timeout" +msgstr "FlipFlop timeout" + +#: ../../godmode/massive/massive_edit_modules.php:555 +#: ../../godmode/agentes/module_manager_editor_common.php:468 +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 "" +"Timeout in seconds to the start of flip flop counting. If this value is " +"exceeded, the FF counter is reset. Please set it to '0' for no timeout." + +#: ../../godmode/massive/massive_edit_modules.php:565 +#: ../../godmode/modules/manage_network_components_form_common.php:190 +#: ../../godmode/agentes/module_manager_editor_common.php:629 +msgid "Category" +msgstr "Category" + +#: ../../godmode/massive/massive_edit_modules.php:571 +msgid "Policy linking status" +msgstr "Policy linking status" + +#: ../../godmode/massive/massive_edit_modules.php:571 +msgid "This field only has sense in modules adopted by a policy." +msgstr "This field only makes sense in modules adopted by a policy" + +#: ../../godmode/massive/massive_edit_modules.php:572 +msgid "Linked" +msgstr "Linked" + +#: ../../godmode/massive/massive_edit_modules.php:581 +#: ../../godmode/modules/manage_network_components_form_common.php:171 +#: ../../godmode/agentes/module_manager_editor_common.php:451 +msgid "Discard unknown events" +msgstr "Discard unknown events" + +#: ../../godmode/massive/massive_edit_modules.php:589 +#: ../../godmode/modules/manage_network_components_form_common.php:175 +#: ../../godmode/agentes/module_manager_editor_common.php:572 +msgid "Critical instructions" +msgstr "Critical instructions" + +#: ../../godmode/massive/massive_edit_modules.php:589 +#: ../../godmode/modules/manage_network_components_form_common.php:175 +#: ../../godmode/agentes/module_manager_editor_common.php:573 +msgid "Instructions when the status is critical" +msgstr "Instructions when status is critical" + +#: ../../godmode/massive/massive_edit_modules.php:593 +#: ../../godmode/modules/manage_network_components_form_common.php:179 +#: ../../godmode/agentes/module_manager_editor_common.php:578 +msgid "Warning instructions" +msgstr "Warning instructions" + +#: ../../godmode/massive/massive_edit_modules.php:593 +#: ../../godmode/modules/manage_network_components_form_common.php:179 +#: ../../godmode/agentes/module_manager_editor_common.php:579 +msgid "Instructions when the status is warning" +msgstr "Instructions when warning status is active" + +#: ../../godmode/massive/massive_edit_modules.php:597 +#: ../../godmode/modules/manage_network_components_form_common.php:183 +#: ../../godmode/agentes/module_manager_editor_common.php:583 +msgid "Unknown instructions" +msgstr "Unknown instructions" + +#: ../../godmode/massive/massive_edit_modules.php:597 +#: ../../godmode/modules/manage_network_components_form_common.php:183 +#: ../../godmode/agentes/module_manager_editor_common.php:583 +msgid "Instructions when the status is unknown" +msgstr "Instructions when status is unknown" + +#: ../../godmode/massive/massive_edit_modules.php:602 +msgid "The module still store data but the alerts and events will be stop" +msgstr "" +"The module will still store data, but alerts and events will be stopped." + +#: ../../godmode/massive/massive_edit_modules.php:606 +#: ../../godmode/agentes/module_manager_editor_common.php:621 +msgid "Timeout" +msgstr "Timeout" + +#: ../../godmode/massive/massive_edit_modules.php:610 +#: ../../godmode/agentes/module_manager_editor_common.php:622 +msgid "Seconds that agent will wait for the execution of the module." +msgstr "Seconds that the agent will wait for the module to run." + +#: ../../godmode/massive/massive_delete_tags.php:107 +msgid "No tag selected" +msgstr "No tag selected" + +#: ../../godmode/massive/massive_add_tags.php:43 +msgid "No tags selected" +msgstr "No tags selected" + +#: ../../godmode/massive/massive_add_profiles.php:72 +msgid "Profiles added successfully" +msgstr "Successfully added profiles" + +#: ../../godmode/massive/massive_add_profiles.php:73 +msgid "Profiles cannot be added" +msgstr "Profiles cannot be added" + +#: ../../godmode/users/configure_profile.php:41 +#: ../../godmode/users/configure_profile.php:49 +#: ../../godmode/users/configure_user.php:82 +#: ../../godmode/users/profile_list.php:45 +#: ../../godmode/users/profile_list.php:53 +#: ../../godmode/users/user_list.php:113 ../../godmode/users/user_list.php:121 +msgid "User management" +msgstr "User management" + +#: ../../godmode/users/configure_profile.php:49 +#: ../../godmode/users/profile_list.php:53 +msgid "Profiles defined in Pandora" +msgstr "Profiles defined on Pandora" + +#: ../../godmode/users/configure_profile.php:113 +msgid "Create profile" +msgstr "Create profile" + +#: ../../godmode/users/configure_profile.php:119 +msgid "There was a problem loading profile" +msgstr "There was a problem loading the profile" + +#: ../../godmode/users/configure_profile.php:219 +msgid "Update profile" +msgstr "Update profile" + +#: ../../godmode/users/configure_profile.php:229 +msgid "Update Profile" +msgstr "Update Profile" + +#: ../../godmode/users/configure_profile.php:231 +msgid "Create Profile" +msgstr "Create Profile" + +#: ../../godmode/users/configure_profile.php:249 +msgid "View agents" +msgstr "View agents" + +#: ../../godmode/users/configure_profile.php:253 +msgid "Disable agents" +msgstr "Disable agents" + +#: ../../godmode/users/configure_profile.php:257 +msgid "Edit agents" +msgstr "Edit agents" + +#: ../../godmode/users/configure_profile.php:264 +msgid "Edit alerts" +msgstr "Edit alerts" + +#: ../../godmode/users/configure_profile.php:279 +msgid "Edit events" +msgstr "Edit events" + +#: ../../godmode/users/configure_profile.php:290 +msgid "View reports" +msgstr "View reports" + +#: ../../godmode/users/configure_profile.php:294 +msgid "Edit reports" +msgstr "Edit reports" + +#: ../../godmode/users/configure_profile.php:298 +msgid "Manage reports" +msgstr "Manage reports" + +#: ../../godmode/users/configure_profile.php:305 +msgid "View network maps" +msgstr "View network maps" + +#: ../../godmode/users/configure_profile.php:309 +msgid "Edit network maps" +msgstr "Edit network maps" + +#: ../../godmode/users/configure_profile.php:313 +msgid "Manage network maps" +msgstr "Manage network maps" + +#: ../../godmode/users/configure_profile.php:324 +msgid "Edit visual console" +msgstr "Edit visual console" + +#: ../../godmode/users/configure_profile.php:335 +msgid "View incidents" +msgstr "View incidents" + +#: ../../godmode/users/configure_profile.php:339 +msgid "Edit incidents" +msgstr "Edit incidents" + +#: ../../godmode/users/configure_profile.php:343 +msgid "Manage incidents" +msgstr "Manage incidents" + +#: ../../godmode/users/configure_profile.php:350 +msgid "Manage users" +msgstr "Manage users" + +#: ../../godmode/users/configure_profile.php:357 +msgid "Manage database" +msgstr "Manage database" + +#: ../../godmode/users/configure_profile.php:364 +msgid "Pandora management" +msgstr "Pandora management" + +#: ../../godmode/users/configure_user.php:145 +#: ../../godmode/users/user_list.php:492 +msgid "" +"The current authentication scheme doesn't support creating users from " +"Pandora FMS" +msgstr "" +"The current authentication scheme doesn't support creating users on Pandora " +"FMS" + +#: ../../godmode/users/configure_user.php:182 +msgid "User ID cannot be empty" +msgstr "User ID field cannot be empty" + +#: ../../godmode/users/configure_user.php:189 +msgid "Passwords cannot be empty" +msgstr "Password field cannot be empty" + +#: ../../godmode/users/configure_user.php:196 +msgid "Passwords didn't match" +msgstr "Provided passwords do not match" + +#: ../../godmode/users/configure_user.php:245 +msgid "" +"Strict ACL is not recommended for admin users because performance could be " +"affected." +msgstr "" +"A strict ACL isn't recommended for admin users because it could affect " +"overall performance" + +#: ../../godmode/users/configure_user.php:304 +#: ../../godmode/users/configure_user.php:314 +#: ../../godmode/users/configure_user.php:342 +#: ../../godmode/users/configure_user.php:348 +#: ../../godmode/users/configure_user.php:376 +msgid "Error updating user info (no change?)" +msgstr "Error updating user info (no change?)" + +#: ../../godmode/users/configure_user.php:318 +msgid "Passwords does not match" +msgstr "Passwords don't match" + +#: ../../godmode/users/configure_user.php:366 +msgid "" +"Strict ACL is not recommended for this user. Performance could be affected." +msgstr "" +"A strict ACL is not recommended for this user. Performance could be affected." + +#: ../../godmode/users/configure_user.php:398 +msgid "Profile added successfully" +msgstr "Profile added successfully" + +#: ../../godmode/users/configure_user.php:399 +msgid "Profile cannot be added" +msgstr "Profile could not be added" + +#: ../../godmode/users/configure_user.php:425 +msgid "Update User" +msgstr "Update User" + +#: ../../godmode/users/configure_user.php:428 +msgid "Create User" +msgstr "Create User" + +#: ../../godmode/users/configure_user.php:464 +msgid "Global Profile" +msgstr "Global Profile" + +#: ../../godmode/users/configure_user.php:469 +msgid "" +"This user has permissions to manage all. An admin user should not requiere " +"additional group permissions, except for using Enterprise ACL." +msgstr "" +"This user has management permissions over everything. An admin user should " +"not require additional group permissions, except when using the Enterprise " +"ACL." + +#: ../../godmode/users/configure_user.php:474 +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 "" +"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" + +#: ../../godmode/users/configure_user.php:516 +msgid "Use global conf" +msgstr "Use global conf" + +#: ../../godmode/users/configure_user.php:531 +msgid "Metaconsole access" +msgstr "Metaconsole access" + +#: ../../godmode/users/configure_user.php:539 +msgid "Not Login" +msgstr "Not Login" + +#: ../../godmode/users/configure_user.php:540 +msgid "The user with not login set only can access to API." +msgstr "The user with not login set only can access to API." + +#: ../../godmode/users/configure_user.php:543 +msgid "Strict ACL" +msgstr "Strict ACL" + +#: ../../godmode/users/configure_user.php:544 +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" +msgstr "" +"With this option enabled, the user will be able to access accurate " +"information. Not recommended for admin users because it can affect " +"performance." + +#: ../../godmode/users/configure_user.php:547 +msgid "Session Time" +msgstr "Session Time" + +#: ../../godmode/users/configure_user.php:554 +msgid "Enable agents managment" +msgstr "Enable agent management" + +#: ../../godmode/users/configure_user.php:561 +msgid "Assigned node" +msgstr "Assigned node" + +#: ../../godmode/users/configure_user.php:561 +msgid "Server where the agents created of this user will be placed" +msgstr "Server in which the agents created by this user will be placed" + +#: ../../godmode/users/configure_user.php:573 +msgid "Enable node access" +msgstr "Enable node access" + +#: ../../godmode/users/configure_user.php:573 +msgid "With this option enabled, the user will can access to nodes console" +msgstr "" +"With this option enabled, the user will be able to access the node console" + +#: ../../godmode/users/profile_list.php:80 +msgid "" +"Unsucessful delete profile. Because the profile is used by some admin users." +msgstr "" +"Unsucessful delete profile. Because the profile is used by some admin users." + +#: ../../godmode/users/profile_list.php:88 +#: ../../godmode/users/user_list.php:189 +msgid "There was a problem deleting the profile" +msgstr "There was a problem deleting the profile" + +#: ../../godmode/users/profile_list.php:226 +msgid "There was a problem updating this profile" +msgstr "There was a problem updating this profile" + +#: ../../godmode/users/profile_list.php:230 +msgid "Profile name cannot be empty" +msgstr "Profile name cannot be empty" + +#: ../../godmode/users/profile_list.php:282 +#: ../../godmode/users/profile_list.php:286 +msgid "There was a problem creating this profile" +msgstr "There was a problem creating this profile" + +#: ../../godmode/users/profile_list.php:304 +msgid "System incidents reading" +msgstr "Read system incidents" + +#: ../../godmode/users/profile_list.php:305 +msgid "System incidents writing" +msgstr "Write system incidents" + +#: ../../godmode/users/profile_list.php:306 +msgid "System incidents management" +msgstr "Manage system incidents" + +#: ../../godmode/users/profile_list.php:307 +msgid "Agents reading" +msgstr "Read agents" + +#: ../../godmode/users/profile_list.php:309 +msgid "Agents disable" +msgstr "Disable agents" + +#: ../../godmode/users/profile_list.php:310 +msgid "Alerts editing" +msgstr "Edit alerts" + +#: ../../godmode/users/profile_list.php:311 +msgid "Alerts management" +msgstr "Manage alerts" + +#: ../../godmode/users/profile_list.php:313 +msgid "Database management" +msgstr "Database management" + +#: ../../godmode/users/profile_list.php:314 +msgid "Events reading" +msgstr "Read events" + +#: ../../godmode/users/profile_list.php:315 +msgid "Events writing" +msgstr "Write events" + +#: ../../godmode/users/profile_list.php:316 +msgid "Events management" +msgstr "Manage events" + +#: ../../godmode/users/profile_list.php:317 +msgid "Reports reading" +msgstr "Read reports" + +#: ../../godmode/users/profile_list.php:318 +msgid "Reports writing" +msgstr "Write reports" + +#: ../../godmode/users/profile_list.php:319 +msgid "Reports management" +msgstr "Manage reports" + +#: ../../godmode/users/profile_list.php:320 +msgid "Network maps reading" +msgstr "Read network maps" + +#: ../../godmode/users/profile_list.php:321 +msgid "Network maps writing" +msgstr "Write network maps" + +#: ../../godmode/users/profile_list.php:322 +msgid "Network maps management" +msgstr "Manage network maps" + +#: ../../godmode/users/profile_list.php:323 +msgid "Visual console reading" +msgstr "Read visual console" + +#: ../../godmode/users/profile_list.php:324 +msgid "Visual console writing" +msgstr "Write visual console" + +#: ../../godmode/users/profile_list.php:325 +msgid "Visual console management" +msgstr "Manage visual console" + +#: ../../godmode/users/profile_list.php:326 +msgid "Systems management" +msgstr "Systems management" + +#: ../../godmode/users/profile_list.php:398 +msgid "There are no defined profiles" +msgstr "There are no defined profiles" + +#: ../../godmode/users/user_list.php:121 +msgid "Users defined in Pandora" +msgstr "Users defined on Pandora" + +#: ../../godmode/users/user_list.php:143 +#, php-format +msgid "Deleted user %s" +msgstr "Deleted user %s" + +#: ../../godmode/users/user_list.php:148 ../../godmode/users/user_list.php:181 +msgid "There was a problem deleting the user" +msgstr "There was a problem deleting the user" + +#: ../../godmode/users/user_list.php:163 +#, php-format +msgid "Deleted user %s from metaconsole" +msgstr "Deleted user %s from the metaconsole" + +#: ../../godmode/users/user_list.php:172 +#, php-format +msgid "Deleted user %s from %s" +msgstr "Deleted user %s from %s" + +#: ../../godmode/users/user_list.php:175 +#, php-format +msgid "Successfully deleted from %s" +msgstr "Successfully deleted from %s" + +#: ../../godmode/users/user_list.php:176 +#, php-format +msgid "There was a problem deleting the user from %s" +msgstr "There was a problem deleting the user from %s" + +#: ../../godmode/users/user_list.php:204 +msgid "There was a problem disabling user" +msgstr "There was a problem disabling the user" + +#: ../../godmode/users/user_list.php:209 +msgid "There was a problem enabling user" +msgstr "There was a problem enabling the user" + +#: ../../godmode/users/user_list.php:231 ../../godmode/users/user_list.php:233 +msgid "Search by username, fullname or email" +msgstr "Search by username, full name, or e-mail" + +#: ../../godmode/users/user_list.php:249 +msgid "Users control filter" +msgstr "User control filter" + +#: ../../godmode/users/user_list.php:276 +msgid "Profile / Group" +msgstr "Profile / Group" + +#: ../../godmode/users/user_list.php:406 ../../godmode/tag/tag.php:204 +#: ../../godmode/tag/edit_tag.php:205 +msgid "Phone" +msgstr "Phone" + +#: ../../godmode/users/user_list.php:470 +msgid "Deleting User" +msgstr "Deleting User" + +#: ../../godmode/users/user_list.php:472 +msgid "Delete from all consoles" +msgstr "Delete from all consoles" + +#: ../../godmode/users/user_list.php:472 +#, php-format +msgid "Deleting User %s from all consoles" +msgstr "Deleting User %s from all consoles" + +#: ../../godmode/users/user_list.php:488 +msgid "Create user" +msgstr "Create user" + +#: ../../godmode/reporting/graph_builder.graph_editor.php:87 +#: ../../godmode/reporting/graph_builder.graph_editor.php:156 +msgid "Weight" +msgstr "Weight" + +#: ../../godmode/reporting/graph_builder.graph_editor.php:185 +msgid "Please, select a module" +msgstr "Please select a module" + +#: ../../godmode/reporting/reporting_builder.main.php:85 +msgid "Only the group can view the report" +msgstr "Only the group can view the report" + +#: ../../godmode/reporting/reporting_builder.main.php:86 +msgid "The next group can edit the report" +msgstr "The next group can edit the report" + +#: ../../godmode/reporting/reporting_builder.main.php:87 +msgid "Only the user and admin user can edit the report" +msgstr "Only the user and admin user can edit the report" + +#: ../../godmode/reporting/reporting_builder.main.php:89 +msgid "Write Access" +msgstr "Writing Access" + +#: ../../godmode/reporting/reporting_builder.main.php:90 +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 "" +"For example, you want a report that people from \"All\" groups can see, but " +"you want only yourself or your group to be able to edit." + +#: ../../godmode/reporting/reporting_builder.main.php:110 +msgid "Non interactive report" +msgstr "Non-interactive Report" + +#: ../../godmode/reporting/graph_builder.php:224 +msgid "Graph builder" +msgstr "Graph builder" + +#: ../../godmode/reporting/graph_builder.php:244 +msgid "Graph stored successfully" +msgstr "Graph stored successfully" + +#: ../../godmode/reporting/graph_builder.php:244 +msgid "There was a problem storing Graph" +msgstr "There was a problem storing Graph" + +#: ../../godmode/reporting/graph_builder.php:247 +#: ../../godmode/agentes/configurar_agente.php:1393 +msgid "Module added successfully" +msgstr "Module added successfully" + +#: ../../godmode/reporting/graph_builder.php:247 +msgid "There was a problem adding Module" +msgstr "There was a problem adding Module" + +#: ../../godmode/reporting/graph_builder.php:250 +msgid "Update the graph" +msgstr "Update the graph" + +#: ../../godmode/reporting/graph_builder.php:250 +msgid "Bad update the graph" +msgstr "Bad update the graph" + +#: ../../godmode/reporting/graph_builder.php:253 +msgid "Graph deleted successfully" +msgstr "Graph deleted successfully" + +#: ../../godmode/reporting/graph_builder.php:253 +msgid "There was a problem deleting Graph" +msgstr "There was a problem deleting the graph" + +#: ../../godmode/reporting/map_builder.php:187 +#: ../../godmode/reporting/map_builder.php:197 +msgid "Not copied. Error copying data" +msgstr "Not copied. Error copying data" + +#: ../../godmode/reporting/map_builder.php:207 +msgid "Map name" +msgstr "Map name" + +#: ../../godmode/reporting/map_builder.php:209 +msgid "Items" +msgstr "Items" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:125 +msgid "Range between elements (px)" +msgstr "Range between elements (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:132 +msgid "Size (px)" +msgstr "Size (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:170 +msgid "Font" +msgstr "Font" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:204 +msgid "Width (px)" +msgstr "Width (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:223 +msgid "Bubble" +msgstr "Bubble" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:232 +msgid "Percent" +msgstr "Percent" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:267 +msgid "One item per agent" +msgstr "One item per agent" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:301 +#: ../../godmode/reporting/visual_console_builder.wizard.php:604 +msgid "Agent - Module" +msgstr "Agent - Module" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:310 +msgid "Enable link agent" +msgstr "Enable agent link" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:322 +msgid "Set Parent" +msgstr "Set Parent" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:324 +msgid "Item created in the visualmap" +msgstr "Iteam created on the visual map" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:325 +msgid "Use the agents relationship (from selected agents)" +msgstr "Use the agents relationship (from selected agents)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:328 +msgid "Item in the map" +msgstr "Item on the map" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:331 +msgid "The parent relationships in Pandora will be drawn in the map." +msgstr "The parenting relationships in Pandora will be drawn on the map." + +#: ../../godmode/reporting/visual_console_builder.wizard.php:344 +#: ../../godmode/reporting/visual_console_builder.wizard.php:349 +msgid "Are you sure to add many elements\\nin visual map?" +msgstr "Are you sure you wish to add this many elements\\non the visual map?" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:525 +msgid "Please select any module or modules." +msgstr "Please select any module or modules." + +#: ../../godmode/reporting/visual_console_builder.elements.php:79 +msgid "Width x Height
    Max value" +msgstr "Width x Height
    Max value" + +#: ../../godmode/reporting/visual_console_builder.elements.php:143 +msgid "Percentile Bar" +msgstr "Percentile Bar" + +#: ../../godmode/reporting/visual_console_builder.elements.php:148 +msgid "Percentile Bubble" +msgstr "Percentile Bubble" + +#: ../../godmode/reporting/visual_console_builder.elements.php:163 +msgid "Simple Value (Process Max)" +msgstr "Simple Value (Process Max)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:168 +msgid "Simple Value (Process Min)" +msgstr "Simple Value (Process Min)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:173 +msgid "Simple Value (Process Avg)" +msgstr "Simple Value (Process Avg)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:226 +#: ../../godmode/reporting/visual_console_builder.elements.php:619 +msgid "Edit label" +msgstr "Edit label" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:35 +msgid "Only table" +msgstr "Only table" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:36 +msgid "Table & Graph" +msgstr "Chart & graph" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:37 +msgid "Only graph" +msgstr "Only graph" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:41 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1257 +msgid "Ascending" +msgstr "Ascending" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:42 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1260 +msgid "Descending" +msgstr "Descending" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:611 +msgid "Item Editor" +msgstr "Item Editor" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:639 +msgid "Not valid" +msgstr "Not valid" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:644 +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 "" +"This type of report implies a lot of data loading, and is therefore " +"recommended for scheduled reports, not real-time view." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:705 +#: ../../godmode/reporting/reporting_builder.list_items.php:302 +msgid "Time lapse" +msgstr "Time lapse" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:706 +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 "" +"This is the range, or time-period, over which the report renders the " +"information for this type of report. E.g. a week means data from a week ago. " + +#: ../../godmode/reporting/reporting_builder.item_editor.php:720 +msgid "Last value" +msgstr "Last value" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:721 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3198 +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 "" +"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" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:766 +msgid "Projection period" +msgstr "Projected period" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:776 +msgid "Data range" +msgstr "Data range" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:787 +msgid "Only display wrong SLAs" +msgstr "Only display wrong SLAs" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:796 +msgid "Working time" +msgstr "Work time" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1011 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1679 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1714 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1875 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1903 +msgid "Select an Agent first" +msgstr "Select an Agent first" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1042 +msgid "Show modules" +msgstr "Show modules" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1175 +msgid "Target server" +msgstr "Target server" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1203 +msgid "Custom SQL template" +msgstr "Custom SQL template" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1224 +msgid "Select server" +msgstr "Select server" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1233 +msgid "Serialized header" +msgstr "Serialised header" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1233 +msgid "The separator character is |" +msgstr "The separation character is |" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1242 +msgid "Field separator" +msgstr "Field separator" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1242 +msgid "Separator for different fields in the serialized text chain" +msgstr "Separator for different fields in the serialised text string" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1246 +msgid "Line separator" +msgstr "Line break" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1246 +msgid "" +"Separator in different lines (composed by fields) of the serialized text " +"chain" +msgstr "" +"Separator for different lines (composed by fields) on the serialised text " +"string" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1250 +msgid "Group by agent" +msgstr "Group by agent" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1468 +#: ../../godmode/netflow/nf_item_list.php:147 +msgid "Order" +msgstr "Order" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1263 +msgid "By agent name" +msgstr "By agent name" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1271 +msgid "Quantity (n)" +msgstr "Quantity (n)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1304 +msgid "Only average" +msgstr "Only average" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1308 +#: ../../godmode/reporting/graph_builder.main.php:177 +msgid "Percentil" +msgstr "Percentile" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1321 +msgid "Condition" +msgstr "Condition" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1327 +msgid "Greater or equal (>=)" +msgstr "Greater or equal to (>=)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1328 +msgid "Less or equal (<=)" +msgstr "Lesser or equal to (<=)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1329 +msgid "Less (<)" +msgstr "Lesser than (<)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1330 +msgid "Greater (>)" +msgstr "Greater than (>)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1331 +msgid "Equal (=)" +msgstr "Equal to (=)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1332 +msgid "Not equal (!=)" +msgstr "Unequal to (!=)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1356 +msgid "Show graph" +msgstr "Show graph" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1364 +msgid "Show address instead module name." +msgstr "Show address instead of module name." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1365 +msgid "Show the main address of agent." +msgstr "Show the agent's main address." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1377 +msgid "Show resume" +msgstr "Show summary" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1377 +msgid "" +"Show a summary chart with max, min and average number of total modules at " +"the end of the report and Checks." +msgstr "" +"Show a summary chart with max, min and average number of total modules at " +"the end of the report and Checks." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1387 +msgid "Show Summary group" +msgstr "Show Summary group" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1420 +msgid "Event Status" +msgstr "Event Status" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1432 +msgid "Event graphs" +msgstr "Event graphs" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1436 +msgid "By agent" +msgstr "By agent" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1442 +msgid "By user validator" +msgstr "By user validation" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1448 +msgid "By criticity" +msgstr "By priority" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1454 +msgid "Validated vs unvalidated" +msgstr "Validated vs unvalidated" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1462 +msgid "Show in two columns" +msgstr "Show in two columns" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1468 +msgid "SLA items sorted by fulfillment value" +msgstr "SLA items sorted by fulfillment value" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1473 +msgid "Show in landscape" +msgstr "Show in landscape" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1484 +msgid "Hide not init agents" +msgstr "Hide not init agents" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1509 +#: ../../godmode/netflow/nf_item_list.php:260 +msgid "Create item" +msgstr "Create item" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1542 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:415 +msgid "Service" +msgstr "Service" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1543 +msgid "SLA Min. (value)" +msgstr "SLA Min. (value)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1544 +msgid "SLA Max. (value)" +msgstr "SLA Max. (value)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1545 +msgid "SLA Limit (%)" +msgstr "SLA Limit (%)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1554 +msgid "Please save the SLA for start to add items in this list." +msgstr "Please save the SLA for start to add items in this list." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1726 +msgid "rate" +msgstr "rate" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1727 +msgid "max" +msgstr "max" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1728 +msgid "min" +msgstr "min" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1729 +msgid "sum" +msgstr "sum" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1749 +msgid "" +"Please be careful, when the module have diferent intervals in their life, " +"the summatory maybe get bad result." +msgstr "" +"Please be careful: when the module has different intervals during its life, " +"the sum may return mistaken results." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1763 +msgid "Please save the report to start adding items into the list." +msgstr "Please save the report to start adding items onto the list" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2072 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2092 +msgid "Please select Agent" +msgstr "Please select Agent" + +#: ../../godmode/reporting/visual_console_builder.data.php:91 +msgid "Create visual console" +msgstr "Create a new visual console" + +#: ../../godmode/reporting/visual_console_builder.data.php:103 +msgid "" +"Use [ or ( as first character, for example '[*] Map name', to render this " +"map name in main menu" +msgstr "" +"Use [ or ( as first character, for example '[*] Map name', to render this " +"map name in main menu" + +#: ../../godmode/reporting/visual_console_builder.data.php:122 +msgid "Group:" +msgstr "Group:" + +#: ../../godmode/reporting/visual_console_builder.data.php:142 +msgid "Background image" +msgstr "Background image" + +#: ../../godmode/reporting/visual_console_builder.data.php:164 +msgid "Layout size" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.data.php:168 +msgid "Set custom size" +msgstr "Set custom size" + +#: ../../godmode/reporting/visual_console_builder.data.php:177 +msgid "Get default image size" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.editor.php:134 +msgid "Min allowed size is 1024x768" +msgstr "" + +#: ../../godmode/reporting/visual_console_builder.editor.php:138 +#: ../../godmode/reporting/visual_console_builder.editor.php:143 +#: ../../godmode/reporting/visual_console_builder.editor.php:148 +msgid "Action in progress" +msgstr "Action in progress" + +#: ../../godmode/reporting/visual_console_builder.editor.php:139 +msgid "Loading in progress" +msgstr "Loading in progress" + +#: ../../godmode/reporting/visual_console_builder.editor.php:144 +msgid "Saving in progress" +msgstr "Saving in progress" + +#: ../../godmode/reporting/visual_console_builder.editor.php:149 +msgid "Deletion in progress" +msgstr "Deletion in progress" + +#: ../../godmode/reporting/reporting_builder.php:80 +msgid "" +"Your report has been planned, and the system will email you a PDF with the " +"report as soon as its finished" +msgstr "" +"Your report has been scheduled and the system will send a PDF file of the " +"report as soon as it's finished." + +#: ../../godmode/reporting/reporting_builder.php:81 +msgid "An error has ocurred" +msgstr "An error has ocurred." + +#: ../../godmode/reporting/reporting_builder.php:335 +#: ../../godmode/reporting/reporting_builder.php:1902 +#: ../../godmode/reporting/reporting_builder.php:1954 +msgid "Reports list" +msgstr "Reports list" + +#: ../../godmode/reporting/reporting_builder.php:435 +msgid "Free text for search: " +msgstr "Free text for search: " + +#: ../../godmode/reporting/reporting_builder.php:436 +msgid "Search by report name or description, list matches." +msgstr "Search by report name or description, list matches." + +#: ../../godmode/reporting/reporting_builder.php:446 +msgid "Show Option" +msgstr "Show Option" + +#: ../../godmode/reporting/reporting_builder.php:554 +msgid "Private" +msgstr "Private" + +#: ../../godmode/reporting/reporting_builder.php:610 +msgid "This report exceeds the item limit for realtime operations" +msgstr "This report exceeds the item limit for realtime operations" + +#: ../../godmode/reporting/reporting_builder.php:615 +msgid "HTML view" +msgstr "HTML view" + +#: ../../godmode/reporting/reporting_builder.php:616 +msgid "Export to XML" +msgstr "Export to XML" + +#: ../../godmode/reporting/reporting_builder.php:735 +msgid "Create report" +msgstr "Create report" + +#: ../../godmode/reporting/reporting_builder.php:2020 +msgid "Successfull action" +msgstr "Succesful action" + +#: ../../godmode/reporting/reporting_builder.php:2020 +msgid "Unsuccessfull action

    " +msgstr "Unsuccessfull action

    " + +#: ../../godmode/reporting/reporting_builder.list_items.php:288 +#: ../../godmode/reporting/reporting_builder.list_items.php:293 +#: ../../godmode/reporting/reporting_builder.list_items.php:299 +msgid "Ascendent" +msgstr "Ascendent" + +#: ../../godmode/reporting/reporting_builder.list_items.php:289 +#: ../../godmode/reporting/reporting_builder.list_items.php:294 +#: ../../godmode/reporting/reporting_builder.list_items.php:300 +msgid "Descent" +msgstr "Descendent" + +#: ../../godmode/reporting/reporting_builder.list_items.php:307 +#: ../../godmode/reporting/reporting_builder.list_items.php:507 +msgid "Sort" +msgstr "Sort" + +#: ../../godmode/reporting/reporting_builder.list_items.php:493 +#: ../../godmode/reporting/reporting_builder.list_items.php:498 +msgid "Sort items" +msgstr "Sort items" + +#: ../../godmode/reporting/reporting_builder.list_items.php:500 +msgid "Sort selected items from position: " +msgstr "Sort selected items from position: " + +#: ../../godmode/reporting/reporting_builder.list_items.php:502 +msgid "Move before to" +msgstr "Move before to" + +#: ../../godmode/reporting/reporting_builder.list_items.php:502 +msgid "Move after to" +msgstr "Move after to" + +#: ../../godmode/reporting/reporting_builder.list_items.php:524 +#: ../../godmode/reporting/reporting_builder.list_items.php:529 +msgid "Delete items" +msgstr "Delete items" + +#: ../../godmode/reporting/reporting_builder.list_items.php:531 +msgid "Delete selected items from position: " +msgstr "Delete selected items from position: " + +#: ../../godmode/reporting/reporting_builder.list_items.php:533 +msgid "Delete above to" +msgstr "Delete above to" + +#: ../../godmode/reporting/reporting_builder.list_items.php:533 +msgid "Delete below to" +msgstr "Delete below to" + +#: ../../godmode/reporting/reporting_builder.list_items.php:561 +msgid "" +"Are you sure to sort the items into the report?\\nThis action change the " +"sorting of items into data base." +msgstr "" +"Are you sure you wish to sort the items into the report?\\nThis action " +"changes how items are sorted into the database." + +#: ../../godmode/reporting/reporting_builder.list_items.php:582 +msgid "Please select any item to order" +msgstr "Please select any item to sort" + +#: ../../godmode/reporting/reporting_builder.list_items.php:612 +msgid "Are you sure to delete the items into the report?\\n" +msgstr "Are you sure to delete the items into the report?" + +#: ../../godmode/reporting/reporting_builder.list_items.php:634 +msgid "Please select any item to delete" +msgstr "Please select an item to delete it" + +#: ../../godmode/reporting/graph_builder.main.php:163 +msgid "Horizontal bars" +msgstr "Horizontal bars" + +#: ../../godmode/reporting/graph_builder.main.php:164 +msgid "Vertical bars" +msgstr "Vertical bars" + +#: ../../godmode/reporting/graphs.php:154 +msgid "Number of Graphs" +msgstr "Number of Graphs" + +#: ../../godmode/reporting/graphs.php:213 +msgid "Create graph" +msgstr "Create graph" + +#: ../../godmode/reporting/visual_console_builder.php:159 +msgid "This file isn't image" +msgstr "Invalid image file" + +#: ../../godmode/reporting/visual_console_builder.php:160 +msgid "This file isn't image." +msgstr "Invalid image file" + +#: ../../godmode/reporting/visual_console_builder.php:164 +#: ../../godmode/reporting/visual_console_builder.php:165 +msgid "File already are exists." +msgstr "File already exists." + +#: ../../godmode/reporting/visual_console_builder.php:171 +#: ../../godmode/reporting/visual_console_builder.php:172 +msgid "The file have not image extension." +msgstr "The file doesn't have an image extension" + +#: ../../godmode/reporting/visual_console_builder.php:183 +#: ../../godmode/reporting/visual_console_builder.php:184 +#: ../../godmode/reporting/visual_console_builder.php:191 +#: ../../godmode/reporting/visual_console_builder.php:194 +msgid "Problems with move file to target." +msgstr "Problems moving file to target location" + +#: ../../godmode/reporting/visual_console_builder.php:223 +msgid "Successfully update." +msgstr "Successfully updated" + +#: ../../godmode/reporting/visual_console_builder.php:235 +msgid "Could not be update." +msgstr "Could not be updated" + +#: ../../godmode/reporting/visual_console_builder.php:250 +msgid "Successfully created." +msgstr "Successfully created." + +#: ../../godmode/reporting/visual_console_builder.php:263 +msgid "Could not be created." +msgstr "Could not be created." + +#: ../../godmode/reporting/visual_console_builder.php:304 +msgid "Successfully multiple delete." +msgstr "Successfully multiple delete." + +#: ../../godmode/reporting/visual_console_builder.php:305 +msgid "Unsuccessfull multiple delete." +msgstr "Unsuccessfull multiple delete." + +#: ../../godmode/reporting/visual_console_builder.php:387 +msgid "Successfully delete." +msgstr "Successfully delete." + +#: ../../godmode/reporting/visual_console_builder.php:693 +msgid "New visual console" +msgstr "New visual console" + +#: ../../godmode/netflow/nf_item_list.php:44 +#: ../../godmode/netflow/nf_item_list.php:54 +msgid "Report items" +msgstr "Report items" + +#: ../../godmode/netflow/nf_item_list.php:49 +msgid "Edit report" +msgstr "Edit report" + +#: ../../godmode/netflow/nf_item_list.php:58 +msgid "Netflow reports" +msgstr "Netflow reports" + +#: ../../godmode/netflow/nf_item_list.php:59 +msgid "Item list" +msgstr "List of Items" + +#: ../../godmode/netflow/nf_item_list.php:151 +msgid "Chart type" +msgstr "Chart type" + +#: ../../godmode/netflow/nf_item_list.php:203 +#: ../../godmode/netflow/nf_item_list.php:210 +msgid "Move to down" +msgstr "Move down" + +#: ../../godmode/netflow/nf_item_list.php:206 +#: ../../godmode/netflow/nf_item_list.php:209 +msgid "Move to up" +msgstr "Move up" + +#: ../../godmode/netflow/nf_item_list.php:255 +msgid "There are no defined items" +msgstr "There are no items defined" + +#: ../../godmode/netflow/nf_edit_form.php:59 +#: ../../godmode/netflow/nf_edit_form.php:67 +msgid "Add filter" +msgstr "Add filter" + +#: ../../godmode/netflow/nf_edit_form.php:62 +msgid "Netflow Filter" +msgstr "Netflow Filter" + +#: ../../godmode/netflow/nf_edit_form.php:206 +msgid "Filter:" +msgstr "Filter:" + +#: ../../godmode/netflow/nf_edit.php:39 +msgid "Manage Netflow Filter" +msgstr "Manage Netflow Filter" + +#: ../../godmode/gis_maps/configure_gis_map.php:111 +msgid "Map successfully created" +msgstr "Map created successfully" + +#: ../../godmode/gis_maps/configure_gis_map.php:112 +msgid "Map could not be created" +msgstr "Could not create map" + +#: ../../godmode/gis_maps/configure_gis_map.php:201 +msgid "Map successfully update" +msgstr "Map updated successfully" + +#: ../../godmode/gis_maps/configure_gis_map.php:202 +msgid "Map could not be updated" +msgstr "Could not update map" + +#: ../../godmode/gis_maps/configure_gis_map.php:219 +msgid "View GIS" +msgstr "View GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:222 +msgid "GIS Maps builder" +msgstr "GIS map builder" + +#: ../../godmode/gis_maps/configure_gis_map.php:329 +msgid "Map Name" +msgstr "Map Name" + +#: ../../godmode/gis_maps/configure_gis_map.php:329 +msgid "Descriptive name for the map" +msgstr "Name for descriptive map" + +#: ../../godmode/gis_maps/configure_gis_map.php:348 +msgid "Add Map connection" +msgstr "Add Map connection" + +#: ../../godmode/gis_maps/configure_gis_map.php:348 +msgid "" +"At least one map connection must be defined, it will be possible to change " +"between the connections in the map" +msgstr "" +"At least one map connection has to be defined. It's possible to change " +"between connections on the map." + +#: ../../godmode/gis_maps/configure_gis_map.php:366 +msgid "Group that owns the map" +msgstr "Group that owns the map" + +#: ../../godmode/gis_maps/configure_gis_map.php:369 +msgid "Default zoom" +msgstr "Default zoom" + +#: ../../godmode/gis_maps/configure_gis_map.php:369 +msgid "Default zoom level when opening the map" +msgstr "Default zoom level when opening the map" + +#: ../../godmode/gis_maps/configure_gis_map.php:372 +msgid "Center Latitude" +msgstr "Centre Latitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:375 +msgid "Center Longitude" +msgstr "Centre Longitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:378 +msgid "Center Altitude" +msgstr "Center Altitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:381 +msgid "Default Latitude" +msgstr "Default Latitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:384 +msgid "Default Longitude" +msgstr "Default Longitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:387 +msgid "Default Altitude" +msgstr "Default Altitude" + +#: ../../godmode/gis_maps/configure_gis_map.php:392 +msgid "Layers" +msgstr "Layers" + +#: ../../godmode/gis_maps/configure_gis_map.php:392 +msgid "" +"Each layer can show agents from one group or the agents added to that layer " +"or both." +msgstr "" +"Each layer can show agents from one group, agents added to that layer, or " +"both." + +#: ../../godmode/gis_maps/configure_gis_map.php:398 +msgid "List of layers" +msgstr "List of layers" + +#: ../../godmode/gis_maps/configure_gis_map.php:398 +msgid "It is possible to edit, delete and reorder the layers." +msgstr "It is possible to edit, delete and reorder the layers." + +#: ../../godmode/gis_maps/configure_gis_map.php:399 +msgid "New layer" +msgstr "New layer" + +#: ../../godmode/gis_maps/configure_gis_map.php:407 +msgid "Layer name" +msgstr "Layer name" + +#: ../../godmode/gis_maps/configure_gis_map.php:409 +msgid "Visible" +msgstr "Visible" + +#: ../../godmode/gis_maps/configure_gis_map.php:413 +msgid "Show agents from group" +msgstr "Show agents from group" + +#: ../../godmode/gis_maps/configure_gis_map.php:425 +msgid "Add agent" +msgstr "Add agent" + +#: ../../godmode/gis_maps/configure_gis_map.php:441 +msgid "List of Agents to be shown in the layer" +msgstr "List of Agents to be shown in the layer" + +#: ../../godmode/gis_maps/configure_gis_map.php:448 +#: ../../godmode/gis_maps/configure_gis_map.php:624 +#: ../../godmode/gis_maps/configure_gis_map.php:635 +msgid "Save Layer" +msgstr "Save Layer" + +#: ../../godmode/gis_maps/configure_gis_map.php:464 +#: ../../godmode/gis_maps/configure_gis_map.php:471 +msgid "Save map" +msgstr "Save map" + +#: ../../godmode/gis_maps/configure_gis_map.php:467 +msgid "Update map" +msgstr "Update map" + +#: ../../godmode/gis_maps/configure_gis_map.php:668 +#: ../../godmode/gis_maps/configure_gis_map.php:724 +msgid "Update Layer" +msgstr "Update Layer" + +#: ../../godmode/gis_maps/configure_gis_map.php:790 +msgid "Do you want to use the default data from the connection?" +msgstr "Do you want to use the default data from the connection?" + +#: ../../godmode/gis_maps/configure_gis_map.php:825 +msgid "The connection" +msgstr "The connection" + +#: ../../godmode/gis_maps/configure_gis_map.php:825 +msgid "just added previously." +msgstr "just added previously." + +#: ../../godmode/db/db_purge.php:37 ../../godmode/db/db_info.php:32 +#: ../../godmode/db/db_audit.php:19 ../../godmode/db/db_event.php:21 +#: ../../godmode/db/db_refine.php:33 +msgid "Database maintenance" +msgstr "Database maintenance" + +#: ../../godmode/db/db_purge.php:43 +msgid "Get data from agent" +msgstr "Retrieve data from agent" + +#: ../../godmode/db/db_purge.php:75 +#, php-format +msgid "Purge task launched for agent %s :: Data older than %s" +msgstr "Purge task launched for agent %s :: Data older than %s" + +#: ../../godmode/db/db_purge.php:78 +msgid "" +"Please be patient. This operation can take a long time depending on the " +"amount of modules." +msgstr "" +"Please be patient, this operation can take a long time depending on the " +"amount of modules" + +#: ../../godmode/db/db_purge.php:92 +#, php-format +msgid "Deleting records for module %s" +msgstr "Deleting records for module %s" + +#: ../../godmode/db/db_purge.php:140 +#, php-format +msgid "Total errors: %s" +msgstr "Total amount of errors: %s" + +#: ../../godmode/db/db_purge.php:141 ../../godmode/db/db_purge.php:144 +#, php-format +msgid "Total records deleted: %s" +msgstr "Total number of records deleted: %s" + +#: ../../godmode/db/db_purge.php:149 +msgid "Deleting records for all agents" +msgstr "Deleting records for all agents" + +#: ../../godmode/db/db_purge.php:166 +msgid "Choose agent" +msgstr "Choose agent" + +#: ../../godmode/db/db_purge.php:172 +msgid "Select the agent you want information about" +msgstr "Choose the agent you wish to view information about" + +#: ../../godmode/db/db_purge.php:174 +msgid "Get data" +msgstr "Retrieve data" + +#: ../../godmode/db/db_purge.php:175 +msgid "Click here to get the data from the agent specified in the select box" +msgstr "Click here to retrieve data from the agent specified." + +#: ../../godmode/db/db_purge.php:179 +#, php-format +msgid "Information on agent %s in the database" +msgstr "Information on agent %s in the database" + +#: ../../godmode/db/db_purge.php:182 +msgid "Information on all agents in the database" +msgstr "Information on all agents from the database" + +#: ../../godmode/db/db_purge.php:317 +msgid "Packets less than three months old" +msgstr "Packages less than three months old" + +#: ../../godmode/db/db_purge.php:319 +msgid "Packets less than one month old" +msgstr "Packages less than one month old" + +#: ../../godmode/db/db_purge.php:321 +msgid "Packets less than two weeks old" +msgstr "Packages less than two weeks old" + +#: ../../godmode/db/db_purge.php:323 +msgid "Packets less than one week old" +msgstr "Packages less than one week old" + +#: ../../godmode/db/db_purge.php:325 +msgid "Packets less than three days old" +msgstr "Packages less than three days old" + +#: ../../godmode/db/db_purge.php:327 +msgid "Packets less than one day old" +msgstr "Packages less than one day old" + +#: ../../godmode/db/db_purge.php:329 +msgid "Total number of packets" +msgstr "Total number of packages" + +#: ../../godmode/db/db_purge.php:335 ../../godmode/db/db_audit.php:92 +#: ../../godmode/db/db_event.php:73 +msgid "Purge data" +msgstr "Purge data" + +#: ../../godmode/db/db_purge.php:340 +msgid "Purge data over 3 months" +msgstr "Purge data from the last 3 months" + +#: ../../godmode/db/db_purge.php:341 +msgid "Purge data over 1 month" +msgstr "Purge data from the last month" + +#: ../../godmode/db/db_purge.php:342 +msgid "Purge data over 2 weeks" +msgstr "Purge data from the last 2 weeks" + +#: ../../godmode/db/db_purge.php:343 +msgid "Purge data over 1 week" +msgstr "Purge data from the last week" + +#: ../../godmode/db/db_purge.php:344 +msgid "Purge data over 3 days" +msgstr "Purge data from the last 3 days" + +#: ../../godmode/db/db_purge.php:345 +msgid "Purge data over 1 day" +msgstr "Purge data from last day" + +#: ../../godmode/db/db_purge.php:346 +msgid "All data until now" +msgstr "All data until now" + +#: ../../godmode/db/db_purge.php:350 +msgid "Purge" +msgstr "Purge" + +#: ../../godmode/db/db_main.php:69 +msgid "Current database maintenance setup" +msgstr "Current setup for database maintenance" + +#: ../../godmode/db/db_main.php:76 +msgid "Database setup" +msgstr "Database setup" + +#: ../../godmode/db/db_main.php:80 +msgid "Max. time before compact data" +msgstr "Max. time before compacting data" + +#: ../../godmode/db/db_main.php:86 +msgid "Max. time before purge" +msgstr "Max. time before purging" + +#: ../../godmode/db/db_main.php:95 +msgid "Database size stats" +msgstr "Database size stats" + +#: ../../godmode/db/db_main.php:111 +msgid "Total data items (tagente_datos)" +msgstr "Total data items (tagente_datos)" + +#: ../../godmode/db/db_main.php:123 +msgid "Total log4x items (tagente_datos_log4x)" +msgstr "Total log4x items (tagente_datos_log4x)" + +#: ../../godmode/db/db_main.php:135 +msgid "Total data string items (tagente_datos_string)" +msgstr "Total number of data string items" + +#: ../../godmode/db/db_main.php:141 +msgid "Total modules configured" +msgstr "Total amount of modules configured" + +#: ../../godmode/db/db_main.php:149 +msgid "Total agent access records" +msgstr "Total agent access records" + +#: ../../godmode/db/db_main.php:160 +msgid "Database sanity" +msgstr "Database health status" + +#: ../../godmode/db/db_main.php:164 +msgid "Total uknown agents" +msgstr "Total number of unknown agents" + +#: ../../godmode/db/db_main.php:170 +msgid "Total non-init modules" +msgstr "Total amount of non-init modules" + +#: ../../godmode/db/db_main.php:179 +msgid "Last time on DB maintance" +msgstr "Last time on DB maintance" + +#: ../../godmode/db/db_main.php:200 +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" +msgstr "" +"Please make sure your Pandora 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 " +"Pandora FMS." + +#: ../../godmode/db/db_info.php:32 +msgid "Database information" +msgstr "Database information" + +#: ../../godmode/db/db_info.php:34 +msgid "Module data received" +msgstr "Module data received" + +#: ../../godmode/db/db_audit.php:19 +msgid "Database audit purge" +msgstr "Purge audit data" + +#: ../../godmode/db/db_audit.php:70 +msgid "Success data deleted" +msgstr "Data deleted sucessfully" + +#: ../../godmode/db/db_audit.php:72 +msgid "Error deleting data" +msgstr "Error deleting data" + +#: ../../godmode/db/db_audit.php:81 ../../godmode/db/db_event.php:62 +msgid "Records" +msgstr "Records" + +#: ../../godmode/db/db_audit.php:84 ../../godmode/db/db_event.php:64 +msgid "First date" +msgstr "First date" + +#: ../../godmode/db/db_audit.php:88 +msgid "Latest date" +msgstr "Latest date" + +#: ../../godmode/db/db_audit.php:97 +msgid "Purge audit data over 90 days" +msgstr "Purge audit data from last 90 days" + +#: ../../godmode/db/db_audit.php:98 +msgid "Purge audit data over 30 days" +msgstr "Purge audit data from last 30 days" + +#: ../../godmode/db/db_audit.php:99 +msgid "Purge audit data over 14 days" +msgstr "Purge audit data from last 14 days" + +#: ../../godmode/db/db_audit.php:100 +msgid "Purge audit data over 7 days" +msgstr "Purge audit data from last 7 days" + +#: ../../godmode/db/db_audit.php:101 +msgid "Purge audit data over 3 days" +msgstr "Purge audit data from last 3 days" + +#: ../../godmode/db/db_audit.php:102 +msgid "Purge audit data over 1 day" +msgstr "Purge audit data from last day" + +#: ../../godmode/db/db_audit.php:103 +msgid "Purge all audit data" +msgstr "Purge all audit data" + +#: ../../godmode/db/db_audit.php:107 ../../godmode/db/db_event.php:92 +msgid "Do it!" +msgstr "Do it!" + +#: ../../godmode/db/db_event.php:22 +msgid "Event database cleanup" +msgstr "Database events cleanup" + +#: ../../godmode/db/db_event.php:40 +msgid "Successfully deleted old events" +msgstr "Successfully deleted old events" + +#: ../../godmode/db/db_event.php:43 +msgid "Error deleting old events" +msgstr "Error deleting old events" + +#: ../../godmode/db/db_event.php:67 +msgid "Latest data" +msgstr "Latest data" + +#: ../../godmode/db/db_event.php:81 +msgid "Purge event data over 90 days" +msgstr "Purge event data from last 90 days" + +#: ../../godmode/db/db_event.php:82 +msgid "Purge event data over 30 days" +msgstr "Purge event data from last 30 days" + +#: ../../godmode/db/db_event.php:83 +msgid "Purge event data over 14 days" +msgstr "Purge event data from last 14 days" + +#: ../../godmode/db/db_event.php:84 +msgid "Purge event data over 7 days" +msgstr "Purge event data from last 7 days" + +#: ../../godmode/db/db_event.php:85 +msgid "Purge event data over 3 days" +msgstr "Purge event data from last 3 days" + +#: ../../godmode/db/db_event.php:86 +msgid "Purge event data over 1 day" +msgstr "Purge event data from last day" + +#: ../../godmode/db/db_event.php:87 +msgid "Purge all event data" +msgstr "Purge all event data" + +#: ../../godmode/db/db_refine.php:42 +msgid "Maximum is equal to minimum" +msgstr "Maximum is equal to minimum" + +#: ../../godmode/db/db_refine.php:56 +msgid "Filtering data module" +msgstr "Filtering data module" + +#: ../../godmode/db/db_refine.php:76 +msgid "Filtering completed" +msgstr "Filtering completed" + +#: ../../godmode/db/db_refine.php:88 +msgid "No agent selected" +msgstr "No agent selected" + +#: ../../godmode/db/db_refine.php:92 +msgid "Get Info" +msgstr "Get Info" + +#: ../../godmode/db/db_refine.php:105 +msgid "Purge data out of these limits" +msgstr "Purge data out of these limits" + +#: ../../godmode/servers/manage_recontask_form.php:189 +msgid "" +"By default, in Windows, Pandora FMS only support Standard network sweep, not " +"custom scripts" +msgstr "" +"On Windows Pandora FMS only supports standard network sweeps by default, not " +"custom scripts." + +#: ../../godmode/servers/manage_recontask_form.php:224 +msgid "" +"You must select a Recon Server for the Task, otherwise the Recon Task will " +"never run" +msgstr "" +"You must appoint a recon server for the task, otherwise the recon task won't " +"run." + +#: ../../godmode/servers/manage_recontask_form.php:232 +msgid "Network sweep" +msgstr "Network sweep" + +#: ../../godmode/servers/manage_recontask_form.php:234 +msgid "Custom script" +msgstr "Custom script" + +#: ../../godmode/servers/manage_recontask_form.php:253 +msgid "Manual interval means that it will be executed only On-demand" +msgstr "Manual interval means that it's going to run only on demand." + +#: ../../godmode/servers/manage_recontask_form.php:255 +#: ../../godmode/servers/manage_recontask.php:346 +msgid "Manual" +msgstr "Manual" + +#: ../../godmode/servers/manage_recontask_form.php:260 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "The minimum recommended interval for a recon task is 5 minutes" + +#: ../../godmode/servers/manage_recontask_form.php:265 +msgid "Module template" +msgstr "Module template" + +#: ../../godmode/servers/manage_recontask_form.php:299 +#: ../../godmode/servers/manage_recontask.php:291 +msgid "Ports" +msgstr "Ports" + +#: ../../godmode/servers/manage_recontask_form.php:302 +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 "" +"Defined ports such as 80 or 80,443,512 or even 0-1024 (same format as Nmap " +"command line) are left blank if you don't want to perform a sweep using " +"portscan." + +#: ../../godmode/servers/manage_recontask_form.php:313 +msgid "Choose if the discovery of a new system creates an incident or not." +msgstr "Choose if the discovery of a new system creates an incident or not." + +#: ../../godmode/servers/manage_recontask_form.php:316 +msgid "SNMP Default community" +msgstr "SNMP Default community" + +#: ../../godmode/servers/manage_recontask_form.php:322 +msgid "Explanation" +msgstr "Explanation" + +#: ../../godmode/servers/manage_recontask_form.php:363 +msgid "OS detection" +msgstr "OS detection" + +#: ../../godmode/servers/manage_recontask_form.php:367 +msgid "Name resolution" +msgstr "Name resolution" + +#: ../../godmode/servers/manage_recontask_form.php:371 +msgid "Parent detection" +msgstr "Parent detection" + +#: ../../godmode/servers/manage_recontask_form.php:375 +msgid "Parent recursion" +msgstr "Parent recursion" + +#: ../../godmode/servers/manage_recontask_form.php:376 +msgid "" +"Maximum number of parent hosts that will be created if parent detection is " +"enabled." +msgstr "" +"Maximum number of parent hosts that will be created if parent detection is " +"enabled." + +#: ../../godmode/servers/manage_recontask.php:55 +msgid "Successfully deleted recon task" +msgstr "Successfully deleted recon task" + +#: ../../godmode/servers/manage_recontask.php:58 +msgid "Error deleting recon task" +msgstr "Error deleting recon task" + +#: ../../godmode/servers/manage_recontask.php:68 +#: ../../godmode/servers/manage_recontask.php:179 +msgid "Successfully updated recon task" +msgstr "Recon task successfully updated" + +#: ../../godmode/servers/manage_recontask.php:75 +#: ../../godmode/servers/manage_recontask.php:182 +msgid "Error updating recon task" +msgstr "Error updating recon task" + +#: ../../godmode/servers/manage_recontask.php:163 +#: ../../godmode/servers/manage_recontask.php:234 +msgid "Wrong format in Subnet field" +msgstr "Wrong format in the Subnet field" + +#: ../../godmode/servers/manage_recontask.php:230 +msgid "Recon-task name already exists and incorrect format in Subnet field" +msgstr "" +"The recon task's name already exists and the format is incorrect for the " +"Subnet field." + +#: ../../godmode/servers/manage_recontask.php:238 +#: ../../godmode/servers/manage_recontask.php:247 +msgid "Recon-task name already exists" +msgstr "The recon task's name already exists" + +#: ../../godmode/servers/manage_recontask.php:261 +msgid "Successfully created recon task" +msgstr "Recon task successfully created" + +#: ../../godmode/servers/manage_recontask.php:264 +msgid "Error creating recon task" +msgstr "Error creating recon task" + +#: ../../godmode/servers/manage_recontask.php:387 +msgid "There are no recon task configured" +msgstr "There are no recon tasks set up" + +#: ../../godmode/servers/recon_script.php:73 +msgid "Recon script creation" +msgstr "Recon script creation" + +#: ../../godmode/servers/recon_script.php:75 +msgid "Recon script update" +msgstr "Recon script update" + +#: ../../godmode/servers/recon_script.php:101 +msgid "Script fullpath" +msgstr "Script fullpath" + +#: ../../godmode/servers/recon_script.php:161 +#: ../../godmode/servers/plugin.php:451 +msgid "Default value" +msgstr "Default value" + +#: ../../godmode/servers/recon_script.php:174 +#: ../../godmode/servers/plugin.php:464 +msgid "Hide value" +msgstr "Hide Value" + +#: ../../godmode/servers/recon_script.php:174 +#: ../../godmode/servers/plugin.php:464 +msgid "This field will show up as dots like a password" +msgstr "This field is only going to display dots like a password window." + +#: ../../godmode/servers/recon_script.php:199 +#: ../../godmode/servers/plugin.php:491 +msgid "Add macro" +msgstr "Add macro" + +#: ../../godmode/servers/recon_script.php:206 +#: ../../godmode/servers/plugin.php:506 +msgid "Delete macro" +msgstr "Delete macro" + +#: ../../godmode/servers/recon_script.php:228 +msgid "Recon scripts registered in Pandora FMS" +msgstr "Recon scripts registered on Pandora FMS" + +#: ../../godmode/servers/recon_script.php:271 +msgid "Problem updating" +msgstr "Problem updating" + +#: ../../godmode/servers/recon_script.php:274 +#: ../../godmode/modules/manage_network_components.php:352 +msgid "Updated successfully" +msgstr "Updated successfully" + +#: ../../godmode/servers/recon_script.php:317 +msgid "Problem creating" +msgstr "Problem creating" + +#: ../../godmode/servers/recon_script.php:320 +#: ../../godmode/modules/manage_network_components.php:261 +msgid "Created successfully" +msgstr "Created successfully" + +#: ../../godmode/servers/recon_script.php:331 +msgid "Problem deleting reconscript" +msgstr "Problem deleting reconscript" + +#: ../../godmode/servers/recon_script.php:334 +msgid "reconscript deleted successfully" +msgstr "Reconscript deleted successfully" + +#: ../../godmode/servers/recon_script.php:378 +msgid "There are no recon scripts in the system" +msgstr "There are no recon scripts in the system" + +#: ../../godmode/servers/servers.build_table.php:38 +msgid "There are no servers configured into the database" +msgstr "There are no servers registered on the database" + +#: ../../godmode/servers/servers.build_table.php:69 +msgid "Lag" +msgstr "Lag" + +#: ../../godmode/servers/servers.build_table.php:69 +msgid "Avg. Delay(sec)/Modules delayed" +msgstr "Avg. Delay(sec)/Modules delayed" + +#: ../../godmode/servers/servers.build_table.php:70 +msgid "T/Q" +msgstr "T/Q" + +#: ../../godmode/servers/servers.build_table.php:70 +msgid "Threads / Queued modules currently" +msgstr "Current threads/queued modules currently" + +#: ../../godmode/servers/servers.build_table.php:97 +msgid "This is a master server" +msgstr "This is a master server" + +#: ../../godmode/servers/servers.build_table.php:110 +#: ../../godmode/servers/servers.build_table.php:115 +msgid "of" +msgstr "of" + +#: ../../godmode/servers/servers.build_table.php:142 +msgid "Reset module status and fired alert counts" +msgstr "Reset module status and fired alert counts" + +#: ../../godmode/servers/servers.build_table.php:148 +msgid "Claim back SNMP modules" +msgstr "Reclaim SNMP modules" + +#: ../../godmode/servers/servers.build_table.php:168 +msgid "" +"Modules run by this server will stop working. Do you want to continue?" +msgstr "" +"Modules run by this server will stop working. Do you want to continue?" + +#: ../../godmode/servers/servers.build_table.php:189 +msgid "Tactical server information" +msgstr "Tactical server information" + +#: ../../godmode/servers/modificar_server.php:35 +msgid "Update Server" +msgstr "Update Server" + +#: ../../godmode/servers/modificar_server.php:61 +msgid "Remote Configuration" +msgstr "Remote Configuration" + +#: ../../godmode/servers/modificar_server.php:66 +msgid "Pandora servers" +msgstr "Pandora servers" + +#: ../../godmode/servers/modificar_server.php:73 +#: ../../godmode/servers/modificar_server.php:85 +msgid "Unsuccessfull action" +msgstr "Unsuccesful action" + +#: ../../godmode/servers/modificar_server.php:76 +#: ../../godmode/servers/modificar_server.php:88 +msgid "Successfully action" +msgstr "Action successfully processed" + +#: ../../godmode/servers/modificar_server.php:98 +msgid "Server deleted successfully" +msgstr "Server deleted successfully" + +#: ../../godmode/servers/modificar_server.php:101 +msgid "There was a problem deleting the server" +msgstr "There was a problem deleting the server" + +#: ../../godmode/servers/modificar_server.php:112 +msgid "Server updated successfully" +msgstr "Server updated successfully" + +#: ../../godmode/servers/modificar_server.php:115 +msgid "There was a problem updating the server" +msgstr "There was a problem updating the server" + +#: ../../godmode/servers/modificar_server.php:134 +#: ../../godmode/agentes/configurar_agente.php:610 +msgid "Conf file deleted successfully" +msgstr "Conf file deleted successfully" + +#: ../../godmode/servers/modificar_server.php:135 +#: ../../godmode/agentes/configurar_agente.php:611 +msgid "Could not delete conf file" +msgstr "Could not delete conf file" + +#: ../../godmode/servers/plugin.php:53 +msgid "Network Components" +msgstr "Network Components" + +#: ../../godmode/servers/plugin.php:170 +msgid "Compatibility mode" +msgstr "Compatibility mode" + +#: ../../godmode/servers/plugin.php:266 +msgid "Plugin creation" +msgstr "Plug-in creation" + +#: ../../godmode/servers/plugin.php:269 +msgid "Plugin update" +msgstr "Plug-in update" + +#: ../../godmode/servers/plugin.php:299 +msgid "Plugin type" +msgstr "Plug-in type" + +#: ../../godmode/servers/plugin.php:300 ../../godmode/servers/plugin.php:759 +msgid "Standard" +msgstr "Standard" + +#: ../../godmode/servers/plugin.php:301 ../../godmode/servers/plugin.php:761 +msgid "Nagios" +msgstr "Nagios" + +#: ../../godmode/servers/plugin.php:306 +msgid "Max. timeout" +msgstr "Max. timeout" + +#: ../../godmode/servers/plugin.php:306 +msgid "" +"This value only will be applied if is minor than the server general " +"configuration plugin timeout" +msgstr "" +"This value will only be applied if it's less than the timeout for the " +"server's general configuration plugin." + +#: ../../godmode/servers/plugin.php:306 +msgid "" +"If you set a 0 seconds timeout, the server plugin timeout will be used" +msgstr "" +"If you set the timeout to 0 seconds, the server's plugin timeout will be " +"used." + +#: ../../godmode/servers/plugin.php:362 +msgid "Plugin command" +msgstr "Plug-in command" + +#: ../../godmode/servers/plugin.php:373 +msgid "Plug-in parameters" +msgstr "Plug-in parameters" + +#: ../../godmode/servers/plugin.php:524 ../../godmode/servers/plugin.php:531 +msgid "Parameters macros" +msgstr "Macro parameters" + +#: ../../godmode/servers/plugin.php:564 +msgid "Plugins registered in Pandora FMS" +msgstr "Plug-ins registered on Pandora FMS" + +#: ../../godmode/servers/plugin.php:569 +msgid "You need to create your own plugins with Windows compatibility" +msgstr "You'll need to create your own Windows-compatible plugins" + +#: ../../godmode/servers/plugin.php:629 +msgid "Problem updating plugin" +msgstr "Problem updating plugin" + +#: ../../godmode/servers/plugin.php:632 +msgid "Plugin updated successfully" +msgstr "Plugin updated successfully" + +#: ../../godmode/servers/plugin.php:687 +msgid "Problem creating plugin" +msgstr "Problem creating plugin" + +#: ../../godmode/servers/plugin.php:690 +msgid "Plugin created successfully" +msgstr "Plugin created successfully" + +#: ../../godmode/servers/plugin.php:700 +msgid "Problem deleting plugin" +msgstr "Problem deleting plugin" + +#: ../../godmode/servers/plugin.php:703 +msgid "Plugin deleted successfully" +msgstr "Plugin deleted successfully" + +#: ../../godmode/servers/plugin.php:782 +msgid "All the modules that are using this plugin will be deleted" +msgstr "All modules that are using this plugin will be deleted" + +#: ../../godmode/servers/plugin.php:789 +msgid "There are no plugins in the system" +msgstr "There are no plugins on the system" + +#: ../../godmode/servers/plugin.php:801 +#, php-format +msgid "List of modules and components created by \"%s\" " +msgstr "List of modules and components created by \"%s\" " + +#: ../../godmode/servers/plugin.php:909 ../../godmode/servers/plugin.php:925 +msgid "Some modules or components are using the plugin" +msgstr "Some modules or components are using the plugin" + +#: ../../godmode/servers/plugin.php:910 +msgid "" +"The modules or components should be updated manually or using the bulk " +"operations for plugins after this change" +msgstr "" +"Modules or components should be updated manually or by using the bulk " +"operation option for plugins after this change" + +#: ../../godmode/servers/plugin.php:912 +msgid "Are you sure you want to perform this action?" +msgstr "Are you sure you want to perform this action?" + +#: ../../godmode/servers/plugin.php:926 +msgid "Are you sure you want to unlock this item?" +msgstr "Are you sure you want to unlock this item?" + +#: ../../godmode/servers/plugin.php:946 +msgid "" +"The plugin command cannot be updated because some modules or components are " +"using the plugin." +msgstr "" +"The plugin command cannot be updated because some modules or components are " +"using the plugin." + +#: ../../godmode/servers/plugin.php:952 +msgid "" +"The plugin macros cannot be updated because some modules or components are " +"using the plugin" +msgstr "" +"The plugin macros cannot be updated because some modules or components are " +"using the plugin" + +#: ../../godmode/admin_access_logs.php:33 +msgid "Pandora audit" +msgstr "Pandora audit" + +#: ../../godmode/admin_access_logs.php:33 +msgid "Review Logs" +msgstr "Review Logs" + +#: ../../godmode/admin_access_logs.php:65 +#: ../../godmode/admin_access_logs.php:66 +msgid "Free text for search (*)" +msgstr "Free text for search (*)" + +#: ../../godmode/admin_access_logs.php:303 +msgid "Export to CSV " +msgstr "Export to CSV " + +#: ../../godmode/update_manager/update_manager.online.php:48 +#, php-format +msgid "" +"Your PHP has set memory limit in %s. For avoid problems with big updates " +"please set to 500M" +msgstr "" +"Your PHP has set memory limit in %s. For avoid problems with big updates " +"please set to 500M" + +#: ../../godmode/update_manager/update_manager.online.php:55 +#, php-format +msgid "" +"Your PHP has set post parameter max size limit in %s. For avoid problems " +"with big updates please set to 100M" +msgstr "" +"Your PHP has set post parameter max size limit in %s. For avoid problems " +"with big updates please set to 100M" + +#: ../../godmode/update_manager/update_manager.online.php:62 +#, 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" +msgstr "" +"Your PHP has set maximum allowed size for uploaded files limit in %s. For " +"avoid problems with big updates please set to 100M" + +#: ../../godmode/update_manager/update_manager.online.php:85 +msgid "The last version of package installed is:" +msgstr "The last version of package installed is:" + +#: ../../godmode/update_manager/update_manager.online.php:89 +msgid "Checking for the newest package." +msgstr "Checking for the latest package." + +#: ../../godmode/update_manager/update_manager.online.php:93 +msgid "Downloading for the newest package." +msgstr "Downloading the latest package" + +#: ../../godmode/update_manager/update_manager.offline.php:37 +msgid "Drop the package here or" +msgstr "Please drop the package here or" + +#: ../../godmode/update_manager/update_manager.offline.php:38 +msgid "browse it" +msgstr "browse it" + +#: ../../godmode/update_manager/update_manager.offline.php:39 +msgid "The package has been uploaded successfully." +msgstr "The package has been uploaded successfully." + +#: ../../godmode/update_manager/update_manager.offline.php:40 +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." +msgstr "" +"Please keep in mind that this package is going to override your actual " +"Pandora FMS files and that it's recommended to conduct a backup before " +"continuing the updating process." + +#: ../../godmode/update_manager/update_manager.offline.php:41 +msgid "Click on the file below to begin." +msgstr "Please click on the file below to begin." + +#: ../../godmode/update_manager/update_manager.offline.php:42 +msgid "Updating" +msgstr "Updating" + +#: ../../godmode/update_manager/update_manager.offline.php:43 +msgid "Package updated successfully." +msgstr "Package updated successfully." + +#: ../../godmode/update_manager/update_manager.offline.php:44 +msgid "" +"If there are any database change, it will be applied on the next login." +msgstr "" +"If there are any database changes, they will be applied on the next login." + +#: ../../godmode/update_manager/update_manager.offline.php:45 +msgid "Package not updated." +msgstr "Package not updated." + +#: ../../godmode/update_manager/update_manager.offline.php:46 +msgid "Error in MR file" +msgstr "" + +#: ../../godmode/update_manager/update_manager.offline.php:47 +msgid "MR not accepted" +msgstr "" + +#: ../../godmode/update_manager/update_manager.php:39 +msgid "Offline update manager" msgstr "Offline Update Manager" -#: ../../enterprise/meta/advanced/metasetup.php:105 -#: ../../enterprise/meta/advanced/metasetup.php:142 -msgid "Online Update Manager" -msgstr "" - -#: ../../enterprise/meta/advanced/metasetup.php:112 -msgid "Consoles setup" -msgstr "Consoles setup" - -#: ../../enterprise/meta/advanced/metasetup.php:137 -msgid "Online Update Options" -msgstr "" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:192 -msgid "Customize sections" -msgstr "Customise sections" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:214 -msgid "Disabled sections" -msgstr "Disabled sections" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:216 -msgid "Enabled sections" -msgstr "Enabled sections" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:222 -msgid "Push selected sections to enable it" -msgstr "Push selected sections to enable it" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:226 -msgid "Pop selected sections to disable it" -msgstr "Pop selected sections to disable it" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:76 -msgid "Visual" -msgstr "Visual" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:108 -msgid "Precision must be a integer number between 0 and 5" -msgstr "Precision must be an integer number between 0 and 5" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:136 -#: ../../enterprise/meta/include/functions_meta.php:1111 -msgid "Metaconsole elements" -msgstr "Metaconsole elements" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:136 -msgid "The number of elements retrieved for each instance in some views." -msgstr "The number of elements retrieved for each instance in some views." - -#: ../../enterprise/meta/advanced/policymanager.apply.php:146 -#: ../../enterprise/meta/advanced/policymanager.apply.php:154 -msgid "Only database" -msgstr "Only database" - -#: ../../enterprise/meta/advanced/policymanager.apply.php:188 -msgid "Apply Policies" -msgstr "Apply Policies" - -#: ../../enterprise/meta/advanced/policymanager.php:37 -msgid "Policy Manager" -msgstr "Policy Manager" - -#: ../../enterprise/meta/advanced/policymanager.php:66 -msgid "Apply policies" -msgstr "Apply policies" - -#: ../../enterprise/meta/advanced/policymanager.php:70 -#: ../../enterprise/meta/advanced/policymanager.php:84 -msgid "Policies queue" -msgstr "Policies queue" - -#: ../../enterprise/meta/advanced/policymanager.php:81 -msgid "Policies apply" -msgstr "Policies apply" - -#: ../../enterprise/meta/advanced/policymanager.queue.php:352 -msgid "Empty queue." -msgstr "Empty queue." - -#: ../../enterprise/meta/advanced/policymanager.sync.php:238 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:286 -#: ../../enterprise/meta/advanced/synchronizing.component.php:289 -#: ../../enterprise/meta/advanced/synchronizing.user.php:498 -#: ../../enterprise/meta/advanced/synchronizing.user.php:578 -#: ../../enterprise/meta/include/functions_groups_meta.php:130 -#: ../../enterprise/meta/include/functions_meta.php:99 -#: ../../enterprise/meta/include/functions_meta.php:201 -#: ../../enterprise/meta/include/functions_meta.php:303 -#, php-format -msgid "Error connecting to %s" -msgstr "Error connecting to %s" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:248 -#, php-format -msgid "Error creating %s policies" -msgstr "Error in creating %s policies" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:251 -#, php-format -msgid "Created %s policies" -msgstr "Created %s policies" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:256 -#, php-format -msgid "Error creating/updating %s/%s policy modules" -msgstr "Error in creating / updating %s/%s policy modules" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:259 -#, php-format -msgid "Created/Updated %s/%s policy modules" -msgstr "Created / updated %s/%s policy modules" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:264 -#, php-format -msgid "Error deleting %s policy modules" -msgstr "Error in deleting %s policy modules" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:267 -#, php-format -msgid "Deleted %s policy modules" -msgstr "Deleted %s policy modules" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:272 -#, php-format -msgid "Error creating %s policy alerts" -msgstr "Error in creating %s policy alerts" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:275 -#, php-format -msgid "Created %s policy alerts" -msgstr "Created %s policy alerts" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:280 -#, php-format -msgid "Error deleting %s policy alerts" -msgstr "Error in deleting %s policy alerts" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:283 -#, php-format -msgid "Deleted %s policy alerts" -msgstr "Deleted %s policy alerts" - -#: ../../enterprise/meta/advanced/policymanager.sync.php:296 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:333 -#: ../../enterprise/meta/advanced/synchronizing.component.php:311 -#: ../../enterprise/meta/advanced/synchronizing.group.php:148 -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:92 -#: ../../enterprise/meta/advanced/synchronizing.os.php:92 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:92 -#: ../../enterprise/meta/advanced/synchronizing.user.php:518 -msgid "This metaconsole" -msgstr "This meta-console" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:294 -#, php-format -msgid "Error creating/updating %s/%s comamnds" -msgstr "Error in creating / updating %s/%s commands." - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:297 -#, php-format -msgid "Created/Updated %s/%s commands" -msgstr "Created / updated %s/%s commands" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:302 -#, php-format -msgid "Error creating/updating %s/%s actions" -msgstr "Error in creating / updating %s/%s actions." - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:305 -#, php-format -msgid "Created/Updated %s/%s actions" -msgstr "Created / updated %s/%s actions" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:310 -#, php-format -msgid "Error creating/updating %s/%s templates" -msgstr "Error in creating / updating %s/%s templates" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:313 -#, php-format -msgid "Created/Updated %s/%s templates" -msgstr "Created / updated %s/%s templates" - -#: ../../enterprise/meta/advanced/synchronizing.alert.php:325 -msgid "Synchronizing Alerts" -msgstr "Synchronizing Alerts" - -#: ../../enterprise/meta/advanced/synchronizing.component.php:263 -#, php-format -msgid "Error creating %s components groups " -msgstr "Error in creating %s component groups " - -#: ../../enterprise/meta/advanced/synchronizing.component.php:266 -#, php-format -msgid "Created %s component groups" -msgstr "Created %s component groups" - -#: ../../enterprise/meta/advanced/synchronizing.component.php:271 -#, php-format -msgid "Error creating/updating %s/%s local components " -msgstr "Error creating/updating %s/%s local components " - -#: ../../enterprise/meta/advanced/synchronizing.component.php:274 -#, php-format -msgid "Created/Updated %s/%s local components" -msgstr "Created / updated %s/%s local components" - -#: ../../enterprise/meta/advanced/synchronizing.component.php:279 -#, php-format -msgid "Error creating/updating %s/%s network components " -msgstr "Error in creating / updating %s/%s network components " - -#: ../../enterprise/meta/advanced/synchronizing.component.php:282 -#, php-format -msgid "Created/Updated %s/%s network components" -msgstr "Created/updated %s/%s network components" - -#: ../../enterprise/meta/advanced/synchronizing.component.php:303 -msgid "Synchronizing Components" -msgstr "Synchronizing Components" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:74 -#: ../../enterprise/meta/advanced/synchronizing.group.php:75 -#: ../../enterprise/meta/advanced/synchronizing.group.php:87 -#: ../../enterprise/meta/advanced/synchronizing.group.php:88 -msgid "Open for more details" -msgstr "Open for more details" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:78 -#, php-format -msgid "Error creating %s groups" -msgstr "Error creating %s groups" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:91 -#, php-format -msgid "Error updating %s groups" -msgstr "Error updating %s groups" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:100 -#: ../../enterprise/meta/advanced/synchronizing.group.php:101 -msgid "Open for more details in creation" -msgstr "Open for more details in creation" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:106 -#: ../../enterprise/meta/advanced/synchronizing.group.php:107 -msgid "Open for more details in update" -msgstr "Open for more details in update" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:110 -#, php-format -msgid "Error creating/updating %s/%s groups" -msgstr "Error in creating / updating %s/%s groups" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:122 -#, php-format -msgid "Created/Updated %s/%s groups" -msgstr "Groups %s/%s created / updated" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:129 -msgid "None update or create group" -msgstr "None update or create group" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:140 -msgid "Synchronizing Groups" -msgstr "Synchronizing Groups" - -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:69 -#, php-format -msgid "Error creating/updating %s/%s module groups" -msgstr "Error creating/updating %s/%s module groups" - -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:72 -#, php-format -msgid "Created/Updated %s/%s module groups" -msgstr "Created/Updated %s/%s module groups" - -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:84 -msgid "Synchronizing Module Groups" -msgstr "Synchronizing Module Groups" - -#: ../../enterprise/meta/advanced/synchronizing.os.php:69 -#, php-format -msgid "Error creating/updating %s/%s OS" -msgstr "Error creating/updating %s/%s OS" - -#: ../../enterprise/meta/advanced/synchronizing.os.php:72 -#, php-format -msgid "Created/Updated %s/%s OS" -msgstr "Created/Updated %s/%s OS" - -#: ../../enterprise/meta/advanced/synchronizing.os.php:84 -msgid "Synchronizing OS" -msgstr "Synchronizing OS" - -#: ../../enterprise/meta/advanced/synchronizing.php:35 -#: ../../enterprise/meta/general/main_header.php:238 -msgid "Synchronizing" -msgstr "Synchronising" - -#: ../../enterprise/meta/advanced/synchronizing.php:60 -#: ../../enterprise/meta/advanced/synchronizing.php:91 -msgid "Users synchronization" -msgstr "Users synchronisation" - -#: ../../enterprise/meta/advanced/synchronizing.php:64 -#: ../../enterprise/meta/advanced/synchronizing.php:94 -msgid "Groups synchronization" -msgstr "Groups synchronisation" - -#: ../../enterprise/meta/advanced/synchronizing.php:68 -#: ../../enterprise/meta/advanced/synchronizing.php:97 -msgid "Alerts synchronization" -msgstr "Alerts synchronisation" - -#: ../../enterprise/meta/advanced/synchronizing.php:72 -#: ../../enterprise/meta/advanced/synchronizing.php:100 -msgid "Components synchronization" -msgstr "Components synchronization" - -#: ../../enterprise/meta/advanced/synchronizing.php:76 -#: ../../enterprise/meta/advanced/synchronizing.php:103 -msgid "Tags synchronization" -msgstr "Tags synchronisation" - -#: ../../enterprise/meta/advanced/synchronizing.php:80 -#: ../../enterprise/meta/advanced/synchronizing.php:106 -msgid "OS synchronization" -msgstr "OS synchronization" - -#: ../../enterprise/meta/advanced/synchronizing.php:84 -#: ../../enterprise/meta/advanced/synchronizing.php:109 -msgid "Module Groups synchronization" -msgstr "Module Groups synchronization" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:69 -#, php-format -msgid "Error creating/updating %s/%s tags" -msgstr "Error in creating / updating %s/%s tags" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:72 -#, php-format -msgid "Created/Updated %s/%s tags" -msgstr "Created / updated %s/%s tags" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:84 -msgid "Synchronizing Tags" -msgstr "Synchronizing Tags" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:273 -#, php-format -msgid "Error updating user %s" -msgstr "Error in updating user %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:277 -#, php-format -msgid "Updated user %s" -msgstr "Updated user %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:288 -#, php-format -msgid "Error creating user %s" -msgstr "Error in creating user %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:292 -#, php-format -msgid "Created user %s" -msgstr "Created user %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:487 -#, php-format +#: ../../godmode/update_manager/update_manager.php:43 +msgid "Online update manager" +msgstr "Online Update Manager" + +#: ../../godmode/update_manager/update_manager.php:50 +msgid "Update manager messages" +msgstr "Update manager messages" + +#: ../../godmode/update_manager/update_manager.php:55 +msgid "Update manager » Setup" +msgstr "Update Manager Setup" + +#: ../../godmode/update_manager/update_manager.php:58 +msgid "Update manager » Offline" +msgstr "Offline Update Manager" + +#: ../../godmode/update_manager/update_manager.php:61 +msgid "Update manager » Online" +msgstr "Online Update Manager" + +#: ../../godmode/update_manager/update_manager.php:64 +msgid "Update manager » Messages" +msgstr "Update manager » Messages" + +#: ../../godmode/update_manager/update_manager.messages.php:96 +#: ../../godmode/update_manager/update_manager.messages.php:170 +msgid "Mark as not read" +msgstr "Mark as not read" + +#: ../../godmode/update_manager/update_manager.messages.php:101 +#: ../../godmode/update_manager/update_manager.messages.php:175 +msgid "Mark as read" +msgstr "Mark as read" + +#: ../../godmode/update_manager/update_manager.messages.php:186 +msgid "There is not any update manager messages." +msgstr "There are not any update manager messages." + +#: ../../godmode/update_manager/update_manager.setup.php:58 +#: ../../godmode/update_manager/update_manager.setup.php:87 +msgid "Succesful Update the url config vars." +msgstr "URL configuration variables successfully updated." + +#: ../../godmode/update_manager/update_manager.setup.php:59 +#: ../../godmode/update_manager/update_manager.setup.php:88 +msgid "Unsuccesful Update the url config vars." +msgstr "Unsuccessful in updating the URL configuration variables." + +#: ../../godmode/update_manager/update_manager.setup.php:100 +msgid "URL update manager:" +msgstr "Update manager URL" + +#: ../../godmode/update_manager/update_manager.setup.php:102 +msgid "URL update manager" +msgstr "Update Manager URL" + +#: ../../godmode/update_manager/update_manager.setup.php:104 +msgid "Proxy server:" +msgstr "Proxy server:" + +#: ../../godmode/update_manager/update_manager.setup.php:106 +msgid "Proxy server" +msgstr "Proxy server" + +#: ../../godmode/update_manager/update_manager.setup.php:108 +msgid "Proxy port:" +msgstr "Proxy port:" + +#: ../../godmode/update_manager/update_manager.setup.php:110 +msgid "Proxy port" +msgstr "Proxy port" + +#: ../../godmode/update_manager/update_manager.setup.php:112 +msgid "Proxy user:" +msgstr "Proxy user:" + +#: ../../godmode/update_manager/update_manager.setup.php:114 +msgid "Proxy user" +msgstr "Proxy user" + +#: ../../godmode/update_manager/update_manager.setup.php:116 +msgid "Proxy password:" +msgstr "Proxy password:" + +#: ../../godmode/update_manager/update_manager.setup.php:118 +msgid "Proxy password" +msgstr "Proxy password" + +#: ../../godmode/update_manager/update_manager.setup.php:122 +msgid "Pandora FMS community reminder" +msgstr "Pandora FMS community reminder" + +#: ../../godmode/update_manager/update_manager.setup.php:123 msgid "" -"Error creating/updating the followings elements groups/profiles/user " -"profiles (%d/%d/%d)" +"Every 8 days, a message is displayed to admin users to remember to register " +"this Pandora instance" msgstr "" -"Error creating/updating the following elements groups / profiles / user " -"profiles (%d/%d/%d)" +"Every 8 days, a message is displayed to admin users to remind them to " +"register this Pandora instance" -#: ../../enterprise/meta/advanced/synchronizing.user.php:492 +#: ../../godmode/category/category.php:44 +#: ../../godmode/category/category.php:51 +#: ../../godmode/category/edit_category.php:43 +#: ../../godmode/category/edit_category.php:50 +msgid "List categories" +msgstr "List categories" + +#: ../../godmode/category/category.php:58 +#: ../../godmode/category/category.php:61 +#: ../../godmode/category/edit_category.php:57 +#: ../../godmode/category/edit_category.php:60 +msgid "Categories configuration" +msgstr "Category settings" + +#: ../../godmode/category/category.php:72 +msgid "Error deleting category" +msgstr "Error deleting category" + +#: ../../godmode/category/category.php:76 +msgid "Successfully deleted category" +msgstr "Successfully deleted category" + +#: ../../godmode/category/category.php:110 +msgid "Category name" +msgstr "Category name" + +#: ../../godmode/category/category.php:141 +msgid "No categories found" +msgstr "No categories found" + +#: ../../godmode/category/category.php:150 +#: ../../godmode/category/edit_category.php:146 +msgid "Create category" +msgstr "Create category" + +#: ../../godmode/category/edit_category.php:57 +msgid "Editor" +msgstr "Editor" + +#: ../../godmode/category/edit_category.php:76 +msgid "Error updating category" +msgstr "Error updating category" + +#: ../../godmode/category/edit_category.php:80 +msgid "Successfully updated category" +msgstr "Category successfully updated" + +#: ../../godmode/category/edit_category.php:99 +msgid "Error creating category" +msgstr "Error creating category" + +#: ../../godmode/category/edit_category.php:105 +msgid "Successfully created category" +msgstr "Category successfully created" + +#: ../../godmode/category/edit_category.php:137 +msgid "Update category" +msgstr "Update category" + +#: ../../godmode/groups/configure_modu_group.php:32 +msgid "Module group management" +msgstr "Module group management" + +#: ../../godmode/groups/configure_modu_group.php:51 +#: ../../godmode/groups/configure_group.php:70 +msgid "There was a problem loading group" +msgstr "There was a problem loading group" + +#: ../../godmode/groups/group_list.php:158 +msgid "Edit or delete groups can cause problems with synchronization" +msgstr "Editing or deleting groups can cause problems with synchronization" + +#: ../../godmode/groups/group_list.php:164 +msgid "Groups defined in Pandora" +msgstr "Groups defined in Pandora" + +#: ../../godmode/groups/group_list.php:210 +#: ../../godmode/groups/modu_group_list.php:75 +msgid "Group successfully created" +msgstr "Group successfully created" + +#: ../../godmode/groups/group_list.php:213 +#: ../../godmode/groups/modu_group_list.php:78 +msgid "There was a problem creating group" +msgstr "There was a problem creating the group" + +#: ../../godmode/groups/group_list.php:217 +msgid "Each group must have a different name" +msgstr "Each group must have a different name" + +#: ../../godmode/groups/group_list.php:222 +msgid "Group must have a name" +msgstr "Group must have a name" + +#: ../../godmode/groups/group_list.php:266 +#: ../../godmode/groups/modu_group_list.php:106 +msgid "Group successfully updated" +msgstr "Group successfully updated" + +#: ../../godmode/groups/group_list.php:269 +#: ../../godmode/groups/modu_group_list.php:109 +msgid "There was a problem modifying group" +msgstr "There was a problem modifying the group" + +#: ../../godmode/groups/group_list.php:294 #, php-format +msgid "The group is not empty. It is use in %s." +msgstr "The group isn't empty. It's used in %s." + +#: ../../godmode/groups/group_list.php:298 +#: ../../godmode/groups/modu_group_list.php:138 +msgid "Group successfully deleted" +msgstr "Group successfully deleted" + +#: ../../godmode/groups/group_list.php:301 +#: ../../godmode/groups/modu_group_list.php:136 +msgid "There was a problem deleting group" +msgstr "There was a problem deleting group" + +#: ../../godmode/groups/group_list.php:390 +msgid "There are no defined groups" +msgstr "There are no groups defined" + +#: ../../godmode/groups/group_list.php:396 +#: ../../godmode/groups/configure_group.php:94 +msgid "Create group" +msgstr "Create group" + +#: ../../godmode/groups/configure_group.php:92 +msgid "Update group" +msgstr "Update group" + +#: ../../godmode/groups/configure_group.php:106 +msgid "Update Group" +msgstr "Update Group" + +#: ../../godmode/groups/configure_group.php:108 +msgid "Create Group" +msgstr "Create Group" + +#: ../../godmode/groups/configure_group.php:144 +msgid "You have not access to the parent." +msgstr "You don't have access to the parent" + +#: ../../godmode/groups/configure_group.php:166 +msgid "Group Password" +msgstr "Group Password" + +#: ../../godmode/groups/configure_group.php:174 +msgid "Propagate ACL" +msgstr "Propagate ACL" + +#: ../../godmode/groups/configure_group.php:174 +msgid "Propagate the same ACL security into the child subgroups." +msgstr "Propagate the same ACL security onto the child subgroups" + +#: ../../godmode/groups/configure_group.php:186 +msgid "Contact" +msgstr "Contact" + +#: ../../godmode/groups/configure_group.php:186 +msgid "Contact information accessible through the _groupcontact_ macro" +msgstr "Contact information can be accessed using the _groupcontact_ macro" + +#: ../../godmode/groups/configure_group.php:190 +msgid "Information accessible through the _group_other_ macro" +msgstr "Information can be accessed using the _group_other_ macro" + +#: ../../godmode/groups/configure_group.php:238 msgid "" -"The followings elements groups/profiles/user profiles were created/updated " -"sucessfully (%d/%d/%d)" +"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 "" -"The following element groups / profiles / user profiles were created / " -"updated sucessfully (%d/%d/%d)" +"WARNING: you're trying to create a group on a node that is part of a " +"metaconsole. \\n\\nThis group and all of its content will not be visible on " +"the metaconsole. \\n\\nIf you wish to create a visible group, you will have " +"to do it from the metaconsole and propagate it on to the node. " -#: ../../enterprise/meta/advanced/synchronizing.user.php:510 -msgid "Synchronizing Users" -msgstr "Synchronizing Users" +#: ../../godmode/groups/modu_group_list.php:55 +msgid "Module groups defined in Pandora" +msgstr "Module groups defined in Pandora" -#: ../../enterprise/meta/advanced/synchronizing.user.php:542 -msgid "Profile mode" -msgstr "Profile mode" +#: ../../godmode/groups/modu_group_list.php:82 +#: ../../godmode/groups/modu_group_list.php:113 +msgid "Each module group must have a different name" +msgstr "Each module group must have a different name" -#: ../../enterprise/meta/advanced/synchronizing.user.php:542 -msgid "Profile synchronization mode." -msgstr "Profile synchronisation mode" +#: ../../godmode/groups/modu_group_list.php:86 +#: ../../godmode/groups/modu_group_list.php:117 +msgid "Module group must have a name" +msgstr "The module group must be named" -#: ../../enterprise/meta/advanced/synchronizing.user.php:543 -msgid "New profile" -msgstr "New profile" +#: ../../godmode/groups/modu_group_list.php:208 +msgid "There are no defined module groups" +msgstr "There are no module groups defined" -#: ../../enterprise/meta/advanced/synchronizing.user.php:545 -msgid "" -"The selected user profile will be added to the selected users into the target" +#: ../../godmode/groups/modu_group_list.php:213 +msgid "Create module group" +msgstr "Create module group" + +#: ../../godmode/modules/module_list.php:28 +#: ../../godmode/modules/manage_nc_groups.php:40 +#: ../../godmode/modules/manage_network_components.php:50 +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module management" +msgstr "Module management" + +#: ../../godmode/modules/module_list.php:28 +msgid "Defined modules" +msgstr "Defined modules" + +#: ../../godmode/modules/module_list.php:50 +msgid "Problem modifying module" +msgstr "There was a problem modifying the module" + +#: ../../godmode/modules/module_list.php:52 +msgid "Module updated successfully" +msgstr "Module updated successfully" + +#: ../../godmode/modules/manage_network_components_form_network.php:47 +msgid "SNMP Enterprise String" +msgstr "Enterprise SNMP String" + +#: ../../godmode/modules/manage_network_components_form_network.php:50 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:353 +#: ../../godmode/agentes/module_manager_editor_network.php:119 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:714 +msgid "SNMP community" +msgstr "SNMP community" + +#: ../../godmode/modules/manage_network_components_form_network.php:90 +#: ../../godmode/agentes/module_manager_editor_network.php:171 +msgid "TCP send" +msgstr "TCP send" + +#: ../../godmode/modules/manage_network_components_form_network.php:97 +#: ../../godmode/agentes/module_manager_editor_network.php:177 +msgid "TCP receive" +msgstr "TCP receive" + +#: ../../godmode/modules/manage_nc_groups.php:40 +msgid "Component group management" +msgstr "Component group management" + +#: ../../godmode/modules/manage_nc_groups.php:58 +msgid "Could not be created. Blank name" +msgstr "Could not be created. Name left blank" + +#: ../../godmode/modules/manage_nc_groups.php:154 +#: ../../godmode/modules/manage_network_components.php:399 +#: ../../godmode/modules/manage_network_templates.php:85 +msgid "Successfully multiple deleted" +msgstr "Multi-deletion successful" + +#: ../../godmode/modules/manage_nc_groups.php:155 +#: ../../godmode/modules/manage_network_components.php:400 +#: ../../godmode/modules/manage_network_templates.php:86 +msgid "Not deleted. Error deleting multiple data" +msgstr "Not deleted. Error deleting multiple data" + +#: ../../godmode/modules/manage_nc_groups.php:238 +msgid "There are no defined component groups" +msgstr "There are no component groups defined" + +#: ../../godmode/modules/manage_nc_groups_form.php:54 +msgid "Update Group Component" +msgstr "Update Group Component" + +#: ../../godmode/modules/manage_nc_groups_form.php:57 +msgid "Create Group Component" +msgstr "Create Group Component" + +#: ../../godmode/modules/manage_network_components.php:51 +msgid "Network component management" +msgstr "Network component management" + +#: ../../godmode/modules/manage_network_components.php:516 +msgid "Free Search" +msgstr "Free Search" + +#: ../../godmode/modules/manage_network_components.php:517 +msgid "Search by name, description, tcp send or tcp rcv, list matches." msgstr "" -"The selected user profile will be added to the selected users into the target" +"Search by: name, description, TCP sending or TCP receiving, list matches." -#: ../../enterprise/meta/advanced/synchronizing.user.php:546 -msgid "Copy profile" -msgstr "Copy profile" +#: ../../godmode/modules/manage_network_components.php:569 +msgid "Max/Min" +msgstr "Max/Min" -#: ../../enterprise/meta/advanced/synchronizing.user.php:548 -msgid "" -"The target user profiles will be replaced with the source user profiles" +#: ../../godmode/modules/manage_network_components.php:595 +msgid "Network module" +msgstr "Network module" + +#: ../../godmode/modules/manage_network_components.php:599 +msgid "WMI module" +msgstr "WMI module" + +#: ../../godmode/modules/manage_network_components.php:603 +msgid "Plug-in module" +msgstr "Plug-in module" + +#: ../../godmode/modules/manage_network_components.php:634 +msgid "There are no defined network components" +msgstr "There are no network components defined" + +#: ../../godmode/modules/manage_network_components.php:641 +msgid "Create a new network component" +msgstr "Create a new network component" + +#: ../../godmode/modules/manage_network_components.php:642 +msgid "Create a new plugin component" +msgstr "Create a new plug-in component" + +#: ../../godmode/modules/manage_network_components.php:643 +msgid "Create a new WMI component" +msgstr "Create a new WMI component" + +#: ../../godmode/modules/manage_network_components_form.php:253 +msgid "Update Network Component" +msgstr "Update Network Components" + +#: ../../godmode/modules/manage_network_components_form.php:256 +msgid "Create Network Component" +msgstr "Create Network Components" + +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module template management" +msgstr "Module template management" + +#: ../../godmode/modules/manage_network_templates_form.php:54 +msgid "Successfully deleted module from profile" +msgstr "Successfully deleted module from profile" + +#: ../../godmode/modules/manage_network_templates_form.php:55 +msgid "Error deleting module from profile" +msgstr "Error deleting module from profile" + +#: ../../godmode/modules/manage_network_templates_form.php:70 +msgid "Successfully added module to profile" +msgstr "Successfully added module to profile" + +#: ../../godmode/modules/manage_network_templates_form.php:71 +msgid "Error adding module to profile" +msgstr "Error adding module to profile" + +#: ../../godmode/modules/manage_network_templates_form.php:94 +msgid "Successfully updated network profile" +msgstr "Network profile updated successfully" + +#: ../../godmode/modules/manage_network_templates_form.php:95 +msgid "Error updating network profile" +msgstr "Error updating the network profile" + +#: ../../godmode/modules/manage_network_templates_form.php:110 +msgid "Successfully added network profile" +msgstr "Network profile added successfully" + +#: ../../godmode/modules/manage_network_templates_form.php:111 +msgid "Error adding network profile" +msgstr "Error adding network profile" + +#: ../../godmode/modules/manage_network_templates_form.php:116 +msgid "Cannot create a template without name" +msgstr "Cannot create a template without a name" + +#: ../../godmode/modules/manage_network_templates_form.php:184 +msgid "No modules for this profile" +msgstr "No modules for this profile" + +#: ../../godmode/modules/manage_network_templates_form.php:224 +msgid "Add modules" +msgstr "Add modules" + +#: ../../godmode/modules/manage_network_templates_form.php:302 +msgid "Components" +msgstr "Components" + +#: ../../godmode/modules/manage_network_components_form_common.php:109 +#: ../../godmode/agentes/module_manager_editor_common.php:258 +msgid "Advanced options Dynamic Threshold" +msgstr "Advanced options Dynamic Threshold" + +#: ../../godmode/modules/manage_network_components_form_common.php:111 +msgid "Dynamic Min. " +msgstr "Dynamic Min. " + +#: ../../godmode/modules/manage_network_components_form_common.php:165 +msgid "Any value below this number is discarted" +msgstr "Any value below this number is discarded" + +#: ../../godmode/modules/manage_network_components_form_common.php:167 +msgid "Any value over this number is discarted" +msgstr "Any value over this number is discarded" + +#: ../../godmode/modules/manage_network_components_form_common.php:212 +#: ../../godmode/agentes/module_manager_editor_common.php:478 +msgid "Tags available" +msgstr "Tags available" + +#: ../../godmode/modules/manage_network_components_form_common.php:219 +#: ../../godmode/agentes/module_manager_editor_common.php:540 +msgid "Add tags to module" +msgstr "Add tags to module" + +#: ../../godmode/modules/manage_network_components_form_common.php:220 +#: ../../godmode/agentes/module_manager_editor_common.php:541 +msgid "Delete tags to module" +msgstr "Delete tags from module" + +#: ../../godmode/modules/manage_network_components_form_common.php:222 +#: ../../godmode/agentes/module_manager_editor_common.php:543 +msgid "Tags selected" +msgstr "Tags selected" + +#: ../../godmode/modules/manage_network_components_form_common.php:379 +#: ../../godmode/agentes/module_manager_editor_common.php:1248 +msgid "Normal Status" +msgstr "Normal Status" + +#: ../../godmode/modules/manage_network_components_form_common.php:380 +#: ../../godmode/agentes/module_manager_editor_common.php:1249 +msgid "Warning Status" +msgstr "Warning Status" + +#: ../../godmode/modules/manage_network_components_form_common.php:381 +#: ../../godmode/agentes/module_manager_editor_common.php:1250 +msgid "Critical Status" +msgstr "Critical Status" + +#: ../../godmode/modules/manage_network_components_form_common.php:602 +#: ../../godmode/agentes/module_manager_editor_common.php:1471 +msgid "Please introduce a maximum warning higher than the minimun warning" +msgstr "Please introduce a maximum warning higher than the minimum warning" + +#: ../../godmode/modules/manage_network_components_form_common.php:603 +#: ../../godmode/agentes/module_manager_editor_common.php:1472 +msgid "Please introduce a maximum critical higher than the minimun critical" +msgstr "Please introduce a maximum critical higher than the minimum critical" + +#: ../../godmode/modules/manage_network_templates.php:61 +msgid "Template successfully deleted" +msgstr "Template successfully deleted" + +#: ../../godmode/modules/manage_network_templates.php:62 +msgid "Error deleting template" +msgstr "Error deleting template" + +#: ../../godmode/modules/manage_network_templates.php:94 +msgid "This template does not exist" +msgstr "This template does not exist" + +#: ../../godmode/modules/manage_network_templates.php:232 +msgid "There are no defined network profiles" +msgstr "There are no network profiles defined" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:32 +#: ../../godmode/agentes/module_manager_editor_wmi.php:64 +msgid "WMI query" +msgstr "WMI query" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:34 +#: ../../godmode/agentes/module_manager_editor_wmi.php:73 +msgid "Key string" +msgstr "Key string" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:40 +#: ../../godmode/agentes/module_manager_editor_wmi.php:77 +msgid "Field number" +msgstr "Field number" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:42 +#: ../../godmode/agentes/module_manager_editor_wmi.php:47 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:257 +msgid "Namespace" +msgstr "Namespace" + +#: ../../godmode/agentes/configurar_agente.php:187 +#: ../../godmode/agentes/configurar_agente.php:733 +msgid "No agent alias specified" +msgstr "No agent alias specified" + +#: ../../godmode/agentes/configurar_agente.php:268 +msgid "Could not be created, because name already exists" msgstr "" -"The target user profiles will be replaced with the source user profiles" -#: ../../enterprise/meta/agentsearch.php:80 -msgid "Search results for" -msgstr "Search results for" +#: ../../godmode/agentes/configurar_agente.php:385 +msgid "Agent wizard" +msgstr "Agent wizard" -#: ../../enterprise/meta/agentsearch.php:205 -msgid "There are no agents included in this group" -msgstr "There are no agents included in this group" +#: ../../godmode/agentes/configurar_agente.php:397 +#: ../../godmode/agentes/configurar_agente.php:561 +msgid "SNMP Interfaces wizard" +msgstr "SNMP Interface wizard" -#: ../../enterprise/meta/event/custom_events.php:89 -msgid "The user is not in neither group with EW profile" -msgstr "The user is not in either of the groups with an EW profile." +#: ../../godmode/agentes/configurar_agente.php:402 +#: ../../godmode/agentes/configurar_agente.php:564 +msgid "WMI Wizard" +msgstr "WMI Wizard" -#: ../../enterprise/meta/event/custom_events.php:129 -msgid "Succesful updated" -msgstr "Update successful." +#: ../../godmode/agentes/configurar_agente.php:523 +msgid "Collection" +msgstr "Collection" -#: ../../enterprise/meta/event/custom_events.php:130 -msgid "Unsucessful updated" -msgstr "Update unsuccessful." +#: ../../godmode/agentes/configurar_agente.php:531 +msgid "Agent plugins" +msgstr "Agent plugins" -#: ../../enterprise/meta/event/custom_events.php:154 -msgid "Fields" -msgstr "Fields" +#: ../../godmode/agentes/configurar_agente.php:546 +msgid "Gis" +msgstr "Gis" -#: ../../enterprise/meta/general/login_page.php:43 -msgid "Go to pandorafms.com" -msgstr "Go to pandorafms.com" +#: ../../godmode/agentes/configurar_agente.php:572 +msgid "SNMP explorer" +msgstr "SNMP explorer" -#: ../../enterprise/meta/general/login_page.php:48 -msgid "Go to Pandora FMS Wiki" -msgstr "Go to Pandora FMS Wiki" +#: ../../godmode/agentes/configurar_agente.php:587 +msgid "Agent manager" +msgstr "Agent manager" -#: ../../enterprise/meta/general/logon_ok.php:32 -msgid "Network traffic" -msgstr "Network traffic" +#: ../../godmode/agentes/configurar_agente.php:647 +#: ../../godmode/agentes/configurar_agente.php:652 +msgid "No data to normalize" +msgstr "No data to normalise" -#: ../../enterprise/meta/general/logon_ok.php:60 -#: ../../enterprise/meta/general/main_header.php:180 -#: ../../enterprise/meta/screens/screens.php:35 -msgid "Screens" -msgstr "Screens" - -#: ../../enterprise/meta/general/main_header.php:98 -msgid "Groups view" -msgstr "Group view" - -#: ../../enterprise/meta/general/main_header.php:108 -msgid "Monitors view" -msgstr "Monitors view" - -#: ../../enterprise/meta/general/main_header.php:144 -msgid "Create new report" -msgstr "Create new report" - -#: ../../enterprise/meta/general/main_header.php:157 -msgid "Report templates" -msgstr "Report templates" - -#: ../../enterprise/meta/general/main_header.php:205 -msgid "Live view" -msgstr "Live view" - -#: ../../enterprise/meta/general/main_header.php:248 -msgid "Agent management" -msgstr "Agent management" - -#: ../../enterprise/meta/general/main_header.php:258 -msgid "Alert management" -msgstr "Alert management" - -#: ../../enterprise/meta/general/main_header.php:268 -msgid "Component management" -msgstr "Component management" - -#: ../../enterprise/meta/general/main_header.php:273 -msgid "Policy management" -msgstr "Policy management" - -#: ../../enterprise/meta/general/main_header.php:278 -msgid "Category management" -msgstr "Category management" - -#: ../../enterprise/meta/general/main_header.php:283 -msgid "Server management" -msgstr "Server management" - -#: ../../enterprise/meta/general/main_header.php:293 -msgid "Metasetup" -msgstr "Metasetup" - -#: ../../enterprise/meta/general/metaconsole_no_activated.php:25 -msgid "" -"Metaconsole needs previous activation from regular console, please contact " -"system administrator if you need assistance.
    " -msgstr "" -"Metaconsole needs previous activation from regular console, please contact " -"system administrator if you need assistance.
    " - -#: ../../enterprise/meta/general/noaccess.php:17 -msgid "Back to login" -msgstr "Back to login" - -#: ../../enterprise/meta/general/noaccess.php:33 -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" -msgstr "" -"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" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1202 -msgid "Go to agent detail" -msgstr "Go to agent detail" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1209 -msgid "Create new module" -msgstr "Create new module" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1270 -msgid "Group name" -msgstr "Group name" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1410 -msgid "Go to module detail" -msgstr "Go to module detail" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1428 -msgid "Create new alert" -msgstr "Create new alert" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1469 -msgid "There was a problem loading alert" -msgstr "A problem occurred while loading alerts" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1560 -msgid "Stand By" -msgstr "Stand By" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1586 -msgid "Go to Alert detail" -msgstr "Go to Alert detail" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1592 -msgid "Delete alert" -msgstr "Delete alert" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1636 -msgid "There was a problem loading tag" -msgstr "There was a problem in loading the tag." - -#: ../../enterprise/meta/include/functions_agents_meta.php:1204 -#: ../../enterprise/meta/include/functions_agents_meta.php:1215 -msgid "Agents movement" -msgstr "Agents movement" - -#: ../../enterprise/meta/include/functions_agents_meta.php:1209 -#: ../../enterprise/meta/include/functions_agents_meta.php:1218 -msgid "Group management" -msgstr "Group management" - -#: ../../enterprise/meta/include/functions_components_meta.php:60 -#: ../../enterprise/meta/include/functions_components_meta.php:75 -msgid "Plugin management" -msgstr "Plugin management" - -#: ../../enterprise/meta/include/functions_components_meta.php:81 -msgid "Create plugin" -msgstr "Create plugin" - -#: ../../enterprise/meta/include/functions_components_meta.php:84 -msgid "Edit plugin" -msgstr "Edit plugin" - -#: ../../enterprise/meta/include/functions_groups_meta.php:77 +#: ../../godmode/agentes/configurar_agente.php:656 #, php-format -msgid "(Error Duplicate ID (%d) ) " -msgstr "(Error Duplicate ID (%d) ) " +msgid "Deleted data above %f" +msgstr "Deleted data above %f" -#: ../../enterprise/meta/include/functions_groups_meta.php:99 -msgid "Different parent" -msgstr "Different parent" - -#: ../../enterprise/meta/include/functions_groups_meta.php:104 -msgid "Different name" -msgstr "Different name" - -#: ../../enterprise/meta/include/functions_meta.php:332 -msgid "No admin user" -msgstr "No admin user" - -#: ../../enterprise/meta/include/functions_meta.php:428 -msgid "Netflow disable custom live view filters" -msgstr "Netflow disables custom live view filters." - -#: ../../enterprise/meta/include/functions_meta.php:476 -msgid "Customizable section" -msgstr "Customizable section" - -#: ../../enterprise/meta/include/functions_meta.php:829 -msgid "Pandora FMS host" -msgstr "Pandora FMS host" - -#: ../../enterprise/meta/include/functions_meta.php:1101 -msgid "Type of charts" -msgstr "Type of charts" - -#: ../../enterprise/meta/include/functions_meta.php:1181 -msgid "Custom background login" -msgstr "" - -#: ../../enterprise/meta/include/functions_users_meta.php:184 -msgid "User synchronization" -msgstr "User synchronization" - -#: ../../enterprise/meta/include/functions_users_meta.php:196 -msgid "Group synchronization" -msgstr "Group synchronization" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:241 -msgid "Agent modules" -msgstr "Agent modules" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:284 -msgid "Add selected modules to agent" -msgstr "Add selected modules to agent" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:298 -msgid "Undo changes" -msgstr "Undo changes" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:473 -msgid "Latency" -msgstr "Latency" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:474 -msgid "Response" -msgstr "Response" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:476 -msgid "Check type" -msgstr "Check type" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:525 -msgid "String to check" -msgstr "String to check" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:530 -msgid "Add check" -msgstr "Add check" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:538 -msgid "Delete check" -msgstr "Delete check" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:818 -#: ../../enterprise/meta/include/functions_wizard_meta.php:910 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1120 -msgid "Various" -msgstr "Various" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:858 -#: ../../enterprise/meta/include/functions_wizard_meta.php:944 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1161 -msgid "Thresholds" -msgstr "Thresholds" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:955 -msgid "Web configuration" -msgstr "Web configuration" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1147 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1153 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1560 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1567 -msgid "Str: " -msgstr "Str: " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1149 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1155 -msgid " Inverse interval " -msgstr " Inverse interval " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1216 -msgid "Alerts in module" -msgstr "Alerts in module" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1379 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1469 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1589 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1660 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:86 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:104 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:74 -msgid "Preview" -msgstr "Preview" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1451 -msgid "Checks" -msgstr "Checks" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1654 -msgid "Deleted modules" -msgstr "Deleted modules" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1866 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1963 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2438 +#: ../../godmode/agentes/configurar_agente.php:657 #, php-format -msgid "Error adding module %s" -msgstr "Error in adding module %s" +msgid "Error normalizing module %s" +msgstr "Error normalising module %s" -#: ../../enterprise/meta/include/functions_wizard_meta.php:1876 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1973 +#: ../../godmode/agentes/configurar_agente.php:782 +msgid "There was a problem updating the agent" +msgstr "There was a problem updating the agent" + +#: ../../godmode/agentes/configurar_agente.php:826 +msgid "There was a problem loading the agent" +msgstr "There was a problem loading the agent" + +#: ../../godmode/agentes/configurar_agente.php:1227 msgid "" -"There was an error creating the alerts, the operation has been cancelled" +"There was a problem updating module. Another module already exists with the " +"same name." msgstr "" -"There was an error creating the alerts, the operation has been cancelled" +"There was an issue updating the module: there's another module with the same " +"name" -#: ../../enterprise/meta/include/functions_wizard_meta.php:2040 -msgid "Agent successfully added" -msgstr "Agent successfully added" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2056 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2138 -#, php-format -msgid "%s Modules created" -msgstr "%s Modules created" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2094 -#, php-format -msgid "Could not update agent %s" -msgstr "Could not update agent %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2098 -msgid "Agent successfully updated" -msgstr "Agent successfully updated" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2144 -#, php-format -msgid "%s Modules deleted" -msgstr "%s Modules deleted" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2449 +#: ../../godmode/agentes/configurar_agente.php:1230 msgid "" -"There was an error creating the alerts, the operation has been cancelled ." +"There was a problem updating module. Some required fields are missed: (name)" msgstr "" -"There was an error creating the alerts, the operation has been cancelled ." +"There was an issue updating the module: some required fields are missing: " +"(name)" -#: ../../enterprise/meta/include/functions_wizard_meta.php:2480 -msgid "Module successfully added." -msgstr "Module successfully added." +#: ../../godmode/agentes/configurar_agente.php:1233 +msgid "There was a problem updating module. \"No change\"" +msgstr "A problem occurred when updating the module. \"No change\"" -#: ../../enterprise/meta/include/functions_wizard_meta.php:2552 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2641 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2852 +#: ../../godmode/agentes/configurar_agente.php:1238 +msgid "There was a problem updating module. Processing error" +msgstr "A problem occurred when updating the module. Processing error" + +#: ../../godmode/agentes/configurar_agente.php:1258 +msgid "Module successfully updated" +msgstr "Module successfully updated" + +#: ../../godmode/agentes/configurar_agente.php:1367 +msgid "" +"There was a problem adding module. Another module already exists with the " +"same name." +msgstr "" +"A problem occurred when adding the module. There's another module with the " +"same name." + +#: ../../godmode/agentes/configurar_agente.php:1370 +msgid "" +"There was a problem adding module. Some required fields are missed : (name)" +msgstr "" +"There was a problem adding the module: some required fields are missing: " +"(name)" + +#: ../../godmode/agentes/configurar_agente.php:1375 +msgid "There was a problem adding module. Processing error" +msgstr "There was a problem adding the module. Processing error." + +#: ../../godmode/agentes/configurar_agente.php:1511 +msgid "There was a problem deleting the module" +msgstr "There was a problem deleting the module" + +#: ../../godmode/agentes/configurar_agente.php:1514 +msgid "Module deleted succesfully" +msgstr "Module deleted succesfully" + +#: ../../godmode/agentes/configurar_agente.php:1528 #, php-format -msgid "Error updating module %s" -msgstr "Error in updating module %s" +msgid "copy of %s" +msgstr "copy of %s" -#: ../../enterprise/meta/include/functions_wizard_meta.php:2575 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2664 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2875 +#: ../../godmode/agentes/configurar_agente.php:1538 +#, php-format +msgid "copy of %s (%d)" +msgstr "copy of %s (%d)" + +#: ../../godmode/agentes/configurar_agente.php:1696 +#: ../../godmode/agentes/configurar_agente.php:1706 +msgid "Invalid tab specified" +msgstr "Invalid tab specified" + +#: ../../godmode/agentes/module_manager_editor.php:390 +msgid "This policy is applying and cannot be modified" +msgstr "This policy is being applied and cannot be modified" + +#: ../../godmode/agentes/module_manager_editor.php:394 +msgid "Module will be linked in the next application" +msgstr "Module will be linked upon next use" + +#: ../../godmode/agentes/module_manager_editor.php:402 +msgid "Module will be unlinked in the next application" +msgstr "Module will be unlinked upon next use" + +#: ../../godmode/agentes/module_manager_editor.php:490 +#, php-format +msgid "DEBUG: Invalid module type specified in %s:%s" +msgstr "DEBUG: Invalid module type specified in %s:%s" + +#: ../../godmode/agentes/module_manager_editor.php:491 msgid "" -"There was an error updating the alerts, the operation has been cancelled" +"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 "" -"There was an error in updating the alerts, the operation has been cancelled." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2597 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2686 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2897 -msgid "Successfully updated module." -msgstr "Module successfully updated." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:3250 -msgid "Manage agent modules" -msgstr "Manage agent modules" - -#: ../../enterprise/meta/index.php:250 ../../index.php:267 -msgid "The code shouldn't be empty" -msgstr "The code shouldn't be empty" - -#: ../../enterprise/meta/index.php:262 ../../index.php:279 -msgid "Expired login" -msgstr "Expired login" - -#: ../../enterprise/meta/index.php:270 ../../enterprise/meta/index.php:276 -#: ../../index.php:287 ../../index.php:293 -msgid "Login error" -msgstr "Login error" - -#: ../../enterprise/meta/index.php:523 ../../enterprise/meta/index.php:534 -#: ../../index.php:809 -msgid "Sorry! I can't find the page!" -msgstr "Sorry! I can't find the page!" - -#: ../../enterprise/meta/monitoring/group_view.php:33 -msgid "Group View" -msgstr "Group View" - -#: ../../enterprise/meta/monitoring/group_view.php:95 -msgid "Summary by status" -msgstr "Summary by status" - -#: ../../enterprise/meta/monitoring/group_view.php:103 -msgid "% Agents Unknown" -msgstr "% Agents Unknown" - -#: ../../enterprise/meta/monitoring/group_view.php:104 -#: ../../enterprise/meta/monitoring/group_view.php:105 -msgid "% Agents not init" -msgstr "% Agents not init" - -#: ../../enterprise/meta/monitoring/group_view.php:108 -msgid "% Monitors Critical" -msgstr "% Monitors Critical" - -#: ../../enterprise/meta/monitoring/group_view.php:109 -msgid "% Monitors Warning" -msgstr "% Monitors Warning" - -#: ../../enterprise/meta/monitoring/group_view.php:110 -msgid "% Monitors OK" -msgstr "% Monitors OK" - -#: ../../enterprise/meta/monitoring/group_view.php:111 -msgid "% Monitors Unknown" -msgstr "% Monitors Unknown" - -#: ../../enterprise/meta/monitoring/group_view.php:112 -msgid "% Monitors Not init" -msgstr "% Monitors Not init" - -#: ../../enterprise/meta/monitoring/group_view.php:136 -#: ../../enterprise/meta/monitoring/group_view.php:137 -msgid "This data doesn't show in realtime" -msgstr "This data doesn't show in realtime" - -#: ../../enterprise/meta/monitoring/group_view.php:144 -msgid "Group or Tag" -msgstr "Group or Tag" - -#: ../../enterprise/meta/monitoring/group_view.php:148 -msgid "critical" -msgstr "critical" - -#: ../../enterprise/meta/monitoring/tactical.php:37 -msgid "Tactical View" -msgstr "Tactical View" - -#: ../../enterprise/meta/monitoring/tactical.php:291 -msgid "Report of state" -msgstr "Report of state" - -#: ../../enterprise/meta/monitoring/tactical.php:320 -msgid "Report of events" -msgstr "Report of events" - -#: ../../enterprise/meta/monitoring/tactical.php:325 -msgid "Info of state in events" -msgstr "Info of state in events" - -#: ../../enterprise/meta/monitoring/tactical.php:341 -msgid "More events" -msgstr "More events" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:78 -msgid "Edit agent" -msgstr "Edit agent" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:212 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:227 -msgid "Please, set a valid IP/Name address" -msgstr "Please, set a valid IP/Name address" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:116 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:290 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:98 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:116 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:84 -msgid "Create module" -msgstr "Create module" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:124 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:127 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:154 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:112 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:178 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:49 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 -msgid "Can't connect to Pandora FMS instance" -msgstr "Cannot connect to Pandora FMS instance." - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -msgid "Web check" -msgstr "Web check" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:228 -msgid "Module description" -msgstr "Module description" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:244 -msgid "Step by step wizard" -msgstr "Step by step wizard" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:251 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:255 -msgid "Click Create to continue" -msgstr "Click Create to continue" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:249 -msgid "Select the agent to be edited or deleted" -msgstr "Select the agent to be edited or deleted" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:291 -msgid "Manage modules" -msgstr "Manage modules" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:339 -msgid "Select the agent where the module will be created" -msgstr "Select the agent where the module will be created" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:353 -msgid "Create Module" -msgstr "Create Module" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 -msgid "Select the module to be edited or deleted" -msgstr "Select the module to be edited or deleted" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:519 -msgid "Select the module where the alert will be created" -msgstr "Select the module in which the alert will be created." - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:603 -msgid "Select the alert to be edited or deleted" -msgstr "Select the alert to be edited or deleted" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:84 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:102 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:72 -msgid "Advanced configuration" -msgstr "Advanced configuration" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:198 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:231 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:196 -msgid "Invalid characters founded in module name" -msgstr "Invalid characters found in module name." - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:189 -msgid "Please, set a name" -msgstr "Please set a name" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:210 -msgid "Please, set an interval" -msgstr "Please set an interval" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:92 -msgid "The alert you are trying to add is already in the list of alerts" -msgstr "The alert you are trying to add is already in the list of alerts." - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:103 -msgid "Please, select an alert" -msgstr "Please select an alert" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:104 -msgid "Please, select an agent" -msgstr "Please select an agent" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:109 -msgid "String" -msgstr "String" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:110 -msgid "No agent name specified" -msgstr "No agent name specified" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:111 -msgid "Another agent already exists with the same name" -msgstr "Another agent with the same name already exists." - -#: ../../enterprise/meta/screens/screens.visualmap.php:60 -msgid "Create visualmap" -msgstr "Create visual map" - -#: ../../enterprise/mobile/operation/dashboard.php:59 -msgid "Visual console are not shown due screen size limitations" -msgstr "" - -#: ../../enterprise/mobile/operation/dashboard.php:87 -msgid "Dashboards list" -msgstr "Dashboards list" - -#: ../../enterprise/mobile/operation/dashboard.php:107 -msgid "No Dashboards" -msgstr "No Dashboards" - -#: ../../enterprise/mobile/operation/dashboard.php:140 -msgid "Dashboard name" -msgstr "Dashboard name" - -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:40 -msgid "Unsucessful get module inventory data." -msgstr "Getting module inventory data was unsuccessful." - -#: ../../enterprise/operation/agentes/agent_inventory.php:56 -msgid "This agent has not modules inventory" -msgstr "This agent has not modules inventory" - -#: ../../enterprise/operation/agentes/agent_inventory.php:160 -#: ../../enterprise/operation/agentes/agent_inventory.php:161 -msgid "Diff view" -msgstr "Diff view" - -#: ../../enterprise/operation/agentes/collection_view.php:54 -msgid "No collection assigned to this agent" -msgstr "No collection assigned to this agent" - -#: ../../enterprise/operation/agentes/manage_transmap.php:27 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:257 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:319 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:33 -msgid "Transactions List" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap.php:50 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:89 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:326 -msgid "Edit main data" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap.php:57 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:96 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:333 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:39 -msgid "Edit Transaction" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap.php:65 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:104 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:341 -msgid "View Transaction" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap.php:98 -msgid "Return to windowed mode" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap.php:102 -msgid "Transactional Map - " -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap.php:106 -msgid "Transaction not found" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap.php:110 -msgid "Master lock file not found (No data to show)" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap.php:114 -msgid "Transaction is stopped" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap.php:118 -msgid "Error, please check the transaction phases" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:36 -msgid "Please, reset the transaction" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:71 -msgid "Successfully data updated" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:72 -msgid "Could not be data updated" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:107 -msgid "Transactional Map - Create Phase - " -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:117 -msgid "Index" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:120 -msgid "Dependencies" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:121 -msgid "Enables" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:181 -msgid "Not valid dependencies field" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187 -msgid "Not valid enables field" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:345 -msgid "Transactional Map - Create Transaction" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:272 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:361 -msgid "Loop interval" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:45 -msgid "Go back to phases list" -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:49 -msgid "Transactional Map - Phase - " -msgstr "" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:62 -msgid "Launch script" -msgstr "" - -#: ../../enterprise/operation/agentes/policy_view.php:37 -msgid "This agent has no policy assigned" -msgstr "This agent has no assigned policy." - -#: ../../enterprise/operation/agentes/policy_view.php:65 -msgid "Policy outdate" -msgstr "Policy outdated" - -#: ../../enterprise/operation/agentes/policy_view.php:130 -#: ../../enterprise/operation/agentes/policy_view.php:137 -msgid "Toggle the collection table" -msgstr "Toggle the collection table" - -#: ../../enterprise/operation/agentes/policy_view.php:133 -msgid "Descripttion" -msgstr "Description" - -#: ../../enterprise/operation/agentes/policy_view.php:138 -msgid "Show Collection" -msgstr "Show Collection" - -#: ../../enterprise/operation/agentes/policy_view.php:192 -#: ../../enterprise/operation/agentes/policy_view.php:201 -msgid "Toggle the alert table" -msgstr "Toggle the alert table" - -#: ../../enterprise/operation/agentes/policy_view.php:202 -msgid "Show Alert" -msgstr "Show Alert" - -#: ../../enterprise/operation/agentes/policy_view.php:303 -#: ../../enterprise/operation/agentes/policy_view.php:312 -msgid "Toggle the module table" -msgstr "Toggle the module table" - -#: ../../enterprise/operation/agentes/policy_view.php:304 -msgid "Relationship" -msgstr "Relationship" - -#: ../../enterprise/operation/agentes/policy_view.php:313 -msgid "Show Modules" -msgstr "Show Modules" - -#: ../../enterprise/operation/agentes/policy_view.php:333 -msgid "(Un-adopted)" -msgstr "(Un-adopted)" - -#: ../../enterprise/operation/agentes/policy_view.php:337 -msgid "(Adopted)" -msgstr "(Adopted)" - -#: ../../enterprise/operation/agentes/policy_view.php:343 -msgid "(Un-adopted) (Unlinked)" -msgstr "(Un-adopted) (Unlinked)" - -#: ../../enterprise/operation/agentes/policy_view.php:347 -msgid "(Adopted) (Unlinked)" -msgstr "(Adopted) (Unlinked)" - -#: ../../enterprise/operation/agentes/transactional_map.php:31 -msgid "Transactions list" -msgstr "" - -#: ../../enterprise/operation/agentes/transactional_map.php:100 -msgid "Name can't be empty" -msgstr "" - -#: ../../enterprise/operation/agentes/transactional_map.php:148 -msgid "Transaction name" -msgstr "" - -#: ../../enterprise/operation/agentes/transactional_map.php:151 -msgid "Running status" -msgstr "" - -#: ../../enterprise/operation/agentes/transactional_map.php:153 -msgid "Time spent" -msgstr "" - -#: ../../enterprise/operation/agentes/transactional_map.php:183 -msgid "Stopped" -msgstr "" - -#: ../../enterprise/operation/agentes/transactional_map.php:189 -msgid "Starting" -msgstr "" - -#: ../../enterprise/operation/agentes/transactional_map.php:192 -msgid "Stopping" -msgstr "" - -#: ../../enterprise/operation/agentes/transactional_map.php:260 -#: ../../enterprise/operation/agentes/ux_console_view.php:118 -#: ../../enterprise/operation/agentes/ux_console_view.php:237 -msgid "Failed" -msgstr "" - -#: ../../enterprise/operation/agentes/transactional_map.php:314 -msgid "Edit phases" -msgstr "" - -#: ../../enterprise/operation/agentes/transactional_map.php:323 -msgid "Error in phases section" -msgstr "" - -#: ../../enterprise/operation/agentes/transactional_map.php:342 -msgid "Create Transaction" -msgstr "" - -#: ../../enterprise/operation/agentes/ux_console_view.php:38 -msgid "No ux transactions found." -msgstr "" - -#: ../../enterprise/operation/agentes/ux_console_view.php:48 -msgid "Transaction" -msgstr "" - -#: ../../enterprise/operation/agentes/ux_console_view.php:57 -msgid "Show transaction" -msgstr "" - -#: ../../enterprise/operation/agentes/ux_console_view.php:83 -msgid "Execution results for transaction " -msgstr "" - -#: ../../enterprise/operation/agentes/ux_console_view.php:157 -msgid "Global results" -msgstr "" - -#: ../../enterprise/operation/agentes/ux_console_view.php:217 -msgid "Transaction history" -msgstr "" - -#: ../../enterprise/operation/agentes/ver_agente.php:225 -msgid "UX Console" -msgstr "" - -#: ../../enterprise/operation/inventory/inventory.php:266 -msgid "Export this list to CSV" -msgstr "Export this list to CSV" - -#: ../../enterprise/operation/log/log_viewer.php:150 -#: ../../enterprise/operation/menu.php:128 -msgid "Log viewer" -msgstr "Log viewer" - -#: ../../enterprise/operation/log/log_viewer.php:350 -msgid "The start date cannot be greater than the end date" -msgstr "The start date cannot be greater than the end date" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:36 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:74 -msgid "List of networkmaps" -msgstr "" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:42 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:80 -msgid "Edit networkmap" -msgstr "" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:48 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:86 -msgid "Deleted list" -msgstr "" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:54 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:92 -msgid "View networkmap" -msgstr "" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:61 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:66 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:95 -msgid "List deleted items" -msgstr "" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:108 -msgid "Successfully restore the item" -msgstr "" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:109 -msgid "Could not be restore the item" -msgstr "" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:130 -msgid "Successfully restore the items" -msgstr "" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:132 -msgid "Could not be restore the " -msgstr "" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:136 -msgid "Not found networkmap" -msgstr "" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:140 -msgid "The items restored will be appear in the holding area." -msgstr "" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:160 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:227 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:256 -msgid "Restore" -msgstr "" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:170 -msgid "There are not nodes in the networkmap." -msgstr "" - -#: ../../enterprise/operation/menu.php:100 -msgid "Transactional map" -msgstr "" - -#: ../../enterprise/operation/menu.php:111 -msgid "Custom SQL" -msgstr "Custom SQL" - -#: ../../enterprise/operation/reporting/custom_reporting.php:22 +"Most likely you've recently upgraded from an earlier version of Pandora and " +"you 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" + +#: ../../godmode/agentes/module_manager_editor.php:517 +#: ../../godmode/agentes/module_manager_editor_common.php:667 +msgid "Custom macros" +msgstr "Custom macros" + +#: ../../godmode/agentes/module_manager_editor.php:519 +msgid "Module relations" +msgstr "Module relations" + +#: ../../godmode/agentes/module_manager_editor.php:565 +msgid "No module name provided" +msgstr "No module name provided" + +#: ../../godmode/agentes/module_manager_editor.php:566 +msgid "No target IP provided" +msgstr "No target IP provided" + +#: ../../godmode/agentes/module_manager_editor.php:567 +msgid "No SNMP OID provided" +msgstr "No SNMP OID provided" + +#: ../../godmode/agentes/module_manager_editor.php:568 +msgid "No module to predict" +msgstr "No module to predict" + +#: ../../godmode/agentes/module_manager_editor.php:569 +msgid "No plug-in provided" +msgstr "No plug-in provided" + +#: ../../godmode/agentes/module_manager_editor.php:592 msgid "" -"All the items are not available in CSV, only the previous versions ones." +"Error, The field name and name in module_name in data configuration are " +"different." msgstr "" -"All the items are not available in CSV, only the previous versions ones." +"Error: field name and name in the module_name string under data " +"configuration are different." -#: ../../enterprise/operation/reporting/custom_reporting.php:62 -#: ../../enterprise/operation/reporting/custom_reporting.php:85 -msgid "Send by email" -msgstr "Send by e-mail" +#: ../../godmode/agentes/planned_downtime.export_csv.php:199 +#: ../../godmode/agentes/planned_downtime.list.php:358 +msgid "No planned downtime" +msgstr "No planned downtime" -#: ../../enterprise/operation/reporting/custom_reporting.php:70 -msgid "ID Report" -msgstr "Report ID" +#: ../../godmode/agentes/module_manager_editor_common.php:70 +msgid "Using module component" +msgstr "Using module component" -#: ../../enterprise/operation/reporting/custom_reporting.php:109 -msgid "Send by email " -msgstr "Send by e-mail " +#: ../../godmode/agentes/module_manager_editor_common.php:76 +#: ../../godmode/agentes/module_manager_editor_common.php:85 +msgid "Manual setup" +msgstr "Manual setup" -#: ../../enterprise/operation/services/services.list.php:44 -#: ../../enterprise/operation/services/services.list.php:52 -msgid "Service table view" +#: ../../godmode/agentes/module_manager_editor_common.php:81 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:336 +msgid "No component was found" +msgstr "No component was found" + +#: ../../godmode/agentes/module_manager_editor_common.php:161 +msgid "Delete module" +msgstr "Delete module" + +#: ../../godmode/agentes/module_manager_editor_common.php:180 +msgid "Module parent" +msgstr "Module parent" + +#: ../../godmode/agentes/module_manager_editor_common.php:256 +msgid "Dynamic Threshold Interval" +msgstr "Dynamic Threshold Interval" + +#: ../../godmode/agentes/module_manager_editor_common.php:268 +msgid "Dynamic Threshold Min. " +msgstr "Dynamic Threshold Min. " + +#: ../../godmode/agentes/module_manager_editor_common.php:271 +msgid "Dynamic Threshold Max. " +msgstr "Dynamic Threshold Max. " + +#: ../../godmode/agentes/module_manager_editor_common.php:274 +msgid "Dynamic Threshold Two Tailed: " +msgstr "Dynamic Threshold Two Tailed: " + +#: ../../godmode/agentes/module_manager_editor_common.php:280 +#: ../../godmode/agentes/module_manager_editor_common.php:301 +msgid "Min. " +msgstr "Min. " + +#: ../../godmode/agentes/module_manager_editor_common.php:385 +#: ../../godmode/agentes/module_manager_editor_common.php:388 +#, php-format +msgid "Agent interval x %s" +msgstr "Agent interval x %s" + +#: ../../godmode/agentes/module_manager_editor_common.php:398 +#: ../../godmode/agentes/module_manager.php:733 +msgid "" +"The policy modules of data type will only update their intervals when policy " +"is applied." +msgstr "" +"The policy modules for the data type will only update their intervals when a " +"policy is applied." + +#: ../../godmode/agentes/module_manager_editor_common.php:422 +msgid "Any value below this number is discarted." +msgstr "Any value below this number is discarded" + +#: ../../godmode/agentes/module_manager_editor_common.php:424 +msgid "Any value over this number is discarted." +msgstr "Any value larger than this number is discarded" + +#: ../../godmode/agentes/module_manager_editor_common.php:433 +msgid "Not needed" +msgstr "Not needed" + +#: ../../godmode/agentes/module_manager_editor_common.php:437 +msgid "" +"In case you use an Export server you can link this module and export data to " +"one these." +msgstr "" +"In case you're using an Export server you can link this module and export " +"data to one of these." + +#: ../../godmode/agentes/module_manager_editor_common.php:471 +msgid "This value can be set only in the async modules." +msgstr "This value can only be set in conjunction with asynchronous modules." + +#: ../../godmode/agentes/module_manager_editor_common.php:554 +msgid "Tags from policy" +msgstr "Tags from policy" + +#: ../../godmode/agentes/module_manager_editor_common.php:567 +msgid "The module still stores data but the alerts and events will be stop" +msgstr "Module will still store data but alerts and events will be stopped." + +#: ../../godmode/agentes/module_manager_editor_common.php:590 +#: ../../godmode/agentes/module_manager_editor_common.php:600 +#: ../../godmode/agentes/module_manager_editor_common.php:611 +msgid "Cron from" +msgstr "Cron from" + +#: ../../godmode/agentes/module_manager_editor_common.php:591 +#: ../../godmode/agentes/module_manager_editor_common.php:601 +#: ../../godmode/agentes/module_manager_editor_common.php:612 +msgid "" +"If cron is set the module interval is ignored and the module runs on the " +"specified date and time" +msgstr "" +"If cron is set, the module's interval is ignored and the module runs on the " +"specified date and time" + +#: ../../godmode/agentes/module_manager_editor_common.php:595 +#: ../../godmode/agentes/module_manager_editor_common.php:605 +#: ../../godmode/agentes/module_manager_editor_common.php:616 +msgid "Cron to" +msgstr "Cron to" + +#: ../../godmode/agentes/module_manager_editor_common.php:624 +msgid "Retries" +msgstr "Retries" + +#: ../../godmode/agentes/module_manager_editor_common.php:625 +msgid "Number of retries that the module will attempt to run." +msgstr "Number of module launch retry attempts" + +#: ../../godmode/agentes/module_manager_editor_common.php:701 +msgid "Add relationship" +msgstr "Add relation" + +#: ../../godmode/agentes/module_manager_editor_common.php:719 +msgid "Changes" +msgstr "Changes" + +#: ../../godmode/agentes/module_manager_editor_common.php:719 +msgid "Activate this to prevent the relation from being updated or deleted" +msgstr "Activate this to prevent the relation from being updated or deleted" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:179 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:298 +msgid "No agent selected or the agent does not exist" +msgstr "No agent selected or the agent does not exist" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:286 +msgid "Successfully modules created" +msgstr "Modules created successfully" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:296 +msgid "Another module already exists with the same name" +msgstr "Another module already exists with the same name" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:299 +msgid "Some required fields are missed" +msgstr "Some required fields are missing" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:299 +msgid "name" +msgstr "name" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:304 +msgid "Processing error" +msgstr "Processing error" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:345 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:706 +msgid "Use agent ip" +msgstr "Use agent IP" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:377 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:739 +msgid "privacy pass" +msgstr "privacy pass" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:397 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:759 +msgid "SNMP Walk" +msgstr "SNMP Walk" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:401 +msgid "Unable to do SNMP walk" +msgstr "Unable to perform an SNMP walk" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:435 +msgid "Interfaces" +msgstr "Interfaces" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:447 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:369 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:875 +msgid "Create modules" +msgstr "Create modules" + +#: ../../godmode/agentes/module_manager_editor_network.php:152 +msgid "SNMP OID" +msgstr "SNMP OID" + +#: ../../godmode/agentes/agent_conf_gis.php:53 +msgid "" +"When you change the Agent position, the agent automatically activates the " +"'Ignore new GIS data' option" +msgstr "" +"When you change the agent's position, the agent will automatically activate " +"the 'Ignore new GIS data' option." + +#: ../../godmode/agentes/agent_conf_gis.php:60 +msgid "Agent position" +msgstr "Agent position" + +#: ../../godmode/agentes/agent_conf_gis.php:66 +msgid "Latitude: " +msgstr "Latitude: " + +#: ../../godmode/agentes/agent_conf_gis.php:70 +msgid "Longitude: " +msgstr "Longitude: " + +#: ../../godmode/agentes/agent_conf_gis.php:74 +msgid "Altitude: " +msgstr "Altitude: " + +#: ../../godmode/agentes/configure_field.php:36 +msgid "Update agent custom field" +msgstr "Update agent's custom fields" + +#: ../../godmode/agentes/configure_field.php:39 +msgid "Create agent custom field" +msgstr "Create agent custom field" + +#: ../../godmode/agentes/planned_downtime.editor.php:115 +#: ../../godmode/agentes/planned_downtime.editor.php:187 +#: ../../godmode/agentes/planned_downtime.editor.php:942 +msgid "This elements cannot be modified while the downtime is being executed" +msgstr "These items cannot be modified while downtime is taking place" + +#: ../../godmode/agentes/planned_downtime.editor.php:318 +msgid "Cannot be modified while the downtime is being executed" +msgstr "Cannot be modified while downtime is taking place" + +#: ../../godmode/agentes/planned_downtime.editor.php:485 +msgid "Quiet: Modules will not generate events or fire alerts." +msgstr "Quiet: Modules will not generate events or fire alerts." + +#: ../../godmode/agentes/planned_downtime.editor.php:486 +msgid "Disable Agents: Disables the selected agents." +msgstr "Disable Agents: Disables the selected agents." + +#: ../../godmode/agentes/planned_downtime.editor.php:487 +msgid "Disable Alerts: Disable alerts for the selected agents." +msgstr "Disable Alerts: disables alerts for the selected agents." + +#: ../../godmode/agentes/planned_downtime.editor.php:489 +#: ../../godmode/agentes/planned_downtime.list.php:428 +msgid "Disabled Agents" +msgstr "Disable Agents" + +#: ../../godmode/agentes/planned_downtime.editor.php:490 +#: ../../godmode/agentes/planned_downtime.list.php:429 +msgid "Disabled only Alerts" +msgstr "Disable only Alerts" + +#: ../../godmode/agentes/planned_downtime.editor.php:494 +#: ../../godmode/agentes/planned_downtime.list.php:153 +msgid "Once" +msgstr "Once" + +#: ../../godmode/agentes/planned_downtime.editor.php:495 +#: ../../godmode/agentes/planned_downtime.list.php:153 +#: ../../godmode/agentes/planned_downtime.list.php:434 +msgid "Periodically" +msgstr "Periodically" + +#: ../../godmode/agentes/planned_downtime.editor.php:500 +msgid "Configure the time" +msgstr "Set time" + +#: ../../godmode/agentes/planned_downtime.editor.php:531 +msgid "Type Periodicity:" +msgstr "Periodicity type:" + +#: ../../godmode/agentes/planned_downtime.editor.php:533 +#: ../../godmode/agentes/module_manager_editor_prediction.php:152 +msgid "Weekly" +msgstr "Weekly" + +#: ../../godmode/agentes/planned_downtime.editor.php:534 +#: ../../godmode/agentes/module_manager_editor_prediction.php:153 +msgid "Monthly" +msgstr "Monthly" + +#: ../../godmode/agentes/planned_downtime.editor.php:569 +msgid "From day:" +msgstr "set start date" + +#: ../../godmode/agentes/planned_downtime.editor.php:575 +msgid "To day:" +msgstr "Set end date" + +#: ../../godmode/agentes/planned_downtime.editor.php:586 +msgid "From hour:" +msgstr "Set start time" + +#: ../../godmode/agentes/planned_downtime.editor.php:594 +msgid "To hour:" +msgstr "Set end time" + +#: ../../godmode/agentes/planned_downtime.editor.php:637 +msgid "Available agents" +msgstr "Available agents" + +#: ../../godmode/agentes/planned_downtime.editor.php:708 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:316 +msgid "Filter by group" +msgstr "Filter by group" + +#: ../../godmode/agentes/planned_downtime.editor.php:714 +msgid "Available modules:" +msgstr "Available modules:" + +#: ../../godmode/agentes/planned_downtime.editor.php:715 +msgid "Only for type Quiet for downtimes." +msgstr "Only for quiet type downtimes" + +#: ../../godmode/agentes/planned_downtime.editor.php:729 +msgid "Agents planned for this downtime" +msgstr "Selected agents for this downtime" + +#: ../../godmode/agentes/planned_downtime.editor.php:744 +msgid "There are no agents" +msgstr "There are no agents" + +#: ../../godmode/agentes/planned_downtime.editor.php:780 +msgid "All alerts" +msgstr "All alerts" + +#: ../../godmode/agentes/planned_downtime.editor.php:783 +msgid "Entire agent" +msgstr "Entire agent" + +#: ../../godmode/agentes/planned_downtime.editor.php:787 +#: ../../godmode/agentes/planned_downtime.editor.php:892 +msgid "All modules" +msgstr "All modules" + +#: ../../godmode/agentes/planned_downtime.editor.php:790 +#: ../../godmode/agentes/planned_downtime.editor.php:884 +#: ../../godmode/agentes/planned_downtime.editor.php:888 +msgid "Some modules" +msgstr "Some modules" + +#: ../../godmode/agentes/planned_downtime.editor.php:856 +msgid "Add Module:" +msgstr "Add Module:" + +#: ../../godmode/agentes/planned_downtime.editor.php:1072 +msgid "Please select a module." +msgstr "Please select a module." + +#: ../../godmode/agentes/planned_downtime.editor.php:1204 +msgid "" +"WARNING: If you edit this planned downtime, the data of future SLA reports " +"may be altered" +msgstr "" +"WARNING: if you edit this planned downtime, it may alter the data on future " +"SLA reports." + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:111 +#, php-format +msgid "Free space on %s" +msgstr "Free space on %s" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:204 +#, php-format +msgid "%s service modules created succesfully" +msgstr "%s service modules created successfully" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:207 +#, php-format +msgid "Error creating %s service modules" +msgstr "Error when creating %s service modules" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:212 +#, php-format +msgid "%s process modules created succesfully" +msgstr "%s process modules created successfully" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:215 +#, php-format +msgid "Error creating %s process modules" +msgstr "Error when creating %s service modules" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:220 +#, php-format +msgid "%s disk space modules created succesfully" +msgstr "%s disk space modules created successfully" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:223 +#, php-format +msgid "Error creating %s disk space modules" +msgstr "Error upon creating %s disk space modules" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:228 +#, php-format +msgid "%s modules created from components succesfully" +msgstr "%s modules created from components successfully" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:231 +#, php-format +msgid "Error creating %s modules from components" +msgstr "Error creating %s modules from components" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:234 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:676 +#, php-format +msgid "%s modules already exist" +msgstr "%s modules already exist" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:274 +msgid "WMI Explore" +msgstr "WMI Explorer" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:278 +msgid "Unable to do WMI explorer" +msgstr "Unable to perform WMI exploration" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:302 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:794 +msgid "Free space on disk" +msgstr "Free space on disk" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:303 +msgid "WMI components" +msgstr "WMI components" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:305 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 +msgid "Wizard mode" +msgstr "Wizard mode" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:348 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:350 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:352 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:354 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:854 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:856 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:858 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:860 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:863 +msgid "Add to modules list" +msgstr "Add to the module list" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:358 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:865 +msgid "Remove from modules list" +msgstr "Remove from the module list" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:491 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1027 +msgid "Modules list is empty" +msgstr "Module list is empty" + +#: ../../godmode/agentes/agent_manager.php:156 +msgid "The agent's name must be the same as the one defined at the console" +msgstr "Agent name must be the same as the one defined on the console" + +#: ../../godmode/agentes/agent_manager.php:159 +msgid "QR Code Agent view" +msgstr "View agent's QR code" + +#: ../../godmode/agentes/agent_manager.php:193 +msgid "This agent can be remotely configured" +msgstr "This agent can be configured remotely" + +#: ../../godmode/agentes/agent_manager.php:196 +msgid "You can remotely edit this agent configuration" +msgstr "Agent settings can be remotely edited" + +#: ../../godmode/agentes/agent_manager.php:203 +msgid "Delete agent" +msgstr "Delete agent" + +#: ../../godmode/agentes/agent_manager.php:205 +msgid "Alias" +msgstr "Alias" + +#: ../../godmode/agentes/agent_manager.php:208 +msgid "Use alias as name" msgstr "" -#: ../../enterprise/operation/services/services.list.php:73 -msgid "Service deleted successfully" -msgstr "Service deleted successfully" +#: ../../godmode/agentes/agent_manager.php:238 +msgid "Only it is show when
    the agent is saved." +msgstr "Only shown when
    the agent is saved." -#: ../../enterprise/operation/services/services.list.php:74 -msgid "Error deleting service" -msgstr "Error deleting service" +#: ../../godmode/agentes/agent_manager.php:335 +msgid "Autodisable mode" +msgstr "Autodisable mode" -#: ../../enterprise/operation/services/services.list.php:79 -msgid "Service forced successfully" -msgstr "Forcing of the service successful." +#: ../../godmode/agentes/agent_manager.php:363 +msgid "Delete remote configuration file" +msgstr "Delete remote configuration file" -#: ../../enterprise/operation/services/services.list.php:80 -msgid "Error service forced" -msgstr "Error in forcing the service." +#: ../../godmode/agentes/agent_manager.php:366 +msgid "" +"Delete this conf file implies that for restore you must reactive remote " +"config in the local agent." +msgstr "" +"Deleting this conf file means you will have to reactivate remote " +"configuration on the local agent in order to restore it." -#: ../../enterprise/operation/services/services.list.php:288 -#: ../../enterprise/operation/services/services.list.php:295 -#: ../../enterprise/operation/services/services.table_services.php:256 -#: ../../enterprise/operation/services/services.table_services.php:263 -msgid "No services defined." -msgstr "No services defined." +#: ../../godmode/agentes/agent_manager.php:381 +msgid "Agent icon for GIS Maps." +msgstr "Agent icon for GIS Maps." -#: ../../enterprise/operation/services/services.list.php:436 -#: ../../enterprise/operation/services/services.service.php:206 -msgid "SLA graph" -msgstr "SLA graph" +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 +msgid "The SNMP remote plugin doesnt seem to be installed" +msgstr "The remote SNMP plugin doesn't appear to be installed" -#: ../../enterprise/operation/services/services.service.php:102 -msgid "No Services" -msgstr "No Services" +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 +msgid "It is necessary to use some features" +msgstr "It's necessary in order to access certain features" -#: ../../enterprise/operation/services/services.service.php:216 -msgid "List of elements" -msgstr "List of elements" +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 +msgid "" +"Please, install the SNMP remote plugin (The name of the plugin must be " +"snmp_remote.pl)" +msgstr "" +"Please, install the remote SNMP plugin (the plugin must be named " +"snmp_remote.pl)" -#: ../../index.php:563 -msgid "User doesn\\'t exist." -msgstr "User does not exist" +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:253 +msgid "Remote system doesnt support host SNMP information" +msgstr "The remote system doesn't support the host's SNMP information" -#: ../../index.php:579 -msgid "User only can use the API." -msgstr "Only user can use the API" +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:338 +msgid "The number of bytes read from this device since boot" +msgstr "The number of bytes read from this device since boot" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:340 +msgid "The number of bytes written to this device since boot" +msgstr "The number of bytes written to this device since boot" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:342 +msgid "The number of read accesses from this device since boot" +msgstr "The number of read accesses from this device since boot" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:344 +msgid "The number of write accesses from this device since boot" +msgstr "The number of write accesses from this device since boot" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:519 +#, php-format +msgid "Check if the process %s is running or not" +msgstr "Check if the process %s is running or not" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:590 +msgid "Disk use information" +msgstr "Disk use information" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:661 +#, php-format +msgid "%s modules created succesfully" +msgstr "%s modules created succesfully" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:666 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:671 +#, php-format +msgid "Error creating %s modules" +msgstr "Error creating %s modules" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:685 +msgid "Modules created succesfully" +msgstr "Modules successfully created." + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 +msgid "" +"If the device is a network device, try with the SNMP Interfaces wizard" +msgstr "If it's a network device, try with the SNMP interface wizard" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:792 +msgid "Devices" +msgstr "Devices" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:795 +msgid "Temperature sensors" +msgstr "Temperature sensors" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:796 +msgid "Other SNMP data" +msgstr "Other SNMP data" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:817 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:822 +msgid "SNMP remote plugin is necessary for this feature" +msgstr "The remote SNMP plugin is necessary to run this feature" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:932 +msgid "Device" +msgstr "Device" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:980 +msgid "Temperature" +msgstr "Temperature" + +#: ../../godmode/agentes/modificar_agente.php:62 +msgid "Agents defined in Pandora" +msgstr "Agents defined in Pandora" + +#: ../../godmode/agentes/modificar_agente.php:87 +msgid "Success deleted agent." +msgstr "Success deleting agent." + +#: ../../godmode/agentes/modificar_agente.php:87 +msgid "Could not be deleted." +msgstr "Agent could not be deleted" + +#: ../../godmode/agentes/modificar_agente.php:94 +msgid "Maybe the files conf or md5 could not be deleted" +msgstr "It's possible the .conf or md5 files couldn't be deleted" + +#: ../../godmode/agentes/modificar_agente.php:154 +msgid "Show Agents" +msgstr "Show Agents" + +#: ../../godmode/agentes/modificar_agente.php:156 +msgid "Everyone" +msgstr "Everyone" + +#: ../../godmode/agentes/modificar_agente.php:481 +msgid "Remote agent configuration" +msgstr "Remote agent configuration" + +#: ../../godmode/agentes/modificar_agente.php:481 +msgid "R" +msgstr "R" + +#: ../../godmode/agentes/modificar_agente.php:597 +msgid "Edit remote config" +msgstr "Edit remote configuration" + +#: ../../godmode/agentes/modificar_agente.php:624 +msgid "Enable agent" +msgstr "Enable agent" + +#: ../../godmode/agentes/modificar_agente.php:629 +msgid "Disable agent" +msgstr "Disable agent" + +#: ../../godmode/agentes/fields_manager.php:31 +msgid "Agents custom fields manager" +msgstr "Agent's custom field manager" + +#: ../../godmode/agentes/fields_manager.php:44 +msgid "The name must not be empty" +msgstr "Name cannot be left empty" + +#: ../../godmode/agentes/fields_manager.php:47 +msgid "The name must be unique" +msgstr "Name must be unique" + +#: ../../godmode/agentes/fields_manager.php:52 +msgid "Field successfully created" +msgstr "Custom field successfully created" + +#: ../../godmode/agentes/fields_manager.php:69 +msgid "Field successfully updated" +msgstr "Field successfully updated" + +#: ../../godmode/agentes/fields_manager.php:72 +msgid "There was a problem modifying field" +msgstr "There was a problem modifying field" + +#: ../../godmode/agentes/fields_manager.php:82 +msgid "There was a problem deleting field" +msgstr "There was an issue deleting the field" + +#: ../../godmode/agentes/fields_manager.php:84 +msgid "Field successfully deleted" +msgstr "Field successfully deleted" + +#: ../../godmode/agentes/fields_manager.php:138 +msgid "Create field" +msgstr "Create field" + +#: ../../godmode/agentes/agent_incidents.php:67 +msgid "No incidents associated to this agent" +msgstr "No incidents associated to this agent" + +#: ../../godmode/agentes/module_manager.php:78 +msgid "Create a new data server module" +msgstr "Create a new data server module" + +#: ../../godmode/agentes/module_manager.php:80 +msgid "Create a new network server module" +msgstr "Create a new network server module" + +#: ../../godmode/agentes/module_manager.php:82 +msgid "Create a new plugin server module" +msgstr "Create a new plug-in server module" + +#: ../../godmode/agentes/module_manager.php:84 +msgid "Create a new WMI server module" +msgstr "Create a new WMI server module" + +#: ../../godmode/agentes/module_manager.php:86 +msgid "Create a new prediction server module" +msgstr "Create a new prediction server module" + +#: ../../godmode/agentes/module_manager.php:148 +msgid "Get more modules in Pandora FMS Library" +msgstr "Get more modules on the Pandora FMS Library" + +#: ../../godmode/agentes/module_manager.php:175 +msgid "Nice try buddy" +msgstr "Nice try, buddy!" + +#: ../../godmode/agentes/module_manager.php:272 +#, php-format +msgid "There was a problem deleting %s modules, none deleted." +msgstr "There was a problem deleting %s modules, none deleted." + +#: ../../godmode/agentes/module_manager.php:277 +msgid "All Modules deleted succesfully" +msgstr "All Modules deleted succesfully" + +#: ../../godmode/agentes/module_manager.php:281 +#, php-format +msgid "There was a problem only deleted %s modules of %s total." +msgstr "There was a problem only deleted %s modules of %s total." + +#: ../../godmode/agentes/module_manager.php:569 +msgid "D." +msgstr "D." + +#: ../../godmode/agentes/module_manager.php:716 +msgid "Non initialized module" +msgstr "Non initialised module" + +#: ../../godmode/agentes/module_manager.php:749 +msgid "Enable module" +msgstr "Enable module" + +#: ../../godmode/agentes/module_manager.php:754 +msgid "Disable module" +msgstr "Disable module" + +#: ../../godmode/agentes/module_manager.php:769 +msgid "Normalize" +msgstr "Normalize" + +#: ../../godmode/agentes/module_manager.php:775 +msgid "Normalize (Disabled)" +msgstr "Normalize (Disabled)" + +#: ../../godmode/agentes/module_manager.php:789 +msgid "Create network component (Disabled)" +msgstr "Create network component (Disabled)" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:91 +msgid "Source module" +msgstr "Source module" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:119 +#: ../../godmode/agentes/module_manager_editor_prediction.php:144 +msgid "Select Module" +msgstr "Select Module" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:154 +msgid "Daily" +msgstr "Daily" + +#: ../../godmode/agentes/planned_downtime.list.php:46 +msgid "An error occurred while migrating the malformed planned downtimes" +msgstr "An error occurred while migrating faulty planned downtimes" + +#: ../../godmode/agentes/planned_downtime.list.php:47 +msgid "Please run the migration again or contact with the administrator" +msgstr "Please run the migration again or contact the administrator" + +#: ../../godmode/agentes/planned_downtime.list.php:79 +msgid "An error occurred stopping the planned downtime" +msgstr "An error occurred when attempting to stop planned downtime." + +#: ../../godmode/agentes/planned_downtime.list.php:101 +msgid "This planned downtime is running" +msgstr "This planned downtime is running" + +#: ../../godmode/agentes/planned_downtime.list.php:154 +msgid "Execution type" +msgstr "Execution type" + +#: ../../godmode/agentes/planned_downtime.list.php:156 +msgid "Show past downtimes" +msgstr "Show past downtimes" + +#: ../../godmode/agentes/planned_downtime.list.php:391 +msgid "Name #Ag." +msgstr "Name #Ag." + +#: ../../godmode/agentes/planned_downtime.list.php:397 +#: ../../godmode/agentes/planned_downtime.list.php:446 +msgid "Running" +msgstr "Running" + +#: ../../godmode/agentes/planned_downtime.list.php:400 +#: ../../godmode/agentes/planned_downtime.list.php:456 +msgid "Stop downtime" +msgstr "Stop downtime" + +#: ../../godmode/agentes/planned_downtime.list.php:433 +msgid "once" +msgstr "once" + +#: ../../godmode/agentes/planned_downtime.list.php:442 +msgid "Not running" +msgstr "Not running" + +#: ../../godmode/agentes/planned_downtime.list.php:535 +msgid "" +"WARNING: If you delete this planned downtime, it will not be taken into " +"account in future SLA reports" +msgstr "" +"WARNING: If you delete this planned downtime, it will not be taken into " +"account in future SLA reports" + +#: ../../godmode/agentes/planned_downtime.list.php:541 +msgid "WARNING: There are malformed planned downtimes" +msgstr "WARNING: there are faulty planned downtimes" + +#: ../../godmode/agentes/planned_downtime.list.php:541 +msgid "Do you want to migrate automatically the malformed items?" +msgstr "Do you want to automatically migrate the faulty items" + +#: ../../godmode/agentes/agent_template.php:69 +msgid "Created by template " +msgstr "Created from a template " + +#: ../../godmode/agentes/agent_template.php:157 +msgid "Error adding modules" +msgstr "Error adding modules" + +#: ../../godmode/agentes/agent_template.php:159 +msgid "Error adding modules. The following errors already exists: " +msgstr "Error adding modules. The following errors already exist: " + +#: ../../godmode/agentes/agent_template.php:162 +msgid "Modules successfully added" +msgstr "Modules successfully added" + +#: ../../godmode/agentes/agent_template.php:189 +msgid "Assign" +msgstr "Assign" + +#: ../../godmode/tag/tag.php:80 +msgid "Number of modules" +msgstr "Number of modules" + +#: ../../godmode/tag/tag.php:82 +msgid "Number of policy modules" +msgstr "Number of policy modules" + +#: ../../godmode/tag/tag.php:100 ../../godmode/tag/edit_tag.php:53 +#: ../../godmode/tag/edit_tag.php:64 +msgid "List tags" +msgstr "List tags" + +#: ../../godmode/tag/tag.php:110 ../../godmode/tag/edit_tag.php:68 +msgid "Tags configuration" +msgstr "Tag settings" + +#: ../../godmode/tag/tag.php:121 +msgid "Error deleting tag" +msgstr "Error deleting tag" + +#: ../../godmode/tag/tag.php:125 +msgid "Successfully deleted tag" +msgstr "Tag successfully deleted" + +#: ../../godmode/tag/tag.php:199 +msgid "Tag name" +msgstr "Tag name" + +#: ../../godmode/tag/tag.php:201 +msgid "Detail information" +msgstr "Detail information" + +#: ../../godmode/tag/tag.php:202 +msgid "Number of modules affected" +msgstr "Number of modules affected" + +#: ../../godmode/tag/tag.php:222 +msgid "Tag details" +msgstr "Tag details" + +#: ../../godmode/tag/tag.php:249 +#, php-format +msgid "Emails for the tag: %s" +msgstr "E-mails for the tag: %s" + +#: ../../godmode/tag/tag.php:264 +#, php-format +msgid "Phones for the tag: %s" +msgstr "Phone numbers for the tag: %s" + +#: ../../godmode/tag/tag.php:282 +msgid "No tags defined" +msgstr "No tags defined" + +#: ../../godmode/tag/tag.php:298 +msgid "Create tag" +msgstr "Create tag" + +#: ../../godmode/tag/edit_tag.php:92 +msgid "Error updating tag" +msgstr "Error updating tag" + +#: ../../godmode/tag/edit_tag.php:96 +msgid "Successfully updated tag" +msgstr "Successfully updated tag" + +#: ../../godmode/tag/edit_tag.php:122 +msgid "Error creating tag" +msgstr "Error creating tag" + +#: ../../godmode/tag/edit_tag.php:128 +msgid "Successfully created tag" +msgstr "Successfully created tag" + +#: ../../godmode/tag/edit_tag.php:161 +msgid "Update Tag" +msgstr "Update Tag" + +#: ../../godmode/tag/edit_tag.php:164 +msgid "Create Tag" +msgstr "Create Tag" + +#: ../../godmode/tag/edit_tag.php:187 +msgid "Hyperlink to help information that has to exist previously." +msgstr "Hyperlink to help information that has to exist previously." + +#: ../../godmode/tag/edit_tag.php:197 +msgid "Associated Email direction to use later in alerts associated to Tags." +msgstr "" +"Associated E-mail direction to use later in alerts associated to Tags." + +#: ../../godmode/tag/edit_tag.php:207 +msgid "Associated phone number to use later in alerts associated to Tags." +msgstr "Phone number linked for use later in alerts related to tags." #~ msgid "Welcome to Pandora FMS Web Console" #~ msgstr "Welcome to Pandora FMS Web Console" +#~ msgid "Global health" +#~ msgstr "Global health" + +#~ msgid "Stacked" +#~ msgstr "Stacked" + +#~ msgid "You don't have access" +#~ msgstr "You don't have access" + +#~ msgid "Layout" +#~ msgstr "Layout" + +#~ msgid "Simple" +#~ msgstr "Simple" + +#~ msgid "Operator" +#~ msgstr "Operator" + #~ msgid "Criticity" #~ msgstr "Criticity" +#~ msgid ">=" +#~ msgstr ">=" + +#~ msgid "<" +#~ msgstr "<" + +#~ msgid "Upload file" +#~ msgstr "Upload file" + +#~ msgid "Task" +#~ msgstr "Task" + +#~ msgid "Zoom" +#~ msgstr "Zoom" + #~ msgid "This user doesn't have any assigned profile/group" #~ msgstr "This user doesn't have any assigned profile/group" -#~ msgid "Main event view" -#~ msgstr "Main event view" - #~ msgid "Autorefresh time" #~ msgstr "Autorefresh time" @@ -35740,6 +23759,12 @@ msgstr "Only user can use the API" #~ msgid "Map options" #~ msgstr "Map options" +#~ msgid "INFO" +#~ msgstr "INFO" + +#~ msgid "ERROR" +#~ msgstr "ERROR" + #~ msgid "Assigned user" #~ msgstr "Assigned user" @@ -35767,6 +23792,9 @@ msgstr "Only user can use the API" #~ msgid "said" #~ msgstr "said" +#~ msgid "Hours" +#~ msgstr "Hours" + #~ msgid "Not closed" #~ msgstr "Not closed" @@ -35788,6 +23816,9 @@ msgstr "Only user can use the API" #~ msgid "New Incident" #~ msgstr "New Incident" +#~ msgid "Tracking" +#~ msgstr "Tracking" + #~ msgid "Generic upload error" #~ msgstr "Generic upload error" @@ -35797,6 +23828,18 @@ msgstr "Only user can use the API" #~ msgid "There are no SNMP filters" #~ msgstr "There are no SNMP filters" +#~ msgid "Decrease Weight" +#~ msgstr "Decrease Weight" + +#~ msgid "Increase Weight" +#~ msgstr "Increase Weight" + +#~ msgid "Query SQL" +#~ msgstr "SQL query" + +#~ msgid "SQL preview" +#~ msgstr "SQL preview" + #~ msgid "Items filter" #~ msgstr "Items filter" @@ -35833,6 +23876,9 @@ msgstr "Only user can use the API" #~ msgid "Not executed" #~ msgstr "Not executed" +#~ msgid "No agent name specified" +#~ msgstr "No agent name specified" + #~ msgid "There is already an agent in the database with this name" #~ msgstr "There is already an agent in the database with this name" @@ -35840,6 +23886,36 @@ msgstr "Only user can use the API" #~ msgid "Deleted data above %d" #~ msgstr "Deleted data above %d" +#~ msgid "Data Copy" +#~ msgstr "Data Copy" + +#~ msgid "No selected agents to copy" +#~ msgstr "No selected agents to copy" + +#~ msgid "No source agent selected" +#~ msgstr "No source agent selected" + +#~ msgid "Making copy of configuration file for" +#~ msgstr "Making copy of configuration file for" + +#~ msgid "Remote configuration management" +#~ msgstr "Remote configuration management" + +#~ msgid "Source group" +#~ msgstr "Source group" + +#~ msgid "To agent(s):" +#~ msgstr "To agent(s):" + +#~ msgid "Replicate configuration" +#~ msgstr "Replicate configuration" + +#~ msgid "Duplicate config" +#~ msgstr "Duplicate config" + +#~ msgid "Manage modules" +#~ msgstr "Manage modules" + #~ msgid "No action selected" #~ msgstr "No action selected" @@ -35896,6 +23972,9 @@ msgstr "Only user can use the API" #~ msgid "Ping to " #~ msgstr "Ping to " +#~ msgid "Server connection failed" +#~ msgstr "Server connection failed" + #~ msgid "Inside limits" #~ msgstr "Inside limits" @@ -35908,6 +23987,24 @@ msgstr "Only user can use the API" #~ msgid "Map summary" #~ msgstr "Map summary" +#~ msgid "Go to agent detail" +#~ msgstr "Go to agent detail" + +#~ msgid "Copied " +#~ msgstr "Copied " + +#~ msgid " md5 file" +#~ msgstr " md5 file" + +#~ msgid "Error copying md5 file " +#~ msgstr "Error copying md5 file " + +#~ msgid " config file" +#~ msgstr " config file" + +#~ msgid "Error copying " +#~ msgstr "Error copying " + #~ msgid "Time compare" #~ msgstr "Time compare" @@ -35941,9 +24038,15 @@ msgstr "Only user can use the API" #~ msgid "License info" #~ msgstr "Licence info" +#~ msgid "Incorrect format in Subnet field" +#~ msgstr "Wrong format in Subnet field" + #~ msgid "Quiet: Disable modules that we indicate below." #~ msgstr "Quiet: Disable the modules indicated below." +#~ msgid "Module macros" +#~ msgstr "Module macros" + #~ msgid "Cron" #~ msgstr "Cron" @@ -35956,6 +24059,13 @@ msgstr "Only user can use the API" #~ msgid "Massive alert actions addition" #~ msgstr "Massive alert actions addition" +#~ msgid "" +#~ "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " +#~ "Single value, each Custom OIDs/Datas." +#~ msgstr "" +#~ "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " +#~ "Single value, each Custom OIDs/Datas." + #~ msgid "Paginate module view" #~ msgstr "Paginated module view" @@ -35972,15 +24082,1244 @@ msgstr "Only user can use the API" #~ "of agents and modules running). To disable it, please remove remote server " #~ "address from the Update Manager plugin setup." -#~ msgid "Package not updated." -#~ msgstr "Package not updated." +#~ msgid "Policies operations" +#~ msgstr "Policies operations" + +#~ msgid "SNMP operations" +#~ msgstr "SNMP operations" + +#~ msgid "Satellite operations" +#~ msgstr "Satellite Operations" + +#~ msgid "Inventory modules" +#~ msgstr "Inventory modules" + +#~ msgid "Local components" +#~ msgstr "Local components" + +#~ msgid "Manage policies" +#~ msgstr "Manage policies" + +#~ msgid "Skins" +#~ msgstr "Skins" + +#~ msgid "Export targets" +#~ msgstr "Export targets" + +#~ msgid "Event alerts" +#~ msgstr "Event alerts" + +#~ msgid "Log Collector" +#~ msgstr "Log Collector" + +#~ msgid "Error updating export target" +#~ msgstr "Error updating export target" + +#~ msgid "Successfully updated export target" +#~ msgstr "Successfully updated export target" + +#~ msgid "Error deleting export target" +#~ msgstr "Error deleting export target" + +#~ msgid "Successfully deleted export target" +#~ msgstr "Successfully deleted export target" + +#~ msgid "" +#~ "Can't be created export target: User and password must be filled with FTP " +#~ "mode" +#~ msgstr "" +#~ "Can't be created export target: User and password must be filled with FTP " +#~ "mode" + +#~ msgid "Preffix" +#~ msgstr "Preffix" + +#~ msgid "Transfer mode" +#~ msgstr "Transfer mode" + +#~ msgid "Target directory" +#~ msgstr "Target directory" + +#~ msgid "Extra options" +#~ msgstr "Extra options" + +#~ msgid "Create Service" +#~ msgstr "Create Service" + +#~ msgid "Service created successfully" +#~ msgstr "Service created successfully" + +#~ msgid "Error creating service" +#~ msgstr "Error creating service" + +#~ msgid "Service updated successfully" +#~ msgstr "Service updated successfully" + +#~ msgid "Error updating service" +#~ msgstr "Error updating service" + +#~ msgid "Not found" +#~ msgstr "Not found" + +#~ msgid "New Service" +#~ msgstr "New Service" + +#~ msgid "Config Service" +#~ msgstr "Config Service" + +#~ msgid "Config Elements" +#~ msgstr "Config Elements" + +#~ msgid "View Service" +#~ msgstr "View Service" + +#~ msgid "Service map" +#~ msgstr "Service map" + +#~ msgid "" +#~ "This values are by default because the service is auto calculate mode." +#~ msgstr "" +#~ "This values are by default because the service is auto calculate mode." + +#~ msgid "Agent to store data" +#~ msgstr "Agent to store data" + +#~ msgid "S.L.A. interval" +#~ msgstr "S.L.A. interval" + +#~ msgid "S.L.A. limit" +#~ msgstr "S.L.A. limit" + +#~ msgid "Please set limit between 0 to 100." +#~ msgstr "Please set limit between 0 to 100." + +#~ msgid "Warning Service alert" +#~ msgstr "Warning Service alert" + +#~ msgid "Critical Service alert" +#~ msgstr "Critical Service alert" + +#~ msgid "SLA critical service alert" +#~ msgstr "SLA critical service alert" + +#~ msgid "Edit service elements" +#~ msgstr "Edit service elements" + +#~ msgid "Error empty module" +#~ msgstr "Error empty module" + +#~ msgid "Error empty agent" +#~ msgstr "Error empty agent" + +#~ msgid "Error empty service" +#~ msgstr "Error empty service" + +#~ msgid "Service element created successfully" +#~ msgstr "Service element created successfully" + +#~ msgid "Error creating service element" +#~ msgstr "Error creating service item" + +#~ msgid "Service element updated successfully" +#~ msgstr "Service item updated successfully" + +#~ msgid "Error updating service element" +#~ msgstr "Error updating service item" + +#~ msgid "Service element deleted successfully" +#~ msgstr "Service item deleted successfully" + +#~ msgid "Error deleting service element" +#~ msgstr "Error deleting service item" + +#~ msgid "Edit element service" +#~ msgstr "Edit element service" + +#~ msgid "Create element service" +#~ msgstr "Create element service" + +#~ msgid "First select an agent" +#~ msgstr "First select an agent" + +#~ msgid "Critical weight" +#~ msgstr "Critical weight" + +#~ msgid "Warning weight" +#~ msgstr "Warning weight" + +#~ msgid "Unknown weight" +#~ msgstr "Unknown weight" + +#~ msgid "Ok weight" +#~ msgstr "Ok weight" + +#~ msgid "Show extended info" +#~ msgstr "Show extended info" + +#~ msgid "" +#~ "Maybe delete the extended data or the audit data is previous to table " +#~ "tsession_extended." +#~ msgstr "" +#~ "Maybe delete the extended data or the audit data is previous to table " +#~ "tsession_extended." + +#~ msgid "Security check is ok." +#~ msgstr "Security check is ok." + +#~ msgid "Security check is fail." +#~ msgstr "Security check failed" + +#~ msgid "Extended info:" +#~ msgstr "Extended info:" + +#~ msgid "The changes on this field are linked with the configuration data." +#~ msgstr "The changes on this field are linked with the configuration data." + +#~ msgid "Using local component" +#~ msgstr "Using local component" + +#~ msgid "Show configuration data" +#~ msgstr "Show configuration data" + +#~ msgid "Hide configuration data" +#~ msgstr "Hide configuration data" + +#~ msgid "Data configuration" +#~ msgstr "Data configuration" + +#~ msgid "Load basic" +#~ msgstr "Load basic" + +#~ msgid "Load a basic structure on data configuration" +#~ msgstr "Load a basic structure on data configuration" + +#~ msgid "Check" +#~ msgstr "Check" + +#~ msgid "Check the correct structure of the data configuration" +#~ msgstr "Check the correct structure of the data configuration" + +#~ msgid "First line must be \"module_begin\"" +#~ msgstr "First line must be \"module_begin\"" + +#~ msgid "Data configuration is empty" +#~ msgstr "Data configuration is empty" + +#~ msgid "Last line must be \"module_end\"" +#~ msgstr "Last line must be \"module_end\"" + +#~ msgid "" +#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " +#~ "data configuration" +#~ msgstr "" +#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " +#~ "data configuration" + +#~ msgid "" +#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " +#~ "data configuration" +#~ msgstr "" +#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " +#~ "data configuration" + +#~ msgid "Type is wrong. Please set a correct type" +#~ msgstr "Type is wrong. Please set a correct type" + +#~ msgid "There is a line with a unknown token 'token_fail'." +#~ msgstr "There is a line with a unknown token 'token_fail'." + +#~ msgid "Error in the syntax, please check the data configuration." +#~ msgstr "Error in the syntax, please check the data configuration." + +#~ msgid "Data configuration are built correctly" +#~ msgstr "Data configuration are built correctly" + +#~ msgid "Plug-in deleted succesfully" +#~ msgstr "Plug-in deleted succesfully" + +#~ msgid "Plug-in cannot be deleted" +#~ msgstr "Plug-in cannot be deleted" + +#~ msgid "Plug-in added succesfully" +#~ msgstr "Plug-in added succesfully" + +#~ msgid "Plug-in cannot be added" +#~ msgstr "Plug-in cannot be added" + +#~ msgid "Plug-in disabled succesfully" +#~ msgstr "Plug-in disabled succesfully" + +#~ msgid "Plug-in cannot be disabled" +#~ msgstr "Plug-in cannot be disabled" + +#~ msgid "Plug-in enabled succesfully" +#~ msgstr "Plug-in enabled succesfully" + +#~ msgid "Plug-in cannot be enabled" +#~ msgstr "Plug-in cannot be enabled" + +#~ msgid "New plug-in" +#~ msgstr "New plug-in" + +#~ msgid "Successfully added inventory module" +#~ msgstr "Inventory module added successfully" + +#~ msgid "Error adding inventory module" +#~ msgstr "Error adding inventory module" + +#~ msgid "Successfully deleted inventory module" +#~ msgstr "Successfully deleted inventory module" + +#~ msgid "Error deleting inventory module" +#~ msgstr "Error deleting inventory module" + +#~ msgid "Successfully forced inventory module" +#~ msgstr "Successfully forced inventory module" + +#~ msgid "Error forcing inventory module" +#~ msgstr "Error forcing inventory module" + +#~ msgid "Successfully updated inventory module" +#~ msgstr "Successfully updated inventory module" + +#~ msgid "Error updating inventory module" +#~ msgstr "Error updating inventory module" + +#~ msgid "Inventory module error" +#~ msgstr "Inventory module error" + +#~ msgid "Target" +#~ msgstr "Target" + +#~ msgid "7 days" +#~ msgstr "7 days" + +#~ msgid "Update all" +#~ msgstr "Update all" + +#~ msgid "Manager configuration > New" +#~ msgstr "Manager configuration > New" + +#~ msgid "Manager configuration > Edit " +#~ msgstr "Manager configuration > Edit " + +#~ msgid "Unable to create the collection" +#~ msgstr "Unable to create the collection" + +#~ msgid "Invalid characters in short name" +#~ msgstr "Invalid characters in short name" + +#~ msgid "Empty name" +#~ msgstr "Empty name" + +#~ msgid "Unable to create the collection." +#~ msgstr "Unable to create the collection." + +#~ msgid "Correct create collection" +#~ msgstr "Correct create collection" + +#~ msgid "Unable to edit the collection, empty name." +#~ msgstr "Unable to edit the collection, empty name." + +#~ msgid "Unable to edit the collection." +#~ msgstr "Unable to edit the collection." + +#~ msgid "Recreate file" +#~ msgstr "Create file again" + +#~ msgid "Short name:" +#~ msgstr "Short name:" + +#~ msgid "" +#~ "The collection's short name is the name of dir in attachment dir and the " +#~ "package collection." +#~ msgstr "" +#~ "The collection's short name is the name of dir in attachment dir and the " +#~ "package collection." + +#~ msgid "Short name must contain only alphanumeric characters, - or _ ." +#~ msgstr "Short name must contain only alphanumeric characters, - or _ ." + +#~ msgid "Empty for default short name fc_X where X is the collection id." +#~ msgstr "Empty for default short name fc_X where X is the collection id." + +#~ msgid "Synthetic arithmetic" +#~ msgstr "Synthetic arithmetic" + +#~ msgid "Synthetic average" +#~ msgstr "Synthetic average" + +#~ msgid "Group filter" +#~ msgstr "Group filter" + +#~ msgid "Fixed value" +#~ msgstr "Fixed value" + +#~ msgid "Add module to operation as add" +#~ msgstr "Add module to operation as add" + +#~ msgid "Add module to operations as deduct" +#~ msgstr "Add module to operations as deduct" + +#~ msgid "Add module to operations as multiplicate " +#~ msgstr "Add module to operations as multiplicate " + +#~ msgid "Add module to operations as divide" +#~ msgstr "Add module to operations as divide" + +#~ msgid "Remove selected modules" +#~ msgstr "Remove selected modules" + +#~ msgid "Add module to average operation" +#~ msgstr "Add module to average operation" + +#~ msgid "Remove selected modules from operations stack" +#~ msgstr "Remove selected modules from operations stack" + +#~ msgid "Move down selected modules" +#~ msgstr "Move down selected modules" + +#~ msgid "Move up selected modules" +#~ msgstr "Move up selected modules" + +#~ msgid "Select Service" +#~ msgstr "Select Service" + +#~ msgid "Netflow filter" +#~ msgstr "Netflow filter" + +#~ msgid "Select filter" +#~ msgstr "Select filter" + +#~ msgid "Error: The conf file of agent is not readble." +#~ msgstr "Error: The conf file of agent is not readble." + +#~ msgid "Error: The conf file of agent is not writable." +#~ msgstr "Error: The conf file of agent is not writable." + +#~ msgid "Add module" +#~ msgstr "Add module" + +#~ msgid "No module was found" +#~ msgstr "No module was found" + +#~ msgid "Delete remote conf agent files in Pandora" +#~ msgstr "Delete remote conf agent files in Pandora" + +#~ msgid "This agent have not a remote configuration, please set it." +#~ msgstr "This agent has no remote configuration, please set it." + +#~ msgid "Succesful add the collection" +#~ msgstr "Success in adding the collection." + +#~ msgid "Unsuccesful add the collection" +#~ msgstr "Adding the collection was unsuccessful." + +#~ msgid "Successful create collection package." +#~ msgstr "Successful in creating collection package." + +#~ msgid "Can not create collection package." +#~ msgstr "Cannot create collection package." + +#~ msgid "Short Name" +#~ msgstr "Short Name" + +#~ msgid "Show files" +#~ msgstr "Show files" + +#~ msgid "Dir" +#~ msgstr "Dir" + +#~ msgid "Create a new web Server module" +#~ msgstr "Create a new webserver module" + +#~ msgid "Files in " +#~ msgstr "Files in " + +#~ msgid "Back to file explorer" +#~ msgstr "Back to file explorer" + +#~ msgid "Correct update file." +#~ msgstr "Correct update file." + +#~ msgid "Incorrect update file." +#~ msgstr "Incorrect update file." + +#~ msgid "Please, first save a new collection before to upload files." +#~ msgstr "Please save a new collection first before uploading files." + +#~ msgid "Web checks" +#~ msgstr "Web Checks" + +#~ msgid "Load a basic structure on Web Checks" +#~ msgstr "Load a basic structure on Web Checks" + +#~ msgid "Check the correct structure of the WebCheck" +#~ msgstr "Check the correct structure of the WebCheck" + +#~ msgid "Requests" +#~ msgstr "Requests" + +#~ msgid "Agent browser id" +#~ msgstr "Agent browser id" + +#~ msgid "Proxy URL" +#~ msgstr "Proxy URL" + +#~ msgid "HTTP auth (login)" +#~ msgstr "HTTP auth (login)" + +#~ msgid "HTTP auth (pass)" +#~ msgstr "HTTP auth (pass)" + +#~ msgid "HTTP auth (server)" +#~ msgstr "HTTP auth (server)" + +#~ msgid "HTTP auth (realm)" +#~ msgstr "HTTP auth (realm)" + +#~ msgid "First line must be \"task_begin\"" +#~ msgstr "First line must be \"task_begin\"" + +#~ msgid "Webchecks configuration is empty" +#~ msgstr "Webchecks configuration is empty" + +#~ msgid "Last line must be \"task_end\"" +#~ msgstr "Last line must be \"task_end\"" + +#~ msgid "Web checks are built correctly" +#~ msgstr "Web checks are built correctly" + +#~ msgid "Success: recreate file" +#~ msgstr "Success in recreating file" + +#~ msgid "Error: recreate file " +#~ msgstr "Error: recreate file " + +#~ msgid "Collections Management" +#~ msgstr "Collections Management" + +#~ msgid "Manager collection" +#~ msgstr "Manager collection" + +#~ msgid "Are you sure to delete?" +#~ msgstr "Are you sure you want to delete ?" + +#~ msgid "Delete collection" +#~ msgstr "Delete collection" + +#~ msgid "Re-Apply changes" +#~ msgstr "Reapply changes" + +#~ msgid "Apply changes" +#~ msgstr "Apply changes" + +#~ msgid "Edit template" +#~ msgstr "Edit template" + +#~ msgid "Create template" +#~ msgstr "Create template" + +#~ msgid "List templates" +#~ msgstr "List templates" + +#~ msgid "Graph template editor" +#~ msgstr "Graph template editor" + +#~ msgid "Exact match" +#~ msgstr "Exact match" + +#~ msgid "Elements to apply" +#~ msgstr "Elements to apply" + +#~ msgid "SLA min value" +#~ msgstr "SLA min value" + +#~ msgid "SLA min Value" +#~ msgstr "SLA min value" + +#~ msgid "SLA max value" +#~ msgstr "SLA max value" + +#~ msgid "SLA max Value" +#~ msgstr "SLA max value" + +#~ msgid "SLA Limit %" +#~ msgstr "SLA limit %" + +#~ msgid "SLA Limit Value" +#~ msgstr "SLA limit value" + +#~ msgid "Sum" +#~ msgstr "Sum" + +#~ msgid "Graph template management" +#~ msgstr "Graph template management" + +#~ msgid "There are no defined graph templates" +#~ msgstr "There are no defined graph templates" + +#~ msgid "Cleanup sucessfully" +#~ msgstr "Cleanup sucessful." + +#~ msgid "Cleanup error" +#~ msgstr "Cleanup error" + +#~ msgid "Wizard template" +#~ msgstr "Wizard template" + +#~ msgid "Clean up template" +#~ msgstr "Clean up template" + +#~ msgid "Filter agent" +#~ msgstr "Filter agent" + +#~ msgid "Agents available" +#~ msgstr "Agents available" + +#~ msgid "Select all" +#~ msgstr "Select all" + +#~ msgid "Agents to apply" +#~ msgstr "Agents to apply" + +#~ msgid "Add agents to template" +#~ msgstr "Add agents to template" + +#~ msgid "Undo agents to template" +#~ msgstr "Undo agents to template" + +#~ msgid "Apply template" +#~ msgstr "Apply template" + +#~ msgid "Please set template distinct than " +#~ msgstr "Please set template distinct from " + +#~ msgid "" +#~ "This will be delete all reports created in previous template applications. " +#~ "Do you want to continue?" +#~ msgstr "" +#~ "This will delete all reports created in previous template applications. Do " +#~ "you want to continue ?" + +#~ msgid "Custom Mysql template builder" +#~ msgstr "Custom MySQL template builder" + +#~ msgid "Create custom SQL" +#~ msgstr "Create custom SQL" + +#~ msgid ": Create new custom" +#~ msgstr "Create new custom :" #~ msgid ": Edit: " #~ msgstr "Edit : " +#~ msgid "Successfully operation" +#~ msgstr "Operation successful." + +#~ msgid "Could not be operation" +#~ msgstr "Cannot not be an operation." + +#~ msgid "Icon preview" +#~ msgstr "Icon preview" + +#~ msgid "The services list is empty" +#~ msgstr "The services list is empty" + +#~ msgid "Sucessfully applied" +#~ msgstr "Sucessfully applied." + +#~ msgid "reports" +#~ msgstr "Reports" + +#~ msgid "items" +#~ msgstr "Items" + +#~ msgid "Could not be applied" +#~ msgstr "Could not be applied." + +#~ msgid "Create report per agent" +#~ msgstr "Create report per agent" + +#~ msgid "" +#~ "Left in blank if you want to use default name: Template name - agents (num " +#~ "agents) - Date" +#~ msgstr "" +#~ "Please leave it blank if you intend to use the default name: Template name - " +#~ "agents (num agents) - Date" + +#~ msgid "" +#~ "Case insensitive regular expression for agent name. For example: Network.* " +#~ "will match with the following agent names: network_agent1, NetworK CHECKS" +#~ msgstr "" +#~ "Case insensitive regular expression for agent name, e.g. Network.* will " +#~ "match with the following agent names : network_agent1, NetworK CHECKS" + +#~ 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 "" +#~ "Case insensitive regular expression or string for module name, e.g. if you " +#~ "use this field with \"Module exact match\" enabled then this field has to be " +#~ "filled out with the literal string of the module name, if not you can use a " +#~ "regular expression, e.g. *usage.* will match: cpu_usage, vram usage in " +#~ "machine 1." + +#~ msgid "Module exact match" +#~ msgstr "Module exact match" + +#~ msgid "Check it if you want to match module name literally" +#~ msgstr "Check if you want to literally match module name." + +#~ msgid "Modules to match" +#~ msgstr "Modules to match" + +#~ msgid "Select the modules to match when create a report for agents" +#~ msgstr "Select the modules to match when creating a report for agents." + +#~ msgid "Modules to match (Free text)" +#~ msgstr "Modules to match (Free text)" + +#~ msgid "Free text to filter the modules of agents when apply this template." +#~ msgstr "" +#~ "Free text to filter the modules of agents when applying this template." + +#~ msgid "Create a graph for each agent" +#~ msgstr "Create a graph for each agent" + +#~ 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 "" +#~ "If this is checked, the regexp or name of modules match only once to each " +#~ "agent, instead of creating a big graph with all modules from all agents." + +#~ msgid "Please save the SLA template for start to add items in this list." +#~ msgstr "" +#~ "Please save the SLA template before starting to add items to this list." + +#~ msgid "Not literally" +#~ msgstr "Not literally" + +#~ msgid "" +#~ "Case insensitive regular expression for agent name. For example: Network* " +#~ "will match with the following agent names: network_agent1, NetworK CHECKS" +#~ msgstr "" +#~ "Case insensitive regular expression for agent name. For example: Network* " +#~ "will match with the following agent names: network_agent1, NetworK CHECKS" + +#~ msgid "Please save the template to start adding items into the list." +#~ msgstr "Please save the template to start adding items to the list." + +#~ msgid "Template updated successfully" +#~ msgstr "Template updated successfully." + +#~ msgid "Error updating template" +#~ msgstr "Error updating template" + +#~ msgid "3 hours" +#~ msgstr "3 hours" + +#~ msgid "4 days" +#~ msgstr "4 days" + +#~ msgid "Policies Management" +#~ msgstr "Policies Management" + +#~ msgid "All policy agents added to delete queue" +#~ msgstr "All policy agents added to delete queue." + +#~ msgid "Policy agents cannot be added to the delete queue" +#~ msgstr "Policy agents cannot be added to the delete queue." + +#~ msgid "a" +#~ msgstr "a" + +#~ msgid "Policy updated" +#~ msgstr "Policy updated." + +#~ msgid "Pending update policy only database" +#~ msgstr "Pending update policy only database" + +#~ msgid "Pending update policy" +#~ msgstr "Pending update policy" + +#~ msgid "Linking" +#~ msgstr "Linking" + +#~ msgid "External alerts" +#~ msgstr "External alerts" + +#~ msgid "Queue" +#~ msgstr "Queue" + +#~ msgid "A policy with agents cannot be deleted. Purge it first" +#~ msgstr "A policy with agents cannot be deleted. Please purge it first." + +#~ msgid "Deleting all policy agents" +#~ msgstr "Deleting all policy agents" + +#~ msgid "All the policy agents will be deleted" +#~ msgstr "All the policy agents will be deleted." + +#~ msgid "Delete all agents" +#~ msgstr "Delete all agents" + +#~ msgid "" +#~ "If you change this description, you must change into the text of Data " +#~ "configuration." +#~ msgstr "" +#~ "If you change this description, you must change to the text of Data " +#~ "configuration." + +#~ msgid "Could not be added module(s). You must select a policy" +#~ msgstr "Module(s) could not be added. You must select a policy first." + +#, php-format +#~ msgid "Successfully added module(s) (%s/%s) to policy %s" +#~ msgstr "Successfully added module(s) (%s/%s) to policy %s" + +#, php-format +#~ msgid "Could not be added module(s) (%s/%s) to policy %s" +#~ msgstr "module(s) could not be added (%s/%s) to policy %s." + +#~ msgid "Successfully added module." +#~ msgstr "Module successfully added." + +#~ msgid "Could not be added module." +#~ msgstr "Module could not be added." + +#~ msgid "" +#~ "The module type in Data configuration is empty, take from combo box of form." +#~ msgstr "" +#~ "The module type in Data configuration is empty, take it from the combo box " +#~ "of form." + +#~ msgid "" +#~ "The module name in Data configuration is empty, take from text field of form." +#~ msgstr "" +#~ "The module name in Data configuration is empty, take it from the text field " +#~ "of form." + +#~ msgid "" +#~ "Successfully added to delete pending modules. Will be deleted in the next " +#~ "policy application." +#~ msgstr "" +#~ "Successfully added to modules pending for deletion. They will be deleted in " +#~ "the next policy application." + +#~ msgid "Successfully reverted deletion" +#~ msgstr "Reverting deletion successful." + +#~ msgid "Could not be reverted" +#~ msgstr "Could not be reverted." + +#~ msgid "Successfully duplicate the module." +#~ msgstr "Duplication of the module successful." + +#~ msgid "Local component" +#~ msgstr "Local component" + +#~ msgid "Undo deletion" +#~ msgstr "Undo deletion" + +#~ msgid "Copy selected modules to policy: " +#~ msgstr "Copy selected modules to policy : " + #~ msgid "Variable" #~ msgstr "Variable" +#~ msgid "Are you sure to copy modules into policy?\\n" +#~ msgstr "Are you sure to copy modules into policy ? \\n" + +#~ msgid "Please select any module to copy" +#~ msgstr "Please select any module to copy" + +#~ msgid "" +#~ "Successfully added to delete pending agents. Will be deleted in the next " +#~ "policy application." +#~ msgstr "" +#~ "Successfully added to agents pending for deletion. They will be deleted in " +#~ "the next policy application." + +#~ msgid "Successfully added to delete queue" +#~ msgstr "Successfully added to delete queue." + +#~ msgid "Could not be added to delete queue" +#~ msgstr "Could not be added to the delete queue." + +#~ msgid "Successfully deleted from delete pending agents" +#~ msgstr "Successfully deleted from agents pending deletion." + +#~ msgid "Could not be deleted from delete pending agents" +#~ msgstr "Could not be deleted from agents pending deletion" + +#~ msgid "Agents in Policy" +#~ msgstr "Agents in Policy" + +#~ msgid "Add agents to policy" +#~ msgstr "Add agents to policy" + +#~ msgid "Delete agents from policy" +#~ msgstr "Delete agents from policy" + +#~ msgid "Applied" +#~ msgstr "Applied" + +#~ msgid "Not applied" +#~ msgstr "Not applied" + +#~ msgid "R." +#~ msgstr "R." + +#~ msgid "Unlinked modules" +#~ msgstr "Unlinked modules" + +#~ msgid "U." +#~ msgstr "U." + +#~ msgid "Last application" +#~ msgstr "Last application" + +#~ msgid "Add to delete queue" +#~ msgstr "Add to delete queue" + +#~ msgid "This agent can not be remotely configured" +#~ msgstr "This agent can not be remotely configured." + +#~ msgid "Add to apply queue" +#~ msgstr "Add to apply queue" + +#~ msgid "Policy applied" +#~ msgstr "Policy applied" + +#~ msgid "Need apply" +#~ msgstr "Need apply" + +#~ msgid "Applying policy" +#~ msgstr "Applying policy" + +#~ msgid "Deleting from policy" +#~ msgstr "Deleting from policy" + +#~ msgid "" +#~ "Successfully added to delete the collection. Will be deleted in the next " +#~ "policy application." +#~ msgstr "" +#~ "Successfully added to deletion of the collection. It will be deleted in the " +#~ "next policy application." + +#~ msgid "Outdate" +#~ msgstr "Outdated" + +#~ msgid "Created successfuly" +#~ msgstr "Successfully created" + +#~ msgid "" +#~ "Successfully added to delete pending alerts. Will be deleted in the next " +#~ "policy application." +#~ msgstr "" +#~ "Successfully added to alerts pending deletion. It will be deleted in the " +#~ "next policy application." + +#~ msgid "Added action successfuly" +#~ msgstr "Action successfully added" + +#~ msgid "Deleted action successfuly" +#~ msgstr "Action successfully deleted" + +#~ msgid "Policy module" +#~ msgstr "Policy module" + +#~ msgid "Module is not selected" +#~ msgstr "Module is not selected" + +#~ msgid "Select inventory module" +#~ msgstr "Select inventory module" + +#~ msgid "Linking modules" +#~ msgstr "Linking modules" + +#~ msgid "Error: Update linking modules to policy" +#~ msgstr "Error : Update linking modules to policy" + +#~ msgid "Success: Update linking modules to policy" +#~ msgstr "Success : Update linking modules to policy" + +#~ msgid "Free text for filter (*)" +#~ msgstr "Free text for filter (*)" + +#~ msgid "Free text for filter" +#~ msgstr "Free text for filter" + +#~ msgid "List of modules unlinked" +#~ msgstr "List of unlinked modules" + +#~ msgid "Add policy" +#~ msgstr "Add policy" + +#~ msgid "Operation successfully deleted from the queue" +#~ msgstr "Operation successfully deleted from the queue." + +#~ msgid "Operation cannot be deleted from the queue" +#~ msgstr "Operation cannot be deleted from the queue." + +#~ msgid "Operations successfully deleted from the queue" +#~ msgstr "Operations successfully deleted from the queue." + +#~ msgid "Operations cannot be deleted from the queue" +#~ msgstr "Operations cannot be deleted from the queue." + +#~ msgid "Update pending" +#~ msgstr "Update pending" + +#~ msgid "Update pending agents" +#~ msgstr "Update pending agents" + +#~ msgid "Add to apply queue only for database" +#~ msgstr "Add to apply queue only for database" + +#~ msgid "Link pending modules" +#~ msgstr "Link pending modules" + +#~ msgid "Will be linked in the next policy application" +#~ msgstr "Will be linked in the next policy application" + +#~ msgid "Unlink pending modules" +#~ msgstr "Unlink pending modules" + +#~ msgid "Will be unlinked in the next policy application" +#~ msgstr "Will be unlinked in the next policy application." + +#~ msgid "Delete pending" +#~ msgstr "Delete pending" + +#~ msgid "Delete pending agents" +#~ msgstr "Delete pending agents" + +#~ msgid "Will be deleted in the next policy application" +#~ msgstr "Will be deleted in the next policy application" + +#~ msgid "Delete pending modules" +#~ msgstr "Delete pending modules" + +#~ msgid "Delete pending inventory modules" +#~ msgstr "Delete pending inventory modules" + +#~ msgid "Delete pending alerts" +#~ msgstr "Delete pending alerts" + +#~ msgid "Delete pending external alerts" +#~ msgstr "Delete pending external alerts" + +#~ msgid "Delete pending file collections" +#~ msgstr "Delete pending file collections" + +#~ msgid "Delete pending plugins" +#~ msgstr "Delete pending plugins" + +#~ msgid "Advices" +#~ msgstr "Advices" + +#~ msgid "Queue summary" +#~ msgstr "Queue summary" + +#~ msgid "This operation could take a long time" +#~ msgstr "This operation could take a long time." + +#~ msgid "Apply (database and files)" +#~ msgstr "Apply (database and files)" + +#~ msgid "Apply (only database)" +#~ msgstr "Apply (only database)" + +#~ msgid "Complete" +#~ msgstr "Complete" + +#~ msgid "Incomplete" +#~ msgstr "Incomplete" + +#~ msgid "Queue filter" +#~ msgstr "Queue filter" + +#~ msgid "Finished" +#~ msgstr "Finished" + +#~ msgid "Delete from queue" +#~ msgstr "Delete from queue" + +#~ msgid "Empty queue" +#~ msgstr "Empty queue" + +#~ msgid "Delete all" +#~ msgstr "Delete all" + +#~ msgid "Operation successfully added to the queue" +#~ msgstr "Operation successfully added to the queue" + +#~ msgid "Operation cannot be added to the queue" +#~ msgstr "Operation cannot be added to the queue" + +#~ msgid "Duplicated or incompatible operation in the queue" +#~ msgstr "Duplicated or incompatible operation in the queue" + +#~ msgid "" +#~ "Successfully added to delete pending plugins. Will be deleted in the next " +#~ "policy application." +#~ msgstr "" +#~ "Successfully added to plugins pending deletion. It will be deleted in the " +#~ "next policy application." + +#~ msgid "Cannot be added to delete pending plugins." +#~ msgstr "Cannot be added to plugins pending deletion." + +#~ msgid "Duplicated alert" +#~ msgstr "Duplicated alert" + +#~ msgid "Modules in policy agents" +#~ msgstr "Modules in policy agents" + +#~ msgid "Alert Template" +#~ msgstr "Alert Template" + +#~ msgid "List event alerts" +#~ msgstr "List event alerts" + +#~ msgid "Builder event alert" +#~ msgstr "Builder event alert" + +#~ msgid "Error processing action" +#~ msgstr "Error processing action" + +#~ msgid "Error validating alert(s)" +#~ msgstr "Error validating alert(s)" + +#~ msgid "Ac." +#~ msgstr "Ac." + +#~ msgid "Val." +#~ msgstr "Val." + +#~ msgid "Move up" +#~ msgstr "Move up" + +#~ msgid "Move down" +#~ msgstr "Move down" + +#~ msgid "No associated actions" +#~ msgstr "No associated actions" + +#~ msgid "View associated rules" +#~ msgstr "View associated rules" + +#~ msgid "List event rules" +#~ msgstr "List event rules" + +#~ msgid "Configure event rule" +#~ msgstr "Configure event rule" + +#~ msgid "User comment" +#~ msgstr "User comment" + +#~ msgid "This field will be processed with regexp" +#~ msgstr "This field will be processed with regexp" + +#~ msgid "Window" +#~ msgstr "Window" + +#~ msgid "Configure event alert" +#~ msgstr "Configure event alert" + +#~ msgid "Could not be created, please fill alert name" +#~ msgstr "Could not be created, please fill alert name." + +#~ msgid "Rule evaluation mode" +#~ msgstr "Rule evaluation mode" + +#~ msgid "Group by" +#~ msgstr "Group by" + +#~ msgid "Please Read" +#~ msgstr "Please read" + +#~ msgid "" +#~ "Since the alert can have multiple actions. You can edit them from the alert " +#~ "list of events." +#~ msgstr "" +#~ "Since the alert can have multiple actions. You can edit them from the alert " +#~ "list of events." + +#~ msgid "Event rules" +#~ msgstr "Event rules" + +#~ msgid "Error creating rule" +#~ msgstr "Error creating rule" + +#~ msgid "Successfully created rule" +#~ msgstr "Successfully created rule" + +#~ msgid "Error updating rule" +#~ msgstr "Error updating rule" + +#~ msgid "Successfully updating rule" +#~ msgstr "Successfully updating rule" + +#~ msgid "Error updating rule operators" +#~ msgstr "Error updating rule operators" + +#~ msgid "Successfully update rule operators" +#~ msgstr "Updating rule operators successful." + +#~ msgid "(Agent)" +#~ msgstr "(Agent)" + +#~ msgid "Logic expression for these rules:" +#~ msgstr "Logic expression for these rules:" + +#~ msgid "Update operators" +#~ msgstr "Update operators" + +#~ msgid "Success: create the alerts." +#~ msgstr "Creating of the alerts successful." + +#~ msgid "Failed: create the alerts for this modules, please check." +#~ msgstr "Failure in creating the alerts for these modules, please check." + +#~ msgid "Modules agents in policy" +#~ msgstr "Module agents in policy" + +#~ msgid "SNMP Alerts to be deleted" +#~ msgstr "SNMP alerts to be deleted" + +#~ msgid "Success: remove the alerts." +#~ msgstr "Removal of the alerts successful." + +#~ msgid "Failed: remove the alerts for this modules, please check." +#~ msgstr "Failure in removing the alerts for these modules, please check." + +#, php-format +#~ msgid "Successfully updated alerts (%s / %s)" +#~ msgstr "Successfully updated alerts (%s / %s)" + +#, php-format +#~ msgid "Unsuccessfully updated alerts (%s / %s)" +#~ msgstr "Updating of alerts unsuccessful (%s / %s)." + +#~ msgid "SNMP Alerts to be edit" +#~ msgstr "SNMP Alerts to be edited" + +#~ msgid "Filter module" +#~ msgstr "Filter Module" + +#~ msgid "Updated modules on database" +#~ msgstr "Updated modules in the database" + +#~ msgid "Agent configuration files updated" +#~ msgstr "Agent configuration files updated." + #~ msgid "Massive alerts policy addition" #~ msgstr "Massive alerts policy addition" @@ -35996,25 +25335,443 @@ msgstr "Only user can use the API" #~ msgid "Massive Satellite modules edition" #~ msgstr "Massive Satellite Modules Editing" +#~ msgid "Custom OID" +#~ msgstr "Custom OID" + #~ msgid "Error parsing MIB" #~ msgstr "Error parsing MIB" +#~ msgid "Successfully added trap custom values" +#~ msgstr "Success in adding trap custom values." + +#~ msgid "Error adding trap custom values" +#~ msgstr "Error in adding trap custom values." + +#~ msgid "No change in data" +#~ msgstr "No change in data" + +#~ msgid "Successfully updated trap custom values" +#~ msgstr "Updating trap custom values successful." + +#~ msgid "Error updating trap custom values" +#~ msgstr "Error in updating trap custom values." + +#~ msgid "Successfully deleted trap custom values" +#~ msgstr "Deletion of trap custom values successful." + +#~ msgid "Error deleting trap custom values" +#~ msgstr "Error in deleting trap custom values." + +#, php-format +#~ msgid "Uploaded %s/%s traps" +#~ msgstr "Uploaded %s/%s traps" + #, php-format #~ msgid "Fail uploaded %s/%s traps" #~ msgstr "Failure in uploading %s/%s traps" +#~ msgid "Fail uploaded file" +#~ msgstr "Failure in uploading file" + +#~ msgid "Load MIB" +#~ msgstr "Load MIB" + +#~ msgid "Upload MIB" +#~ msgstr "Upload MIB" + +#~ msgid "Log storage directory" +#~ msgstr "Log storage directory" + +#~ msgid "Directory where log data will be stored." +#~ msgstr "Directory where the log data will be stored." + +#~ msgid "Sets the maximum lifetime for log data in days." +#~ msgstr "Sets the maximum lifetime for log data in days." + +#~ msgid "Enterprise ACL setup" +#~ msgstr "Enterprise ACL setup" + +#~ msgid "Add new ACL element to profile" +#~ msgstr "Add new ACL element to profile" + +#~ msgid "Section" +#~ msgstr "Section" + +#~ msgid "Page" +#~ msgstr "Page" + +#~ msgid "Filter by profile" +#~ msgstr "Filter by profile" + +#~ msgid "Skins configuration" +#~ msgstr "Skins configuration" + +#~ msgid "Error deleting skin" +#~ msgstr "Error deleting skin" + +#~ msgid "Successfully deleted skin" +#~ msgstr "Successfully deleted skin" + +#~ msgid "Create skin" +#~ msgstr "Create skin" + +#~ msgid "Skin name" +#~ msgstr "Skin name" + +#~ msgid "Relative path" +#~ msgstr "Relative path" + +#~ msgid "Successfully updated skin" +#~ msgstr "Updating skin successful" + +#~ msgid "Error updating skin" +#~ msgstr "Error in updating skin" + +#~ msgid "Error creating skin" +#~ msgstr "Error on creating skin." + +#~ msgid "Successfully created skin" +#~ msgstr "Creation of skin successful." + +#~ msgid "" +#~ "Zip file with skin subdirectory. The name of the zip file only can have " +#~ "alphanumeric characters." +#~ msgstr "" +#~ "Zip file with skin subdirectory. The name of the zip file only can have " +#~ "alphanumeric characters." + +#~ msgid "Group/s" +#~ msgstr "Group/s" + +#~ msgid "Metaconsole setup" +#~ msgstr "Metaconsole setup" + +#~ msgid "Successfully update" +#~ msgstr "Update successful." + +#~ msgid "Could not be update" +#~ msgstr "Could not be updated." + +#~ msgid "Pandora FMS Metaconsole item edition" +#~ msgstr "Pandora FMS Metaconsole item edition" + +#~ msgid "Auth token" +#~ msgstr "Auth token" + +#~ msgid "" +#~ "Token previously configured on the destination Pandora console in order to " +#~ "use delegated authentification." +#~ msgstr "" +#~ "Token previously configured on the destination Pandora console in order to " +#~ "use delegated authentification." + +#~ msgid "Console URL" +#~ msgstr "Console URL" + +#~ msgid "DB Host" +#~ msgstr "DB Host" + +#~ msgid "DB Name" +#~ msgstr "DB Name" + +#~ msgid "DB User" +#~ msgstr "DB User" + +#~ msgid "DB Password" +#~ msgstr "DB Password" + +#~ msgid "Console User" +#~ msgstr "Console User" + +#~ msgid "Console Password" +#~ msgstr "Console Password" + +#~ msgid "DB" +#~ msgstr "DB" + +#~ msgid "API" +#~ msgstr "API" + +#~ msgid "Compatibility" +#~ msgstr "Compatibility" + +#~ msgid "Number of days before data is transfered to history database." +#~ msgstr "Number of days before the data is transfered to history database." + +#~ msgid "" +#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" +#~ msgstr "" +#~ "Data size of mechanism used to transfer the data (similar to a data buffer.)" + +#~ msgid "Time interval between data transfer." +#~ msgstr "Time interval between data transfer." + +#~ msgid "" +#~ "Before activating this option check your ACL Setup. You may lose access to " +#~ "the console." +#~ msgstr "" +#~ "Before activating this option, check your ACL Setup. You may lose access to " +#~ "the console." + +#~ msgid " Bytes" +#~ msgstr " Bytes" + +#~ msgid "Seconds" +#~ msgstr "Seconds" + +#~ msgid "Only validated events" +#~ msgstr "Only validated events" + +#~ msgid "" +#~ "The inventory modules included in the changes blacklist will not generate " +#~ "events when change." +#~ msgstr "" +#~ "The inventory modules included in the changes blacklist will not generate " +#~ "events if changed." + +#~ msgid "Out of black list" +#~ msgstr "Out of black list" + +#~ msgid "In black list" +#~ msgstr "Into black list" + +#~ msgid "Push selected modules into blacklist" +#~ msgstr "Push selected modules into blacklist." + +#~ msgid "Pop selected modules out of blacklist" +#~ msgstr "Push selected modules out of blacklist." + +#~ msgid "Enterprise options" +#~ msgstr "Enterprise Options" + +#~ msgid " Caracters" +#~ msgstr " Characters" + +#~ msgid "Set 0 if never expire." +#~ msgstr "Set to '0' to never let it expire." + +#~ msgid " Days" +#~ msgstr " Days" + +#~ msgid " Minutes" +#~ msgstr " Minutes" + +#~ msgid "Two attempts minimum" +#~ msgstr "Two attempts minimum" + +#~ msgid " Attempts" +#~ msgstr " Attempts" + +#~ msgid "Enterprise password policy" +#~ msgstr "Enterprise password policy" + +#~ msgid "" +#~ "Rules applied to the management of passwords. This policy applies to all " +#~ "users except the administrator." +#~ msgstr "" +#~ "Rules applied to the management of passwords. This policy applies to all " +#~ "users except to the administrator." + +#~ msgid "Active directory" +#~ msgstr "Active directory" + +#~ msgid "Remote Pandora FMS" +#~ msgstr "Remote Pandora FMS" + +#~ msgid "Remote Babel Enterprise" +#~ msgstr "Remote Babel Enterprise" + +#~ msgid "Remote Integria" +#~ msgstr "Remote Integria" + +#~ msgid "Pandora FMS host" +#~ msgstr "Pandora FMS host" + +#~ msgid "Macros" +#~ msgstr "Macros" + +#~ msgid "Local component management" +#~ msgstr "Local component management" + +#~ msgid "Successfully created inventory module" +#~ msgstr "Inventory module successfully created." + +#~ msgid "Error creating inventory module" +#~ msgstr "Error in creating inventory module." + +#~ msgid "Interpreter" +#~ msgstr "Interpreter" + +#~ msgid "Local module" +#~ msgstr "Local Module" + +#~ msgid "Remote/Local" +#~ msgstr "Remote / Local" + +#~ msgid "Block Mode" +#~ msgstr "Block Mode" + +#~ msgid "separate fields with " +#~ msgstr "separate fields with " + +#~ msgid "Or disable Pandora FMS enterprise" +#~ msgstr "Or disable Pandora FMS enterprise" + +#, php-format +#~ msgid "" +#~ "License out of limits

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

    " +#~ "This licence allows %d agents and you have %d agents configured." + +#~ msgid "" +#~ "This license has expired. " +#~ "

    You can not get updates until you renew the license." +#~ msgstr "" +#~ "This licence has expired. " +#~ "

    You cannot get any updates until you've renewed the licence." + +#~ 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:" +#~ msgstr "" +#~ "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 licence :" + +#~ msgid "Please contact Artica at info@artica.es to renew the license." +#~ msgstr "Please contact Artica at info@artica.es to renew the licence." + +#~ msgid "Renew" +#~ msgstr "Renew" + +#~ msgid "Top N Events by agent." +#~ msgstr "Top N Events by agent." + +#~ msgid "Top N events by agent." +#~ msgstr "Top N events by agent." + +#~ msgid "Amount to show" +#~ msgstr "Amount to show" + +#~ msgid "Please select one or more groups." +#~ msgstr "Please select one or more groups." + +#~ msgid "There is not data to show." +#~ msgstr "There is not data to show." + +#~ msgid "Please, configure this widget before use" +#~ msgstr "Please configure this widget before usage" + +#~ msgid "Latest events list" +#~ msgstr "Latest events list" + +#~ msgid "Limit" +#~ msgstr "Limit" + +#~ msgid "Only pending" +#~ msgstr "Only pending" + +#~ msgid "Map made by user" +#~ msgstr "Map made by user" + +#~ msgid "Show a map made by user" +#~ msgstr "Show a map made by user" + +#~ msgid "Alerts Fired" +#~ msgstr "Alerts Fired" + +#~ msgid "Alerts Fired report" +#~ msgstr "Alerts Fired report" + +#~ msgid "Show a report made by user" +#~ msgstr "Show a report made by user" + +#~ msgid "Single graph" +#~ msgstr "Single graph" + +#~ msgid "Show a graph of an agent module" +#~ msgstr "Show a graph of an agent module" + +#~ msgid "Show a top n of agents modules." +#~ msgstr "Show a top n of agents modules." + +#~ msgid "" +#~ "Please could you fill the widget data previous to filling the list items." +#~ msgstr "" +#~ "Please could you fill the widget data previous to filling the list items." + +#~ msgid "avg" +#~ msgstr "avg" + +#~ msgid "Selection module one by one" +#~ msgstr "Selection module one by one" + +#~ msgid "Selection several modules" +#~ msgstr "Selection several modules" + +#~ msgid "Regex for to filter modules" +#~ msgstr "Regex for to filter modules" + +#~ msgid "Filter modules" +#~ msgstr "Filter modules" + #~ msgid "Successful added modules" #~ msgstr "Successful added modules" #~ msgid "Unsuccessful added modules" #~ msgstr "Unsuccessful added modules" +#~ msgid "Show the URL content" +#~ msgstr "Show the URL content" + #~ msgid "Height in px (zero for auto)" #~ msgstr "Height in px (zero for auto)" +#~ msgid "My URL" +#~ msgstr "My URL" + #~ msgid "Invalid URL" #~ msgstr "Invalid URL" +#~ msgid "Welcome message to Pandora FMS" +#~ msgstr "Welcome message to Pandora FMS" + +#~ msgid "Welcome" +#~ msgstr "Welcome" + +#~ msgid "" +#~ "This is an example of a dashboard widget. A widget may contain elements" +#~ msgstr "" +#~ "This is an example of a dashboard widget. A widget may contain elements" + +#~ msgid "" +#~ "To add more elements, click on \"Add widgets\" on the top of this " +#~ "page." +#~ msgstr "" +#~ "To add more elements, click on \"Add widgets\" on the top of this " +#~ "page." + +#~ msgid "" +#~ "To delete this message, click on the delete button on top right corner of " +#~ "this element." +#~ msgstr "" +#~ "To delete this message, click on the delete button on top right corner of " +#~ "this element." + +#~ msgid "" +#~ "To do so, just click on the title and drag and drop it to the desired place." +#~ msgstr "" +#~ "To do so, just click on the title and drag and drop it to the desired place." + +#~ msgid "Thanks for using Pandora FMS" +#~ msgstr "Thanks for using Pandora FMS." + +#~ msgid "Show a map of the monitored network" +#~ msgstr "Show a map of the monitored network." + #~ msgid "No overlap" #~ msgstr "No overlap" @@ -36033,6 +25790,36 @@ msgstr "Only user can use the API" #~ msgid "12" #~ msgstr "12" +#~ msgid "Maps status" +#~ msgstr "Maps status" + +#~ msgid "General and quick visual maps report" +#~ msgstr "General and quick visual maps report" + +#~ msgid "Panel with a message" +#~ msgstr "Panel with a message" + +#~ msgid "My Post" +#~ msgstr "My Post" + +#~ msgid "Show a defined custom graph" +#~ msgstr "Show a defined custom graph" + +#~ msgid "Groups status" +#~ msgstr "Groups status" + +#~ msgid "General and quick group status report" +#~ msgstr "General and quick group status report" + +#~ msgid "Show a list of global monitor health" +#~ msgstr "Show a list of global monitor health" + +#~ msgid "Top N Events by module." +#~ msgstr "Top N Events by module." + +#~ msgid "Top N events by module." +#~ msgstr "Top N events by module." + #~ msgid "Dashboard replicate" #~ msgstr "Dashboard replicate" @@ -36057,6 +25844,18 @@ msgstr "Only user can use the API" #~ msgid "Replicate Dashboard" #~ msgstr "Replicate Dashboard" +#~ msgid "Configure widget" +#~ msgstr "Configure widget" + +#~ msgid "Delete widget" +#~ msgstr "Delete widget" + +#~ msgid "Widget cannot be loaded" +#~ msgstr "Cannot load widget." + +#~ msgid "Please, configure the widget again to recover it" +#~ msgstr "Please configure the widget again to recover it" + #~ msgid "Dashboard successfuly updated" #~ msgstr "Dashboard successfuly updated." @@ -36069,6 +25868,9 @@ msgstr "Only user can use the API" #~ msgid "Dashboard successfuly created" #~ msgstr "Dashboard successfuly created." +#~ msgid "Slides mode" +#~ msgstr "Slides mode" + #~ msgid "Next Dashboard" #~ msgstr "Next Dashboard" @@ -36078,12 +25880,18 @@ msgstr "Only user can use the API" #~ msgid "Previous Dashboard" #~ msgstr "Previous Dashboard" +#~ msgid "Pause" +#~ msgstr "Pause" + #~ msgid "Next slide in" #~ msgstr "Next slide in" #~ msgid "Add dashboard" #~ msgstr "Add dashboard" +#~ msgid "Add widget" +#~ msgstr "Add widget" + #~ msgid "Update dashboard" #~ msgstr "Update dashboard" @@ -36093,18 +25901,454 @@ msgstr "Only user can use the API" #~ msgid "Dashboard options" #~ msgstr "Dashboard options" +#~ msgid "Private dashboard" +#~ msgstr "Private dashboard" + #~ msgid "Add new dashboard view" #~ msgstr "Add new dashboard view" +#~ msgid "Add new widget" +#~ msgstr "Add new widget" + +#~ msgid "Search results for" +#~ msgstr "Search results for" + +#~ msgid "There are no agents included in this group" +#~ msgstr "There are no agents included in this group" + +#~ msgid "Screens" +#~ msgstr "Screens" + +#~ msgid "Create visualmap" +#~ msgstr "Create visual map" + #~ msgid "Visualmap" #~ msgstr "Visual map" +#~ msgid "The user is not in neither group with EW profile" +#~ msgstr "The user is not in either of the groups with an EW profile." + +#~ msgid "Succesful updated" +#~ msgstr "Update successful." + +#~ msgid "Unsucessful updated" +#~ msgstr "Update unsuccessful." + +#~ msgid "Fields" +#~ msgstr "Fields" + +#~ msgid "Tactical View" +#~ msgstr "Tactical View" + +#~ msgid "More events" +#~ msgstr "More events" + +#~ msgid "Create module" +#~ msgstr "Create module" + +#~ msgid "Can't connect to Pandora FMS instance" +#~ msgstr "Cannot connect to Pandora FMS instance." + +#~ msgid "Web check" +#~ msgstr "Web check" + +#~ msgid "Module description" +#~ msgstr "Module description" + +#~ msgid "Step by step wizard" +#~ msgstr "Step by step wizard" + +#~ msgid "Click Create to continue" +#~ msgstr "Click Create to continue" + +#~ msgid "Edit module" +#~ msgstr "Edit module" + +#~ msgid "The alert you are trying to add is already in the list of alerts" +#~ msgstr "The alert you are trying to add is already in the list of alerts." + +#~ msgid "Please, select an alert" +#~ msgstr "Please select an alert" + +#~ msgid "Please, select an agent" +#~ msgstr "Please select an agent" + +#~ msgid "String" +#~ msgstr "String" + +#~ msgid "Another agent already exists with the same name" +#~ msgstr "Another agent with the same name already exists." + +#~ msgid "Preview" +#~ msgstr "Preview" + +#~ msgid "Edit agent" +#~ msgstr "Edit agent" + #~ msgid "Please, set a valid IP address" #~ msgstr "Please set a valid IP address." +#~ msgid "Advanced configuration" +#~ msgstr "Advanced configuration" + +#~ msgid "Invalid characters founded in module name" +#~ msgstr "Invalid characters found in module name." + +#~ msgid "Please, set a name" +#~ msgstr "Please set a name" + +#~ msgid "Please, set an interval" +#~ msgstr "Please set an interval" + +#~ msgid "Select the agent to be edited or deleted" +#~ msgstr "Select the agent to be edited or deleted" + +#~ msgid "Select the agent where the module will be created" +#~ msgstr "Select the agent where the module will be created" + +#~ msgid "Create Module" +#~ msgstr "Create Module" + +#~ msgid "Select the module to be edited or deleted" +#~ msgstr "Select the module to be edited or deleted" + +#~ msgid "Select the module where the alert will be created" +#~ msgstr "Select the module in which the alert will be created." + +#~ msgid "Select the alert to be edited or deleted" +#~ msgstr "Select the alert to be edited or deleted" + +#~ msgid "Group View" +#~ msgstr "Group View" + +#~ msgid "Synchronizing" +#~ msgstr "Synchronising" + +#~ msgid "Users synchronization" +#~ msgstr "Users synchronisation" + +#~ msgid "Groups synchronization" +#~ msgstr "Groups synchronisation" + +#~ msgid "Alerts synchronization" +#~ msgstr "Alerts synchronisation" + +#~ msgid "Components synchronization" +#~ msgstr "Components synchronization" + +#~ msgid "Tags synchronization" +#~ msgstr "Tags synchronisation" + +#, php-format +#~ msgid "Could not be update: Error in %s" +#~ msgstr "Could not be updated : Error in %s" + +#~ msgid "Customize sections" +#~ msgstr "Customise sections" + +#~ msgid "Disabled sections" +#~ msgstr "Disabled sections" + +#~ msgid "Enabled sections" +#~ msgstr "Enabled sections" + +#~ msgid "Push selected sections to enable it" +#~ msgstr "Push selected sections to enable it" + +#~ msgid "Pop selected sections to disable it" +#~ msgstr "Pop selected sections to disable it" + +#~ msgid "Passwords" +#~ msgstr "Passwords" + +#, php-format +#~ msgid "Error updating user %s" +#~ msgstr "Error in updating user %s" + +#, php-format +#~ msgid "Updated user %s" +#~ msgstr "Updated user %s" + +#, php-format +#~ msgid "Error creating user %s" +#~ msgstr "Error in creating user %s" + +#, php-format +#~ msgid "Created user %s" +#~ msgstr "Created user %s" + +#, php-format +#~ msgid "" +#~ "Error creating/updating the followings elements groups/profiles/user " +#~ "profiles (%d/%d/%d)" +#~ msgstr "" +#~ "Error creating/updating the following elements groups / profiles / user " +#~ "profiles (%d/%d/%d)" + +#, php-format +#~ msgid "" +#~ "The followings elements groups/profiles/user profiles were created/updated " +#~ "sucessfully (%d/%d/%d)" +#~ msgstr "" +#~ "The following element groups / profiles / user profiles were created / " +#~ "updated sucessfully (%d/%d/%d)" + +#, php-format +#~ msgid "Error connecting to %s" +#~ msgstr "Error connecting to %s" + +#~ msgid "This metaconsole" +#~ msgstr "This meta-console" + +#~ msgid "Profile mode" +#~ msgstr "Profile mode" + +#~ msgid "Profile synchronization mode." +#~ msgstr "Profile synchronisation mode" + +#~ msgid "New profile" +#~ msgstr "New profile" + +#~ msgid "Copy profile" +#~ msgstr "Copy profile" + #~ msgid "Check this to copy user original profiles" #~ msgstr "Check this to copy the user's original profiles" +#~ msgid "Sync" +#~ msgstr "Sync" + +#, php-format +#~ msgid "Error creating %s components groups " +#~ msgstr "Error in creating %s component groups " + +#, php-format +#~ msgid "Created %s component groups" +#~ msgstr "Created %s component groups" + +#, php-format +#~ msgid "Error creating/updating %s/%s local components " +#~ msgstr "Error creating/updating %s/%s local components " + +#, php-format +#~ msgid "Created/Updated %s/%s local components" +#~ msgstr "Created / updated %s/%s local components" + +#, php-format +#~ msgid "Error creating/updating %s/%s network components " +#~ msgstr "Error in creating / updating %s/%s network components " + +#, php-format +#~ msgid "Created/Updated %s/%s network components" +#~ msgstr "Created/updated %s/%s network components" + +#~ msgid "Metaconsole elements" +#~ msgstr "Metaconsole elements" + +#~ msgid "The number of elements retrieved for each instance in some views." +#~ msgstr "The number of elements retrieved for each instance in some views." + +#~ msgid "Visual" +#~ msgstr "Visual" + +#~ msgid "Could not be delete" +#~ msgstr "Could not be deleted." + +#~ msgid "" +#~ "Complete path to Pandora console without last \"/\" character. Example " +#~ msgstr "" +#~ "Complete path to Pandora console without last \"/\" character. Example " + +#~ msgid "There aren't server added to metaconsole" +#~ msgstr "There are no servers added to metaconsole." + +#, php-format +#~ msgid "Error creating/updating %s/%s comamnds" +#~ msgstr "Error in creating / updating %s/%s commands." + +#, php-format +#~ msgid "Created/Updated %s/%s commands" +#~ msgstr "Created / updated %s/%s commands" + +#, php-format +#~ msgid "Error creating/updating %s/%s actions" +#~ msgstr "Error in creating / updating %s/%s actions." + +#, php-format +#~ msgid "Created/Updated %s/%s actions" +#~ msgstr "Created / updated %s/%s actions" + +#, php-format +#~ msgid "Error creating/updating %s/%s templates" +#~ msgstr "Error in creating / updating %s/%s templates" + +#, php-format +#~ msgid "Created/Updated %s/%s templates" +#~ msgstr "Created / updated %s/%s templates" + +#~ msgid "Propagation" +#~ msgstr "Propagation" + +#~ msgid "Only database" +#~ msgstr "Only database" + +#, php-format +#~ msgid "Error creating/updating %s/%s tags" +#~ msgstr "Error in creating / updating %s/%s tags" + +#, php-format +#~ msgid "Created/Updated %s/%s tags" +#~ msgstr "Created / updated %s/%s tags" + +#~ msgid "Active events history" +#~ msgstr "Active events history" + +#~ msgid "Please search for anything text." +#~ msgstr "Please search for anything text." + +#~ msgid "Original string" +#~ msgstr "Original string" + +#~ msgid "Translation in selected language" +#~ msgstr "Translation in selected language" + +#~ msgid "Customize translation" +#~ msgstr "Customize translation" + +#~ msgid "Consoles Setup" +#~ msgstr "Consoles Setup" + +#~ msgid "General setup" +#~ msgstr "General setup" + +#~ msgid "Passwords setup" +#~ msgstr "Passwords setup" + +#~ msgid "Visual setup" +#~ msgstr "Visual setup" + +#~ msgid "Performance setup" +#~ msgstr "Performance setup" + +#~ msgid "Strings translation" +#~ msgstr "Strings translation" + +#~ msgid "Consoles setup" +#~ msgstr "Consoles setup" + +#, php-format +#~ msgid "Error creating/updating %s/%s groups" +#~ msgstr "Error in creating / updating %s/%s groups" + +#, php-format +#~ msgid "Created/Updated %s/%s groups" +#~ msgstr "Groups %s/%s created / updated" + +#~ msgid "redirected ip server in conf into source DB" +#~ msgstr "Redirected IP-server in conf into source DB" + +#~ msgid "created agent in destination DB" +#~ msgstr "created agent in destination DB" + +#~ msgid "created agent modules in destination DB" +#~ msgstr "created agent modules in destination DB" + +#~ msgid "created agent alerts in destination DB" +#~ msgstr "created agent alerts in destination DB" + +#~ msgid "created alerts actions in destination DB" +#~ msgstr "created alert actions in destination DB" + +#~ msgid "disabled agent in source DB" +#~ msgstr "disabled agents in source DB" + +#~ msgid "" +#~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " +#~ "Console." +#~ msgstr "" +#~ "Unset metaconsole IP in the \"IP list with API access\" guess Pandora " +#~ "Console." + +#~ msgid "Successfully moved" +#~ msgstr "Successfully moved" + +#~ msgid "Could not be moved" +#~ msgstr "Could not be moved" + +#~ msgid "Source Server" +#~ msgstr "Source Server" + +#~ msgid "Destination Server" +#~ msgstr "Destination Server" + +#~ msgid "Add agents to destination server" +#~ msgstr "Add agents to destination server" + +#~ msgid "Move" +#~ msgstr "Move" + +#~ msgid "Policy Manager" +#~ msgstr "Policy Manager" + +#~ msgid "Apply policies" +#~ msgstr "Apply policies" + +#~ msgid "Policies queue" +#~ msgstr "Policies queue" + +#~ msgid "Policies apply" +#~ msgstr "Policies apply" + +#, php-format +#~ msgid "Error creating %s policies" +#~ msgstr "Error in creating %s policies" + +#, php-format +#~ msgid "Created %s policies" +#~ msgstr "Created %s policies" + +#, php-format +#~ msgid "Error creating/updating %s/%s policy modules" +#~ msgstr "Error in creating / updating %s/%s policy modules" + +#, php-format +#~ msgid "Created/Updated %s/%s policy modules" +#~ msgstr "Created / updated %s/%s policy modules" + +#, php-format +#~ msgid "Error deleting %s policy modules" +#~ msgstr "Error in deleting %s policy modules" + +#, php-format +#~ msgid "Deleted %s policy modules" +#~ msgstr "Deleted %s policy modules" + +#, php-format +#~ msgid "Error creating %s policy alerts" +#~ msgstr "Error in creating %s policy alerts" + +#, php-format +#~ msgid "Created %s policy alerts" +#~ msgstr "Created %s policy alerts" + +#, php-format +#~ msgid "Error deleting %s policy alerts" +#~ msgstr "Error in deleting %s policy alerts" + +#, php-format +#~ msgid "Deleted %s policy alerts" +#~ msgstr "Deleted %s policy alerts" + +#~ msgid "" +#~ "Metaconsole needs previous activation from regular console, please contact " +#~ "system administrator if you need assistance.
    " +#~ msgstr "" +#~ "Metaconsole needs previous activation from regular console, please contact " +#~ "system administrator if you need assistance.
    " + +#~ msgid "Network traffic" +#~ msgstr "Network traffic" + #~ msgid "" #~ "In order to have the best user experience with Pandora FMS, we strongly " #~ "recommend to use" @@ -36119,9 +26363,48 @@ msgstr "Only user can use the API" #~ "Mozilla Firefox or Google Chrome browsers." +#~ msgid "Monitors view" +#~ msgstr "Monitors view" + +#~ msgid "Create new report" +#~ msgstr "Create new report" + +#~ msgid "Report templates" +#~ msgstr "Report templates" + +#~ msgid "Templates wizard" +#~ msgstr "Templates wizard" + +#~ msgid "Live view" +#~ msgstr "Live view" + +#~ msgid "Agent management" +#~ msgstr "Agent management" + +#~ msgid "Alert management" +#~ msgstr "Alert management" + #~ msgid "Tag management" #~ msgstr "Tag management" +#~ msgid "Policy management" +#~ msgstr "Policy management" + +#~ msgid "Category management" +#~ msgstr "Category management" + +#~ msgid "Metasetup" +#~ msgstr "Metasetup" + +#~ msgid "Back to login" +#~ msgstr "Back to login" + +#~ msgid "Agents movement" +#~ msgstr "Agents movement" + +#~ msgid "Group management" +#~ msgstr "Group management" + #~ msgid "Not networkmap defined." #~ msgstr "No networkmap defined." @@ -36153,12 +26436,193 @@ msgstr "Only user can use the API" #~ msgid "Cannot connect to %s Pandora to generate networkmap." #~ msgstr "Cannot connect to %s Pandora to generate network map." +#~ msgid "Agent modules" +#~ msgstr "Agent modules" + +#~ msgid "Add selected modules to agent" +#~ msgstr "Add selected modules to agent" + +#~ msgid "Undo changes" +#~ msgstr "Undo changes" + +#~ msgid "Latency" +#~ msgstr "Latency" + +#~ msgid "Response" +#~ msgstr "Response" + +#~ msgid "Check type" +#~ msgstr "Check type" + +#~ msgid "String to check" +#~ msgstr "String to check" + +#~ msgid "Add check" +#~ msgstr "Add check" + +#~ msgid "Delete check" +#~ msgstr "Delete check" + +#~ msgid "Various" +#~ msgstr "Various" + +#~ msgid "Thresholds" +#~ msgstr "Thresholds" + +#~ msgid "Web configuration" +#~ msgstr "Web configuration" + +#~ msgid "Str: " +#~ msgstr "Str: " + +#~ msgid " Inverse interval " +#~ msgstr " Inverse interval " + +#~ msgid "Alerts in module" +#~ msgstr "Alerts in module" + +#~ msgid "Checks" +#~ msgstr "Checks" + +#~ msgid "Deleted modules" +#~ msgstr "Deleted modules" + +#, php-format +#~ msgid "Error adding module %s" +#~ msgstr "Error in adding module %s" + +#~ msgid "" +#~ "There was an error creating the alerts, the operation has been cancelled" +#~ msgstr "" +#~ "There was an error creating the alerts, the operation has been cancelled" + +#, php-format +#~ msgid "Could not create agent %s" +#~ msgstr "Could not create agent %s" + +#~ msgid "Agent successfully added" +#~ msgstr "Agent successfully added" + +#, php-format +#~ msgid "%s Modules created" +#~ msgstr "%s Modules created" + +#, php-format +#~ msgid "Could not update agent %s" +#~ msgstr "Could not update agent %s" + +#~ msgid "Agent successfully updated" +#~ msgstr "Agent successfully updated" + +#, php-format +#~ msgid "%s Modules deleted" +#~ msgstr "%s Modules deleted" + +#, php-format +#~ msgid "Error updating module %s" +#~ msgstr "Error in updating module %s" + +#~ msgid "" +#~ "There was an error updating the alerts, the operation has been cancelled" +#~ msgstr "" +#~ "There was an error in updating the alerts, the operation has been cancelled." + +#~ msgid "Successfully updated module." +#~ msgstr "Module successfully updated." + +#~ msgid "Manage agent modules" +#~ msgstr "Manage agent modules" + +#~ msgid "No admin user" +#~ msgstr "No admin user" + +#~ msgid "Netflow disable custom live view filters" +#~ msgstr "Netflow disables custom live view filters." + +#~ msgid "Customizable section" +#~ msgstr "Customizable section" + +#~ msgid "User synchronization" +#~ msgstr "User synchronization" + +#~ msgid "Group synchronization" +#~ msgstr "Group synchronization" + +#~ msgid "Create new module" +#~ msgstr "Create new module" + +#~ msgid "Tree View" +#~ msgstr "Tree View" + +#~ msgid "Group name" +#~ msgstr "Group name" + +#~ msgid "Go to module detail" +#~ msgstr "Go to module detail" + +#~ msgid "Create new alert" +#~ msgstr "Create new alert" + +#~ msgid "There was a problem loading alert" +#~ msgstr "A problem occurred while loading alerts" + +#~ msgid "Stand By" +#~ msgstr "Stand By" + +#~ msgid "Go to Alert detail" +#~ msgstr "Go to Alert detail" + +#~ msgid "Delete alert" +#~ msgstr "Delete alert" + +#~ msgid "There was a problem loading tag" +#~ msgstr "There was a problem in loading the tag." + +#~ msgid "Plugin management" +#~ msgstr "Plugin management" + +#~ msgid "Create plugin" +#~ msgstr "Create plugin" + +#~ msgid "Edit plugin" +#~ msgstr "Edit plugin" + +#~ msgid "Log viewer" +#~ msgstr "Log viewer" + +#~ msgid "Start date" +#~ msgstr "Start date" + #~ msgid "Copy Dashboard" #~ msgstr "Copy dashboard" #~ msgid "Network console" #~ msgstr "Network console" +#~ msgid "Custom SQL" +#~ msgstr "Custom SQL" + +#~ msgid "Export this list to CSV" +#~ msgstr "Export this list to CSV" + +#~ msgid "List of elements" +#~ msgstr "List of elements" + +#~ msgid "Service Map" +#~ msgstr "Service Map" + +#~ msgid "Service deleted successfully" +#~ msgstr "Service deleted successfully" + +#~ msgid "Error deleting service" +#~ msgstr "Error deleting service" + +#~ msgid "Service forced successfully" +#~ msgstr "Forcing of the service successful." + +#~ msgid "Error service forced" +#~ msgstr "Error in forcing the service." + #~ msgid "Networkmap enterprise" #~ msgstr "Enterprise network map" @@ -36166,6 +26630,12 @@ msgstr "Only user can use the API" #~ msgid "Networkmap enterprise - %s" #~ msgstr "Enterprise network map - %s" +#~ msgid "Unsucessful get module inventory data." +#~ msgstr "Getting module inventory data was unsuccessful." + +#~ msgid "No collection assigned to this agent" +#~ msgstr "No collection assigned to this agent" + #~ msgid "Source data" #~ msgstr "Source data" @@ -36196,9 +26666,222 @@ msgstr "Only user can use the API" #~ msgid "Error process map" #~ msgstr "Error in processing map" +#~ msgid "Diff view" +#~ msgstr "Diff view" + #~ msgid "Details of node:" #~ msgstr "Details of node :" +#~ msgid "This agent has no policy assigned" +#~ msgstr "This agent has no assigned policy." + +#~ msgid "Policy outdate" +#~ msgstr "Policy outdated" + +#~ msgid "Toggle the collection table" +#~ msgstr "Toggle the collection table" + +#~ msgid "Descripttion" +#~ msgstr "Description" + +#~ msgid "Show Collection" +#~ msgstr "Show Collection" + +#~ msgid "Toggle the alert table" +#~ msgstr "Toggle the alert table" + +#~ msgid "Show Alert" +#~ msgstr "Show Alert" + +#~ msgid "Toggle the module table" +#~ msgstr "Toggle the module table" + +#~ msgid "Relationship" +#~ msgstr "Relationship" + +#~ msgid "Show Modules" +#~ msgstr "Show Modules" + +#~ msgid "(Un-adopted)" +#~ msgstr "(Un-adopted)" + +#~ msgid "(Adopted)" +#~ msgstr "(Adopted)" + +#~ msgid "(Un-adopted) (Unlinked)" +#~ msgstr "(Un-adopted) (Unlinked)" + +#~ msgid "(Adopted) (Unlinked)" +#~ msgstr "(Adopted) (Unlinked)" + +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "Export to PDF" +#~ msgstr "Export to PDF" + +#~ msgid "ID Report" +#~ msgstr "Report ID" + +#~ msgid "Backup" +#~ msgstr "Backup" + +#~ msgid "Pandora database backup utility" +#~ msgstr "Pandora database backup utility" + +#~ msgid "Lost" +#~ msgstr "Lost" + +#~ msgid "Backups list" +#~ msgstr "Backups list" + +#~ msgid "Create backup" +#~ msgstr "Create backup" + +#, php-format +#~ msgid "Error create '%s' policy, the name exist and there aren't free name." +#~ msgstr "" +#~ "Error create '%s' policy, the name exists and there aren't free names." + +#, php-format +#~ msgid "" +#~ "Warning create '%s' policy, the name exist, the policy have a name %s." +#~ msgstr "" +#~ "Warning on creating '%s' policy, the name exists and the policy has the name " +#~ "%s." + +#~ msgid "Error the policy haven't name." +#~ msgstr "Error. The policy doesn't have a name." + +#, php-format +#~ msgid "Success create '%s' policy." +#~ msgstr "Success in creating '%s' policy." + +#, php-format +#~ msgid "Error create '%s' policy." +#~ msgstr "Error in creating '%s' policy." + +#, php-format +#~ msgid "Success add '%s' agent." +#~ msgstr "Success in adding '%s' agent." + +#, php-format +#~ msgid "Error add '%s' agent." +#~ msgstr "Error in adding '%s' agent." + +#, php-format +#~ msgid "Success add '%s' collection." +#~ msgstr "Success in adding '%s' collection." + +#, php-format +#~ msgid "Error add '%s' collection." +#~ msgstr "Error in adding '%s' collection." + +#~ msgid "Error add the module, haven't type." +#~ msgstr "Error on adding the module, it doesn't have a type." + +#~ msgid "Error add the module, error in tag component." +#~ msgstr "Error on adding the module, error in tag component." + +#, php-format +#~ msgid "Success add '%s' module." +#~ msgstr "Success in adding '%s' module." + +#, php-format +#~ msgid "Error add '%s' module." +#~ msgstr "Error on adding '%s' module." + +#, php-format +#~ msgid "Error add the alert, the template '%s' don't exist." +#~ msgstr "Error on adding the alert, the template '%s' doesn't exist." + +#, php-format +#~ msgid "Error add the alert, the module '%s' don't exist." +#~ msgstr "Error on adding the alert, the module '%s' doesn't exist." + +#, php-format +#~ msgid "Success add '%s' alert." +#~ msgstr "Success in adding '%s' alert." + +#, php-format +#~ msgid "Error add '%s' alert." +#~ msgstr "Error on adding '%s' alert." + +#, php-format +#~ msgid "Error add the alert, the action '%s' don't exist." +#~ msgstr "Error on adding the alert, the action '%s' doesn't exist." + +#, php-format +#~ msgid "Success add '%s' action." +#~ msgstr "Success in adding '%s' action." + +#~ msgid "Report to build" +#~ msgstr "Report to build" + +#~ msgid "Save to disk into path" +#~ msgstr "Save to disk in path" + +#~ msgid "Save custom report to disk" +#~ msgstr "Save custom report to disk" + +#~ msgid "Backup Pandora database" +#~ msgstr "Backup Pandora database" + +#~ msgid "Not scheduled" +#~ msgstr "Not scheduled" + +#~ msgid "Hourly" +#~ msgstr "Hourly" + +#~ msgid "Yearly" +#~ msgstr "Annually" + +#~ msgid "This is the automatic generated report" +#~ msgstr "This is the automatically generated report" + +#~ msgid "Open the attached file to view it" +#~ msgstr "Open the attached file to view it" + +#~ msgid "Cron jobs" +#~ msgstr "Cron jobs" + +#~ msgid "Add new job" +#~ msgstr "Add new job" + +#~ msgid "Path doesn't exists or is not writable" +#~ msgstr "Path doesn't exist or is not writable." + +#~ msgid "Edit job" +#~ msgstr "Edit job" + +#~ msgid "Cron extension is not running" +#~ msgstr "Cron extension is not running" + +#~ msgid "Cron extension has never run or it's not configured well" +#~ msgstr "Cron extension has never run or it's not configured well." + +#~ msgid "" +#~ "This extension relies on a proper setup of cron, the time-based scheduling " +#~ "service" +#~ msgstr "" +#~ "This extension relies on a proper setup of cron, the time-based scheduling " +#~ "service." + +#~ msgid "Please, add the following line to your crontab file" +#~ msgstr "Please add the following line to your crontab file" + +#~ msgid "Last execution" +#~ msgstr "Last execution" + +#~ msgid "Cron extension is running" +#~ msgstr "Cron extension is running" + +#~ msgid "Scheduled jobs" +#~ msgstr "Scheduled jobs" + +#~ msgid "Scheduled" +#~ msgstr "Scheduled" + #~ msgid "First_execution" #~ msgstr "First_execution" @@ -36209,12 +26892,299 @@ msgstr "Only user can use the API" #~ "Maybe the first run is not exactly equal to this value because the cron " #~ "configuration is different." +#~ msgid "Last run" +#~ msgstr "Last run" + +#~ msgid "Force run" +#~ msgstr "Force run" + +#~ msgid "Path" +#~ msgstr "Path" + #~ msgid "First execution" #~ msgstr "First execution" +#~ msgid "Translate string" +#~ msgstr "Translate string" + +#~ msgid "Example:" +#~ msgstr "Example:" + +#~ msgid "Bit mask" +#~ msgstr "Bit mask" + +#~ msgid "Net mask" +#~ msgstr "Net mask" + +#~ msgid "Mask format" +#~ msgstr "Mask format" + +#~ msgid "Mask" +#~ msgstr "Mask" + +#~ msgid "Calculate" +#~ msgstr "Calculate" + +#~ msgid "Address field is empty" +#~ msgstr "Address field is empty" + +#~ msgid "Mask field is empty" +#~ msgstr "Mask field is empty" + +#~ msgid "Incorrect address format" +#~ msgstr "Incorrect address format" + +#~ msgid "Incorrect mask format" +#~ msgstr "Incorrect mask format" + +#~ msgid "Network mask" +#~ msgstr "Network mask" + +#~ msgid "Network wildcard" +#~ msgstr "Network wildcard" + +#~ msgid "Network address" +#~ msgstr "Network address" + +#~ msgid "Broadcast address" +#~ msgstr "Broadcast address" + +#~ msgid "First valid IP" +#~ msgstr "First valid IP" + +#~ msgid "Last valid IP" +#~ msgstr "Last valid IP" + +#~ msgid "Hosts/Net" +#~ msgstr "Hosts/Net" + +#~ msgid "Hostname" +#~ msgstr "Hostname" + +#~ msgid "Operating system" +#~ msgstr "Operating system" + +#~ msgid "This agent has other IPs" +#~ msgstr "This agent has other IPs" + +#~ msgid "Generate events" +#~ msgstr "Generate events" + +#~ msgid "Managed" +#~ msgstr "Managed" + +#~ msgid "Edited" +#~ msgstr "Edited" + +#~ msgid "Ping" +#~ msgstr "Ping" + +#~ msgid "Ping to host" +#~ msgstr "Ping to host" + +#~ msgid "Network not found" +#~ msgstr "Network not found" + +#~ msgid "Format: IP/Mask" +#~ msgstr "Format: IP/Mask" + +#~ msgid "Examples" +#~ msgstr "Examples" + +#~ msgid "For example: Central Data Center" +#~ msgstr "For example: Central Data Centre" + +#~ msgid "Scan interval" +#~ msgstr "Scan interval" + +#~ msgid "0 for manually scan" +#~ msgstr "0 for manually scan" + +#~ msgid "Successfully updated." +#~ msgstr "Successfully updated." + +#~ msgid "Alive" +#~ msgstr "Alive" + +#~ msgid "No networks found" +#~ msgstr "No networks found" + +#~ msgid "IPs" +#~ msgstr "IPs" + +#~ msgid "Manage addresses" +#~ msgstr "Manage addresses" + +#~ msgid "Addresses view" +#~ msgstr "Addresses view" + +#~ msgid "Edit network" +#~ msgstr "Edit network" + +#~ msgid "Delete network" +#~ msgstr "Delete network" + +#~ msgid "Export to Excel" +#~ msgstr "Export to Excel" + +#~ msgid "No addresses found on this network" +#~ msgstr "No addresses found on this network" + +#~ msgid "Subnet" +#~ msgstr "Subnet" + +#~ msgid "Total IPs" +#~ msgstr "Total IPs" + +#~ msgid "Not alive" +#~ msgstr "Not alive" + +#~ msgid "Not managed" +#~ msgstr "Unmanaged" + +#~ msgid "DESC" +#~ msgstr "DESC" + +#~ msgid "ASC" +#~ msgstr "ASC" + +#~ msgid "A -> Z" +#~ msgstr "A -> Z" + +#~ msgid "Z -> A" +#~ msgstr "Z -> A" + +#~ msgid "Last check" +#~ msgstr "Last check" + +#~ msgid "Newer -> Older" +#~ msgstr "Newer -> Older" + +#~ msgid "Older -> Newer" +#~ msgstr "Older -> Newer" + +#~ msgid "Exact address match" +#~ msgstr "Exact address match" + +#~ msgid "Big" +#~ msgstr "Big" + +#~ msgid "Tiny" +#~ msgstr "Tiny" + +#~ msgid "Icons style" +#~ msgstr "Icons style" + +#~ msgid "Show not alive hosts" +#~ msgstr "Show not alive hosts" + +#~ msgid "Show only managed addresses" +#~ msgstr "Show only managed addresses" + +#~ msgid "Filter options" +#~ msgstr "Filter options" + +#~ msgid "Edit address" +#~ msgstr "Edit address" + +#~ msgid "Disabled address" +#~ msgstr "Disabled address" + +#~ msgid "This address will not be updated by the server" +#~ msgstr "This address will not be updated by the server" + +#~ msgid "Change to automatic mode" +#~ msgstr "Change to automatic mode" + +#~ msgid "Change to manual mode" +#~ msgstr "Change to manual mode" + +#~ msgid "Add comments" +#~ msgstr "Add comments" + +#~ msgid "Update agent address" +#~ msgstr "Update agent address" + +#~ msgid "Please, uncheck auto option to set manual agent." +#~ msgstr "Please, uncheck auto option to set manual agent." + +#~ msgid "CSV import" +#~ msgstr "CSV import" + +#~ msgid "Subnetworks calculator" +#~ msgstr "Subnetworks calculator" + +#~ msgid "IPAM" +#~ msgstr "IPAM" + +#, php-format +#~ msgid "Created agent %s" +#~ msgstr "Created agent %s" + +#~ msgid "File processed" +#~ msgstr "File processed" + +#~ msgid "CSV format" +#~ msgstr "CSV format" + +#~ msgid "The CSV file must have the fields in the following order" +#~ msgstr "The CSV file must have the fields in the following order" + +#~ msgid "Separator" +#~ msgstr "Separator" + +#~ msgid "Upload CSV file" +#~ msgstr "Upload CSV file" + +#~ msgid "Wizard SLA" +#~ msgstr "SLA-Wizard" + +#~ msgid "Global" +#~ msgstr "Global" + +#~ msgid "Advance options" +#~ msgstr "Advanced options" + +#~ msgid "Templates list" +#~ msgstr "Templates list" + +#~ msgid "Templates Wizard" +#~ msgstr "Templates Wizard" + +#~ msgid "Day" +#~ msgstr "Day" + #~ msgid "Summary of SLA Fails" #~ msgstr "Summary of SLA Failures" +#~ msgid "SLA Compliance per days" +#~ msgstr "SLA Compliance per days" + +#, php-format +#~ msgid "Graph agents(%s) - %s" +#~ msgstr "Graph agents(%s) - %s" + +#~ msgid "Template editor" +#~ msgstr "Template editor" + +#~ msgid "Get PDF file" +#~ msgstr "Get PDF file" + +#~ msgid "Crit:" +#~ msgstr "Crit:" + +#~ msgid "Warn:" +#~ msgstr "Warn:" + +#~ msgid "Ok:" +#~ msgstr "Ok:" + +#~ msgid "Value:" +#~ msgstr "Value :" + +#~ msgid "Show details" +#~ msgstr "Show details" + #~ msgid "Radius" #~ msgstr "Radius" @@ -36227,6 +27197,30 @@ msgstr "Only user can use the API" #~ msgid "Show modules:" #~ msgstr "Show modules:" +#~ msgid "Module alert" +#~ msgstr "Module alert" + +#~ msgid "Empty configuration" +#~ msgstr "Empty configuration" + +#~ msgid "Empty OS" +#~ msgstr "Empty OS" + +#~ msgid "Client" +#~ msgstr "Client" + +#~ msgid "Trial" +#~ msgstr "Trial" + +#~ msgid "Lines" +#~ msgstr "Lines" + +#~ msgid "Metaconsole" +#~ msgstr "Metaconsole" + +#~ msgid "Automated Pandora FMS report for user defined report" +#~ msgstr "Automated Pandora FMS report for user defined report" + #~ msgid "Generated: " #~ msgstr "Generated: " @@ -36239,6 +27233,205 @@ msgstr "Only user can use the API" #~ msgid "CONTENTS" #~ msgstr "CONTENTS" +#~ msgid "SO" +#~ msgstr "SO" + +#~ msgid "There are no modules." +#~ msgstr "There are no modules." + +#~ msgid "No description" +#~ msgstr "No description" + +#~ msgid "Restoring a backup" +#~ msgstr "Restoring a backup" + +#~ msgid "Restoring a Pandora database backup must be done manually" +#~ msgstr "Restoring the Pandora database backup must be done manually." + +#~ msgid "" +#~ "It's a complex operation that needs human intervation to avoid system " +#~ "failures and data loosing" +#~ msgstr "" +#~ "It's a complex operation that needs human intervation to avoid system " +#~ "failures and data loss." + +#~ msgid "To restore the selected backup, please follow these steps" +#~ msgstr "To restore the selected backup, please follow these steps" + +#~ msgid "Open a root shell in your system located at " +#~ msgstr "Open a root shell in your system located at " + +#~ msgid "Connect to MySQL database using the following command" +#~ msgstr "Please connect to MySQL database using the following command" + +#~ msgid "Create a new database" +#~ msgstr "Create a new database" + +#~ msgid "Restore the backup" +#~ msgstr "Restore the backup" + +#~ msgid "Modify console configuration to use this new database" +#~ msgstr "Please modify console configuration to use this new database." + +#~ msgid "Open configuration file" +#~ msgstr "Open configuration file" + +#~ msgid "Find" +#~ msgstr "Find" + +#~ msgid "and replace with" +#~ msgstr "and replace it with" + +#~ msgid "Modify servers configuration to use this new database" +#~ msgstr "Modify server configuration to use this new database." + +#~ msgid "Find servers configuration file and replace the following lines" +#~ msgstr "" +#~ "Please find the server configuration file and replace the following lines" + +#~ msgid "Restart the servers and login again into the console" +#~ msgstr "Please restart the servers and login to the console again." + +#~ msgid "Run import command using the following command" +#~ msgstr "Please run the import command using the following command" + +#~ msgid "Into your destination database." +#~ msgstr "Into your destination database." + +#, php-format +#~ msgid "Fail create the directory: %s" +#~ msgstr "Failure in creating the directory: %s" + +#~ msgid "No files in collection" +#~ msgstr "No files in collection" + +#~ msgid "File of collection is bigger than the limit (" +#~ msgstr "File of collection is bigger than the limit (" + +#~ msgid "Log collector" +#~ msgstr "Log collector" + +#, php-format +#~ msgid "There are %s updates, and the first to update is:" +#~ msgstr "There are %s updates, and the first to update is:" + +#~ msgid "Version number:" +#~ msgstr "Version number:" + +#~ msgid "Database credentials not found" +#~ msgstr "Database credentials not found" + +#~ msgid "Error connecting to the specified host" +#~ msgstr "Error on connecting to the specified host" + +#~ msgid "Connected to the host, but cannot found the specified database" +#~ msgstr "Connected to host, but cannot find the specified database." + +#~ msgid "" +#~ "\"Translate string\" extension is missed in the server. This extension is " +#~ "mandatory to be configured on metaconsole." +#~ msgstr "" +#~ "\"Translate string\" extension is missing in the server. This extension is " +#~ "mandatory to be configured on metaconsole." + +#~ msgid "" +#~ "Server name doesnt match. Check the node server name and configure the same " +#~ "one on metasetup" +#~ msgstr "" +#~ "Server name doesn't match. Check the node server name and configure the same " +#~ "one on metasetup." + +#~ msgid "Last event replication" +#~ msgstr "Last event replication" + +#~ msgid "Tree view by tags" +#~ msgstr "Tree view by tags" + +#~ msgid "No changes found" +#~ msgstr "No changes found." + +#~ msgid "Get CSV file" +#~ msgstr "Get CSV file" + +#~ msgid "Service does not exist." +#~ msgstr "Service does not exist." + +#~ msgid "Module store the service does not exist." +#~ msgstr "Module for storing the service does not exist." + +#~ msgid "Module store SLA service does not exist." +#~ msgstr "Module for storing SLA service does not exist." + +#~ msgid "Agent store the service does not exist." +#~ msgstr "Agent for storing the service does not exist." + +#~ msgid "Agent store SLA service does not exist." +#~ msgstr "Agent to store the SLA service does not exist." + +#~ msgid "Alert critical SLA service does not exist." +#~ msgstr "Alert for critical SLA service does not exist." + +#~ msgid "Alert warning service does not exist." +#~ msgstr "Alert warning service does not exist." + +#~ msgid "Alert critical service does not exist." +#~ msgstr "Alert for critical service does not exist." + +#~ msgid "Alert unknown service does not exist." +#~ msgstr "Alert for unknown service does not exist." + +#, php-format +#~ msgid "Module automatic create for the service %s" +#~ msgstr "Automatic module creation for the service %s" + +#~ msgid "Critical (Alert)" +#~ msgstr "Critical (Alert)" + +#~ msgid "There are no service elements defined" +#~ msgstr "There are no service elements defined." + +#~ msgid "Weight Critical" +#~ msgstr "Weight Critical" + +#~ msgid "Weight Warning" +#~ msgstr "Weight Warning" + +#~ msgid "Weight Unknown" +#~ msgstr "Weight Unknown" + +#~ msgid "Weight Ok" +#~ msgstr "Weight Ok" + +#~ msgid "Delete service element" +#~ msgstr "Delete service element" + +#~ msgid "FAIL" +#~ msgstr "FAIL" + +#~ msgid "Policy linkation" +#~ msgstr "Policy linking" + +#~ msgid "Module linked" +#~ msgstr "Module linked" + +#~ msgid "Unlink from policy" +#~ msgstr "Unlink from policy" + +#~ msgid "Module unlinked" +#~ msgstr "Module unlinked" + +#~ msgid "Relink to policy" +#~ msgstr "Relink to policy" + +#~ msgid "Module pending to link" +#~ msgstr "Module pending to link" + +#~ msgid "Module pending to unlink" +#~ msgstr "Module pending to unlink" + +#~ msgid "Create a new policy map" +#~ msgstr "Create a new policy map" + #~ msgid "You must change password" #~ msgstr "You have to change the password" @@ -36248,11 +27441,44 @@ msgstr "Only user can use the API" #~ msgid "CONFIRM: " #~ msgstr "CONFIRM: " +#~ msgid "Change" +#~ msgstr "Change" + +#~ msgid "User has been blocked. Try again in " +#~ msgstr "User has been blocked. Please try again in " + +#~ msgid " minutes" +#~ msgstr " minutes" + +#~ msgid "Password must be different from the " +#~ msgstr "Password must be different from the " + +#~ msgid " previous changes." +#~ msgstr " previous changes." + +#~ msgid "Password must be different" +#~ msgstr "Password must be different" + +#~ msgid "Password too short" +#~ msgstr "Password too short" + +#~ msgid "Password must contain numbers" +#~ msgstr "Password has to contain numbers." + +#~ msgid "Password must contain symbols" +#~ msgstr "Password has to contain symbols." + +#~ msgid "User pass successfully updated" +#~ msgstr "User pass successfully updated" + #~ msgid "Error updating user pass (no change?)" #~ msgstr "Error updating user pass (no change ?)" -#~ msgid "Continue despite this warning" -#~ msgstr "Continue despite this warning" +#~ msgid "Password confirm does not match" +#~ msgstr "Password confirm does not match" + +#~ msgid "Password empty" +#~ msgstr "Password empty" #~ msgid "Incidents opened" #~ msgstr "Incidents opened" @@ -36319,15 +27545,132 @@ msgstr "Only user can use the API" #~ msgid "Opened tickets" #~ msgstr "Opened tickets" +#~ msgid "Send by email" +#~ msgstr "Send by e-mail" + +#~ msgid "Please do not answer or reply to this email" +#~ msgstr "Please do not answer or reply to this e-mail" + +#~ msgid "Send custom report by email" +#~ msgstr "Send custom report by e-mail" + +#~ msgid "Send to email" +#~ msgstr "Send to e-mail" + +#~ msgid "Send to emails (separated by comma)" +#~ msgstr "Send to e-mail addresses (separated by a comma)" + +#~ msgid "Send by email " +#~ msgstr "Send by e-mail " + +#~ msgid "Advance Reporting" +#~ msgstr "Advance Reporting" + +#~ msgid "Advance Options" +#~ msgstr "Advance Options" + +#~ msgid "General Data" +#~ msgstr "General Data" + +#~ msgid "No Services or concrete action" +#~ msgstr "No Services or concrete action" + +#~ msgid "" +#~ "Only the critical elements are relevant to calculate the service status" +#~ msgstr "" +#~ "Only the critical elements are relevant to calculate the service status" + +#~ 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 "" +#~ "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." + +#~ msgid "Order:" +#~ msgstr "Order:" + +#~ msgid "" +#~ "Show a resume table with max, min, average of total modules on the report " +#~ "bottom:" +#~ msgstr "" +#~ "Show a resume table with max, min, average of total modules on the report " +#~ "bottom:" + +#~ msgid "Push the selected services into the list" +#~ msgstr "Push the selected services into the list" + +#~ msgid "Filter tag" +#~ msgstr "Filter tag" + +#~ msgid "Filter by" +#~ msgstr "Filter by" + +#~ msgid "Target group" +#~ msgstr "Target group" + +#~ msgid "Create template report wizard" +#~ msgstr "Create template report wizard" + +#~ msgid "Remove the services from the list" +#~ msgstr "Remove the services from the list" + +#~ msgid "Available" +#~ msgstr "Available" + +#~ msgid "Show address instead module name" +#~ msgstr "Show address instead module name" + +#~ msgid "Tags unused" +#~ msgstr "Tags unused" + +#~ msgid "Successful update the tags" +#~ msgstr "Successful update the tags" + #~ msgid "Masive tags module policy edition" #~ msgstr "Masive tags module policy edition" #~ msgid "Masive modules policy tags edition" #~ msgstr "Masive modules policy tags edition" +#~ msgid "Unsuccessful update the tags" +#~ msgstr "Unsuccessful update the tags" + #~ msgid "Are you sure? All the visual map services will be recreated" #~ msgstr "Are you sure? All the visual map services will be recreated" +#~ msgid "Tags used" +#~ msgstr "Tags used" + +#~ msgid "Update Local Component" +#~ msgstr "Update Local Component" + +#~ msgid "Create Local Component" +#~ msgstr "Create Local Component" + +#~ msgid "Modules unused" +#~ msgstr "Modules unused" + +#~ msgid "Modules used" +#~ msgstr "Modules used" + +#~ msgid "" +#~ "Here is placed the script for the REMOTE inventory modules Local inventory " +#~ "modules don't use this field" +#~ msgstr "" +#~ "Here is placed the script for the REMOTE inventory modules Local inventory " +#~ "modules don't use this field" + +#~ msgid "The collection directory does not exist." +#~ msgstr "The collection directory does not exist." + +#~ msgid "Need to regenerate" +#~ msgstr "Need to regenerate" + #~ msgid "" #~ "In manual mode you should set the weights manually. In auto mode the weights " #~ "have default values.\n" @@ -36345,21 +27688,107 @@ msgstr "Only user can use the API" #~ msgid "No colections" #~ msgstr "No colections" +#~ msgid "Password policy" +#~ msgstr "Password policy" + +#~ msgid "Enterprise ACL Setup" +#~ msgstr "Enterprise ACL Setup" + +#~ msgid "Error: The main directory of collections does not exist." +#~ msgstr "Error: The main directory of collections does not exist." + +#~ msgid "Left blank for the LOCAL inventory modules" +#~ msgstr "Left blank for the LOCAL inventory modules" + +#~ msgid "Metaconsole DB user" +#~ msgstr "Metaconsole DB user" + +#~ msgid "Metaconsole DB name" +#~ msgstr "Metaconsole DB name" + +#~ msgid "Metaconsole DB host" +#~ msgstr "Metaconsole DB host" + #~ msgid "Another collection with the same short name" #~ msgstr "Another collection with the same short name" +#~ msgid "Metaconsole DB port" +#~ msgstr "Metaconsole DB port" + +#~ msgid "Metaconsole DB password" +#~ msgstr "Metaconsole DB password" + +#~ msgid "Error: The collection directory does not exist." +#~ msgstr "Error: The collection directory does not exist." + +#~ msgid "Mobile" +#~ msgstr "Mobile" + +#~ msgid "Last replication at" +#~ msgstr "Last replication at" + +#~ msgid "Export to JSON" +#~ msgstr "Export to JSON" + #~ msgid "Main dashboard" #~ msgstr "Main dashboard" +#~ msgid "The start date cannot be greater than the end date" +#~ msgstr "The start date cannot be greater than the end date" + +#~ msgid "No Services" +#~ msgstr "No Services" + +#~ msgid "JSON" +#~ msgstr "JSON" + #~ msgid "List of Services" #~ msgstr "List of Services" +#~ msgid "Could not be added to deleted all modules." +#~ msgstr "Could not be added to deleted all modules." + +#~ 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 "" +#~ "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." + +#~ msgid "SLA graph" +#~ msgstr "SLA graph" + +#~ msgid "This agent has not modules inventory" +#~ msgstr "This agent has not modules inventory" + +#, php-format +#~ msgid "" +#~ "You can activate it manually here or " +#~ "automatically filling the form below:" +#~ msgstr "" +#~ "You can activate it manually here or " +#~ "automatically filling the form below:" + #~ msgid "List of networkmap Enterprise" #~ msgstr "List of networkmap Enterprise" +#~ msgid "Please contact Artica at info@artica.es for a valid licence." +#~ msgstr "Please contact Artica at info@artica.es for a valid licence." + +#~ msgid "Request new licence" +#~ msgstr "Request new licence" + +#~ msgid "Your request key is:" +#~ msgstr "Your request key is:" + #~ msgid "Activate licence" #~ msgstr "Activate licence" +#~ msgid "Invalid licence." +#~ msgstr "Invalid licence." + #~ msgid "E-mail:" #~ msgstr "E-mail:" @@ -36367,15 +27796,154 @@ msgstr "Only user can use the API" #~ msgid "® Ártica soluciones Pandora FMS %s - Build %s" #~ msgstr "® Ártica soluciones Pandora FMS %s - Build %s" +#~ msgid "Summary by status" +#~ msgstr "Summary by status" + +#~ msgid "% Monitors Critical" +#~ msgstr "% Monitors Critical" + +#~ msgid "When connecting to Artica server." +#~ msgstr "When connecting to Artica server." + #~ msgid "Contact:" #~ msgstr "Contact:" +#~ msgid "Auth Key:" +#~ msgstr "Auth Key:" + +#~ msgid "Online validation" +#~ msgstr "Online validation" + +#~ msgid "ERROR:" +#~ msgstr "ERROR:" + +#~ msgid "% Monitors OK" +#~ msgstr "% Monitors OK" + +#~ msgid "% Monitors Warning" +#~ msgstr "% Monitors Warning" + +#~ msgid "Move Agents" +#~ msgstr "Move Agents" + +#~ 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" +#~ msgstr "" +#~ "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" + +#~ msgid "Based on name" +#~ msgstr "Based on name" + +#~ msgid "Could not be create, duplicated server name." +#~ msgstr "Could not be create, duplicated server name." + +#~ msgid "Group or Tag" +#~ msgstr "Group or Tag" + +#~ msgid "% Agents Unknown" +#~ msgstr "% Agents Unknown" + +#~ msgid "Report of events" +#~ msgstr "Report of events" + +#~ msgid "Report of state" +#~ msgstr "Report of state" + +#~ msgid "Info of state in events" +#~ msgstr "Info of state in events" + +#~ msgid "Apply Policies" +#~ msgstr "Apply Policies" + +#~ msgid "Please choose other server." +#~ msgstr "Please choose other server." + +#, php-format +#~ msgid "Error creating %s groups" +#~ msgstr "Error creating %s groups" + +#~ msgid "Open for more details" +#~ msgstr "Open for more details" + +#, php-format +#~ msgid "(Error Duplicate ID (%d) ) " +#~ msgstr "(Error Duplicate ID (%d) ) " + +#~ msgid "Open for more details in update" +#~ msgstr "Open for more details in update" + +#~ msgid "None update or create group" +#~ msgstr "None update or create group" + +#~ msgid "" +#~ "There was an error creating the alerts, the operation has been cancelled ." +#~ msgstr "" +#~ "There was an error creating the alerts, the operation has been cancelled ." + +#~ msgid "Open for more details in creation" +#~ msgstr "Open for more details in creation" + +#, php-format +#~ msgid "Error updating %s groups" +#~ msgstr "Error updating %s groups" + #~ msgid "Networkmap list" #~ msgstr "Networkmap list" #~ msgid "Filter by tag" #~ msgstr "Filter by tag" +#~ msgid "" +#~ "The user doesn't have permission to read agents. Please contact with your " +#~ "pandora administrator." +#~ msgstr "" +#~ "The user doesn't have permission to read agents. Please contact with your " +#~ "pandora administrator." + +#~ msgid "Show the tree view" +#~ msgstr "Show the tree view" + +#, php-format +#~ msgid "There is a error: %s" +#~ msgstr "There is an error: %s" + +#~ msgid "Group does not exist. Agent " +#~ msgstr "Group does not exist. Agent " + +#~ msgid "Created group in destination DB" +#~ msgstr "Created group in destination DB" + +#~ msgid "Module successfully added." +#~ msgstr "Module successfully added." + +#~ msgid "Availability item created from wizard." +#~ msgstr "Availability item created from wizard." + +#~ msgid "Error creating group. Agent " +#~ msgstr "Error creating group. Agent " + +#~ msgid "Group already exists in destination DB" +#~ msgstr "Group already exists in destination DB" + +#~ msgid "Summary of SLA Failures" +#~ msgstr "Summary of SLA Failures" + +#~ msgid "There are no SLAs defined." +#~ msgstr "There are no SLAs defined." + +#~ msgid "Nonexistent" +#~ msgstr "Nonexistent" + +#~ msgid "Error accesing to API, auth error." +#~ msgstr "Error accesing to API, auth error." + +#~ msgid "Error accesing to API." +#~ msgstr "Error accesing to API." + #~ msgid "# Failed" #~ msgstr "# Failed" @@ -36388,9 +27956,83 @@ msgstr "Only user can use the API" #~ msgid "This element should be deleted" #~ msgstr "This element should be deleted" +#~ msgid "None of the services was added" +#~ msgstr "None of the services was added" + +#, php-format +#~ msgid "%d services couldn't be added" +#~ msgstr "%d services couldn't be added" + +#~ msgid "There was an error retrieving the visual map information" +#~ msgstr "There was an error retrieving the visual map information" + +#~ msgid "No services selected" +#~ msgstr "No services selected" + +#~ msgid "There is not an available IP." +#~ msgstr "There is not an available IP." + +#~ msgid "Next available IP Address is:" +#~ msgstr "Next available IP Address is:" + +#~ msgid "Invalid old password" +#~ msgstr "Invalid old password" + #~ msgid "OLD PASS: " #~ msgstr "OLD PASS: " +#~ msgid "Reserved addresses" +#~ msgstr "Reserved addresses" + +#~ msgid "Unreserved" +#~ msgstr "Unreserved" + +#~ msgid "Assign next free IP" +#~ msgstr "Assign next free IP" + +#~ msgid "" +#~ "The list of users can manage the networks in the IPAM. Only the admin users " +#~ "can manage networks and edit the networks." +#~ msgstr "" +#~ "The list of users can manage the networks in the IPAM. Only the admin users " +#~ "can manage networks and edit the networks." + +#~ msgid "Addresses" +#~ msgstr "Addresses" + +#~ msgid "Operator users" +#~ msgstr "Operator users" + +#~ msgid "Not Reserved" +#~ msgstr "Not Reserved" + +#~ msgid "Manage this IP now" +#~ msgstr "Manage this IP now" + +#~ msgid "Reserve this IP now" +#~ msgstr "Reserve this IP now" + +#~ msgid "Reserved" +#~ msgstr "Reserved" + +#~ msgid "Next available IP" +#~ msgstr "Next available IP" + +#~ msgid "ACL users for this agent" +#~ msgstr "ACL users for this agent" + +#~ msgid "There are no defined users" +#~ msgstr "There are no defined users" + +#~ msgid "ACL module tags for the modules in this agent" +#~ msgstr "ACL module tags for the modules in this agent" + +#~ msgid "Only admin users can see this section." +#~ msgstr "Only admin users can see this section." + +#~ msgid "Check ACL" +#~ msgstr "Check ACL" + #~ msgid "Display proc modules in binary format (OK/FAIL)." #~ msgstr "Display proc modules in binary format (OK/FAIL)." @@ -36412,12 +28054,107 @@ msgstr "Only user can use the API" #~ msgid "Store group" #~ msgstr "Store group" +#~ msgid "Create new custom" +#~ msgstr "Create new custom" + #~ msgid "Generate a dinamic report" #~ msgstr "Generate a dinamic report" +#~ msgid "Bulk modules policy tags edit" +#~ msgstr "Bulk modules policy tags edit" + +#~ msgid "Bulk tags module policy edit" +#~ msgstr "Bulk tags module policy edit" + +#~ msgid "Bulk alert SNMP edit" +#~ msgstr "Bulk alert SNMP edit" + +#~ msgid "Bulk alert SNMP delete" +#~ msgstr "Bulk alert SNMP delete" + +#~ msgid "Generate" +#~ msgstr "Generate" + +#~ msgid "Undo agents" +#~ msgstr "Undo agents" + +#~ msgid "Bulk alerts policy delete" +#~ msgstr "Bulk alerts policy delete" + +#~ msgid "Bulk Satellite modules edit" +#~ msgstr "Bulk Satellite modules edit" + +#~ msgid "Bulk alerts policy add" +#~ msgstr "Bulk alerts policy add" + +#~ msgid "Add agents" +#~ msgstr "Add agents" + +#~ msgid "No inventory modules defined" +#~ msgstr "No inventory modules defined" + +#~ msgid "" +#~ "Unable to create the collection. Another collection with the same short name." +#~ msgstr "" +#~ "Unable to create the collection. Another collection with the same short name." + +#~ msgid "There are no defined export targets" +#~ msgstr "There are no defined export targets" + +#~ msgid "There are no defined skins" +#~ msgstr "There are no defined skins" + +#~ msgid "No replication yet" +#~ msgstr "No replication yet" + +#~ msgid "Metaconsole DB engine" +#~ msgstr "Metaconsole DB engine" + +#~ msgid "There are no defined alert event rules" +#~ msgstr "There are no defined alert event rules" + +#~ msgid "Oracle" +#~ msgstr "Oracle" + +#~ msgid "MySQL" +#~ msgstr "MySQL" + +#~ msgid "Hidden" +#~ msgstr "Hidden" + #~ msgid "Monitor all your systems with a single tool" #~ msgstr "Monitor all your systems with a single tool" +#~ msgid "Activate license" +#~ msgstr "Activate license" + +#~ msgid "There are no defined plugins" +#~ msgstr "There are no defined plugins" + +#~ msgid "There are no defined modules" +#~ msgstr "There are no defined modules" + +#~ msgid "Error could not resolve the host." +#~ msgstr "Error could not resolve the host." + +#~ msgid "There are no defined inventory modules" +#~ msgstr "There are no defined inventory modules" + +#~ msgid "There are no defined modules unlinked" +#~ msgstr "There are no defined modules unlinked" + +#~ msgid "There are no defined events alerts" +#~ msgstr "There are no defined events alerts" + +#~ msgid "Offline Update Manager" +#~ msgstr "Offline Update Manager" + +#~ msgid "Nonexistent. This element should be deleted" +#~ msgstr "Nonexistent. This element should be deleted" + +#~ msgid "Contents" +#~ msgstr "Contents" + #~ msgid "" #~ "There is a new update please go to menu Administration and into extensions " #~ "include/config.php
    file.

    \n" @@ -36734,6 +28461,9 @@ msgstr "Only user can use the API" #~ msgid "Could not create network map" #~ msgstr "Couldn't create the network map" +#~ msgid "Groups view" +#~ msgstr "Group view" + #~ msgid "Separation between elements in the map (in Non-overlap mode)" #~ msgstr "Separation amongst elements on the map (in no-overlap mode)" @@ -36762,15 +28492,141 @@ msgstr "Only user can use the API" #~ msgid "There was a problem deteling incident" #~ msgstr "There was a problem deleting the incident" +#~ msgid "Save the actual layout design" +#~ msgstr "Save actual layout design" + +#~ msgid "Error: there are cells not empty." +#~ msgstr "Error: there are cells not empty." + +#~ 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." +#~ msgstr "" +#~ "Error, you are trying to add a widget in a empty cell. Please save the " +#~ "layout before to add any widget in this cell." + +#~ msgid "Config widget" +#~ msgstr "Config widget" + +#~ msgid "Please configure this widget before usage" +#~ msgstr "Please configure this widget before usage" + +#~ msgid "Legend Position" +#~ msgstr "Legend Position" + +#~ msgid "No legend" +#~ msgstr "No legend" + +#~ msgid "Different parent" +#~ msgstr "Different parent" + +#~ msgid "Different name" +#~ msgstr "Different name" + +#~ msgid "Empty queue." +#~ msgstr "Empty queue." + +#~ msgid "Licence" +#~ msgstr "Licence" + +#~ msgid "Agent cache" +#~ msgstr "Agent cache" + +#~ msgid "" +#~ "The selected user profile will be added to the selected users into the target" +#~ msgstr "" +#~ "The selected user profile will be added to the selected users into the target" + +#~ msgid "" +#~ "The target user profiles will be replaced with the source user profiles" +#~ msgstr "" +#~ "The target user profiles will be replaced with the source user profiles" + +#~ msgid "Remove agents to doesn't move to destination server" +#~ msgstr "Remove agents to doesn't move to destination server" + +#~ 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" +#~ msgstr "" +#~ "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" + +#~ msgid "Server management" +#~ msgstr "Server management" + +#~ msgid "Go to pandorafms.com" +#~ msgstr "Go to pandorafms.com" + #~ msgid "Pandora Help" #~ msgstr "Pandora Help" +#~ msgid "Go to Pandora FMS Wiki" +#~ msgstr "Go to Pandora FMS Wiki" + #~ msgid "Pandora Support" #~ msgstr "Pandora Support" #~ msgid "Login off" #~ msgstr "Login off" +#~ msgid "% Agents not init" +#~ msgstr "% Agents not init" + +#~ msgid "% Monitors Unknown" +#~ msgstr "% Monitors Unknown" + +#~ msgid "% Monitors Not init" +#~ msgstr "% Monitors Not init" + +#, php-format +#~ msgid "Created group %s" +#~ msgstr "Created group %s" + +#, php-format +#~ msgid "Could not create group %s" +#~ msgstr "Could not create group %s" + +#~ msgid "The location is not filled, please add a location." +#~ msgstr "The location is not filled, please add a location." + +#~ msgid "CSV import group" +#~ msgstr "CSV import group" + +#~ msgid "Report type" +#~ msgstr "Report type" + +#~ msgid "Uknown agents" +#~ msgstr "Uknown agents" + +#~ msgid "Last 8 hours events" +#~ msgstr "Last 8 hours events" + +#~ msgid "Illegal query or any other error" +#~ msgstr "Illegal query or any other error" + +#~ msgid "% OK" +#~ msgstr "% OK" + +#~ msgid "% Wrong" +#~ msgstr "% Wrong" + +#~ msgid "Simple Graph" +#~ msgstr "Simple Graph" + +#~ msgid "Agent cache activated" +#~ msgstr "Agent cache activated" + +#~ msgid "Agent cache failed" +#~ msgstr "Agent cache failed" + +#~ msgid "No services defined." +#~ msgstr "No services defined." + #~ msgid "Generate networkmap with parents relationships" #~ msgstr "Generate networkmap with parents relationships" @@ -36784,6 +28640,65 @@ msgstr "Only user can use the API" #~ msgid "Refresh network map state" #~ msgstr "Refresh network map state" +#~ msgid "" +#~ "All the items are not available in CSV, only the previous versions ones." +#~ msgstr "" +#~ "All the items are not available in CSV, only the previous versions ones." + +#~ msgid "Invalid service" +#~ msgstr "Invalid service" + +#~ msgid "No name and description specified for the service" +#~ msgstr "No name and description specified for the service" + +#~ msgid "No name specified for the service" +#~ msgstr "No name specified for the service" + +#~ msgid "No description specified for the service" +#~ msgstr "No description specified for the service" + +#~ msgid "You should set the weights manually" +#~ msgstr "You should set the weights manually" + +#~ msgid "The weights have default values" +#~ msgstr "The weights have default values" + +#~ msgid "" +#~ "Only the elements configured as 'critical element' are used to calculate the " +#~ "service status" +#~ msgstr "" +#~ "Only the elements configured as 'critical element' are used to calculate the " +#~ "service status" + +#~ msgid "Error: The conf file of server is not readble." +#~ msgstr "Error: The conf file of server is not readble." + +#~ msgid "Error: The conf file of server is not writable." +#~ msgstr "Error: The conf file of server is not writable." + +#~ msgid "Delete remote conf server files in Pandora" +#~ msgstr "Delete remote conf server files in Pandora" + +#~ msgid "" +#~ "Delete this conf file implies that Pandora will send back local config to " +#~ "console" +#~ msgstr "" +#~ "Delete this conf file implies that Pandora will send back local config to " +#~ "console" + +#~ msgid "Section 2" +#~ msgstr "Section 2" + +#~ msgid "Section 3" +#~ msgstr "Section 3" + +#~ msgid "" +#~ "Limit the number of events that are replicated metaconsole each specified " +#~ "range." +#~ msgstr "" +#~ "Limit the number of events that are replicated metaconsole each specified " +#~ "range." + #~ msgid "" #~ "Enable this option will be synchronice the groups and tags each new user " #~ "when he/she will login." @@ -36791,14 +28706,650 @@ msgstr "Only user can use the API" #~ "Enable this option will be synchronice the groups and tags each new user " #~ "when he/she will login." -#~ msgid "New networkmap" -#~ msgstr "New networkmap" +#~ msgid "Search by name, description or data, list matches." +#~ msgstr "Search by name, description or data, list matches." + +#~ msgid "You haven't created templates yet." +#~ msgstr "You haven't created templates yet." + +#~ msgid "Generate a dynamic report\"" +#~ msgstr "Generate a dynamic report\"" + +#~ msgid "Policy name already exists" +#~ msgstr "Policy name already exists" + +#, php-format +#~ msgid "" +#~ "License out of limits

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

    " +#~ "This license allows %d modules and you have %d modules configured." + +#~ msgid "This widget only working in desktop version." +#~ msgstr "This widget will only work on desktop version." + +#~ msgid "Could not be duplicate" +#~ msgstr "Could not be duplicated" + +#~ msgid "Precision must be a integer number between 0 and 5" +#~ msgstr "Precision must be an integer number between 0 and 5" + +#~ 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" +#~ msgstr "" +#~ "If event purge is lower than events days passed to history DB you will lose " +#~ "data. We recommend that events days purge is longer than events days passed " +#~ "to history DB" + +#~ 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 "" +#~ "If the number of days purged is lower than history days passed to the " +#~ "history DB, data will be lost. It's recommended that days purged be longer " +#~ "than days passed to history DB." + +#~ msgid "Problems with days purge and days that pass data to history DB" +#~ msgstr "Problems with days purged and days that pass data to history DB" + +#~ msgid "Time OK week" +#~ msgstr "Time OK week" + +#~ msgid "Time Total week" +#~ msgstr "Time Total week" + +#~ msgid "Year" +#~ msgstr "Year" + +#~ msgid "Time Downtime week" +#~ msgstr "Time Downtime week" + +#~ msgid "Time Not Init week" +#~ msgstr "Time Not Init week" + +#~ msgid "Time Unknown week" +#~ msgstr "Time Unknown week" + +#~ msgid "Checks Total week" +#~ msgstr "Checks Total week" + +#~ msgid "Checks OK week" +#~ msgstr "Checks OK week" + +#~ msgid "Time Error week" +#~ msgstr "Time Error week" + +#~ msgid "Checks Error week" +#~ msgstr "Checks Error week" + +#~ msgid "Change every" +#~ msgstr "Change every" + +#~ msgid "Stop" +#~ msgstr "Stop" + +#~ msgid "No slides selected" +#~ msgstr "No slides selected" + +#~ msgid "Exit fullscreen" +#~ msgstr "Exit fullscreen" + +#, php-format +#~ msgid "Error add '%s' agent plugin." +#~ msgstr "Error add '%s' agent plugin." + +#, php-format +#~ msgid "Success add '%s' agent plugin." +#~ msgstr "Success add '%s' agent plugin." + +#~ msgid "Error add the module plugin importation, plugin is not registered" +#~ msgstr "Error add the module plugin importation, plugin is not registered" + +#~ msgid "Missing id" +#~ msgstr "Missing id" + +#~ msgid "The user doesn't have permission to read agents" +#~ msgstr "The user doesn't have permission to read agents" + +#~ msgid "Refresh every" +#~ msgstr "Refresh every" + +#~ msgid "Slides" +#~ msgstr "Slides" + +#~ msgid "" +#~ "If propagate acl is activated, this group will include its child groups" +#~ msgstr "" +#~ "If propagate acl is activated, this group will include its child groups" + +#~ msgid "Until next" +#~ msgstr "Until next" + +#~ msgid "Show a service map" +#~ msgstr "Show a service map" + +#~ msgid "Agents status" +#~ msgstr "Agents status" + +#~ msgid "Tab" +#~ msgstr "Tab" + +#~ msgid "Modules status" +#~ msgstr "Modules status" + +#~ msgid "Filter agents" +#~ msgstr "Filter agents" + +#~ msgid "Open all nodes" +#~ msgstr "Open all nodes" + +#~ msgid "Carriage Return" +#~ msgstr "Carriage Return" + +#~ msgid "Show module value in a table" +#~ msgstr "Show module value in a table" + +#~ msgid "Show a value of module in a table" +#~ msgstr "Show a value of module in a table" + +#~ msgid "Status of module" +#~ msgstr "Status of module" + +#~ msgid "Show status of a module" +#~ msgstr "Show status of a module" + +#~ msgid "Text size of label in px" +#~ msgstr "Text size of label in px" + +#~ msgid "Size of icon" +#~ msgstr "Size of icon" + +#~ msgid "Separator of data" +#~ msgstr "Separator of data" + +#~ msgid "Text size of value in px" +#~ msgstr "Text size of value in px" + +#~ msgid "Vertical Bar" +#~ msgstr "Vertical Bar" + +#~ msgid "Dashboards" +#~ msgstr "Dashboards" + +#~ msgid "Show module value" +#~ msgstr "Show module value" + +#~ msgid "Show a value of module" +#~ msgstr "Show a value of module" + +#~ msgid "Show a value of module and icon" +#~ msgstr "Show a value of module and icon" + +#~ msgid "Successfully duplicate" +#~ msgstr "Successfully duplicate" + +#~ msgid "Commas" +#~ msgstr "Commas" + +#~ msgid "Colon" +#~ msgstr "Colon" + +#~ msgid "Semicolon" +#~ msgstr "Semicolon" + +#~ msgid "Blank" +#~ msgstr "Blank" + +#~ msgid "Module with icon" +#~ msgstr "Module with icon" + +#~ msgid "There are unsaved changes" +#~ msgstr "There are unsaved changes" + +#~ msgid "Cells" +#~ msgstr "Cells" + +#~ msgid "OS synchronization" +#~ msgstr "OS synchronization" + +#~ msgid "There are no dashboards defined." +#~ msgstr "There are no dashboards defined." + +#, php-format +#~ msgid "Private for (%s)" +#~ msgstr "Private for (%s)" + +#~ msgid "Dashboards list" +#~ msgstr "Dashboards list" + +#~ msgid "Show link to public dashboard" +#~ msgstr "Show link to public dashboard" + +#~ msgid "Dashboard name" +#~ msgstr "Dashboard name" + +#~ msgid "No Dashboards" +#~ msgstr "No Dashboards" + +#, php-format +#~ msgid "Created/Updated %s/%s OS" +#~ msgstr "Created/Updated %s/%s OS" + +#, php-format +#~ msgid "Error creating/updating %s/%s OS" +#~ msgstr "Error creating/updating %s/%s OS" + +#~ msgid "Module Groups synchronization" +#~ msgstr "Module Groups synchronization" + +#~ msgid "DB port" +#~ msgstr "DB port" + +#, php-format +#~ msgid "Error creating/updating %s/%s module groups" +#~ msgstr "Error creating/updating %s/%s module groups" + +#, php-format +#~ msgid "Created/Updated %s/%s module groups" +#~ msgstr "Created/Updated %s/%s module groups" + +#~ msgid "Module groups Management" +#~ msgstr "Module groups Management" + +#~ msgid "Please, set a valid IP/Name address" +#~ msgstr "Please, set a valid IP/Name address" + +#~ msgid "This data doesn't show in realtime" +#~ msgstr "This data doesn't show in realtime" + +#~ msgid "OS Management" +#~ msgstr "OS Management" + +#~ msgid "Component management" +#~ msgstr "Component management" + +#~ msgid "Type of charts" +#~ msgstr "Type of charts" + +#~ msgid "critical" +#~ msgstr "critical" + +#~ msgid "T. OK" +#~ msgstr "T. OK" + +#~ msgid "T. Total" +#~ msgstr "T. Total" + +#~ msgid "T. Unknown" +#~ msgstr "T. Unknown" + +#~ msgid "T. Error" +#~ msgstr "T. Error" + +#~ msgid "T. Downtime" +#~ msgstr "T. Downtime" + +#~ msgid "SLA %" +#~ msgstr "SLA %" + +#~ msgid "Planned Downtimes" +#~ msgstr "Planned Downtimes" + +#~ msgid "Ignore Time" +#~ msgstr "Ignore Time" + +#~ msgid "T. Not_init" +#~ msgstr "T. Not_init" + +#, php-format +#~ msgid "Graph agent(%s) - %s" +#~ msgstr "Graph agent(%s) - %s" + +#~ msgid "Legend Graph" +#~ msgstr "Legend Graph" + +#~ msgid "Total Time" +#~ msgstr "Total Time" + +#~ msgid "Total Checks" +#~ msgstr "Total Checks" + +#~ msgid "Time Downtimes" +#~ msgstr "Time Downtimes" + +#~ msgid "Time Not init" +#~ msgstr "Time Not init" + +#~ msgid "Agent min Value" +#~ msgstr "Agent min Value" + +#~ msgid "" +#~ "Problems with event days purge and event days that pass data to history DB." +#~ msgstr "" +#~ "Problems with event days purge and event days that pass data to history DB." + +#~ msgid "Only one service map widget is supported at this moment" +#~ msgstr "Only one service map widget is supported at this moment" + +#~ msgid "Time Error " +#~ msgstr "Time Error " + +#~ msgid "Time Unknown " +#~ msgstr "Time Unknown " + +#~ msgid "Time Total " +#~ msgstr "Time Total " + +#~ msgid "Time OK " +#~ msgstr "Time OK " + +#~ msgid "SLA Max" +#~ msgstr "SLA Max" + +#~ msgid "SLA Min" +#~ msgstr "SLA Min" + +#~ msgid "Time Downtime " +#~ msgstr "Time Downtime " + +#~ msgid "Time Not Init " +#~ msgstr "Time Not Init " + +#~ msgid "Checks OK " +#~ msgstr "Checks OK " + +#~ msgid "Checks Total " +#~ msgstr "Checks Total " + +#~ msgid "Time Total Month" +#~ msgstr "Time Total Month" + +#~ msgid "Time OK Month" +#~ msgstr "Time OK Month" + +#~ msgid "Time Error Month" +#~ msgstr "Time Error Month" + +#~ msgid "Time Unknown Month" +#~ msgstr "Time Unknown Month" + +#~ msgid "Subtitle" +#~ msgstr "Subtitle" + +#~ msgid "Status " +#~ msgstr "Status " + +#~ msgid "Checks Unknown " +#~ msgstr "Checks Unknown " + +#~ msgid "Checks Error " +#~ msgstr "Checks Error " + +#~ msgid "SLA " +#~ msgstr "SLA " + +#~ msgid "Checks Not Init " +#~ msgstr "Checks Not Init " + +#~ msgid "Time Not Init Month" +#~ msgstr "Time Not Init Month" + +#~ msgid "Time Downtime Month" +#~ msgstr "Time Downtime Month" + +#~ msgid "Checks Total Month" +#~ msgstr "Checks Total Month" + +#~ msgid "Checks Error Month" +#~ msgstr "Checks Error Month" + +#~ msgid "Checks Unknown Month" +#~ msgstr "Checks Unknown Month" + +#~ msgid "Checks OK Month" +#~ msgstr "Checks OK Month" + +#~ msgid "Time Total Day" +#~ msgstr "Time Total Day" + +#~ msgid "Status Month" +#~ msgstr "Status Month" + +#~ msgid "SLA Month" +#~ msgstr "SLA Month" + +#~ msgid "Checks Not Init Month" +#~ msgstr "Checks Not Init Month" + +#~ msgid "Time Not Init Day" +#~ msgstr "Time Not Init Day" + +#~ msgid "Time Unknown Day" +#~ msgstr "Time Unknown Day" + +#~ msgid "Time Error Day" +#~ msgstr "Time Error Day" + +#~ msgid "Time OK Day" +#~ msgstr "Time OK Day" + +#~ msgid "Checks OK Day" +#~ msgstr "Checks OK Day" + +#~ msgid "Checks Total Day" +#~ msgstr "Checks Total Day" + +#~ msgid "Checks Unknown Day" +#~ msgstr "Checks Unknown Day" + +#~ msgid "Checks Error Day" +#~ msgstr "Checks Error Day" + +#~ msgid "Time Out Day" +#~ msgstr "Time Out Day" + +#~ msgid "Time Downtime Day" +#~ msgstr "Time Downtime Day" + +#~ msgid "Month Number" +#~ msgstr "Month Number" + +#~ msgid "SLA Fixed Day" +#~ msgstr "SLA Fixed Day" + +#~ msgid "Status week" +#~ msgstr "Status week" + +#~ msgid "SLA Day" +#~ msgstr "SLA Day" + +#~ msgid "Checks Not Init Day" +#~ msgstr "Checks Not Init Day" + +#~ msgid "Date From Day" +#~ msgstr "Date From Day" + +#~ msgid "Day Week" +#~ msgstr "Day Week" + +#~ msgid "Checks Unknown week" +#~ msgstr "Checks Unknown week" + +#~ msgid "Status Day" +#~ msgstr "Status Day" + +#~ msgid "Date To Day" +#~ msgstr "Date To Day" + +#~ msgid "Checks Not Init" +#~ msgstr "Checks Not Init" + +#~ msgid "Time Total day" +#~ msgstr "Time Total day" + +#~ msgid "Time OK day" +#~ msgstr "Time OK day" + +#~ msgid "SLA Fixed" +#~ msgstr "SLA Fixed" + +#~ msgid "Checks Error" +#~ msgstr "Checks Error" + +#~ msgid "Time Error" +#~ msgstr "Time Error" + +#~ msgid "SLA limit" +#~ msgstr "SLA limit" + +#~ msgid "SLA min" +#~ msgstr "SLA min" + +#~ msgid "SLA max" +#~ msgstr "SLA max" + +#~ msgid "Checks Unknown day" +#~ msgstr "Checks Unknown day" + +#~ msgid "Checks Error day" +#~ msgstr "Checks Error day" + +#~ msgid "Time Total hours" +#~ msgstr "Time Total hours" + +#~ msgid "Status day" +#~ msgstr "Status day" + +#~ msgid "Checks Total day" +#~ msgstr "Checks Total day" + +#~ msgid "Checks OK day" +#~ msgstr "Checks OK day" + +#~ msgid "Time Error day" +#~ msgstr "Time Error day" + +#~ msgid "Time Unknown day" +#~ msgstr "Time Unknown day" + +#~ msgid "Time Downtime day" +#~ msgstr "Time Downtime day" + +#~ msgid "Time Not Init day" +#~ msgstr "Time Not Init day" + +#~ msgid "Time Error hours" +#~ msgstr "Time Error hours" + +#~ msgid "Time OK hours" +#~ msgstr "Time OK hours" + +#~ msgid "Time Not Init hours" +#~ msgstr "Time Not Init hours" + +#~ msgid "Time Out hours" +#~ msgstr "Time Out hours" + +#~ msgid "Time Downtime hours" +#~ msgstr "Time Downtime hours" + +#~ msgid "Time Unknown hours" +#~ msgstr "Time Unknown hours" + +#~ msgid "Checks Error hours" +#~ msgstr "Checks Error hours" + +#~ msgid "Checks Unknown hours" +#~ msgstr "Checks Unknown hours" + +#~ msgid "Checks Total hours" +#~ msgstr "Checks Total hours" + +#~ msgid "Checks OK hours" +#~ msgstr "Checks OK hours" #~ msgid "Percentil 95" #~ msgstr "Percentil 95" -#~ msgid "This OID is preexistent." -#~ msgstr "This OID is preexistent." +#~ msgid "" +#~ "If this option was checked, only adding in elements that type of modules " +#~ "support this option." +#~ msgstr "" +#~ "If this option was checked, only adding in elements that type of modules " +#~ "support this option." + +#~ msgid "Status hours" +#~ msgstr "Status hours" + +#~ msgid "SLA Fixed hours" +#~ msgstr "SLA Fixed hours" + +#~ msgid "Date From hours" +#~ msgstr "Date From hours" + +#~ msgid "Checks Not Init hours" +#~ msgstr "Checks Not Init hours" + +#~ msgid "SLA hours" +#~ msgstr "SLA hours" + +#~ msgid "Date To hours" +#~ msgstr "Date To hours" + +#~ msgid "Are you sure to re-apply?" +#~ msgstr "Are you sure to re-apply?" + +#~ msgid "Are you sure to apply?" +#~ msgstr "Do you want to apply?" + +#~ msgid "Apply all" +#~ msgstr "Apply all" + +#~ msgid "AD Groups" +#~ msgstr "AD Groups" + +#~ msgid "Select profile" +#~ msgstr "Select profile" + +#~ msgid "Add new permissions" +#~ msgstr "Add new permissions" + +#~ msgid "SimpleSAML path" +#~ msgstr "SimpleSAML path" + +#~ msgid "" +#~ "Select the path where SimpleSAML has been installed (by default '/opt/')" +#~ msgstr "" +#~ "Select the path where SimpleSAML has been installed (by default '/opt/')" + +#~ msgid "SAML" +#~ msgstr "SAML" + +#~ msgid "Enable event history" +#~ msgstr "Enable event history" + +#~ msgid "You must select a profile from the list of profiles." +#~ msgstr "You must select a profile from the list of profiles." + +#~ msgid "Event days" +#~ msgstr "Event days" + +#~ msgid "Number of days before events is transfered to history database." +#~ msgstr "Number of days before events is transferred to history database." + +#~ msgid "" +#~ "Event history is ONLY used for event reports, is not used in graphs or event " +#~ "viewer." +#~ msgstr "" +#~ "Event history is ONLY used for event reports, is not used in graphs or event " +#~ "viewer." + +#~ msgid "e.g., switch.ehorus.com" +#~ msgstr "e.g., switch.eHorus.com" #~ msgid "" #~ "If you check this option, the lateral menus display with left click. " @@ -36810,11 +29361,55 @@ msgstr "Only user can use the API" #~ msgid "Display lateral menus with click" #~ msgstr "Display lateral menus with click" -#~ msgid "Disable Pandora FMS on graphs" -#~ msgstr "Disable Pandora FMS on graphs" - #~ msgid "Custom logo in login" #~ msgstr "Custom logo in login" #~ msgid "Allows only show the average in graphs" #~ msgstr "Allows only the average in graphs to be shown" + +#~ msgid "There isn't get or post" +#~ msgstr "There isn't get or post" + +#~ msgid "Empty for a transparent background color or CSS compatible value" +#~ msgstr "Empty for a transparent background color or CSS compatible value" + +#, php-format +#~ msgid "" +#~ "This extension makes registration of policies enterprise.
    You can get " +#~ "more policies in our
    Public Resource Library" +#~ msgstr "" +#~ "This extension registers Enterprise policies.
    You can get more policies " +#~ "in our Public Resource Library" + +#~ msgid "hourly S.L.A." +#~ msgstr "hourly S.L.A." + +#~ msgid "Availability Graph S.L.A." +#~ msgstr "Availability Graph S.L.A." + +#~ msgid "Create group if doesn’t exist in destination" +#~ msgstr "Create group if it doesn't exist in destination" + +#~ msgid "Synchronizing Alerts" +#~ msgstr "Synchronising Alerts" + +#~ msgid "Synchronizing Tags" +#~ msgstr "Synchronising Tags" + +#~ msgid "Synchronizing Components" +#~ msgstr "Synchronising Components" + +#~ msgid "Synchronizing Groups" +#~ msgstr "Synchronising Groups" + +#~ msgid "Synchronizing Users" +#~ msgstr "Synchronising Users" + +#~ msgid "Synchronizing OS" +#~ msgstr "Synchronising OS" + +#~ msgid "Synchronizing Module Groups" +#~ msgstr "Synchronising Module Groups" + +#~ msgid "Serialized data " +#~ msgstr "Serialised data " diff --git a/pandora_console/include/languages/es.mo b/pandora_console/include/languages/es.mo index 19f95476a90477dca508818a6ca1807b7f0aea10..159cccae1d333b674e5157bce53625ed3816ef72 100644 GIT binary patch delta 104633 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 b_!Z{{3VE+u=-hjZd5I6|C3^NjP5XZUC6+bV literal 523845 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 Jmh&fTDPmv{l6WJ<7X_4f1&Gg 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

    eN@k`viPn?hsQF9Q#qL2Asrzi2}fEX7QT^ZWK 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 diff --git a/pandora_console/include/languages/es.po b/pandora_console/include/languages/es.po index 28c85710ce..8ba5d68bbb 100644 --- a/pandora_console/include/languages/es.po +++ b/pandora_console/include/languages/es.po @@ -8,706 +8,661 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-05-30 07:21+0200\n" -"PO-Revision-Date: 2017-05-30 08:15+0000\n" -"Last-Translator: artu30 \n" +"POT-Creation-Date: 2017-03-14 16:29+0100\n" +"PO-Revision-Date: 2017-10-23 14:01+0000\n" +"Last-Translator: Vanessa \n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2017-05-30 08:22+0000\n" -"X-Generator: Launchpad (build 18391)\n" +"X-Launchpad-Export-Date: 2017-10-23 14:56+0000\n" +"X-Generator: Launchpad (build 18484)\n" -#: ../../extensions/agents_alerts.php:55 -#: ../../extensions/agents_modules.php:57 -#: ../../operation/agentes/group_view.php:61 -#: ../../operation/agentes/tactical.php:46 -#: ../../enterprise/extensions/ipam/ipam_list.php:188 -#: ../../enterprise/operation/services/services.list.php:345 -#: ../../enterprise/operation/services/services.service.php:144 -msgid "Last update" -msgstr "Última actualización" +#: ../../operation/search_alerts.php:27 ../../operation/search_reports.php:29 +#: ../../operation/search_users.php:26 ../../operation/search_graphs.php:24 +#: ../../operation/search_maps.php:22 ../../operation/search_modules.php:26 +#: ../../operation/search_agents.php:33 +msgid "Zero results found" +msgstr "No se encontró ningún resultado" -#: ../../extensions/agents_alerts.php:74 -#: ../../extensions/agents_modules.php:139 ../../general/ui/agents_list.php:69 -#: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/agentes/agent_manager.php:270 -#: ../../godmode/agentes/configurar_agente.php:362 -#: ../../godmode/agentes/modificar_agente.php:147 -#: ../../godmode/agentes/modificar_agente.php:491 -#: ../../godmode/agentes/planned_downtime.editor.php:480 -#: ../../godmode/agentes/planned_downtime.editor.php:753 -#: ../../godmode/agentes/planned_downtime.list.php:393 -#: ../../godmode/alerts/alert_actions.php:341 -#: ../../godmode/alerts/alert_special_days.php:246 -#: ../../godmode/alerts/alert_templates.php:300 -#: ../../godmode/alerts/configure_alert_action.php:116 -#: ../../godmode/alerts/configure_alert_special_days.php:69 -#: ../../godmode/alerts/configure_alert_template.php:754 -#: ../../godmode/events/custom_events.php:80 -#: ../../godmode/events/custom_events.php:156 -#: ../../godmode/events/event_edit_filter.php:226 -#: ../../godmode/events/event_filter.php:109 -#: ../../godmode/events/event_responses.editor.php:81 -#: ../../godmode/events/event_responses.list.php:56 -#: ../../godmode/gis_maps/configure_gis_map.php:366 -#: ../../godmode/massive/massive_add_action_alerts.php:151 -#: ../../godmode/massive/massive_add_alerts.php:151 -#: ../../godmode/massive/massive_add_profiles.php:89 -#: ../../godmode/massive/massive_add_tags.php:124 -#: ../../godmode/massive/massive_copy_modules.php:71 -#: ../../godmode/massive/massive_copy_modules.php:182 -#: ../../godmode/massive/massive_delete_action_alerts.php:151 -#: ../../godmode/massive/massive_delete_agents.php:105 -#: ../../godmode/massive/massive_delete_alerts.php:212 -#: ../../godmode/massive/massive_delete_profiles.php:103 -#: ../../godmode/massive/massive_edit_agents.php:207 -#: ../../godmode/massive/massive_edit_agents.php:298 -#: ../../godmode/massive/massive_enable_disable_alerts.php:136 -#: ../../godmode/massive/massive_standby_alerts.php:136 -#: ../../godmode/modules/manage_network_components.php:479 -#: ../../godmode/modules/manage_network_components.php:568 -#: ../../godmode/modules/manage_network_components_form_common.php:101 -#: ../../godmode/modules/manage_network_templates_form.php:202 -#: ../../godmode/modules/manage_network_templates_form.php:269 -#: ../../godmode/modules/manage_network_templates_form.php:302 -#: ../../godmode/netflow/nf_edit.php:119 -#: ../../godmode/netflow/nf_edit_form.php:193 -#: ../../godmode/reporting/create_container.php:184 -#: ../../godmode/reporting/create_container.php:404 -#: ../../godmode/reporting/create_container.php:466 -#: ../../godmode/reporting/graph_builder.main.php:116 -#: ../../godmode/reporting/graphs.php:158 -#: ../../godmode/reporting/map_builder.php:208 -#: ../../godmode/reporting/reporting_builder.item_editor.php:868 -#: ../../godmode/reporting/reporting_builder.main.php:69 -#: ../../godmode/reporting/reporting_builder.php:431 -#: ../../godmode/reporting/reporting_builder.php:561 +#: ../../operation/search_alerts.php:39 +#: ../../operation/events/events.build_table.php:36 +#: ../../operation/events/sound_events.php:80 +#: ../../operation/gis_maps/ajax.php:216 ../../operation/gis_maps/ajax.php:247 +#: ../../operation/search_modules.php:42 ../../operation/search_agents.php:44 +#: ../../operation/search_agents.php:50 +#: ../../operation/agentes/status_monitor.php:948 +#: ../../operation/agentes/exportdata.php:96 +#: ../../operation/agentes/exportdata.excel.php:76 +#: ../../operation/agentes/estado_monitores.php:95 +#: ../../operation/agentes/alerts_status.php:427 +#: ../../operation/agentes/alerts_status.php:502 +#: ../../operation/agentes/ver_agente.php:818 +#: ../../operation/agentes/exportdata.csv.php:77 +#: ../../operation/agentes/estado_agente.php:490 +#: ../../operation/incidents/incident_detail.php:349 +#: ../../extensions/module_groups.php:41 ../../extensions/insert_data.php:158 +#: ../../extensions/agents_alerts.php:345 ../../mobile/operation/home.php:72 +#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/agents.php:69 +#: ../../mobile/operation/agents.php:310 ../../mobile/operation/events.php:510 +#: ../../mobile/operation/modules.php:496 +#: ../../include/functions_pandora_networkmap.php:1369 +#: ../../include/functions_pandora_networkmap.php:1532 +#: ../../include/ajax/alert_list.ajax.php:130 +#: ../../include/functions_visual_map_editor.php:277 +#: ../../include/functions_graph.php:5333 +#: ../../include/functions_reporting_html.php:396 +#: ../../include/functions_reporting_html.php:730 +#: ../../include/functions_reporting_html.php:810 +#: ../../include/functions_reporting_html.php:819 +#: ../../include/functions_reporting_html.php:1479 +#: ../../include/functions_reporting_html.php:1883 +#: ../../include/functions_reporting_html.php:1890 +#: ../../include/functions_reporting_html.php:1949 +#: ../../include/functions_reporting_html.php:2245 +#: ../../include/functions_reporting_html.php:2288 +#: ../../include/functions_reporting_html.php:2579 +#: ../../include/functions_reporting_html.php:2627 +#: ../../include/functions_reporting_html.php:2870 +#: ../../include/functions_reporting_html.php:3024 +#: ../../include/functions_reporting_html.php:3235 +#: ../../godmode/alerts/alert_view.php:66 +#: ../../godmode/alerts/alert_list.list.php:379 +#: ../../godmode/alerts/alert_list.list.php:590 +#: ../../godmode/alerts/alert_list.builder.php:59 +#: ../../godmode/massive/massive_enable_disable_alerts.php:154 +#: ../../godmode/massive/massive_enable_disable_alerts.php:171 +#: ../../godmode/massive/massive_standby_alerts.php:154 +#: ../../godmode/massive/massive_standby_alerts.php:171 +#: ../../godmode/massive/massive_copy_modules.php:86 +#: ../../godmode/massive/massive_copy_modules.php:200 +#: ../../godmode/reporting/graph_builder.graph_editor.php:84 +#: ../../godmode/reporting/visual_console_builder.wizard.php:303 +#: ../../godmode/reporting/visual_console_builder.wizard.php:577 +#: ../../godmode/reporting/visual_console_builder.wizard.php:600 #: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.elements.php:193 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:312 -#: ../../godmode/setup/gis.php:63 ../../godmode/setup/gis_step_2.php:153 -#: ../../godmode/setup/news.php:164 -#: ../../godmode/snmpconsole/snmp_alert.php:657 -#: ../../godmode/users/configure_user.php:716 -#: ../../godmode/users/user_list.php:227 -#: ../../include/functions_pandora_networkmap.php:1389 -#: ../../include/functions_pandora_networkmap.php:1575 -#: ../../include/functions_container.php:132 -#: ../../include/functions_events.php:38 -#: ../../include/functions_events.php:2437 -#: ../../include/functions_events.php:3557 -#: ../../include/functions_visual_map.php:2763 -#: ../../include/functions_visual_map_editor.php:61 -#: ../../include/functions_visual_map_editor.php:336 -#: ../../include/functions_visual_map_editor.php:656 -#: ../../include/functions_graph.php:5563 -#: ../../include/functions_groups.php:745 -#: ../../include/functions_networkmap.php:1721 -#: ../../include/functions_reporting_html.php:2079 -#: ../../include/functions_reporting_html.php:2114 -#: ../../mobile/operation/agents.php:75 ../../mobile/operation/agents.php:120 -#: ../../mobile/operation/agents.php:124 ../../mobile/operation/agents.php:175 -#: ../../mobile/operation/agents.php:176 ../../mobile/operation/agents.php:317 -#: ../../mobile/operation/alerts.php:84 ../../mobile/operation/alerts.php:88 -#: ../../mobile/operation/alerts.php:178 ../../mobile/operation/alerts.php:179 -#: ../../mobile/operation/events.php:361 ../../mobile/operation/events.php:365 -#: ../../mobile/operation/events.php:501 ../../mobile/operation/events.php:604 -#: ../../mobile/operation/events.php:605 -#: ../../mobile/operation/modules.php:128 -#: ../../mobile/operation/modules.php:132 -#: ../../mobile/operation/modules.php:203 -#: ../../mobile/operation/modules.php:204 -#: ../../mobile/operation/networkmaps.php:65 -#: ../../mobile/operation/networkmaps.php:69 -#: ../../mobile/operation/networkmaps.php:129 -#: ../../mobile/operation/networkmaps.php:130 -#: ../../mobile/operation/networkmaps.php:197 -#: ../../mobile/operation/visualmaps.php:49 -#: ../../mobile/operation/visualmaps.php:53 -#: ../../mobile/operation/visualmaps.php:141 -#: ../../operation/agentes/alerts_status.functions.php:68 -#: ../../operation/agentes/estado_agente.php:167 -#: ../../operation/agentes/estado_agente.php:517 -#: ../../operation/agentes/estado_generalagente.php:245 -#: ../../operation/agentes/exportdata.php:235 -#: ../../operation/agentes/group_view.php:164 -#: ../../operation/agentes/pandora_networkmap.editor.php:183 -#: ../../operation/agentes/pandora_networkmap.editor.php:196 -#: ../../operation/agentes/status_monitor.php:292 -#: ../../operation/agentes/ver_agente.php:687 -#: ../../operation/events/events.build_table.php:185 -#: ../../operation/events/events_list.php:613 -#: ../../operation/events/sound_events.php:78 -#: ../../operation/gis_maps/ajax.php:309 -#: ../../operation/gis_maps/gis_map.php:90 -#: ../../operation/incidents/incident.php:339 -#: ../../operation/incidents/incident_detail.php:308 -#: ../../operation/netflow/nf_live_view.php:309 -#: ../../operation/search_agents.php:47 ../../operation/search_agents.php:59 -#: ../../operation/search_maps.php:32 ../../operation/users/user_edit.php:506 -#: ../../enterprise/dashboard/dashboards.php:86 -#: ../../enterprise/dashboard/main_dashboard.php:311 -#: ../../enterprise/dashboard/main_dashboard.php:340 -#: ../../enterprise/dashboard/widgets/agent_module.php:41 -#: ../../enterprise/dashboard/widgets/alerts_fired.php:28 -#: ../../enterprise/dashboard/widgets/top_n.php:306 -#: ../../enterprise/dashboard/widgets/tree_view.php:44 -#: ../../enterprise/extensions/cron/functions.php:40 -#: ../../enterprise/extensions/cron/main.php:248 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:168 -#: ../../enterprise/godmode/agentes/collections.php:232 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:88 -#: ../../enterprise/godmode/alerts/alert_events.php:491 -#: ../../enterprise/godmode/alerts/alert_events_list.php:361 -#: ../../enterprise/godmode/alerts/alert_events_list.php:423 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:409 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:155 -#: ../../enterprise/godmode/modules/configure_local_component.php:217 -#: ../../enterprise/godmode/modules/local_components.php:401 -#: ../../enterprise/godmode/modules/local_components.php:483 -#: ../../enterprise/godmode/policies/configure_policy.php:68 -#: ../../enterprise/godmode/policies/policies.php:229 -#: ../../enterprise/godmode/policies/policies.php:258 -#: ../../enterprise/godmode/policies/policy_agents.php:359 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:158 -#: ../../enterprise/godmode/reporting/graph_template_list.php:129 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:288 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:114 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1416 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:307 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:83 -#: ../../enterprise/godmode/services/services.service.php:250 -#: ../../enterprise/include/functions_alert_event.php:926 -#: ../../enterprise/include/functions_events.php:76 -#: ../../enterprise/include/functions_reporting_pdf.php:2315 -#: ../../enterprise/include/functions_reporting_pdf.php:2365 -#: ../../enterprise/meta/advanced/synchronizing.user.php:562 -#: ../../enterprise/meta/agentsearch.php:96 -#: ../../enterprise/meta/include/functions_events_meta.php:67 -#: ../../enterprise/meta/include/functions_wizard_meta.php:153 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1633 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:239 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:329 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:398 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:506 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:587 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:271 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:360 -#: ../../enterprise/operation/agentes/transactional_map.php:150 -#: ../../enterprise/operation/agentes/ver_agente.php:50 -#: ../../enterprise/operation/agentes/ver_agente.php:71 -#: ../../enterprise/operation/inventory/inventory.php:164 -#: ../../enterprise/operation/log/log_viewer.php:197 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:196 -#: ../../enterprise/operation/services/services.list.php:183 -#: ../../enterprise/operation/services/services.list.php:335 -#: ../../enterprise/operation/services/services.service.php:132 -#: ../../enterprise/operation/services/services.table_services.php:152 -msgid "Group" -msgstr "Grupo" - -#: ../../extensions/agents_alerts.php:79 -#: ../../extensions/agents_modules.php:224 ../../general/login_page.php:53 -#: ../../general/login_page.php:211 ../../include/ajax/module.php:807 -#: ../../include/functions_pandora_networkmap.php:765 -#: ../../operation/events/events.php:464 -#: ../../operation/reporting/graph_viewer.php:257 -#: ../../operation/servers/recon_view.php:49 -#: ../../operation/visual_console/public_console.php:112 -#: ../../operation/visual_console/render_view.php:176 -#: ../../enterprise/dashboard/main_dashboard.php:193 -#: ../../enterprise/dashboard/widgets/top_n.php:286 -#: ../../enterprise/extensions/ipam/ipam_network.php:159 -#: ../../enterprise/godmode/policies/policy_queue.php:470 -#: ../../enterprise/meta/advanced/policymanager.queue.php:236 -msgid "Refresh" -msgstr "Refrescar" - -#: ../../extensions/agents_alerts.php:81 -#: ../../godmode/alerts/alert_list.builder.php:136 -#: ../../godmode/alerts/configure_alert_action.php:144 -#: ../../godmode/setup/setup_visuals.php:737 -#: ../../godmode/snmpconsole/snmp_alert.php:938 -#: ../../include/functions.php:430 ../../include/functions.php:564 -#: ../../include/functions_html.php:733 -#: ../../include/functions_netflow.php:1134 -#: ../../include/functions_netflow.php:1144 -#: ../../include/functions_netflow.php:1161 -#: ../../include/functions_netflow.php:1169 -#: ../../include/functions_netflow.php:1193 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:275 -#: ../../enterprise/meta/advanced/metasetup.visual.php:140 -msgid "seconds" -msgstr "segundos" - -#: ../../extensions/agents_alerts.php:82 ../../include/functions.php:2610 -#: ../../operation/gis_maps/render_view.php:138 -msgid "1 minute" -msgstr "1 minuto" - -#: ../../extensions/agents_alerts.php:83 ../../include/functions.php:2611 -#: ../../operation/gis_maps/render_view.php:139 -msgid "2 minutes" -msgstr "2 minutos" - -#: ../../extensions/agents_alerts.php:84 ../../include/ajax/module.php:132 -#: ../../include/functions.php:2612 -#: ../../operation/gis_maps/render_view.php:140 -msgid "5 minutes" -msgstr "5 minutos" - -#: ../../extensions/agents_alerts.php:85 -#: ../../operation/gis_maps/render_view.php:141 -msgid "10 minutes" -msgstr "10 minutos" - -#: ../../extensions/agents_alerts.php:91 -#: ../../extensions/agents_modules.php:113 -#: ../../extensions/agents_modules.php:124 -#: ../../extensions/agents_modules.php:131 -#: ../../extensions/disabled/matrix_events.php:31 -#: ../../operation/gis_maps/render_view.php:111 -#: ../../operation/reporting/graph_viewer.php:164 -#: ../../operation/reporting/reporting_viewer.php:103 -#: ../../operation/visual_console/pure_ajax.php:136 -#: ../../operation/visual_console/render_view.php:139 -#: ../../enterprise/dashboard/main_dashboard.php:143 -#: ../../enterprise/operation/agentes/manage_transmap.php:92 -msgid "Full screen mode" -msgstr "Modo a pantalla completa" - -#: ../../extensions/agents_alerts.php:96 -#: ../../extensions/agents_modules.php:215 -#: ../../operation/events/events.php:455 -#: ../../operation/gis_maps/render_view.php:115 -#: ../../operation/reporting/graph_viewer.php:169 -#: ../../operation/reporting/reporting_viewer.php:108 -#: ../../operation/visual_console/render_view.php:167 -#: ../../enterprise/dashboard/main_dashboard.php:157 -msgid "Back to normal mode" -msgstr "Volver a modo normal" - -#: ../../extensions/agents_alerts.php:109 -msgid "Agents/Alerts" -msgstr "Agentes/Alertas" - -#: ../../extensions/agents_alerts.php:118 -#: ../../operation/agentes/pandora_networkmap.view.php:741 -#: ../../operation/events/events.php:329 -#: ../../operation/snmpconsole/snmp_browser.php:90 -#: ../../operation/snmpconsole/snmp_statistics.php:49 -#: ../../operation/snmpconsole/snmp_view.php:82 -msgid "Full screen" -msgstr "Pantalla completa" - -#: ../../extensions/agents_alerts.php:156 -msgid "There are no agents with alerts" -msgstr "No existen agentes con alertas" - -#: ../../extensions/agents_alerts.php:177 -#: ../../extensions/agents_modules.php:161 -#: ../../extensions/agents_modules.php:393 -#: ../../godmode/alerts/alert_list.list.php:71 -#: ../../godmode/massive/massive_add_alerts.php:157 -#: ../../godmode/massive/massive_add_tags.php:129 -#: ../../godmode/massive/massive_delete_agents.php:127 -#: ../../godmode/massive/massive_delete_alerts.php:218 -#: ../../godmode/massive/massive_delete_modules.php:496 -#: ../../godmode/massive/massive_delete_tags.php:192 -#: ../../godmode/massive/massive_edit_agents.php:228 -#: ../../godmode/massive/massive_edit_modules.php:342 -#: ../../godmode/massive/massive_edit_plugins.php:299 -#: ../../godmode/massive/massive_enable_disable_alerts.php:141 -#: ../../godmode/massive/massive_standby_alerts.php:142 -#: ../../godmode/reporting/graph_builder.graph_editor.php:146 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1020 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1083 -#: ../../godmode/reporting/reporting_builder.list_items.php:165 -#: ../../godmode/reporting/reporting_builder.list_items.php:190 -#: ../../godmode/reporting/visual_console_builder.wizard.php:283 -#: ../../include/functions_pandora_networkmap.php:1584 -#: ../../include/functions_groups.php:46 -#: ../../include/functions_groups.php:784 -#: ../../include/functions_groups.php:786 -#: ../../include/functions_groups.php:788 -#: ../../include/functions_groups.php:789 -#: ../../include/functions_groups.php:790 -#: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:1562 -#: ../../mobile/include/functions_web.php:22 -#: ../../mobile/operation/agents.php:158 ../../mobile/operation/home.php:58 -#: ../../operation/agentes/group_view.php:120 -#: ../../operation/agentes/group_view.php:158 -#: ../../operation/search_results.php:74 -#: ../../enterprise/dashboard/widgets/agent_module.php:256 -#: ../../enterprise/dashboard/widgets/groups_status.php:88 -#: ../../enterprise/dashboard/widgets/service_map.php:93 -#: ../../enterprise/extensions/cron/functions.php:33 -#: ../../enterprise/extensions/cron/main.php:247 -#: ../../enterprise/godmode/agentes/collections.agents.php:56 -#: ../../enterprise/godmode/agentes/collections.data.php:107 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:92 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:221 -#: ../../enterprise/godmode/policies/policies.php:257 -#: ../../enterprise/godmode/policies/policies.php:409 -#: ../../enterprise/godmode/policies/policy.php:50 -#: ../../enterprise/godmode/policies/policy_agents.php:283 -#: ../../enterprise/godmode/policies/policy_agents.php:341 -#: ../../enterprise/godmode/policies/policy_queue.php:375 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:170 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:153 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:200 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:155 -#: ../../enterprise/include/functions_policies.php:3307 -#: ../../enterprise/include/functions_reporting.php:5799 -#: ../../enterprise/include/functions_reporting_pdf.php:562 -#: ../../enterprise/include/functions_reporting_pdf.php:695 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:161 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:163 -#: ../../enterprise/meta/advanced/policymanager.queue.php:257 -#: ../../enterprise/meta/monitoring/group_view.php:98 -#: ../../enterprise/meta/monitoring/group_view.php:136 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:228 -#: ../../enterprise/operation/services/services.service_map.php:135 -msgid "Agents" -msgstr "Agentes" - -#: ../../extensions/agents_alerts.php:177 -#: ../../godmode/alerts/alert_templates.php:133 -#: ../../godmode/alerts/alert_templates.php:176 -#: ../../godmode/alerts/alert_templates.php:195 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/massive/massive_add_action_alerts.php:163 -#: ../../godmode/massive/massive_delete_action_alerts.php:167 -msgid "Alert templates" -msgstr "Plantillas de alertas" - -#: ../../extensions/agents_alerts.php:184 -msgid "Previous templates" -msgstr "Plantillas anteriores" - -#: ../../extensions/agents_alerts.php:222 -msgid "More templates" -msgstr "Más plantillas" - -#: ../../extensions/agents_alerts.php:254 -#: ../../godmode/agentes/configurar_agente.php:311 -#: ../../godmode/agentes/modificar_agente.php:580 -#: ../../godmode/alerts/alert_actions.php:66 -#: ../../godmode/alerts/alert_actions.php:92 -#: ../../godmode/alerts/alert_actions.php:110 -#: ../../godmode/alerts/alert_actions.php:127 -#: ../../godmode/alerts/alert_actions.php:207 -#: ../../godmode/alerts/alert_actions.php:218 -#: ../../godmode/alerts/alert_actions.php:287 -#: ../../godmode/alerts/alert_actions.php:306 -#: ../../godmode/alerts/alert_actions.php:319 -#: ../../godmode/alerts/alert_commands.php:249 -#: ../../godmode/alerts/alert_list.php:326 -#: ../../godmode/alerts/alert_list.php:329 -#: ../../godmode/alerts/alert_special_days.php:44 -#: ../../godmode/alerts/alert_templates.php:133 -#: ../../godmode/alerts/alert_templates.php:176 -#: ../../godmode/alerts/alert_templates.php:195 -#: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/configure_alert_action.php:56 -#: ../../godmode/alerts/configure_alert_action.php:65 -#: ../../godmode/alerts/configure_alert_command.php:41 -#: ../../godmode/alerts/configure_alert_special_days.php:55 -#: ../../godmode/alerts/configure_alert_template.php:65 -#: ../../godmode/alerts/configure_alert_template.php:85 -#: ../../godmode/alerts/configure_alert_template.php:103 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/group_list.php:339 -#: ../../godmode/massive/massive_copy_modules.php:153 -#: ../../godmode/menu.php:140 ../../include/functions_treeview.php:374 -#: ../../include/functions_graph.php:754 -#: ../../include/functions_graph.php:3947 -#: ../../include/functions_graph.php:4682 -#: ../../include/functions_reporting_html.php:1608 -#: ../../include/functions_reporting_html.php:3255 -#: ../../include/functions_reports.php:609 -#: ../../include/functions_reports.php:611 -#: ../../include/functions_reports.php:614 -#: ../../mobile/include/functions_web.php:25 -#: ../../mobile/operation/agent.php:250 ../../mobile/operation/agents.php:83 -#: ../../mobile/operation/agents.php:324 ../../mobile/operation/alerts.php:154 -#: ../../operation/agentes/estado_agente.php:528 -#: ../../operation/agentes/ver_agente.php:973 -#: ../../operation/search_agents.php:65 ../../operation/search_results.php:94 -#: ../../enterprise/godmode/alerts/alert_events.php:71 -#: ../../enterprise/godmode/alerts/alert_events_list.php:67 -#: ../../enterprise/godmode/alerts/alert_events_list.php:114 -#: ../../enterprise/godmode/alerts/alert_events_list.php:129 -#: ../../enterprise/godmode/alerts/alert_events_list.php:144 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:91 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:69 -#: ../../enterprise/godmode/policies/policies.php:397 -#: ../../enterprise/godmode/policies/policy_alerts.php:32 -#: ../../enterprise/godmode/services/services.service.php:323 -#: ../../enterprise/include/functions_policies.php:3260 -#: ../../enterprise/include/functions_reporting_pdf.php:737 -#: ../../enterprise/meta/agentsearch.php:99 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1374 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1464 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1584 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:599 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:85 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:103 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:73 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:226 -msgid "Alerts" -msgstr "Alertas" - -#: ../../extensions/agents_alerts.php:280 -#: ../../extensions/agents_modules.php:172 -#: ../../extensions/insert_data.php:173 ../../extensions/module_groups.php:43 -#: ../../godmode/agentes/agent_manager.php:268 -#: ../../godmode/agentes/module_manager_editor_common.php:698 +#: ../../godmode/reporting/reporting_builder.item_editor.php:920 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1540 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1739 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1746 +#: ../../godmode/reporting/reporting_builder.list_items.php:291 +#: ../../godmode/gis_maps/configure_gis_map.php:420 +#: ../../godmode/servers/plugin.php:66 +#: ../../godmode/agentes/module_manager_editor_common.php:689 #: ../../godmode/agentes/module_manager_editor_common.php:717 -#: ../../godmode/agentes/module_manager_editor_prediction.php:135 -#: ../../godmode/agentes/planned_downtime.editor.php:838 -#: ../../godmode/agentes/planned_downtime.list.php:175 -#: ../../godmode/alerts/alert_list.builder.php:71 -#: ../../godmode/alerts/alert_list.list.php:393 -#: ../../godmode/alerts/alert_list.list.php:600 +#: ../../godmode/agentes/module_manager_editor_prediction.php:110 +#: ../../godmode/agentes/planned_downtime.list.php:171 +msgid "Agent" +msgstr "Agente" + +#: ../../operation/search_alerts.php:42 ../../operation/search_modules.php:35 +#: ../../operation/agentes/exportdata.php:97 +#: ../../operation/agentes/exportdata.excel.php:76 +#: ../../operation/agentes/estado_monitores.php:97 +#: ../../operation/agentes/alerts_status.php:428 +#: ../../operation/agentes/alerts_status.php:469 +#: ../../operation/agentes/alerts_status.php:503 +#: ../../operation/agentes/alerts_status.php:537 +#: ../../operation/agentes/exportdata.csv.php:77 +#: ../../extensions/module_groups.php:43 ../../extensions/insert_data.php:173 +#: ../../extensions/agents_modules.php:161 +#: ../../extensions/agents_alerts.php:280 +#: ../../mobile/operation/alerts.php:268 +#: ../../include/ajax/alert_list.ajax.php:139 +#: ../../include/functions_visual_map_editor.php:311 +#: ../../include/functions_graph.php:5449 +#: ../../include/functions_treeview.php:66 +#: ../../include/functions_reporting_html.php:397 +#: ../../include/functions_reporting_html.php:731 +#: ../../include/functions_reporting_html.php:1480 +#: ../../include/functions_reporting_html.php:1950 +#: ../../include/functions_reporting_html.php:2252 +#: ../../include/functions_reporting_html.php:2295 +#: ../../include/functions_reporting_html.php:2580 #: ../../godmode/alerts/alert_view.php:71 +#: ../../godmode/alerts/alert_list.list.php:393 +#: ../../godmode/alerts/alert_list.list.php:599 +#: ../../godmode/alerts/alert_list.builder.php:71 #: ../../godmode/massive/massive_edit_agents.php:296 #: ../../godmode/massive/massive_enable_disable_alerts.php:154 #: ../../godmode/massive/massive_enable_disable_alerts.php:171 #: ../../godmode/massive/massive_standby_alerts.php:154 #: ../../godmode/massive/massive_standby_alerts.php:171 -#: ../../godmode/reporting/create_container.php:297 -#: ../../godmode/reporting/create_container.php:424 -#: ../../godmode/reporting/create_container.php:469 #: ../../godmode/reporting/graph_builder.graph_editor.php:85 -#: ../../godmode/reporting/reporting_builder.item_editor.php:974 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1546 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1745 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1752 -#: ../../godmode/reporting/reporting_builder.list_items.php:299 -#: ../../godmode/reporting/visual_console_builder.elements.php:78 #: ../../godmode/reporting/visual_console_builder.wizard.php:302 #: ../../godmode/reporting/visual_console_builder.wizard.php:609 +#: ../../godmode/reporting/visual_console_builder.elements.php:78 +#: ../../godmode/reporting/reporting_builder.item_editor.php:974 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1541 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1740 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1747 +#: ../../godmode/reporting/reporting_builder.list_items.php:296 #: ../../godmode/servers/plugin.php:67 -#: ../../include/ajax/alert_list.ajax.php:139 -#: ../../include/functions_treeview.php:66 -#: ../../include/functions_visual_map_editor.php:311 -#: ../../include/functions_graph.php:5468 -#: ../../include/functions_reporting_html.php:397 -#: ../../include/functions_reporting_html.php:731 -#: ../../include/functions_reporting_html.php:1486 -#: ../../include/functions_reporting_html.php:1956 -#: ../../include/functions_reporting_html.php:2258 -#: ../../include/functions_reporting_html.php:2301 -#: ../../include/functions_reporting_html.php:2590 -#: ../../mobile/operation/alerts.php:268 -#: ../../operation/agentes/alerts_status.php:428 -#: ../../operation/agentes/alerts_status.php:469 -#: ../../operation/agentes/alerts_status.php:503 -#: ../../operation/agentes/alerts_status.php:537 -#: ../../operation/agentes/estado_monitores.php:97 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/exportdata.php:97 -#: ../../operation/search_alerts.php:42 ../../operation/search_modules.php:35 -#: ../../enterprise/dashboard/widgets/agent_module.php:90 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:54 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:60 -#: ../../enterprise/dashboard/widgets/module_icon.php:63 -#: ../../enterprise/dashboard/widgets/module_icon.php:69 -#: ../../enterprise/dashboard/widgets/module_status.php:63 -#: ../../enterprise/dashboard/widgets/module_status.php:69 -#: ../../enterprise/dashboard/widgets/module_table_value.php:60 -#: ../../enterprise/dashboard/widgets/module_table_value.php:66 -#: ../../enterprise/dashboard/widgets/module_value.php:63 -#: ../../enterprise/dashboard/widgets/module_value.php:69 -#: ../../enterprise/dashboard/widgets/single_graph.php:61 -#: ../../enterprise/dashboard/widgets/single_graph.php:67 -#: ../../enterprise/dashboard/widgets/sla_percent.php:51 -#: ../../enterprise/dashboard/widgets/sla_percent.php:57 -#: ../../enterprise/dashboard/widgets/top_n.php:127 -#: ../../enterprise/dashboard/widgets/top_n.php:310 -#: ../../enterprise/extensions/disabled/check_acls.php:121 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:174 -#: ../../enterprise/godmode/agentes/inventory_manager.php:149 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:19 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:408 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 -#: ../../enterprise/godmode/policies/policy_alerts.php:240 -#: ../../enterprise/godmode/policies/policy_alerts.php:447 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 -#: ../../enterprise/godmode/policies/policy_linking.php:121 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:145 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1476 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1948 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2098 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2105 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:241 -#: ../../enterprise/godmode/services/services.elements.php:334 -#: ../../enterprise/godmode/services/services.elements.php:360 -#: ../../enterprise/include/functions_alert_event.php:924 -#: ../../enterprise/include/functions_events.php:120 -#: ../../enterprise/include/functions_inventory.php:507 -#: ../../enterprise/include/functions_inventory.php:563 -#: ../../enterprise/include/functions_reporting.php:1646 -#: ../../enterprise/include/functions_reporting.php:2438 -#: ../../enterprise/include/functions_reporting.php:3215 -#: ../../enterprise/include/functions_reporting_csv.php:324 -#: ../../enterprise/include/functions_reporting_csv.php:348 -#: ../../enterprise/include/functions_reporting_csv.php:405 -#: ../../enterprise/include/functions_reporting_csv.php:431 -#: ../../enterprise/include/functions_reporting_csv.php:497 -#: ../../enterprise/include/functions_reporting_csv.php:524 -#: ../../enterprise/include/functions_reporting_csv.php:559 -#: ../../enterprise/include/functions_reporting_csv.php:595 -#: ../../enterprise/include/functions_reporting_csv.php:632 -#: ../../enterprise/include/functions_reporting_csv.php:700 -#: ../../enterprise/include/functions_reporting_csv.php:736 -#: ../../enterprise/include/functions_reporting_csv.php:772 -#: ../../enterprise/include/functions_reporting_csv.php:808 -#: ../../enterprise/include/functions_reporting_csv.php:844 -#: ../../enterprise/include/functions_reporting_csv.php:880 -#: ../../enterprise/include/functions_reporting_csv.php:929 -#: ../../enterprise/include/functions_reporting_csv.php:976 -#: ../../enterprise/include/functions_reporting_csv.php:1048 -#: ../../enterprise/include/functions_reporting_csv.php:1164 -#: ../../enterprise/include/functions_reporting_csv.php:1306 -#: ../../enterprise/include/functions_reporting_csv.php:1376 -#: ../../enterprise/include/functions_reporting_pdf.php:775 -#: ../../enterprise/include/functions_reporting_pdf.php:833 -#: ../../enterprise/include/functions_reporting_pdf.php:927 -#: ../../enterprise/include/functions_reporting_pdf.php:1265 -#: ../../enterprise/include/functions_reporting_pdf.php:1609 -#: ../../enterprise/include/functions_reporting_pdf.php:1847 -#: ../../enterprise/include/functions_reporting_pdf.php:1866 -#: ../../enterprise/include/functions_services.php:1492 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3255 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 -#: ../../enterprise/operation/agentes/agent_inventory.php:64 -#: ../../enterprise/operation/agentes/policy_view.php:194 -#: ../../enterprise/operation/inventory/inventory.php:169 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:191 +#: ../../godmode/agentes/module_manager_editor_common.php:699 +#: ../../godmode/agentes/module_manager_editor_common.php:718 +#: ../../godmode/agentes/planned_downtime.editor.php:839 +#: ../../godmode/agentes/agent_manager.php:268 +#: ../../godmode/agentes/module_manager_editor_prediction.php:135 +#: ../../godmode/agentes/planned_downtime.list.php:175 msgid "Module" msgstr "Módulo" -#: ../../extensions/agents_alerts.php:281 ../../general/logon_ok.php:225 -#: ../../general/logon_ok.php:422 ../../godmode/admin_access_logs.php:61 -#: ../../godmode/admin_access_logs.php:189 -#: ../../godmode/agentes/agent_template.php:231 -#: ../../godmode/agentes/module_manager.php:568 -#: ../../godmode/agentes/planned_downtime.editor.php:839 -#: ../../godmode/alerts/alert_list.list.php:608 +#: ../../operation/search_alerts.php:45 +#: ../../operation/servers/recon_view.php:101 +#: ../../operation/agentes/alerts_status.php:429 +#: ../../operation/agentes/alerts_status.php:470 +#: ../../operation/agentes/alerts_status.php:504 +#: ../../operation/agentes/alerts_status.php:538 +#: ../../extensions/agents_alerts.php:345 +#: ../../mobile/operation/alerts.php:270 +#: ../../include/functions_treeview.php:381 +#: ../../include/functions_treeview.php:422 +#: ../../include/functions_reporting_html.php:1951 +#: ../../include/functions_reporting_html.php:1954 +#: ../../godmode/alerts/alert_view.php:75 +#: ../../godmode/alerts/alert_list.list.php:407 +#: ../../godmode/alerts/alert_list.builder.php:113 +msgid "Template" +msgstr "Plantilla" + +#: ../../operation/search_alerts.php:48 +#: ../../operation/snmpconsole/snmp_view.php:540 +#: ../../operation/snmpconsole/snmp_view.php:838 +#: ../../operation/events/events.build_table.php:253 +#: ../../operation/agentes/alerts_status.php:430 +#: ../../operation/agentes/alerts_status.php:471 +#: ../../operation/agentes/alerts_status.php:505 +#: ../../operation/agentes/alerts_status.php:539 +#: ../../operation/agentes/alerts_status.functions.php:106 +#: ../../operation/incidents/incident.php:343 +#: ../../extensions/agents_alerts.php:281 +#: ../../mobile/operation/tactical.php:308 ../../general/logon_ok.php:225 +#: ../../general/logon_ok.php:422 ../../include/ajax/alert_list.ajax.php:147 +#: ../../include/functions_ui_renders.php:97 +#: ../../include/functions_reporting_html.php:1953 +#: ../../include/functions_reporting_html.php:3587 +#: ../../include/functions_events.php:3614 ../../include/functions.php:2313 +#: ../../godmode/snmpconsole/snmp_alert.php:1172 +#: ../../godmode/snmpconsole/snmp_alert.php:1264 +#: ../../godmode/snmpconsole/snmp_filters.php:133 #: ../../godmode/alerts/alert_view.php:417 +#: ../../godmode/alerts/alert_list.list.php:607 #: ../../godmode/events/event_filter.php:113 #: ../../godmode/massive/massive_add_action_alerts.php:179 #: ../../godmode/massive/massive_delete_action_alerts.php:181 #: ../../godmode/massive/massive_enable_disable_alerts.php:163 #: ../../godmode/massive/massive_operations.php:271 #: ../../godmode/massive/massive_standby_alerts.php:163 +#: ../../godmode/users/configure_user.php:626 +#: ../../godmode/reporting/visual_console_builder.elements.php:85 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1546 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1741 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1750 +#: ../../godmode/netflow/nf_item_list.php:152 +#: ../../godmode/netflow/nf_edit.php:120 +#: ../../godmode/servers/manage_recontask.php:291 +#: ../../godmode/admin_access_logs.php:61 +#: ../../godmode/admin_access_logs.php:189 #: ../../godmode/modules/manage_nc_groups.php:195 #: ../../godmode/modules/manage_network_components.php:570 #: ../../godmode/modules/manage_network_templates.php:192 -#: ../../godmode/netflow/nf_edit.php:120 -#: ../../godmode/netflow/nf_item_list.php:152 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1551 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1746 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1755 -#: ../../godmode/reporting/visual_console_builder.elements.php:85 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/snmpconsole/snmp_alert.php:1172 -#: ../../godmode/snmpconsole/snmp_alert.php:1264 -#: ../../godmode/snmpconsole/snmp_filters.php:133 -#: ../../godmode/users/configure_user.php:718 -#: ../../include/ajax/alert_list.ajax.php:147 ../../include/functions.php:2336 -#: ../../include/functions_ui_renders.php:97 -#: ../../include/functions_events.php:3614 -#: ../../include/functions_reporting_html.php:1959 -#: ../../include/functions_reporting_html.php:3597 -#: ../../mobile/operation/tactical.php:308 -#: ../../operation/agentes/alerts_status.functions.php:106 -#: ../../operation/agentes/alerts_status.php:430 -#: ../../operation/agentes/alerts_status.php:471 -#: ../../operation/agentes/alerts_status.php:505 -#: ../../operation/agentes/alerts_status.php:539 -#: ../../operation/events/events.build_table.php:253 -#: ../../operation/incidents/incident.php:343 -#: ../../operation/search_alerts.php:48 -#: ../../operation/snmpconsole/snmp_view.php:631 -#: ../../operation/snmpconsole/snmp_view.php:929 -#: ../../enterprise/dashboard/widgets/top_n.php:129 -#: ../../enterprise/extensions/ipam/ipam_list.php:200 -#: ../../enterprise/godmode/admin_access_logs.php:25 -#: ../../enterprise/godmode/alerts/alert_events.php:510 -#: ../../enterprise/godmode/alerts/alert_events.php:522 -#: ../../enterprise/godmode/alerts/alert_events_list.php:424 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:158 -#: ../../enterprise/godmode/policies/policy_alerts.php:455 -#: ../../enterprise/godmode/policies/policy_modules.php:1205 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:151 -#: ../../enterprise/godmode/reporting/graph_template_list.php:133 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1952 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2099 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2107 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/include/functions_services.php:1432 -#: ../../enterprise/operation/agentes/policy_view.php:196 +#: ../../godmode/agentes/planned_downtime.editor.php:840 +#: ../../godmode/agentes/module_manager.php:568 +#: ../../godmode/agentes/agent_template.php:231 msgid "Action" msgstr "Acción" -#: ../../extensions/agents_alerts.php:282 -#: ../../godmode/alerts/alert_view.php:79 -#: ../../godmode/snmpconsole/snmp_alert.php:1169 -#: ../../include/functions_treeview.php:424 -#: ../../include/functions_reporting_html.php:3109 -#: ../../operation/agentes/alerts_status.php:431 -#: ../../operation/agentes/alerts_status.php:472 -#: ../../operation/agentes/alerts_status.php:506 -#: ../../operation/agentes/alerts_status.php:540 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1528 -#: ../../enterprise/operation/agentes/policy_view.php:197 -msgid "Last fired" -msgstr "Lanzada por última vez" +#: ../../operation/snmpconsole/snmp_mib_uploader.php:30 +#: ../../operation/menu.php:89 +msgid "MIB uploader" +msgstr "Cargador MIB" -#: ../../extensions/agents_alerts.php:283 ../../extensions/net_tools.php:239 -#: ../../godmode/agentes/agent_incidents.php:86 -#: ../../godmode/agentes/agent_manager.php:340 -#: ../../godmode/agentes/module_manager.php:564 -#: ../../godmode/alerts/alert_list.list.php:411 -#: ../../godmode/alerts/alert_view.php:96 -#: ../../godmode/events/custom_events.php:83 -#: ../../godmode/events/custom_events.php:157 -#: ../../godmode/massive/massive_copy_modules.php:83 -#: ../../godmode/massive/massive_copy_modules.php:196 -#: ../../godmode/massive/massive_delete_agents.php:119 -#: ../../godmode/massive/massive_delete_modules.php:450 -#: ../../godmode/massive/massive_edit_agents.php:222 -#: ../../godmode/massive/massive_edit_agents.php:362 -#: ../../godmode/servers/servers.build_table.php:65 -#: ../../include/ajax/module.php:745 -#: ../../include/functions_pandora_networkmap.php:1400 -#: ../../include/functions_events.php:39 -#: ../../include/functions_events.php:2415 -#: ../../include/functions_events.php:3520 -#: ../../include/functions_reporting_html.php:401 -#: ../../include/functions_reporting_html.php:806 -#: ../../include/functions_reporting_html.php:816 -#: ../../include/functions_reporting_html.php:1021 -#: ../../include/functions_reporting_html.php:1031 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:66 +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 "" +"Ficheros MIB se instalarán en el sistema. Por favor, tenga en cuenta que un " +"MIB puede depender de otro MIB. Para personalizar definiciones de trap, se " +"debe usar el editor de trap SNMP." + +#: ../../operation/snmpconsole/snmp_statistics.php:45 +#: ../../operation/snmpconsole/snmp_view.php:77 +#: ../../operation/snmpconsole/snmp_browser.php:86 +#: ../../operation/agentes/pandora_networkmap.view.php:731 +msgid "Normal screen" +msgstr "Pantalla normal" + +#: ../../operation/snmpconsole/snmp_statistics.php:49 +#: ../../operation/snmpconsole/snmp_view.php:81 +#: ../../operation/snmpconsole/snmp_browser.php:90 +#: ../../operation/events/events.php:329 +#: ../../operation/agentes/pandora_networkmap.view.php:741 +#: ../../extensions/agents_alerts.php:118 +msgid "Full screen" +msgstr "Pantalla completa" + +#: ../../operation/snmpconsole/snmp_statistics.php:55 +#: ../../operation/snmpconsole/snmp_view.php:73 +#: ../../operation/events/events.php:405 ../../include/functions_html.php:659 +#: ../../include/functions_html.php:660 ../../include/functions_html.php:785 +#: ../../include/functions_html.php:786 +#: ../../godmode/alerts/alert_list.php:326 +#: ../../godmode/category/category.php:58 +#: ../../godmode/agentes/planned_downtime.editor.php:38 +msgid "List" +msgstr "Lista" + +#: ../../operation/snmpconsole/snmp_statistics.php:61 +#: ../../operation/snmpconsole/snmp_view.php:71 ../../operation/menu.php:278 +#: ../../operation/menu.php:365 ../../operation/events/event_statistics.php:32 +#: ../../operation/incidents/incident_statistics.php:30 +msgid "Statistics" +msgstr "Estadísticas" + +#: ../../operation/snmpconsole/snmp_statistics.php:64 +#: ../../operation/snmpconsole/snmp_view.php:85 +#: ../../godmode/snmpconsole/snmp_alert.php:78 +#: ../../godmode/snmpconsole/snmp_alert.php:82 +#: ../../godmode/snmpconsole/snmp_alert.php:86 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../godmode/snmpconsole/snmp_filters.php:38 +#: ../../godmode/snmpconsole/snmp_filters.php:42 +msgid "SNMP Console" +msgstr "Consola SNMP" + +#: ../../operation/snmpconsole/snmp_statistics.php:116 +#: ../../operation/snmpconsole/snmp_view.php:467 +msgid "There are no SNMP traps in database" +msgstr "No hay definido ningún agente SNMP" + +#: ../../operation/snmpconsole/snmp_statistics.php:127 +msgid "Traps received by source" +msgstr "Traps recibidos por el origen" + +#: ../../operation/snmpconsole/snmp_statistics.php:127 +#: ../../operation/snmpconsole/snmp_statistics.php:185 +#: ../../include/functions_reporting.php:959 +#, php-format +msgid "Top %d" +msgstr "Primeros %d" + +#: ../../operation/snmpconsole/snmp_statistics.php:140 +#: ../../mobile/operation/tactical.php:311 ../../general/logon_ok.php:227 +#: ../../general/logon_ok.php:424 +#: ../../include/functions_reporting_html.php:3589 +#: ../../godmode/admin_access_logs.php:191 +msgid "Source IP" +msgstr "IP origen" + +#: ../../operation/snmpconsole/snmp_statistics.php:141 +#: ../../operation/snmpconsole/snmp_statistics.php:199 +msgid "Number" +msgstr "Número" + +#: ../../operation/snmpconsole/snmp_statistics.php:151 +#: ../../operation/snmpconsole/snmp_view.php:583 +#: ../../operation/agentes/estado_agente.php:626 +#: ../../operation/agentes/estado_agente.php:646 +#: ../../godmode/agentes/modificar_agente.php:654 +msgid "Create agent" +msgstr "Crear agente" + +#: ../../operation/snmpconsole/snmp_statistics.php:156 +#: ../../operation/snmpconsole/snmp_view.php:589 +msgid "View agent details" +msgstr "Ver detalles del agente" + +#: ../../operation/snmpconsole/snmp_statistics.php:172 +#: ../../operation/snmpconsole/snmp_statistics.php:219 +#: ../../operation/snmpconsole/snmp_view.php:429 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:741 +#: ../../operation/users/user_edit.php:282 +#: ../../operation/gis_maps/render_view.php:152 +#: ../../extensions/api_checker.php:152 ../../include/functions_graph.php:2594 +#: ../../include/functions_graph.php:2744 +#: ../../include/functions_graph.php:2785 +#: ../../include/functions_graph.php:2826 +#: ../../include/functions_graph.php:2882 +#: ../../include/functions_graph.php:2938 +#: ../../include/functions_graph.php:2992 +#: ../../include/functions_graph.php:3170 +#: ../../include/functions_graph.php:3315 +#: ../../include/functions_graph.php:3365 +#: ../../include/functions_graph.php:4364 +#: ../../godmode/snmpconsole/snmp_alert.php:33 +#: ../../godmode/groups/configure_group.php:190 +msgid "Other" +msgstr "Otro" + +#: ../../operation/snmpconsole/snmp_statistics.php:185 +msgid "Traps received by Enterprise String" +msgstr "Traps recibidos por cadena Enterprise" + +#: ../../operation/snmpconsole/snmp_statistics.php:198 +msgid "Trap Enterprise String" +msgstr "Traps Enterprise de cadena" + +#: ../../operation/snmpconsole/snmp_view.php:97 +#: ../../operation/events/events.php:508 +#: ../../operation/reporting/graph_viewer.php:34 +#: ../../operation/reporting/graph_viewer.php:41 +#: ../../operation/gis_maps/gis_map.php:74 +#: ../../operation/messages/message_list.php:56 +#: ../../operation/messages/message_list.php:73 +#: ../../operation/incidents/incident_detail.php:85 +#: ../../operation/incidents/incident_detail.php:114 +#: ../../operation/incidents/incident.php:66 +#: ../../extensions/files_repo.php:166 +#: ../../godmode/snmpconsole/snmp_alert.php:560 +#: ../../godmode/snmpconsole/snmp_filters.php:76 +#: ../../godmode/alerts/alert_special_days.php:223 +#: ../../godmode/alerts/alert_actions.php:332 +#: ../../godmode/alerts/alert_commands.php:319 +#: ../../godmode/alerts/alert_list.php:145 +#: ../../godmode/alerts/alert_list.php:213 +#: ../../godmode/alerts/alert_templates.php:224 +#: ../../godmode/setup/news.php:97 ../../godmode/setup/gis.php:57 +#: ../../godmode/setup/links.php:69 ../../godmode/events/event_filter.php:56 +#: ../../godmode/events/event_filter.php:77 +#: ../../godmode/massive/massive_delete_action_alerts.php:114 +#: ../../godmode/massive/massive_delete_modules.php:236 +#: ../../godmode/massive/massive_delete_tags.php:151 +#: ../../godmode/massive/massive_delete_alerts.php:156 +#: ../../godmode/users/configure_user.php:415 +#: ../../godmode/users/profile_list.php:94 +#: ../../godmode/users/user_list.php:147 ../../godmode/users/user_list.php:188 +#: ../../godmode/reporting/map_builder.php:87 +#: ../../godmode/reporting/reporting_builder.php:412 +#: ../../godmode/reporting/graphs.php:86 ../../godmode/reporting/graphs.php:94 +#: ../../godmode/reporting/graphs.php:136 +#: ../../godmode/netflow/nf_item_list.php:105 +#: ../../godmode/netflow/nf_item_list.php:126 +#: ../../godmode/netflow/nf_edit.php:76 ../../godmode/netflow/nf_edit.php:100 +#: ../../godmode/modules/manage_nc_groups.php:122 +#: ../../godmode/modules/manage_network_components.php:372 +#: ../../godmode/agentes/planned_downtime.list.php:107 +msgid "Successfully deleted" +msgstr "Borrado correctamente" + +#: ../../operation/snmpconsole/snmp_view.php:98 +#: ../../operation/events/events.php:509 +#: ../../operation/gis_maps/gis_map.php:75 +#: ../../operation/messages/message_list.php:57 +#: ../../operation/agentes/pandora_networkmap.php:269 +#: ../../operation/incidents/incident_detail.php:86 +#: ../../operation/incidents/incident_detail.php:115 +#: ../../operation/incidents/incident.php:67 +#: ../../extensions/files_repo.php:166 +#: ../../godmode/alerts/alert_special_days.php:224 +#: ../../godmode/alerts/alert_actions.php:333 +#: ../../godmode/alerts/alert_commands.php:320 +#: ../../godmode/alerts/alert_list.php:145 +#: ../../godmode/alerts/alert_list.php:213 +#: ../../godmode/alerts/alert_templates.php:225 +#: ../../godmode/setup/news.php:98 ../../godmode/setup/gis.php:55 +#: ../../godmode/massive/massive_delete_action_alerts.php:115 +#: ../../godmode/massive/massive_delete_tags.php:152 +#: ../../godmode/massive/massive_delete_alerts.php:157 +#: ../../godmode/users/configure_user.php:416 +#: ../../godmode/reporting/reporting_builder.php:413 +#: ../../godmode/modules/manage_network_components.php:373 +msgid "Could not be deleted" +msgstr "No se pudo borrar" + +#: ../../operation/snmpconsole/snmp_view.php:116 +#: ../../operation/incidents/incident.php:110 +#: ../../include/functions_planned_downtimes.php:125 +#: ../../godmode/snmpconsole/snmp_alert.php:318 +#: ../../godmode/snmpconsole/snmp_filters.php:54 +#: ../../godmode/alerts/alert_special_days.php:206 +#: ../../godmode/alerts/alert_actions.php:262 +#: ../../godmode/alerts/configure_alert_command.php:93 +#: ../../godmode/alerts/configure_alert_template.php:444 +#: ../../godmode/alerts/alert_list.php:196 +#: ../../godmode/alerts/alert_templates.php:151 +#: ../../godmode/setup/news.php:87 ../../godmode/setup/gis.php:39 +#: ../../godmode/setup/links.php:58 +#: ../../godmode/events/event_edit_filter.php:173 +#: ../../godmode/massive/massive_edit_modules.php:152 +#: ../../godmode/users/profile_list.php:223 +#: ../../godmode/netflow/nf_edit_form.php:131 +#: ../../godmode/modules/manage_nc_groups.php:98 +#: ../../godmode/agentes/configurar_agente.php:804 +#: ../../godmode/agentes/planned_downtime.editor.php:368 +msgid "Successfully updated" +msgstr "Actualizado correctamente" + +#: ../../operation/snmpconsole/snmp_view.php:117 +#: ../../operation/agentes/pandora_networkmap.php:247 +#: ../../operation/incidents/incident.php:111 +#: ../../include/functions_planned_downtimes.php:122 +#: ../../godmode/alerts/alert_special_days.php:207 +#: ../../godmode/alerts/alert_actions.php:263 +#: ../../godmode/alerts/configure_alert_command.php:94 +#: ../../godmode/alerts/configure_alert_template.php:445 +#: ../../godmode/alerts/alert_list.php:196 +#: ../../godmode/alerts/alert_templates.php:152 ../../godmode/setup/gis.php:41 +#: ../../godmode/massive/massive_edit_modules.php:153 +#: ../../godmode/modules/manage_network_components.php:346 +#: ../../godmode/agentes/planned_downtime.editor.php:359 +msgid "Could not be updated" +msgstr "No se pudo actualizar" + +#: ../../operation/snmpconsole/snmp_view.php:164 +#: ../../operation/snmpconsole/snmp_view.php:835 +#: ../../operation/agentes/alerts_status.functions.php:75 +#: ../../mobile/operation/alerts.php:39 +msgid "Not fired" +msgstr "No disparado" + +#: ../../operation/snmpconsole/snmp_view.php:164 +#: ../../operation/snmpconsole/snmp_view.php:832 +#: ../../operation/agentes/alerts_status.functions.php:74 +#: ../../mobile/operation/alerts.php:38 +#: ../../include/functions_reporting_html.php:1598 +#: ../../include/functions_reporting_html.php:1953 +#: ../../include/functions_reporting_html.php:1954 +msgid "Fired" +msgstr "Lanzada" + +#: ../../operation/snmpconsole/snmp_view.php:382 +#: ../../operation/snmpconsole/snmp_view.php:536 +#: ../../operation/snmpconsole/snmp_view.php:830 +#: ../../operation/events/events_rss.php:185 +#: ../../operation/events/events.build_table.php:204 +#: ../../operation/agentes/estado_monitores.php:449 +#: ../../include/functions_events.php:43 +#: ../../include/functions_events.php:991 +#: ../../include/functions_events.php:3573 +#: ../../godmode/events/custom_events.php:95 +#: ../../godmode/events/custom_events.php:161 +#: ../../godmode/agentes/configurar_agente.php:538 +msgid "Alert" +msgstr "Alerta" + +#: ../../operation/snmpconsole/snmp_view.php:384 +#: ../../operation/snmpconsole/snmp_view.php:401 +#: ../../operation/snmpconsole/snmp_view.php:406 +#: ../../operation/snmpconsole/snmp_view.php:546 +#: ../../operation/events/export_csv.php:54 +#: ../../operation/events/events_list.php:450 +#: ../../operation/events/events_list.php:454 +#: ../../operation/events/events_list.php:463 +#: ../../operation/events/events_list.php:566 +#: ../../operation/events/events_list.php:570 +#: ../../operation/events/events_rss.php:110 +#: ../../operation/events/events.build_table.php:506 +#: ../../operation/tree.php:130 ../../operation/tree.php:155 +#: ../../operation/gis_maps/render_view.php:148 +#: ../../operation/agentes/status_monitor.php:307 +#: ../../operation/agentes/status_monitor.php:324 +#: ../../operation/agentes/status_monitor.php:334 +#: ../../operation/agentes/status_monitor.php:353 +#: ../../operation/agentes/status_monitor.php:396 +#: ../../operation/agentes/status_monitor.php:398 +#: ../../operation/agentes/status_monitor.php:463 +#: ../../operation/agentes/estado_monitores.php:447 +#: ../../operation/agentes/estado_monitores.php:466 +#: ../../operation/agentes/alerts_status.functions.php:73 +#: ../../operation/agentes/alerts_status.functions.php:79 +#: ../../operation/agentes/alerts_status.functions.php:94 +#: ../../operation/agentes/alerts_status.functions.php:111 +#: ../../operation/agentes/alerts_status.functions.php:113 +#: ../../operation/agentes/estado_agente.php:194 +#: ../../extensions/agents_modules.php:134 +#: ../../extensions/files_repo/files_repo_form.php:50 +#: ../../mobile/operation/networkmaps.php:137 +#: ../../mobile/operation/networkmaps.php:227 +#: ../../mobile/operation/alerts.php:37 ../../mobile/operation/alerts.php:43 +#: ../../mobile/operation/agents.php:32 ../../mobile/operation/events.php:624 +#: ../../mobile/operation/events.php:634 +#: ../../mobile/operation/events.php:1082 +#: ../../mobile/operation/events.php:1101 +#: ../../mobile/operation/modules.php:38 +#: ../../mobile/operation/modules.php:225 +#: ../../mobile/operation/modules.php:240 +#: ../../general/subselect_data_module.php:42 +#: ../../include/functions_modules.php:2497 +#: ../../include/functions_modules.php:2498 +#: ../../include/functions_groups.php:616 +#: ../../include/functions_groups.php:2359 +#: ../../include/functions_graph.php:2872 +#: ../../include/functions_users.php:187 ../../include/functions_users.php:192 +#: ../../include/functions_users.php:886 +#: ../../include/functions_events.php:3339 +#: ../../include/functions_events.php:3852 +#: ../../include/functions_reporting.php:1657 ../../include/functions.php:906 +#: ../../include/functions.php:1129 +#: ../../godmode/alerts/alert_list.list.php:122 +#: ../../godmode/alerts/alert_list.list.php:128 +#: ../../godmode/alerts/alert_list.list.php:137 +#: ../../godmode/alerts/alert_list.list.php:142 +#: ../../godmode/alerts/alert_list.php:291 +#: ../../godmode/alerts/alert_list.php:345 +#: ../../godmode/alerts/alert_list.php:358 +#: ../../godmode/alerts/alert_templates.php:255 +#: ../../godmode/setup/gis_step_2.php:154 +#: ../../godmode/events/event_edit_filter.php:237 +#: ../../godmode/events/event_edit_filter.php:241 +#: ../../godmode/events/event_edit_filter.php:382 +#: ../../godmode/massive/massive_edit_agents.php:224 +#: ../../godmode/massive/massive_edit_agents.php:226 +#: ../../godmode/massive/massive_delete_agents.php:121 +#: ../../godmode/massive/massive_delete_agents.php:124 +#: ../../godmode/massive/massive_delete_modules.php:409 +#: ../../godmode/massive/massive_delete_modules.php:437 +#: ../../godmode/massive/massive_delete_modules.php:460 +#: ../../godmode/massive/massive_delete_modules.php:474 +#: ../../godmode/massive/massive_copy_modules.php:85 +#: ../../godmode/massive/massive_copy_modules.php:198 +#: ../../godmode/massive/massive_edit_modules.php:253 +#: ../../godmode/massive/massive_edit_modules.php:281 +#: ../../godmode/massive/massive_edit_modules.php:303 +#: ../../godmode/massive/massive_edit_modules.php:334 +#: ../../godmode/reporting/visual_console_builder.wizard.php:249 +#: ../../godmode/reporting/visual_console_builder.wizard.php:254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:904 +#: ../../godmode/reporting/reporting_builder.item_editor.php:914 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1091 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1401 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1413 +#: ../../godmode/reporting/reporting_builder.list_items.php:163 +#: ../../godmode/reporting/reporting_builder.list_items.php:165 +#: ../../godmode/reporting/reporting_builder.list_items.php:167 +#: ../../godmode/reporting/reporting_builder.list_items.php:189 +#: ../../godmode/reporting/reporting_builder.list_items.php:192 +#: ../../godmode/reporting/reporting_builder.list_items.php:195 +#: ../../godmode/admin_access_logs.php:62 +#: ../../godmode/admin_access_logs.php:64 +#: ../../godmode/modules/manage_network_components.php:515 +#: ../../godmode/modules/manage_network_templates_form.php:267 +msgid "All" +msgstr "Todo" + +#: ../../operation/snmpconsole/snmp_view.php:388 +#: ../../operation/events/events_list.php:468 +#: ../../operation/users/user_edit.php:238 +#: ../../include/functions_config.php:457 +#: ../../godmode/setup/setup_visuals.php:62 +#: ../../godmode/events/event_edit_filter.php:276 +#: ../../godmode/users/configure_user.php:519 +msgid "Block size for pagination" +msgstr "Tamaño de bloque para la paginación" + +#: ../../operation/snmpconsole/snmp_view.php:395 +#: ../../operation/events/events_list.php:474 +#: ../../operation/users/user_edit.php:247 +#: ../../operation/users/user_edit.php:249 +#: ../../operation/users/user_edit.php:257 +#: ../../operation/users/user_edit.php:276 +#: ../../operation/gis_maps/gis_map.php:93 +#: ../../extensions/agents_alerts.php:313 ../../include/functions_ui.php:908 +#: ../../godmode/alerts/alert_special_days.php:275 +#: ../../godmode/alerts/alert_special_days.php:287 +#: ../../godmode/alerts/alert_view.php:43 +#: ../../godmode/alerts/alert_list.list.php:504 +#: ../../godmode/setup/gis_step_2.php:367 +#: ../../godmode/setup/gis_step_2.php:451 +#: ../../godmode/setup/setup_visuals.php:182 +#: ../../godmode/setup/setup_visuals.php:570 +#: ../../godmode/setup/setup_visuals.php:582 +#: ../../godmode/events/event_edit_filter.php:278 +#: ../../godmode/massive/massive_edit_agents.php:404 +#: ../../godmode/users/configure_user.php:451 +#: ../../godmode/agentes/module_manager_editor_common.php:394 +msgid "Default" +msgstr "Predeterminado" + +#: ../../operation/snmpconsole/snmp_view.php:399 +#: ../../operation/events/events_list.php:568 +#: ../../operation/events/events.build_table.php:211 +#: ../../mobile/operation/events.php:373 ../../mobile/operation/events.php:374 +#: ../../mobile/operation/events.php:489 ../../mobile/operation/events.php:632 +#: ../../mobile/operation/events.php:633 +#: ../../include/functions_reporting_html.php:811 +#: ../../include/functions_reporting_html.php:820 +#: ../../include/functions_reporting_html.php:1024 +#: ../../include/functions_reporting_html.php:1034 #: ../../include/functions_reporting_html.php:1642 -#: ../../include/functions_reporting_html.php:2083 -#: ../../include/functions_reporting_html.php:2118 -#: ../../include/functions_reporting_html.php:2824 -#: ../../include/functions_snmp_browser.php:435 -#: ../../mobile/operation/agents.php:81 ../../mobile/operation/agents.php:111 -#: ../../mobile/operation/agents.php:112 ../../mobile/operation/agents.php:184 -#: ../../mobile/operation/agents.php:185 ../../mobile/operation/agents.php:322 +#: ../../include/functions_events.php:44 +#: ../../include/functions_events.php:898 +#: ../../include/functions_events.php:2387 +#: ../../include/functions_events.php:3579 +#: ../../godmode/events/event_filter.php:112 +#: ../../godmode/events/custom_events.php:98 +#: ../../godmode/events/custom_events.php:162 +#: ../../godmode/events/event_edit_filter.php:239 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1396 +msgid "Severity" +msgstr "Gravedad" + +#: ../../operation/snmpconsole/snmp_view.php:404 +#: ../../operation/snmpconsole/snmp_view.php:506 +#: ../../operation/snmpconsole/snmp_view.php:822 +#: ../../operation/events/events.build_table.php:144 +#: ../../operation/messages/message_list.php:121 +#: ../../operation/servers/recon_view.php:98 +#: ../../operation/search_modules.php:51 ../../operation/search_agents.php:64 +#: ../../operation/agentes/status_monitor.php:971 +#: ../../operation/agentes/alerts_status.php:432 +#: ../../operation/agentes/alerts_status.php:473 +#: ../../operation/agentes/alerts_status.php:507 +#: ../../operation/agentes/alerts_status.php:541 +#: ../../operation/agentes/alerts_status.functions.php:83 +#: ../../operation/agentes/estado_agente.php:193 +#: ../../operation/agentes/estado_agente.php:525 +#: ../../operation/incidents/incident_detail.php:276 +#: ../../operation/incidents/incident.php:240 +#: ../../operation/incidents/incident.php:336 +#: ../../extensions/net_tools.php:239 ../../extensions/agents_alerts.php:283 #: ../../mobile/operation/alerts.php:75 ../../mobile/operation/alerts.php:76 #: ../../mobile/operation/alerts.php:194 ../../mobile/operation/alerts.php:195 -#: ../../mobile/operation/alerts.php:274 ../../mobile/operation/events.php:342 +#: ../../mobile/operation/alerts.php:274 ../../mobile/operation/agents.php:81 +#: ../../mobile/operation/agents.php:111 ../../mobile/operation/agents.php:112 +#: ../../mobile/operation/agents.php:184 ../../mobile/operation/agents.php:185 +#: ../../mobile/operation/agents.php:322 ../../mobile/operation/events.php:342 #: ../../mobile/operation/events.php:343 ../../mobile/operation/events.php:493 #: ../../mobile/operation/events.php:613 ../../mobile/operation/events.php:614 #: ../../mobile/operation/modules.php:119 @@ -723,605 +678,2822 @@ msgstr "Lanzada por última vez" #: ../../mobile/operation/modules.php:533 #: ../../mobile/operation/modules.php:623 #: ../../mobile/operation/modules.php:754 -#: ../../operation/agentes/alerts_status.functions.php:83 -#: ../../operation/agentes/alerts_status.php:432 -#: ../../operation/agentes/alerts_status.php:473 -#: ../../operation/agentes/alerts_status.php:507 -#: ../../operation/agentes/alerts_status.php:541 -#: ../../operation/agentes/estado_agente.php:193 -#: ../../operation/agentes/estado_agente.php:525 -#: ../../operation/agentes/status_monitor.php:971 -#: ../../operation/events/events.build_table.php:144 -#: ../../operation/incidents/incident.php:240 -#: ../../operation/incidents/incident.php:336 -#: ../../operation/incidents/incident_detail.php:276 -#: ../../operation/messages/message_list.php:121 -#: ../../operation/search_agents.php:64 ../../operation/search_modules.php:51 -#: ../../operation/servers/recon_view.php:98 -#: ../../operation/snmpconsole/snmp_view.php:404 -#: ../../operation/snmpconsole/snmp_view.php:597 -#: ../../operation/snmpconsole/snmp_view.php:913 -#: ../../enterprise/dashboard/widgets/tactical.php:32 -#: ../../enterprise/extensions/backup/main.php:101 -#: ../../enterprise/extensions/vmware/vmware_view.php:1002 -#: ../../enterprise/godmode/admin_access_logs.php:22 -#: ../../enterprise/godmode/agentes/collection_manager.php:108 -#: ../../enterprise/godmode/agentes/collection_manager.php:166 -#: ../../enterprise/godmode/alerts/alert_events_list.php:425 -#: ../../enterprise/godmode/policies/policies.php:253 -#: ../../enterprise/godmode/policies/policy_agents.php:379 -#: ../../enterprise/godmode/policies/policy_collections.php:124 -#: ../../enterprise/godmode/policies/policy_collections.php:195 -#: ../../enterprise/godmode/policies/policy_queue.php:348 -#: ../../enterprise/godmode/servers/list_satellite.php:36 -#: ../../enterprise/include/functions_reporting.php:1647 -#: ../../enterprise/include/functions_reporting.php:2439 -#: ../../enterprise/include/functions_reporting.php:3216 -#: ../../enterprise/include/functions_reporting.php:4811 -#: ../../enterprise/include/functions_reporting.php:5112 -#: ../../enterprise/include/functions_reporting_csv.php:1323 -#: ../../enterprise/include/functions_reporting_pdf.php:1269 -#: ../../enterprise/include/functions_reporting_pdf.php:1610 -#: ../../enterprise/include/functions_reporting_pdf.php:2042 -#: ../../enterprise/include/functions_reporting_pdf.php:2319 -#: ../../enterprise/include/functions_reporting_pdf.php:2369 -#: ../../enterprise/include/functions_services.php:1429 -#: ../../enterprise/meta/advanced/policymanager.queue.php:222 -#: ../../enterprise/meta/advanced/servers.build_table.php:60 -#: ../../enterprise/meta/agentsearch.php:98 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1552 -#: ../../enterprise/meta/include/functions_events_meta.php:70 -#: ../../enterprise/operation/agentes/collection_view.php:66 -#: ../../enterprise/operation/agentes/policy_view.php:47 -#: ../../enterprise/operation/agentes/policy_view.php:134 -#: ../../enterprise/operation/agentes/policy_view.php:198 -#: ../../enterprise/operation/agentes/policy_view.php:307 -#: ../../enterprise/operation/services/services.list.php:175 -#: ../../enterprise/operation/services/services.list.php:342 -#: ../../enterprise/operation/services/services.service.php:140 -#: ../../enterprise/operation/services/services.table_services.php:144 +#: ../../include/functions_snmp_browser.php:435 +#: ../../include/functions_pandora_networkmap.php:1386 +#: ../../include/ajax/module.php:745 +#: ../../include/functions_reporting_html.php:401 +#: ../../include/functions_reporting_html.php:806 +#: ../../include/functions_reporting_html.php:816 +#: ../../include/functions_reporting_html.php:1021 +#: ../../include/functions_reporting_html.php:1031 +#: ../../include/functions_reporting_html.php:1636 +#: ../../include/functions_reporting_html.php:2077 +#: ../../include/functions_reporting_html.php:2112 +#: ../../include/functions_reporting_html.php:2814 +#: ../../include/functions_events.php:39 +#: ../../include/functions_events.php:2415 +#: ../../include/functions_events.php:3520 +#: ../../godmode/alerts/alert_view.php:96 +#: ../../godmode/alerts/alert_list.list.php:411 +#: ../../godmode/events/custom_events.php:83 +#: ../../godmode/events/custom_events.php:157 +#: ../../godmode/massive/massive_edit_agents.php:222 +#: ../../godmode/massive/massive_edit_agents.php:362 +#: ../../godmode/massive/massive_delete_agents.php:119 +#: ../../godmode/massive/massive_delete_modules.php:450 +#: ../../godmode/massive/massive_copy_modules.php:83 +#: ../../godmode/massive/massive_copy_modules.php:196 +#: ../../godmode/servers/servers.build_table.php:65 +#: ../../godmode/agentes/agent_manager.php:340 +#: ../../godmode/agentes/agent_incidents.php:86 +#: ../../godmode/agentes/module_manager.php:564 msgid "Status" msgstr "Estado" -#: ../../extensions/agents_alerts.php:313 -#: ../../godmode/agentes/module_manager_editor_common.php:393 -#: ../../godmode/alerts/alert_list.list.php:504 -#: ../../godmode/alerts/alert_special_days.php:275 -#: ../../godmode/alerts/alert_special_days.php:287 -#: ../../godmode/alerts/alert_view.php:43 -#: ../../godmode/events/event_edit_filter.php:278 -#: ../../godmode/massive/massive_edit_agents.php:404 -#: ../../godmode/setup/gis_step_2.php:367 -#: ../../godmode/setup/gis_step_2.php:451 -#: ../../godmode/setup/setup_visuals.php:182 -#: ../../godmode/setup/setup_visuals.php:596 -#: ../../godmode/setup/setup_visuals.php:608 -#: ../../godmode/users/configure_user.php:489 -#: ../../godmode/users/configure_user.php:561 -#: ../../include/functions_ui.php:908 -#: ../../operation/events/events_list.php:539 -#: ../../operation/gis_maps/gis_map.php:93 -#: ../../operation/snmpconsole/snmp_view.php:395 -#: ../../operation/users/user_edit.php:247 -#: ../../operation/users/user_edit.php:249 -#: ../../operation/users/user_edit.php:257 -#: ../../operation/users/user_edit.php:276 -#: ../../enterprise/dashboard/main_dashboard.php:66 -#: ../../enterprise/godmode/policies/policy_alerts.php:304 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:199 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:88 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:117 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:78 -#: ../../enterprise/meta/advanced/metasetup.visual.php:215 -#: ../../enterprise/meta/advanced/metasetup.visual.php:251 -#: ../../enterprise/meta/advanced/metasetup.visual.php:256 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1520 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:99 -#: ../../enterprise/operation/agentes/policy_view.php:253 -msgid "Default" -msgstr "Predeterminado" +#: ../../operation/snmpconsole/snmp_view.php:407 +#: ../../operation/snmpconsole/snmp_view.php:569 +#: ../../operation/snmpconsole/snmp_view.php:827 +#: ../../include/functions_events.php:3154 +#: ../../include/functions_events.php:3159 +msgid "Not validated" +msgstr "Sin validar" +#: ../../operation/snmpconsole/snmp_view.php:408 +#: ../../operation/snmpconsole/snmp_view.php:573 +#: ../../operation/snmpconsole/snmp_view.php:824 +#: ../../include/functions_graph.php:3022 +#: ../../include/functions_events.php:895 +#: ../../include/functions_events.php:1505 +#: ../../include/functions_events.php:1719 +#: ../../include/functions_events.php:1725 +#: ../../include/functions_events.php:1729 +#: ../../include/functions_events.php:1734 +#: ../../include/functions_events.php:3151 +#: ../../include/functions_events.php:3159 +msgid "Validated" +msgstr "Validado" + +#: ../../operation/snmpconsole/snmp_view.php:413 +#: ../../operation/events/events_list.php:408 +#: ../../mobile/operation/alerts.php:188 ../../mobile/operation/agents.php:194 +#: ../../mobile/operation/events.php:642 +#: ../../mobile/operation/modules.php:254 +#: ../../godmode/snmpconsole/snmp_alert.php:999 +#: ../../godmode/events/event_edit_filter.php:249 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1494 +msgid "Free search" +msgstr "Búsqueda libre" + +#: ../../operation/snmpconsole/snmp_view.php:414 +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 \t RECUERDE las fuentes de trap tienen que buscarse según dirección IP" + +#: ../../operation/snmpconsole/snmp_view.php:420 +#: ../../godmode/snmpconsole/snmp_alert.php:664 +#: ../../godmode/snmpconsole/snmp_alert.php:1003 +msgid "Trap type" +msgstr "Clase de trap" + +#: ../../operation/snmpconsole/snmp_view.php:421 +msgid "Search by trap type" +msgstr "Búsqueda por tipo de trap" + +#: ../../operation/snmpconsole/snmp_view.php:423 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:723 +#: ../../operation/events/events_list.php:281 +#: ../../operation/events/events_list.php:881 +#: ../../operation/users/user_edit.php:323 +#: ../../operation/users/user_edit.php:347 +#: ../../operation/users/user_edit.php:387 +#: ../../operation/users/user_edit.php:401 +#: ../../operation/users/user_edit.php:554 +#: ../../operation/users/user_edit.php:561 +#: ../../operation/users/user_edit.php:570 +#: ../../operation/users/user_edit.php:577 +#: ../../operation/netflow/nf_live_view.php:399 +#: ../../operation/agentes/ver_agente.php:813 +#: ../../operation/agentes/ver_agente.php:856 +#: ../../operation/agentes/ver_agente.php:866 +#: ../../operation/agentes/pandora_networkmap.editor.php:204 +#: ../../mobile/operation/events.php:587 +#: ../../include/functions_pandora_networkmap.php:263 +#: ../../include/functions_pandora_networkmap.php:739 +#: ../../include/functions_pandora_networkmap.php:1450 +#: ../../include/functions_pandora_networkmap.php:1453 +#: ../../include/functions_pandora_networkmap.php:1504 +#: ../../include/functions_pandora_networkmap.php:1508 +#: ../../include/functions_pandora_networkmap.php:1560 +#: ../../include/functions_pandora_networkmap.php:1565 +#: ../../include/ajax/planned_downtime.ajax.php:85 +#: ../../include/ajax/alert_list.ajax.php:150 +#: ../../include/functions_visual_map_editor.php:268 +#: ../../include/functions_visual_map_editor.php:353 +#: ../../include/functions_visual_map_editor.php:528 +#: ../../include/functions_events.php:1698 +#: ../../include/functions_events.php:1705 +#: ../../include/functions_html.php:316 ../../include/functions_html.php:479 +#: ../../include/functions.php:909 ../../godmode/snmpconsole/snmp_alert.php:27 +#: ../../godmode/snmpconsole/snmp_alert.php:1008 +#: ../../godmode/alerts/configure_alert_action.php:131 +#: ../../godmode/alerts/alert_list.list.php:610 +#: ../../godmode/alerts/configure_alert_template.php:585 +#: ../../godmode/setup/setup_visuals.php:289 +#: ../../godmode/setup/os.builder.php:40 +#: ../../godmode/events/custom_events.php:213 +#: ../../godmode/events/custom_events.php:224 +#: ../../godmode/events/event_edit_filter.php:422 +#: ../../godmode/massive/massive_add_action_alerts.php:288 +#: ../../godmode/massive/massive_add_alerts.php:193 +#: ../../godmode/massive/massive_edit_agents.php:315 +#: ../../godmode/massive/massive_edit_plugins.php:284 +#: ../../godmode/massive/massive_delete_modules.php:490 +#: ../../godmode/massive/massive_delete_modules.php:564 +#: ../../godmode/massive/massive_delete_modules.php:609 +#: ../../godmode/massive/massive_delete_modules.php:610 +#: ../../godmode/massive/massive_delete_modules.php:611 +#: ../../godmode/massive/massive_delete_modules.php:612 +#: ../../godmode/massive/massive_delete_modules.php:679 +#: ../../godmode/massive/massive_edit_modules.php:319 +#: ../../godmode/massive/massive_edit_modules.php:536 +#: ../../godmode/massive/massive_edit_modules.php:564 +#: ../../godmode/massive/massive_edit_modules.php:625 +#: ../../godmode/massive/massive_edit_modules.php:684 +#: ../../godmode/massive/massive_edit_modules.php:769 +#: ../../godmode/massive/massive_edit_modules.php:770 +#: ../../godmode/massive/massive_edit_modules.php:771 +#: ../../godmode/massive/massive_edit_modules.php:772 +#: ../../godmode/massive/massive_edit_modules.php:967 +#: ../../godmode/massive/massive_delete_tags.php:226 +#: ../../godmode/massive/massive_delete_tags.php:253 +#: ../../godmode/massive/massive_delete_tags.php:289 +#: ../../godmode/massive/massive_add_tags.php:169 +#: ../../godmode/massive/massive_delete_alerts.php:243 +#: ../../godmode/users/configure_user.php:510 +#: ../../godmode/users/configure_user.php:682 +#: ../../godmode/users/configure_user.php:686 +#: ../../godmode/users/configure_user.php:691 +#: ../../godmode/reporting/graph_builder.graph_editor.php:135 +#: ../../godmode/reporting/graph_builder.graph_editor.php:194 +#: ../../godmode/reporting/graph_builder.graph_editor.php:214 +#: ../../godmode/reporting/visual_console_builder.wizard.php:199 +#: ../../godmode/reporting/visual_console_builder.wizard.php:296 +#: ../../godmode/reporting/visual_console_builder.wizard.php:304 +#: ../../godmode/reporting/visual_console_builder.wizard.php:326 +#: ../../godmode/reporting/visual_console_builder.wizard.php:335 +#: ../../godmode/reporting/visual_console_builder.wizard.php:374 +#: ../../godmode/reporting/visual_console_builder.wizard.php:571 +#: ../../godmode/reporting/visual_console_builder.wizard.php:581 +#: ../../godmode/reporting/visual_console_builder.wizard.php:613 +#: ../../godmode/reporting/visual_console_builder.elements.php:288 +#: ../../godmode/reporting/visual_console_builder.elements.php:429 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1072 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1100 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1151 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1176 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1469 +#: ../../godmode/netflow/nf_edit_form.php:226 +#: ../../godmode/gis_maps/configure_gis_map.php:414 +#: ../../godmode/servers/manage_recontask_form.php:270 +#: ../../godmode/groups/configure_group.php:197 +#: ../../godmode/modules/manage_nc_groups_form.php:72 +#: ../../godmode/modules/manage_network_components_form.php:455 +#: ../../godmode/modules/manage_network_components_form.php:461 +#: ../../godmode/modules/manage_network_components_form.php:470 +#: ../../godmode/modules/manage_network_components_form.php:476 +#: ../../godmode/modules/manage_network_components_form_common.php:191 +#: ../../godmode/modules/manage_network_components_form_plugin.php:24 +#: ../../godmode/agentes/module_manager_editor_common.php:429 +#: ../../godmode/agentes/module_manager_editor_common.php:631 +#: ../../godmode/agentes/module_manager_editor_common.php:791 +#: ../../godmode/agentes/module_manager_editor_common.php:797 +#: ../../godmode/agentes/module_manager_editor_common.php:806 +#: ../../godmode/agentes/module_manager_editor_common.php:812 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:331 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:409 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:246 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:286 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:416 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:432 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:448 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:464 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:479 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:485 +#: ../../godmode/agentes/agent_manager.php:302 +#: ../../godmode/agentes/agent_manager.php:401 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:692 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:771 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:933 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:949 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:965 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:981 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:997 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1012 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1018 +#: ../../godmode/agentes/module_manager_editor_plugin.php:52 +msgid "None" +msgstr "Ninguno/a" + +#: ../../operation/snmpconsole/snmp_view.php:424 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:726 +#: ../../godmode/snmpconsole/snmp_alert.php:28 +msgid "Cold start (0)" +msgstr "Inicio cero (0)" + +#: ../../operation/snmpconsole/snmp_view.php:425 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:729 +#: ../../godmode/snmpconsole/snmp_alert.php:29 +msgid "Warm start (1)" +msgstr "Comienzo de inicio (1)" + +#: ../../operation/snmpconsole/snmp_view.php:426 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:732 +#: ../../godmode/snmpconsole/snmp_alert.php:30 +msgid "Link down (2)" +msgstr "Enlace interrumpido (2)" + +#: ../../operation/snmpconsole/snmp_view.php:427 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:735 +#: ../../godmode/snmpconsole/snmp_alert.php:31 +msgid "Link up (3)" +msgstr "Enlace activo (3)" + +#: ../../operation/snmpconsole/snmp_view.php:428 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../operation/snmpconsole/snmp_view.php:738 +#: ../../godmode/snmpconsole/snmp_alert.php:32 +msgid "Authentication failure (4)" +msgstr "Fallo de autenticación (4)" + +#: ../../operation/snmpconsole/snmp_view.php:435 +msgid "Group by Enterprise String/IP" +msgstr "Agrupado por cadena Enterprise/IP" + +#: ../../operation/snmpconsole/snmp_view.php:436 +#: ../../operation/users/user_edit.php:249 +#: ../../operation/netflow/nf_live_view.php:276 +#: ../../general/login_identification_wizard.php:188 +#: ../../godmode/alerts/alert_view.php:107 +#: ../../godmode/alerts/alert_view.php:301 +#: ../../godmode/setup/performance.php:118 +#: ../../godmode/setup/performance.php:125 +#: ../../godmode/setup/performance.php:132 +#: ../../godmode/setup/setup_ehorus.php:55 +#: ../../godmode/setup/setup_general.php:71 +#: ../../godmode/setup/setup_general.php:75 +#: ../../godmode/setup/setup_general.php:79 +#: ../../godmode/setup/setup_general.php:103 +#: ../../godmode/setup/setup_general.php:112 +#: ../../godmode/setup/setup_general.php:167 +#: ../../godmode/setup/setup_general.php:175 +#: ../../godmode/setup/setup_general.php:184 +#: ../../godmode/setup/setup_general.php:205 +#: ../../godmode/setup/setup_general.php:214 +#: ../../godmode/setup/setup_netflow.php:63 +#: ../../godmode/setup/setup_netflow.php:71 +#: ../../godmode/setup/setup_visuals.php:86 +#: ../../godmode/setup/setup_visuals.php:106 +#: ../../godmode/setup/setup_visuals.php:128 +#: ../../godmode/setup/setup_visuals.php:225 +#: ../../godmode/setup/setup_visuals.php:239 +#: ../../godmode/setup/setup_visuals.php:247 +#: ../../godmode/setup/setup_visuals.php:276 +#: ../../godmode/setup/setup_visuals.php:369 +#: ../../godmode/setup/setup_visuals.php:455 +#: ../../godmode/setup/setup_visuals.php:461 +#: ../../godmode/setup/setup_visuals.php:471 +#: ../../godmode/setup/setup_visuals.php:500 +#: ../../godmode/setup/setup_visuals.php:615 +#: ../../godmode/setup/setup_visuals.php:642 +#: ../../godmode/setup/setup_auth.php:51 ../../godmode/setup/setup_auth.php:58 +#: ../../godmode/setup/setup_auth.php:94 +#: ../../godmode/setup/setup_auth.php:130 +#: ../../godmode/massive/massive_edit_agents.php:293 +#: ../../godmode/massive/massive_edit_agents.php:412 +#: ../../godmode/massive/massive_edit_agents.php:419 +#: ../../godmode/massive/massive_edit_modules.php:407 +#: ../../godmode/massive/massive_edit_modules.php:452 +#: ../../godmode/massive/massive_edit_modules.php:471 +#: ../../godmode/massive/massive_edit_modules.php:558 +#: ../../godmode/massive/massive_edit_modules.php:585 +#: ../../godmode/massive/massive_edit_modules.php:604 +#: ../../godmode/users/configure_user.php:516 +#: ../../godmode/reporting/reporting_builder.main.php:111 +#: ../../godmode/reporting/visual_console_builder.wizard.php:269 +#: ../../godmode/reporting/visual_console_builder.wizard.php:312 +#: ../../godmode/reporting/reporting_builder.php:637 +#: ../../godmode/servers/manage_recontask_form.php:310 +#: ../../godmode/servers/manage_recontask.php:335 +#: ../../godmode/update_manager/update_manager.setup.php:124 +#: ../../godmode/agentes/agent_conf_gis.php:79 +#: ../../godmode/agentes/agent_manager.php:411 +msgid "Yes" +msgstr "Sí" + +#: ../../operation/snmpconsole/snmp_view.php:439 +#: ../../operation/users/user_edit.php:249 +#: ../../operation/netflow/nf_live_view.php:280 +#: ../../mobile/operation/events.php:186 ../../mobile/operation/events.php:193 +#: ../../general/login_identification_wizard.php:185 +#: ../../include/functions_events.php:2375 +#: ../../include/functions_events.php:2382 +#: ../../godmode/alerts/alert_view.php:107 +#: ../../godmode/alerts/alert_view.php:303 +#: ../../godmode/alerts/alert_view.php:385 +#: ../../godmode/setup/performance.php:119 +#: ../../godmode/setup/performance.php:126 +#: ../../godmode/setup/performance.php:133 ../../godmode/setup/news.php:264 +#: ../../godmode/setup/setup_ehorus.php:56 +#: ../../godmode/setup/setup_general.php:72 +#: ../../godmode/setup/setup_general.php:76 +#: ../../godmode/setup/setup_general.php:80 +#: ../../godmode/setup/setup_general.php:104 +#: ../../godmode/setup/setup_general.php:113 +#: ../../godmode/setup/setup_general.php:170 +#: ../../godmode/setup/setup_general.php:178 +#: ../../godmode/setup/setup_general.php:185 +#: ../../godmode/setup/setup_general.php:206 +#: ../../godmode/setup/setup_general.php:215 +#: ../../godmode/setup/setup_netflow.php:64 +#: ../../godmode/setup/setup_netflow.php:72 +#: ../../godmode/setup/setup_visuals.php:90 +#: ../../godmode/setup/setup_visuals.php:110 +#: ../../godmode/setup/setup_visuals.php:132 +#: ../../godmode/setup/setup_visuals.php:233 +#: ../../godmode/setup/setup_visuals.php:242 +#: ../../godmode/setup/setup_visuals.php:250 +#: ../../godmode/setup/setup_visuals.php:278 +#: ../../godmode/setup/setup_visuals.php:371 +#: ../../godmode/setup/setup_visuals.php:456 +#: ../../godmode/setup/setup_visuals.php:463 +#: ../../godmode/setup/setup_visuals.php:475 +#: ../../godmode/setup/setup_visuals.php:502 +#: ../../godmode/setup/setup_visuals.php:619 +#: ../../godmode/setup/setup_visuals.php:646 +#: ../../godmode/setup/setup_auth.php:52 ../../godmode/setup/setup_auth.php:59 +#: ../../godmode/setup/setup_auth.php:95 +#: ../../godmode/setup/setup_auth.php:133 +#: ../../godmode/massive/massive_edit_agents.php:293 +#: ../../godmode/massive/massive_edit_agents.php:413 +#: ../../godmode/massive/massive_edit_agents.php:419 +#: ../../godmode/massive/massive_edit_modules.php:408 +#: ../../godmode/massive/massive_edit_modules.php:453 +#: ../../godmode/massive/massive_edit_modules.php:472 +#: ../../godmode/massive/massive_edit_modules.php:558 +#: ../../godmode/massive/massive_edit_modules.php:586 +#: ../../godmode/massive/massive_edit_modules.php:604 +#: ../../godmode/users/configure_user.php:516 +#: ../../godmode/reporting/reporting_builder.main.php:115 +#: ../../godmode/reporting/visual_console_builder.wizard.php:274 +#: ../../godmode/reporting/visual_console_builder.wizard.php:315 +#: ../../godmode/reporting/reporting_builder.php:639 +#: ../../godmode/servers/manage_recontask_form.php:310 +#: ../../godmode/servers/manage_recontask.php:335 +#: ../../godmode/update_manager/update_manager.setup.php:125 +#: ../../godmode/agentes/agent_conf_gis.php:80 +#: ../../godmode/agentes/agent_manager.php:414 +msgid "No" +msgstr "No" + +#: ../../operation/snmpconsole/snmp_view.php:450 +#: ../../operation/events/events_list.php:627 +#: ../../operation/users/user_edit.php:472 +#: ../../operation/reporting/reporting_viewer.php:201 +#: ../../operation/agentes/datos_agente.php:209 +#: ../../extensions/net_tools.php:338 +#: ../../extensions/files_repo/files_repo_form.php:88 +#: ../../include/functions_pandora_networkmap.php:1465 +#: ../../include/ajax/alert_list.ajax.php:172 +#: ../../include/functions_visual_map_editor.php:462 +#: ../../include/functions_events.php:1706 +#: ../../include/functions_events.php:1744 +#: ../../godmode/snmpconsole/snmp_alert.php:977 +#: ../../godmode/snmpconsole/snmp_alert.php:1232 +#: ../../godmode/snmpconsole/snmp_filters.php:105 +#: ../../godmode/snmpconsole/snmp_filters.php:142 +#: ../../godmode/alerts/configure_alert_special_days.php:102 +#: ../../godmode/alerts/configure_alert_command.php:198 +#: ../../godmode/alerts/configure_alert_action.php:216 +#: ../../godmode/alerts/configure_alert_action.php:222 +#: ../../godmode/alerts/alert_list.list.php:147 +#: ../../godmode/alerts/alert_list.list.php:155 +#: ../../godmode/setup/performance.php:154 ../../godmode/setup/news.php:207 +#: ../../godmode/setup/snmp_wizard.php:106 ../../godmode/setup/os.php:57 +#: ../../godmode/setup/os.php:110 ../../godmode/setup/setup_ehorus.php:57 +#: ../../godmode/setup/setup_ehorus.php:158 ../../godmode/setup/links.php:120 +#: ../../godmode/setup/setup_general.php:232 +#: ../../godmode/setup/setup_netflow.php:81 +#: ../../godmode/setup/setup_visuals.php:740 +#: ../../godmode/setup/setup_auth.php:202 +#: ../../godmode/events/custom_events.php:201 +#: ../../godmode/events/event_edit_filter.php:401 +#: ../../godmode/events/event_responses.editor.php:145 +#: ../../godmode/massive/massive_edit_agents.php:473 +#: ../../godmode/massive/massive_edit_plugins.php:321 +#: ../../godmode/massive/massive_edit_modules.php:619 +#: ../../godmode/users/configure_profile.php:381 +#: ../../godmode/users/configure_user.php:594 +#: ../../godmode/reporting/reporting_builder.main.php:38 +#: ../../godmode/reporting/visual_console_builder.elements.php:516 +#: ../../godmode/reporting/visual_console_builder.data.php:185 +#: ../../godmode/reporting/graph_builder.main.php:183 +#: ../../godmode/netflow/nf_edit_form.php:240 +#: ../../godmode/servers/manage_recontask_form.php:391 +#: ../../godmode/servers/recon_script.php:223 +#: ../../godmode/servers/modificar_server.php:53 +#: ../../godmode/servers/plugin.php:173 ../../godmode/servers/plugin.php:546 +#: ../../godmode/update_manager/update_manager.setup.php:132 +#: ../../godmode/category/edit_category.php:169 +#: ../../godmode/groups/configure_modu_group.php:83 +#: ../../godmode/groups/configure_group.php:221 +#: ../../godmode/modules/manage_nc_groups_form.php:80 +#: ../../godmode/modules/manage_network_components_form.php:274 +#: ../../godmode/modules/manage_network_templates_form.php:154 +#: ../../godmode/agentes/module_manager_editor.php:525 +#: ../../godmode/agentes/agent_conf_gis.php:88 +#: ../../godmode/agentes/configure_field.php:61 +#: ../../godmode/agentes/planned_downtime.editor.php:624 +#: ../../godmode/agentes/agent_manager.php:489 +#: ../../godmode/agentes/planned_downtime.list.php:466 +#: ../../godmode/agentes/planned_downtime.list.php:475 +#: ../../godmode/agentes/agent_template.php:253 +#: ../../godmode/tag/edit_tag.php:224 +msgid "Update" +msgstr "Actualizar" + +#: ../../operation/snmpconsole/snmp_view.php:454 +#: ../../operation/agentes/alerts_status.php:396 +#: ../../operation/agentes/graphs.php:163 +#: ../../godmode/snmpconsole/snmp_alert.php:1019 +#: ../../godmode/alerts/alert_list.list.php:163 +#: ../../godmode/users/user_list.php:249 +msgid "Toggle filter(s)" +msgstr "Conmutar filtro(s)" + +#: ../../operation/snmpconsole/snmp_view.php:510 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:78 +#: ../../godmode/snmpconsole/snmp_alert.php:652 +#: ../../godmode/snmpconsole/snmp_alert.php:1153 +msgid "SNMP Agent" +msgstr "Agente SNMP" + +#: ../../operation/snmpconsole/snmp_view.php:514 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:72 +#: ../../godmode/snmpconsole/snmp_alert.php:637 +#: ../../godmode/snmpconsole/snmp_alert.php:1157 +msgid "Enterprise String" +msgstr "Cadena Enterprise" + +#: ../../operation/snmpconsole/snmp_view.php:519 +#: ../../include/functions_reporting_html.php:807 +#: ../../include/functions_reporting_html.php:1025 +#: ../../include/functions_reporting_html.php:1638 +msgid "Count" +msgstr "Número" + +#: ../../operation/snmpconsole/snmp_view.php:524 +msgid "Trap subtype" +msgstr "Subtipo trap" + +#: ../../operation/snmpconsole/snmp_view.php:528 +#: ../../operation/users/user_edit.php:184 ../../operation/search_users.php:38 +#: ../../include/functions_reporting_html.php:2816 +#: ../../godmode/users/configure_user.php:441 +#: ../../godmode/users/user_list.php:266 +msgid "User ID" +msgstr "ID usuario" + +#: ../../operation/snmpconsole/snmp_view.php:532 +#: ../../operation/events/events.build_table.php:167 +#: ../../operation/events/events.php:87 +#: ../../operation/messages/message_list.php:127 +#: ../../operation/search_modules.php:54 +#: ../../operation/agentes/status_monitor.php:990 +#: ../../operation/agentes/exportdata.php:99 +#: ../../operation/agentes/exportdata.excel.php:76 +#: ../../operation/agentes/exportdata.csv.php:77 +#: ../../operation/agentes/estado_generalagente.php:402 +#: ../../mobile/operation/events.php:473 +#: ../../mobile/operation/modules.php:548 +#: ../../mobile/operation/modules.php:756 ../../include/ajax/events.php:466 +#: ../../include/functions_reporting_html.php:813 +#: ../../include/functions_reporting_html.php:822 +#: ../../include/functions_reporting_html.php:1026 +#: ../../include/functions_reporting_html.php:1035 +#: ../../include/functions_reporting_html.php:1644 +#: ../../include/functions_reporting_html.php:2817 +#: ../../include/functions_events.php:40 +#: ../../include/functions_events.php:912 +#: ../../include/functions_events.php:2343 +#: ../../include/functions_events.php:3542 +#: ../../include/functions_netflow.php:287 ../../godmode/setup/news.php:223 +#: ../../godmode/events/custom_events.php:86 +#: ../../godmode/events/custom_events.php:158 +msgid "Timestamp" +msgstr "Fecha/Hora" + +#: ../../operation/snmpconsole/snmp_view.php:600 +#: ../../operation/snmpconsole/snmp_view.php:619 +#: ../../operation/agentes/estado_generalagente.php:151 +#: ../../operation/agentes/estado_generalagente.php:163 +#: ../../operation/agentes/estado_generalagente.php:176 +#: ../../operation/agentes/estado_generalagente.php:280 +#: ../../operation/agentes/estado_generalagente.php:359 +#: ../../mobile/operation/events.php:148 ../../mobile/operation/events.php:159 +#: ../../mobile/operation/events.php:167 ../../mobile/operation/events.php:240 +#: ../../mobile/operation/events.php:267 ../../mobile/operation/events.php:275 +#: ../../mobile/operation/agent.php:153 ../../mobile/operation/agent.php:167 +#: ../../include/functions_db.php:156 ../../include/functions_ui.php:2007 +#: ../../include/functions_ui.php:2017 +#: ../../include/functions_treeview.php:158 +#: ../../include/functions_treeview.php:392 +#: ../../include/functions_reporting_html.php:488 +#: ../../include/functions_reporting_html.php:567 +#: ../../include/functions_reporting_html.php:3163 +#: ../../include/functions_reporting_html.php:3201 +#: ../../include/functions_events.php:1778 +#: ../../include/functions_events.php:1946 +#: ../../include/functions_events.php:2013 +#: ../../include/functions_events.php:2029 +#: ../../include/functions_events.php:2039 +#: ../../include/functions_events.php:2044 +#: ../../include/functions_events.php:2062 +#: ../../include/functions_events.php:2141 +#: ../../include/functions_events.php:2195 +#: ../../include/functions_events.php:2207 +#: ../../include/functions_events.php:2219 +#: ../../include/functions_events.php:2241 +#: ../../include/functions_events.php:2256 +#: ../../include/functions_events.php:2266 +#: ../../include/functions_events.php:2355 +#: ../../include/functions_events.php:2432 +#: ../../include/functions_events.php:2454 +#: ../../include/functions_events.php:2464 ../../include/functions.php:946 +#: ../../include/functions.php:952 ../../include/functions.php:955 +#: ../../godmode/alerts/alert_view.php:113 ../../godmode/extensions.php:193 +#: ../../godmode/extensions.php:209 +#: ../../godmode/modules/manage_network_components.php:583 +#: ../../godmode/agentes/planned_downtime.list.php:477 +msgid "N/A" +msgstr "N/A" + +#: ../../operation/snmpconsole/snmp_view.php:644 +#: ../../operation/events/sound_events.php:83 +#: ../../operation/agentes/group_view.php:174 #: ../../extensions/agents_alerts.php:324 -#: ../../godmode/alerts/alert_list.list.php:643 -#: ../../godmode/alerts/alert_view.php:85 ../../include/functions.php:1035 -#: ../../include/functions_reporting.php:7998 -#: ../../include/functions_agents.php:2181 -#: ../../include/functions_agents.php:2193 ../../include/functions_ui.php:921 +#: ../../mobile/operation/alerts.php:253 +#: ../../include/functions_agents.php:2161 +#: ../../include/functions_agents.php:2173 ../../include/functions_ui.php:921 #: ../../include/functions_events.php:1158 #: ../../include/functions_events.php:1404 -#: ../../mobile/operation/alerts.php:253 -#: ../../operation/agentes/group_view.php:174 -#: ../../operation/events/sound_events.php:83 -#: ../../operation/snmpconsole/snmp_view.php:735 -#: ../../enterprise/godmode/alerts/alert_events_list.php:617 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:637 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:872 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1540 -#: ../../enterprise/meta/monitoring/group_view.php:155 -#: ../../enterprise/operation/agentes/policy_view.php:265 +#: ../../include/functions_reporting.php:7966 ../../include/functions.php:1035 +#: ../../godmode/alerts/alert_view.php:85 +#: ../../godmode/alerts/alert_list.list.php:642 msgid "Alert fired" msgstr "Alerta lanzada" -#: ../../extensions/agents_alerts.php:324 -#: ../../godmode/alerts/alert_list.list.php:643 -#: ../../godmode/alerts/alert_view.php:85 ../../include/functions_ui.php:921 -#: ../../mobile/operation/alerts.php:253 -#: ../../enterprise/godmode/alerts/alert_events_list.php:618 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:872 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1540 -#: ../../enterprise/operation/agentes/policy_view.php:265 -msgid "times" -msgstr "veces" - -#: ../../extensions/agents_alerts.php:328 -#: ../../godmode/alerts/alert_list.list.php:647 -#: ../../godmode/alerts/alert_view.php:89 -#: ../../include/functions_reporting.php:8004 -#: ../../include/functions_ui.php:925 ../../mobile/operation/alerts.php:257 -#: ../../enterprise/godmode/alerts/alert_events_list.php:622 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:876 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1544 -#: ../../enterprise/operation/agentes/policy_view.php:269 -msgid "Alert disabled" -msgstr "Alerta desactivada" - +#: ../../operation/snmpconsole/snmp_view.php:647 #: ../../extensions/agents_alerts.php:332 -#: ../../godmode/alerts/alert_list.list.php:651 -#: ../../godmode/alerts/alert_view.php:93 -#: ../../include/functions_reporting.php:7943 -#: ../../include/functions_agents.php:2184 -#: ../../include/functions_agents.php:2196 ../../include/functions_ui.php:929 #: ../../mobile/operation/alerts.php:261 -#: ../../operation/snmpconsole/snmp_view.php:738 -#: ../../enterprise/godmode/alerts/alert_events_list.php:626 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:639 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:880 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1548 -#: ../../enterprise/operation/agentes/policy_view.php:273 +#: ../../include/functions_agents.php:2164 +#: ../../include/functions_agents.php:2176 ../../include/functions_ui.php:929 +#: ../../include/functions_reporting.php:7911 +#: ../../godmode/alerts/alert_view.php:93 +#: ../../godmode/alerts/alert_list.list.php:650 msgid "Alert not fired" msgstr "Alerta no lanzada" -#: ../../extensions/agents_alerts.php:345 ../../extensions/insert_data.php:158 -#: ../../extensions/module_groups.php:41 -#: ../../godmode/agentes/module_manager_editor_common.php:688 -#: ../../godmode/agentes/module_manager_editor_common.php:716 -#: ../../godmode/agentes/module_manager_editor_prediction.php:110 -#: ../../godmode/agentes/planned_downtime.list.php:171 -#: ../../godmode/alerts/alert_list.builder.php:59 -#: ../../godmode/alerts/alert_list.list.php:379 -#: ../../godmode/alerts/alert_list.list.php:591 -#: ../../godmode/alerts/alert_view.php:66 -#: ../../godmode/gis_maps/configure_gis_map.php:420 -#: ../../godmode/massive/massive_copy_modules.php:86 -#: ../../godmode/massive/massive_copy_modules.php:200 -#: ../../godmode/massive/massive_enable_disable_alerts.php:154 -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -#: ../../godmode/massive/massive_standby_alerts.php:154 -#: ../../godmode/massive/massive_standby_alerts.php:171 -#: ../../godmode/reporting/create_container.php:274 -#: ../../godmode/reporting/create_container.php:418 -#: ../../godmode/reporting/create_container.php:468 -#: ../../godmode/reporting/graph_builder.graph_editor.php:84 -#: ../../godmode/reporting/reporting_builder.item_editor.php:920 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1744 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1751 -#: ../../godmode/reporting/reporting_builder.list_items.php:294 -#: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.wizard.php:303 -#: ../../godmode/reporting/visual_console_builder.wizard.php:577 -#: ../../godmode/reporting/visual_console_builder.wizard.php:600 -#: ../../godmode/servers/plugin.php:66 -#: ../../include/ajax/alert_list.ajax.php:130 -#: ../../include/functions_pandora_networkmap.php:1383 -#: ../../include/functions_pandora_networkmap.php:1553 -#: ../../include/functions_visual_map_editor.php:277 -#: ../../include/functions_graph.php:5352 -#: ../../include/functions_reporting_html.php:396 -#: ../../include/functions_reporting_html.php:730 -#: ../../include/functions_reporting_html.php:810 -#: ../../include/functions_reporting_html.php:819 -#: ../../include/functions_reporting_html.php:1485 -#: ../../include/functions_reporting_html.php:1889 -#: ../../include/functions_reporting_html.php:1896 -#: ../../include/functions_reporting_html.php:1955 -#: ../../include/functions_reporting_html.php:2251 -#: ../../include/functions_reporting_html.php:2294 -#: ../../include/functions_reporting_html.php:2589 -#: ../../include/functions_reporting_html.php:2637 -#: ../../include/functions_reporting_html.php:2880 -#: ../../include/functions_reporting_html.php:3034 -#: ../../include/functions_reporting_html.php:3245 -#: ../../mobile/operation/agents.php:69 ../../mobile/operation/agents.php:310 -#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:510 -#: ../../mobile/operation/home.php:72 ../../mobile/operation/modules.php:496 -#: ../../operation/agentes/alerts_status.php:427 -#: ../../operation/agentes/alerts_status.php:502 -#: ../../operation/agentes/estado_agente.php:490 -#: ../../operation/agentes/estado_monitores.php:95 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/exportdata.php:96 -#: ../../operation/agentes/status_monitor.php:948 -#: ../../operation/agentes/ver_agente.php:818 -#: ../../operation/events/events.build_table.php:36 -#: ../../operation/events/sound_events.php:80 -#: ../../operation/gis_maps/ajax.php:216 ../../operation/gis_maps/ajax.php:247 -#: ../../operation/incidents/incident_detail.php:349 -#: ../../operation/search_agents.php:44 ../../operation/search_agents.php:50 -#: ../../operation/search_alerts.php:39 ../../operation/search_modules.php:42 -#: ../../enterprise/dashboard/widgets/agent_module.php:80 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:43 -#: ../../enterprise/dashboard/widgets/module_icon.php:52 -#: ../../enterprise/dashboard/widgets/module_status.php:52 -#: ../../enterprise/dashboard/widgets/module_table_value.php:49 -#: ../../enterprise/dashboard/widgets/module_value.php:52 -#: ../../enterprise/dashboard/widgets/single_graph.php:50 -#: ../../enterprise/dashboard/widgets/sla_percent.php:40 -#: ../../enterprise/dashboard/widgets/top_n.php:126 -#: ../../enterprise/dashboard/widgets/ux_transaction.php:56 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:172 -#: ../../enterprise/extensions/ipam/ipam_network.php:537 -#: ../../enterprise/godmode/agentes/collections.agents.php:102 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:77 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:213 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:84 -#: ../../enterprise/godmode/policies/policy_linking.php:120 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1464 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1947 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2097 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2104 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:231 -#: ../../enterprise/godmode/services/services.elements.php:335 -#: ../../enterprise/godmode/services/services.elements.php:344 -#: ../../enterprise/include/functions_alert_event.php:923 -#: ../../enterprise/include/functions_events.php:111 -#: ../../enterprise/include/functions_inventory.php:234 -#: ../../enterprise/include/functions_inventory.php:506 -#: ../../enterprise/include/functions_inventory.php:562 -#: ../../enterprise/include/functions_log.php:349 -#: ../../enterprise/include/functions_reporting.php:1646 -#: ../../enterprise/include/functions_reporting.php:1854 -#: ../../enterprise/include/functions_reporting.php:1977 -#: ../../enterprise/include/functions_reporting.php:1980 -#: ../../enterprise/include/functions_reporting.php:2438 -#: ../../enterprise/include/functions_reporting.php:3215 -#: ../../enterprise/include/functions_reporting_csv.php:324 -#: ../../enterprise/include/functions_reporting_csv.php:347 -#: ../../enterprise/include/functions_reporting_csv.php:405 -#: ../../enterprise/include/functions_reporting_csv.php:431 -#: ../../enterprise/include/functions_reporting_csv.php:497 -#: ../../enterprise/include/functions_reporting_csv.php:524 -#: ../../enterprise/include/functions_reporting_csv.php:559 -#: ../../enterprise/include/functions_reporting_csv.php:595 -#: ../../enterprise/include/functions_reporting_csv.php:632 -#: ../../enterprise/include/functions_reporting_csv.php:700 -#: ../../enterprise/include/functions_reporting_csv.php:736 -#: ../../enterprise/include/functions_reporting_csv.php:772 -#: ../../enterprise/include/functions_reporting_csv.php:808 -#: ../../enterprise/include/functions_reporting_csv.php:844 -#: ../../enterprise/include/functions_reporting_csv.php:880 -#: ../../enterprise/include/functions_reporting_csv.php:928 -#: ../../enterprise/include/functions_reporting_csv.php:975 -#: ../../enterprise/include/functions_reporting_csv.php:1047 -#: ../../enterprise/include/functions_reporting_csv.php:1163 -#: ../../enterprise/include/functions_reporting_csv.php:1305 -#: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../enterprise/include/functions_reporting_pdf.php:366 -#: ../../enterprise/include/functions_reporting_pdf.php:375 -#: ../../enterprise/include/functions_reporting_pdf.php:774 -#: ../../enterprise/include/functions_reporting_pdf.php:832 -#: ../../enterprise/include/functions_reporting_pdf.php:860 -#: ../../enterprise/include/functions_reporting_pdf.php:926 -#: ../../enterprise/include/functions_reporting_pdf.php:1264 -#: ../../enterprise/include/functions_reporting_pdf.php:1609 -#: ../../enterprise/include/functions_reporting_pdf.php:1842 -#: ../../enterprise/include/functions_reporting_pdf.php:1860 -#: ../../enterprise/include/functions_services.php:1442 -#: ../../enterprise/meta/agentsearch.php:93 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3248 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:245 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:333 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:404 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:512 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:593 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:119 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:270 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:359 -#: ../../enterprise/operation/inventory/inventory.php:206 -#: ../../enterprise/operation/log/log_viewer.php:193 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:186 -msgid "Agent" -msgstr "Agente" +#: ../../operation/snmpconsole/snmp_view.php:654 +#: ../../operation/snmpconsole/snmp_view.php:811 +#: ../../operation/snmpconsole/snmp_view.php:839 +#: ../../operation/agentes/alerts_status.php:436 +#: ../../operation/agentes/alerts_status.php:477 +#: ../../operation/agentes/alerts_status.php:511 +#: ../../operation/agentes/alerts_status.php:545 +#: ../../operation/agentes/alerts_status.php:590 +#: ../../mobile/operation/events.php:528 ../../godmode/setup/license.php:98 +msgid "Validate" +msgstr "Validar" -#: ../../extensions/agents_alerts.php:345 -#: ../../godmode/alerts/alert_list.builder.php:113 -#: ../../godmode/alerts/alert_list.list.php:407 -#: ../../godmode/alerts/alert_view.php:75 -#: ../../include/functions_treeview.php:381 -#: ../../include/functions_treeview.php:422 -#: ../../include/functions_reporting_html.php:1957 -#: ../../include/functions_reporting_html.php:1960 -#: ../../mobile/operation/alerts.php:270 -#: ../../operation/agentes/alerts_status.php:429 -#: ../../operation/agentes/alerts_status.php:470 -#: ../../operation/agentes/alerts_status.php:504 -#: ../../operation/agentes/alerts_status.php:538 -#: ../../operation/search_alerts.php:45 -#: ../../operation/servers/recon_view.php:101 -#: ../../enterprise/extensions/cron/main.php:246 -#: ../../enterprise/godmode/policies/policy_alerts.php:239 -#: ../../enterprise/godmode/policies/policy_alerts.php:438 -#: ../../enterprise/operation/agentes/policy_view.php:195 -msgid "Template" -msgstr "Plantilla" +#: ../../operation/snmpconsole/snmp_view.php:659 +#: ../../operation/snmpconsole/snmp_view.php:665 +#: ../../operation/snmpconsole/snmp_view.php:816 +#: ../../operation/events/events.build_table.php:774 +#: ../../operation/events/events.php:777 +#: ../../operation/users/user_edit.php:799 +#: ../../operation/messages/message_list.php:193 +#: ../../operation/messages/message_list.php:199 +#: ../../operation/agentes/pandora_networkmap.php:492 +#: ../../operation/incidents/incident_detail.php:425 +#: ../../operation/incidents/incident_detail.php:472 +#: ../../extensions/files_repo/files_repo_list.php:105 +#: ../../include/functions_filemanager.php:740 +#: ../../include/functions_groups.php:2173 +#: ../../include/functions_events.php:1761 +#: ../../godmode/snmpconsole/snmp_alert.php:1200 +#: ../../godmode/snmpconsole/snmp_alert.php:1236 +#: ../../godmode/snmpconsole/snmp_alert.php:1455 +#: ../../godmode/snmpconsole/snmp_filters.php:143 +#: ../../godmode/alerts/alert_special_days.php:451 +#: ../../godmode/alerts/alert_actions.php:385 +#: ../../godmode/alerts/alert_actions.php:388 +#: ../../godmode/alerts/alert_commands.php:361 +#: ../../godmode/alerts/alert_list.list.php:825 +#: ../../godmode/alerts/alert_templates.php:341 +#: ../../godmode/setup/news.php:267 ../../godmode/setup/links.php:150 +#: ../../godmode/events/event_filter.php:146 +#: ../../godmode/massive/massive_add_action_alerts.php:203 +#: ../../godmode/massive/massive_add_alerts.php:183 +#: ../../godmode/massive/massive_delete_action_alerts.php:202 +#: ../../godmode/massive/massive_enable_disable_alerts.php:167 +#: ../../godmode/massive/massive_operations.php:247 +#: ../../godmode/massive/massive_operations.php:256 +#: ../../godmode/massive/massive_edit_plugins.php:533 +#: ../../godmode/massive/massive_delete_agents.php:138 +#: ../../godmode/massive/massive_standby_alerts.php:167 +#: ../../godmode/massive/massive_delete_modules.php:511 +#: ../../godmode/massive/massive_delete_profiles.php:129 +#: ../../godmode/massive/massive_delete_tags.php:215 +#: ../../godmode/massive/massive_add_tags.php:158 +#: ../../godmode/massive/massive_add_profiles.php:115 +#: ../../godmode/users/configure_user.php:667 +#: ../../godmode/users/profile_list.php:390 +#: ../../godmode/users/user_list.php:470 ../../godmode/users/user_list.php:472 +#: ../../godmode/reporting/visual_console_builder.elements.php:318 +#: ../../godmode/reporting/reporting_builder.php:703 +#: ../../godmode/reporting/graphs.php:190 +#: ../../godmode/netflow/nf_item_list.php:237 +#: ../../godmode/netflow/nf_edit.php:143 ../../godmode/db/db_audit.php:107 +#: ../../godmode/db/db_event.php:92 ../../godmode/db/db_refine.php:119 +#: ../../godmode/servers/plugin.php:782 +#: ../../godmode/category/category.php:126 +#: ../../godmode/category/category.php:131 +#: ../../godmode/groups/modu_group_list.php:198 +#: ../../godmode/groups/modu_group_list.php:200 +#: ../../godmode/modules/manage_nc_groups.php:220 +#: ../../godmode/modules/manage_network_components.php:616 +#: ../../godmode/modules/manage_network_templates.php:209 +#: ../../godmode/modules/manage_network_templates.php:214 +#: ../../godmode/agentes/module_manager_editor_common.php:159 +#: ../../godmode/agentes/planned_downtime.editor.php:848 +#: ../../godmode/agentes/agent_manager.php:203 +#: ../../godmode/agentes/modificar_agente.php:635 +#: ../../godmode/agentes/fields_manager.php:127 +#: ../../godmode/agentes/module_manager.php:759 +#: ../../godmode/agentes/module_manager.php:767 +#: ../../godmode/agentes/module_manager.php:782 +#: ../../godmode/agentes/module_manager.php:797 +#: ../../godmode/agentes/module_manager.php:808 +#: ../../godmode/agentes/agent_template.php:251 ../../godmode/tag/tag.php:273 +msgid "Are you sure?" +msgstr "¿Está seguro?" -#: ../../extensions/agents_alerts.php:348 -msgid "Agents/Alerts view" -msgstr "Vista de Agentes/Alertas" +#: ../../operation/snmpconsole/snmp_view.php:659 +#: ../../operation/snmpconsole/snmp_view.php:665 +#: ../../operation/snmpconsole/snmp_view.php:816 +#: ../../operation/snmpconsole/snmp_view.php:841 +#: ../../operation/gis_maps/gis_map.php:165 +#: ../../operation/messages/message_edit.php:109 +#: ../../operation/messages/message_list.php:128 +#: ../../operation/messages/message_list.php:194 +#: ../../operation/messages/message_list.php:200 +#: ../../operation/messages/message_list.php:218 +#: ../../operation/agentes/pandora_networkmap.php:404 +#: ../../operation/agentes/pandora_networkmap.php:492 +#: ../../operation/incidents/incident_detail.php:456 +#: ../../extensions/files_repo/files_repo_list.php:106 +#: ../../include/functions_pandora_networkmap.php:748 +#: ../../include/functions_groups.php:2173 +#: ../../godmode/snmpconsole/snmp_alert.php:1201 +#: ../../godmode/snmpconsole/snmp_alert.php:1237 +#: ../../godmode/snmpconsole/snmp_filters.php:144 +#: ../../godmode/alerts/alert_actions.php:343 +#: ../../godmode/alerts/alert_commands.php:333 +#: ../../godmode/alerts/alert_list.list.php:710 +#: ../../godmode/alerts/alert_templates.php:344 +#: ../../godmode/extensions.php:272 ../../godmode/extensions.php:276 +#: ../../godmode/setup/news.php:225 ../../godmode/setup/snmp_wizard.php:122 +#: ../../godmode/setup/gis.php:64 ../../godmode/setup/links.php:137 +#: ../../godmode/setup/setup_visuals.php:694 +#: ../../godmode/setup/setup_visuals.php:725 +#: ../../godmode/events/event_filter.php:148 +#: ../../godmode/events/event_filter.php:162 +#: ../../godmode/events/event_responses.list.php:66 +#: ../../godmode/massive/massive_delete_action_alerts.php:204 +#: ../../godmode/massive/massive_delete_agents.php:140 +#: ../../godmode/massive/massive_delete_modules.php:513 +#: ../../godmode/massive/massive_delete_profiles.php:131 +#: ../../godmode/massive/massive_delete_tags.php:218 +#: ../../godmode/massive/massive_delete_alerts.php:238 +#: ../../godmode/users/user_list.php:470 +#: ../../godmode/reporting/graph_builder.graph_editor.php:88 +#: ../../godmode/reporting/graph_builder.graph_editor.php:127 +#: ../../godmode/reporting/map_builder.php:215 +#: ../../godmode/reporting/visual_console_builder.elements.php:518 +#: ../../godmode/reporting/reporting_builder.php:707 +#: ../../godmode/reporting/reporting_builder.list_items.php:432 +#: ../../godmode/reporting/reporting_builder.list_items.php:459 +#: ../../godmode/reporting/reporting_builder.list_items.php:478 +#: ../../godmode/reporting/reporting_builder.list_items.php:538 +#: ../../godmode/reporting/graphs.php:191 +#: ../../godmode/reporting/graphs.php:204 +#: ../../godmode/netflow/nf_item_list.php:239 +#: ../../godmode/netflow/nf_item_list.php:250 +#: ../../godmode/netflow/nf_edit.php:145 ../../godmode/netflow/nf_edit.php:157 +#: ../../godmode/db/db_refine.php:119 +#: ../../godmode/servers/recon_script.php:350 +#: ../../godmode/servers/servers.build_table.php:167 +#: ../../godmode/update_manager/update_manager.messages.php:91 +#: ../../godmode/update_manager/update_manager.messages.php:165 +#: ../../godmode/groups/modu_group_list.php:184 +#: ../../godmode/modules/manage_nc_groups.php:222 +#: ../../godmode/modules/manage_nc_groups.php:233 +#: ../../godmode/modules/manage_network_components.php:617 +#: ../../godmode/modules/manage_network_components.php:629 +#: ../../godmode/modules/manage_network_templates_form.php:219 +#: ../../godmode/modules/manage_network_templates.php:214 +#: ../../godmode/modules/manage_network_templates.php:227 +#: ../../godmode/agentes/module_manager_editor_common.php:720 +#: ../../godmode/agentes/planned_downtime.editor.php:798 +#: ../../godmode/agentes/planned_downtime.editor.php:803 +#: ../../godmode/agentes/planned_downtime.editor.php:851 +#: ../../godmode/agentes/fields_manager.php:127 +#: ../../godmode/agentes/module_manager.php:569 +#: ../../godmode/agentes/module_manager.php:799 +#: ../../godmode/agentes/module_manager.php:816 +#: ../../godmode/agentes/planned_downtime.list.php:402 +#: ../../godmode/agentes/planned_downtime.list.php:470 +#: ../../godmode/agentes/agent_template.php:251 +msgid "Delete" +msgstr "Borrar" -#: ../../extensions/agents_modules.php:143 -#: ../../godmode/agentes/module_manager_editor_common.php:174 -#: ../../godmode/massive/massive_edit_modules.php:518 -#: ../../godmode/modules/manage_network_components_form_common.php:95 -#: ../../godmode/reporting/create_container.php:410 -#: ../../godmode/reporting/reporting_builder.item_editor.php:909 -#: ../../include/functions_treeview.php:123 -#: ../../include/functions_events.php:2075 -#: ../../include/functions_graph.php:5374 -#: ../../mobile/operation/modules.php:140 -#: ../../mobile/operation/modules.php:141 -#: ../../mobile/operation/modules.php:229 -#: ../../mobile/operation/modules.php:230 -#: ../../operation/agentes/estado_monitores.php:463 -#: ../../operation/agentes/status_monitor.php:311 -#: ../../operation/agentes/ver_agente.php:810 -#: ../../enterprise/godmode/modules/configure_local_component.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1453 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1377 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:157 -#: ../../enterprise/operation/agentes/ver_agente.php:33 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:206 -msgid "Module group" -msgstr "Grupo del módulo" +#: ../../operation/snmpconsole/snmp_view.php:669 +#: ../../operation/events/events.build_table.php:700 +#: ../../include/functions_events.php:4046 +msgid "Show more" +msgstr "Mostrar más" -#: ../../extensions/agents_modules.php:145 -#: ../../extensions/files_repo/files_repo_form.php:50 -#: ../../general/subselect_data_module.php:42 -#: ../../godmode/admin_access_logs.php:62 -#: ../../godmode/admin_access_logs.php:64 -#: ../../godmode/alerts/alert_list.list.php:122 -#: ../../godmode/alerts/alert_list.list.php:128 -#: ../../godmode/alerts/alert_list.list.php:137 -#: ../../godmode/alerts/alert_list.list.php:142 -#: ../../godmode/alerts/alert_list.php:291 -#: ../../godmode/alerts/alert_list.php:345 -#: ../../godmode/alerts/alert_list.php:358 -#: ../../godmode/alerts/alert_templates.php:256 -#: ../../godmode/events/event_edit_filter.php:237 -#: ../../godmode/events/event_edit_filter.php:241 -#: ../../godmode/events/event_edit_filter.php:382 -#: ../../godmode/massive/massive_copy_modules.php:85 -#: ../../godmode/massive/massive_copy_modules.php:198 -#: ../../godmode/massive/massive_delete_agents.php:121 -#: ../../godmode/massive/massive_delete_agents.php:124 -#: ../../godmode/massive/massive_delete_modules.php:409 -#: ../../godmode/massive/massive_delete_modules.php:437 -#: ../../godmode/massive/massive_delete_modules.php:460 -#: ../../godmode/massive/massive_delete_modules.php:474 -#: ../../godmode/massive/massive_edit_agents.php:224 -#: ../../godmode/massive/massive_edit_agents.php:226 -#: ../../godmode/massive/massive_edit_modules.php:253 -#: ../../godmode/massive/massive_edit_modules.php:281 -#: ../../godmode/massive/massive_edit_modules.php:303 -#: ../../godmode/massive/massive_edit_modules.php:334 -#: ../../godmode/modules/manage_network_components.php:515 -#: ../../godmode/modules/manage_network_templates_form.php:269 -#: ../../godmode/reporting/create_container.php:413 -#: ../../godmode/reporting/reporting_builder.item_editor.php:904 -#: ../../godmode/reporting/reporting_builder.item_editor.php:914 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1096 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1406 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1418 -#: ../../godmode/reporting/reporting_builder.list_items.php:166 -#: ../../godmode/reporting/reporting_builder.list_items.php:168 -#: ../../godmode/reporting/reporting_builder.list_items.php:170 -#: ../../godmode/reporting/reporting_builder.list_items.php:192 -#: ../../godmode/reporting/reporting_builder.list_items.php:195 -#: ../../godmode/reporting/reporting_builder.list_items.php:198 -#: ../../godmode/reporting/visual_console_builder.wizard.php:249 -#: ../../godmode/reporting/visual_console_builder.wizard.php:254 -#: ../../godmode/setup/gis_step_2.php:154 ../../include/functions.php:906 -#: ../../include/functions.php:1129 ../../include/functions_reporting.php:1662 -#: ../../include/functions_users.php:187 ../../include/functions_users.php:192 -#: ../../include/functions_users.php:886 -#: ../../include/functions_events.php:3339 -#: ../../include/functions_events.php:3852 -#: ../../include/functions_graph.php:2873 -#: ../../include/functions_groups.php:616 -#: ../../include/functions_groups.php:2359 -#: ../../include/functions_modules.php:2497 -#: ../../include/functions_modules.php:2498 -#: ../../mobile/operation/agents.php:32 ../../mobile/operation/alerts.php:37 -#: ../../mobile/operation/alerts.php:43 ../../mobile/operation/events.php:624 -#: ../../mobile/operation/events.php:634 -#: ../../mobile/operation/events.php:1082 -#: ../../mobile/operation/events.php:1101 -#: ../../mobile/operation/modules.php:38 -#: ../../mobile/operation/modules.php:225 -#: ../../mobile/operation/modules.php:240 -#: ../../mobile/operation/networkmaps.php:137 -#: ../../mobile/operation/networkmaps.php:227 -#: ../../operation/agentes/alerts_status.functions.php:73 -#: ../../operation/agentes/alerts_status.functions.php:79 -#: ../../operation/agentes/alerts_status.functions.php:94 -#: ../../operation/agentes/alerts_status.functions.php:111 -#: ../../operation/agentes/alerts_status.functions.php:113 -#: ../../operation/agentes/estado_agente.php:194 -#: ../../operation/agentes/estado_monitores.php:447 -#: ../../operation/agentes/estado_monitores.php:466 -#: ../../operation/agentes/status_monitor.php:307 -#: ../../operation/agentes/status_monitor.php:324 -#: ../../operation/agentes/status_monitor.php:334 -#: ../../operation/agentes/status_monitor.php:353 -#: ../../operation/agentes/status_monitor.php:396 -#: ../../operation/agentes/status_monitor.php:398 -#: ../../operation/agentes/status_monitor.php:463 -#: ../../operation/events/events.build_table.php:506 -#: ../../operation/events/events_list.php:515 +#: ../../operation/snmpconsole/snmp_view.php:681 +msgid "Variable bindings:" +msgstr "Enlaces variables" + +#: ../../operation/snmpconsole/snmp_view.php:694 +msgid "See more details" +msgstr "Ver más detalles" + +#: ../../operation/snmpconsole/snmp_view.php:707 +msgid "Enterprise String:" +msgstr "Cadena Enterprise" + +#: ../../operation/snmpconsole/snmp_view.php:713 +msgid "Description:" +msgstr "Descripción:" + +#: ../../operation/snmpconsole/snmp_view.php:745 +msgid "Trap type:" +msgstr "Tipo trap:" + +#: ../../operation/snmpconsole/snmp_view.php:773 +msgid "Count:" +msgstr "Contar" + +#: ../../operation/snmpconsole/snmp_view.php:777 +msgid "First trap:" +msgstr "Primer trap:" + +#: ../../operation/snmpconsole/snmp_view.php:781 +msgid "Last trap:" +msgstr "Ultimo trap:" + +#: ../../operation/snmpconsole/snmp_view.php:801 +msgid "No matching traps found" +msgstr "No se encontraron traps coincidentes" + +#: ../../operation/snmpconsole/snmp_view.php:844 +#: ../../extensions/module_groups.php:296 +#: ../../extensions/agents_modules.php:490 +#: ../../include/functions_reporting_html.php:1438 +#: ../../godmode/snmpconsole/snmp_alert.php:1343 +msgid "Legend" +msgstr "Leyenda" + +#: ../../operation/snmpconsole/snmp_browser.php:92 +msgid "SNMP Browser" +msgstr "Navegador SNMP" + +#: ../../operation/search_main.php:52 +msgid "Agents found" +msgstr "Agentes encontrados" + +#: ../../operation/search_main.php:54 ../../operation/search_main.php:57 +#: ../../operation/search_main.php:68 ../../operation/search_main.php:71 +#: ../../operation/search_main.php:74 ../../operation/search_main.php:77 +#: ../../operation/search_main.php:80 +#, php-format +msgid "%s Found" +msgstr "%s encontrados" + +#: ../../operation/search_main.php:55 +msgid "Modules found" +msgstr "Módulos encontrados" + +#: ../../operation/search_main.php:66 +msgid "Users found" +msgstr "Usuarios encontrados" + +#: ../../operation/search_main.php:69 +msgid "Graphs found" +msgstr "Gráficas encontradas" + +#: ../../operation/search_main.php:72 +msgid "Reports found" +msgstr "Informes encontrados" + +#: ../../operation/search_main.php:75 +msgid "Maps found" +msgstr "Mapas encontrados" + +#: ../../operation/search_main.php:78 +msgid "Helps found" +msgstr "Ayudas encontradas" + +#: ../../operation/search_main.php:88 +#, php-format +msgid "Show %s of %s. View all matches" +msgstr "Mostrar %s de %s. Ver todas las coincidencias" + +#: ../../operation/menu.php:31 ../../operation/menu.php:106 +msgid "Monitoring" +msgstr "Monitorización" + +#: ../../operation/menu.php:37 +msgid "Views" +msgstr "Vistas" + +#: ../../operation/menu.php:45 ../../operation/users/user_edit.php:280 +#: ../../operation/agentes/tactical.php:55 ../../mobile/operation/home.php:38 +#: ../../mobile/operation/tactical.php:84 +msgid "Tactical view" +msgstr "Vista táctica" + +#: ../../operation/menu.php:48 ../../operation/users/user_edit.php:279 +#: ../../operation/agentes/group_view.php:70 +msgid "Group view" +msgstr "Vista de grupo" + +#: ../../operation/menu.php:51 ../../operation/tree.php:87 +msgid "Tree view" +msgstr "Vista de árbol" + +#: ../../operation/menu.php:54 ../../operation/agentes/estado_agente.php:145 +#: ../../godmode/agentes/agent_manager.php:166 +msgid "Agent detail" +msgstr "Detalle de agente" + +#: ../../operation/menu.php:59 ../../operation/agentes/status_monitor.php:40 +msgid "Monitor detail" +msgstr "Detalle de monitores" + +#: ../../operation/menu.php:62 ../../operation/users/user_edit.php:281 +#: ../../operation/agentes/alerts_status.php:132 +msgid "Alert detail" +msgstr "Detalle de alertas" + +#: ../../operation/menu.php:70 +msgid "Netflow Live View" +msgstr "Netflow en tiempo real" + +#: ../../operation/menu.php:84 ../../include/functions_menu.php:517 +msgid "SNMP console" +msgstr "Consola SNMP" + +#: ../../operation/menu.php:85 +msgid "SNMP browser" +msgstr "Navegador SNMP" + +#: ../../operation/menu.php:92 ../../include/functions_menu.php:513 +msgid "SNMP filters" +msgstr "Filtros SNMP" + +#: ../../operation/menu.php:93 ../../include/functions_menu.php:515 +msgid "SNMP trap generator" +msgstr "Generador de traps SNMP" + +#: ../../operation/menu.php:98 ../../operation/events/events_rss.php:185 +msgid "SNMP" +msgstr "SNMP" + +#: ../../operation/menu.php:117 +msgid "Network map" +msgstr "Mapa de red" + +#: ../../operation/menu.php:128 ../../operation/users/user_edit.php:277 +#: ../../extensions/resource_exportation.php:355 +msgid "Visual console" +msgstr "Consola visual" + +#: ../../operation/menu.php:185 ../../operation/gis_maps/gis_map.php:31 +msgid "GIS Maps" +msgstr "Mapas GIS" + +#: ../../operation/menu.php:190 +msgid "List of Gis maps" +msgstr "Lista de mapas Gis" + +#: ../../operation/menu.php:224 +msgid "Topology maps" +msgstr "Mapas topológicos" + +#: ../../operation/menu.php:235 +#: ../../operation/reporting/custom_reporting.php:27 +#: ../../operation/reporting/graph_viewer.php:317 +#: ../../operation/reporting/reporting_viewer.php:119 +#: ../../operation/reporting/reporting_viewer.php:124 +#: ../../godmode/reporting/map_builder.php:39 +#: ../../godmode/reporting/reporting_builder.php:359 +#: ../../godmode/reporting/reporting_builder.php:364 +#: ../../godmode/reporting/reporting_builder.php:1924 +#: ../../godmode/reporting/reporting_builder.php:1929 +#: ../../godmode/reporting/reporting_builder.php:1995 +#: ../../godmode/reporting/reporting_builder.php:2000 +#: ../../godmode/reporting/graphs.php:75 +msgid "Reporting" +msgstr "Informes" + +#: ../../operation/menu.php:242 +#: ../../operation/reporting/custom_reporting.php:27 +#: ../../godmode/reporting/reporting_builder.php:346 +#: ../../godmode/reporting/reporting_builder.php:368 +#: ../../godmode/reporting/reporting_builder.php:1911 +msgid "Custom reporting" +msgstr "Informes personalizados" + +#: ../../operation/menu.php:249 ../../godmode/reporting/graphs.php:75 +msgid "Custom graphs" +msgstr "Gráficas personalizadas" + +#: ../../operation/menu.php:268 ../../operation/events/events.php:420 +#: ../../operation/events/events.php:429 ../../operation/events/events.php:446 +#: ../../mobile/operation/home.php:44 ../../mobile/operation/events.php:564 +#: ../../mobile/include/functions_web.php:24 +#: ../../include/functions_reports.php:620 +#: ../../include/functions_reports.php:622 +#: ../../include/functions_reports.php:624 +#: ../../include/functions_graph.php:744 +#: ../../include/functions_graph.php:3936 +#: ../../include/functions_graph.php:4662 +#: ../../include/functions_reporting_html.php:1615 ../../godmode/menu.php:192 +msgid "Events" +msgstr "Eventos" + +#: ../../operation/menu.php:274 ../../godmode/users/configure_profile.php:275 +msgid "View events" +msgstr "Ver eventos" + +#: ../../operation/menu.php:288 +msgid "RSS" +msgstr "RSS" + +#: ../../operation/menu.php:293 +msgid "Marquee" +msgstr "Marquesina" + +#: ../../operation/menu.php:299 +msgid "CSV File" +msgstr "Archivo CSV" + +#: ../../operation/menu.php:307 ../../operation/events/sound_events.php:51 +msgid "Sound Events" +msgstr "Eventos sonoros" + +#: ../../operation/menu.php:319 ../../operation/events/events.php:439 +msgid "Sound Alerts" +msgstr "Alertas sonoras" + +#: ../../operation/menu.php:329 +msgid "Workspace" +msgstr "Área de trabajo" + +#: ../../operation/menu.php:336 ../../general/header.php:294 +#: ../../general/header.php:296 +msgid "Edit my user" +msgstr "Editar mi usuario" + +#: ../../operation/menu.php:342 +msgid "WebChat" +msgstr "Chat de la Web" + +#: ../../operation/menu.php:354 ../../operation/agentes/ver_agente.php:1022 +#: ../../operation/incidents/incident_statistics.php:30 +#: ../../general/firts_task/incidents.php:32 +#: ../../godmode/agentes/configurar_agente.php:418 +#: ../../godmode/agentes/configurar_agente.php:550 +msgid "Incidents" +msgstr "Incidentes" + +#: ../../operation/menu.php:364 +msgid "List of Incidents" +msgstr "Lista de incidentes" + +#: ../../operation/menu.php:373 ../../operation/messages/message_edit.php:46 +#: ../../operation/messages/message_list.php:43 ../../godmode/menu.php:457 +msgid "Messages" +msgstr "Mensajes" + +#: ../../operation/menu.php:379 +msgid "Messages List" +msgstr "Lista de mensajes" + +#: ../../operation/menu.php:380 +msgid "New message" +msgstr "Mensaje nuevo" + +#: ../../operation/menu.php:399 ../../operation/agentes/exportdata.php:36 +msgid "Export data" +msgstr "Exportar datos" + +#: ../../operation/menu.php:405 +msgid "Scheduled downtime" +msgstr "Desconexión programada" + +#: ../../operation/menu.php:410 +msgid "Recon view" +msgstr "Vista Recon" + +#: ../../operation/menu.php:485 +msgid "Tools" +msgstr "Herramientas" + +#: ../../operation/search_reports.php:38 +#: ../../operation/reporting/custom_reporting.php:38 +#: ../../godmode/reporting/reporting_builder.php:532 +msgid "Report name" +msgstr "Nombre de informe" + +#: ../../operation/search_reports.php:39 ../../operation/events/events.php:91 +#: ../../operation/reporting/custom_reporting.php:39 +#: ../../operation/reporting/graph_viewer.php:329 +#: ../../operation/search_users.php:53 ../../operation/gis_maps/ajax.php:302 +#: ../../operation/search_graphs.php:34 +#: ../../operation/agentes/custom_fields.php:64 +#: ../../operation/agentes/pandora_networkmap.editor.php:191 +#: ../../operation/agentes/estado_generalagente.php:171 +#: ../../operation/agentes/estado_agente.php:495 +#: ../../operation/agentes/gis_view.php:183 +#: ../../operation/incidents/incident_detail.php:454 +#: ../../operation/incidents/incident_detail.php:506 +#: ../../extensions/files_repo/files_repo_form.php:72 +#: ../../extensions/files_repo/files_repo_list.php:59 +#: ../../mobile/operation/tactical.php:312 +#: ../../include/functions_snmp_browser.php:415 +#: ../../include/ajax/module.php:744 ../../include/functions_treeview.php:129 +#: ../../include/functions_treeview.php:587 +#: ../../include/functions_reporting_html.php:123 +#: ../../include/functions_reporting_html.php:2076 +#: ../../include/functions_reporting_html.php:2109 +#: ../../include/functions_reporting_html.php:3096 +#: ../../include/functions_reporting_html.php:3810 +#: ../../include/functions_events.php:1810 +#: ../../godmode/snmpconsole/snmp_alert.php:627 +#: ../../godmode/snmpconsole/snmp_alert.php:1163 +#: ../../godmode/snmpconsole/snmp_filters.php:94 +#: ../../godmode/snmpconsole/snmp_filters.php:131 +#: ../../godmode/alerts/configure_alert_special_days.php:90 +#: ../../godmode/alerts/alert_commands.php:332 +#: ../../godmode/alerts/configure_alert_command.php:155 +#: ../../godmode/alerts/configure_alert_template.php:763 +#: ../../godmode/alerts/alert_templates.php:47 +#: ../../godmode/setup/snmp_wizard.php:40 ../../godmode/setup/os.list.php:35 +#: ../../godmode/setup/os.builder.php:36 +#: ../../godmode/events/event_responses.editor.php:87 +#: ../../godmode/events/event_responses.list.php:55 +#: ../../godmode/massive/massive_edit_agents.php:321 +#: ../../godmode/massive/massive_edit_plugins.php:451 +#: ../../godmode/massive/massive_edit_modules.php:459 +#: ../../godmode/users/user_list.php:277 +#: ../../godmode/reporting/reporting_builder.main.php:121 +#: ../../godmode/reporting/reporting_builder.item_editor.php:684 +#: ../../godmode/reporting/reporting_builder.php:533 +#: ../../godmode/reporting/reporting_builder.list_items.php:303 +#: ../../godmode/reporting/graph_builder.main.php:123 +#: ../../godmode/reporting/graphs.php:153 +#: ../../godmode/netflow/nf_item_list.php:149 +#: ../../godmode/servers/recon_script.php:107 +#: ../../godmode/servers/recon_script.php:154 +#: ../../godmode/servers/recon_script.php:349 +#: ../../godmode/servers/modificar_server.php:48 +#: ../../godmode/servers/plugin.php:312 ../../godmode/servers/plugin.php:444 +#: ../../godmode/groups/group_list.php:340 +#: ../../godmode/groups/configure_group.php:182 +#: ../../godmode/modules/module_list.php:60 +#: ../../godmode/modules/manage_network_components.php:567 +#: ../../godmode/modules/manage_network_components_form.php:263 +#: ../../godmode/modules/manage_network_templates_form.php:148 +#: ../../godmode/modules/manage_network_templates_form.php:199 +#: ../../godmode/modules/manage_network_templates.php:191 +#: ../../godmode/agentes/module_manager_editor_common.php:356 +#: ../../godmode/agentes/planned_downtime.editor.php:482 +#: ../../godmode/agentes/agent_manager.php:305 +#: ../../godmode/agentes/modificar_agente.php:493 +#: ../../godmode/agentes/module_manager.php:563 +#: ../../godmode/agentes/planned_downtime.list.php:392 +#: ../../godmode/agentes/agent_template.php:230 ../../godmode/tag/tag.php:156 +#: ../../godmode/tag/tag.php:200 ../../godmode/tag/edit_tag.php:177 +msgid "Description" +msgstr "Descripción" + +#: ../../operation/search_reports.php:40 +#: ../../operation/reporting/custom_reporting.php:40 +#: ../../godmode/reporting/reporting_builder.php:534 +msgid "HTML" +msgstr "HTML" + +#: ../../operation/search_reports.php:41 +#: ../../operation/reporting/custom_reporting.php:41 +#: ../../godmode/reporting/reporting_builder.php:535 +msgid "XML" +msgstr "XML" + +#: ../../operation/search_reports.php:52 +#: ../../operation/gis_maps/gis_map.php:163 +#: ../../operation/servers/recon_view.php:110 +#: ../../operation/agentes/status_monitor.php:1118 +#: ../../operation/agentes/pandora_networkmap.php:403 +#: ../../operation/agentes/estado_agente.php:580 +#: ../../extensions/files_repo/files_repo_list.php:101 +#: ../../include/functions_pandora_networkmap.php:1443 +#: ../../include/ajax/module.php:866 ../../include/functions_groups.php:2166 +#: ../../godmode/alerts/alert_special_days.php:449 +#: ../../godmode/setup/snmp_wizard.php:119 +#: ../../godmode/events/event_responses.list.php:67 +#: ../../godmode/users/profile_list.php:389 +#: ../../godmode/users/user_list.php:468 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1189 +#: ../../godmode/reporting/reporting_builder.php:698 +#: ../../godmode/reporting/reporting_builder.list_items.php:430 +#: ../../godmode/servers/servers.build_table.php:154 +#: ../../godmode/servers/plugin.php:157 ../../godmode/servers/plugin.php:781 +#: ../../godmode/agentes/modificar_agente.php:569 +#: ../../godmode/agentes/fields_manager.php:126 +#: ../../godmode/agentes/planned_downtime.list.php:401 +msgid "Edit" +msgstr "Editar" + +#: ../../operation/events/events_list.php:190 +#: ../../operation/events/events_list.php:714 +msgid "No filter loaded" +msgstr "No se ha cargado el filtro" + +#: ../../operation/events/events_list.php:192 +#: ../../operation/events/events_list.php:715 +msgid "Filter loaded" +msgstr "Filtro cargado" + +#: ../../operation/events/events_list.php:194 +#: ../../operation/events/events_list.php:257 +#: ../../operation/events/events_list.php:607 +msgid "Save filter" +msgstr "Guardar filtro" + +#: ../../operation/events/events_list.php:196 +#: ../../operation/events/events_list.php:280 +#: ../../operation/events/events_list.php:282 +#: ../../operation/events/events_list.php:611 +#: ../../operation/netflow/nf_live_view.php:329 +msgid "Load filter" +msgstr "Cargar filtro" + +#: ../../operation/events/events_list.php:217 +msgid "New filter" +msgstr "Nuevo filtro" + +#: ../../operation/events/events_list.php:218 +#: ../../operation/events/events_list.php:249 +#: ../../godmode/snmpconsole/snmp_filters.php:35 +#: ../../godmode/netflow/nf_edit_form.php:180 +msgid "Update filter" +msgstr "Actualizar filtro" + +#: ../../operation/events/events_list.php:224 +#: ../../godmode/events/event_edit_filter.php:215 +msgid "Filter name" +msgstr "Nombre del filtro" + +#: ../../operation/events/events_list.php:227 +msgid "Save in Group" +msgstr "Guardar en el grupo" + +#: ../../operation/events/events_list.php:229 +#: ../../godmode/reporting/graph_builder.graph_editor.php:140 +msgid "Filter group" +msgstr "Filtrar grupo" + +#: ../../operation/events/events_list.php:244 +msgid "Overwrite filter" +msgstr "Sobrescribir filtro" + +#: ../../operation/events/events_list.php:335 +#: ../../operation/events/events_list.php:362 +#: ../../operation/incidents/incident_detail.php:404 +#: ../../extensions/files_repo/files_repo_form.php:94 +#: ../../godmode/snmpconsole/snmp_alert.php:1317 +#: ../../godmode/alerts/alert_list.list.php:632 +#: ../../godmode/setup/news.php:275 ../../godmode/setup/links.php:158 +#: ../../godmode/setup/setup_visuals.php:684 +#: ../../godmode/setup/setup_visuals.php:720 +#: ../../godmode/events/event_edit_filter.php:353 +#: ../../godmode/events/event_edit_filter.php:368 +#: ../../godmode/massive/massive_add_action_alerts.php:205 +#: ../../godmode/massive/massive_add_alerts.php:185 +#: ../../godmode/massive/massive_add_tags.php:161 +#: ../../godmode/users/configure_profile.php:375 +#: ../../godmode/reporting/graph_builder.graph_editor.php:163 +#: ../../godmode/reporting/visual_console_builder.wizard.php:367 +#: ../../godmode/servers/manage_recontask_form.php:395 +#: ../../godmode/servers/recon_script.php:383 +#: ../../godmode/servers/plugin.php:796 +#: ../../godmode/modules/manage_network_templates_form.php:308 +#: ../../godmode/agentes/planned_downtime.editor.php:628 +#: ../../godmode/agentes/planned_downtime.editor.php:724 +#: ../../godmode/agentes/planned_downtime.editor.php:864 +msgid "Add" +msgstr "Añadir" + +#: ../../operation/events/events_list.php:337 +#: ../../operation/events/events_list.php:364 +#: ../../godmode/alerts/alert_special_days.php:452 +#: ../../godmode/events/event_edit_filter.php:361 +#: ../../godmode/events/event_edit_filter.php:376 +msgid "Remove" +msgstr "Eliminar" + +#: ../../operation/events/events_list.php:410 +#: ../../godmode/events/event_edit_filter.php:253 +msgid "Agent search" +msgstr "Búsqueda de agente" + +#: ../../operation/events/events_list.php:430 +#: ../../godmode/events/event_edit_filter.php:285 +msgid "User ack." +msgstr "Validación del usuario" + +#: ../../operation/events/events_list.php:440 +#: ../../include/ajax/visual_console_builder.ajax.php:693 +#: ../../include/functions_visual_map_editor.php:313 +#: ../../include/functions_visual_map_editor.php:652 +#: ../../include/functions_html.php:867 ../../include/functions_html.php:868 +#: ../../include/functions_html.php:869 ../../include/functions_html.php:870 +#: ../../include/functions_html.php:871 ../../include/functions_html.php:874 +#: ../../include/functions_html.php:875 ../../include/functions_html.php:876 +#: ../../include/functions_html.php:877 ../../include/functions_html.php:878 +#: ../../godmode/events/event_edit_filter.php:297 +#: ../../godmode/massive/massive_add_action_alerts.php:161 +#: ../../godmode/massive/massive_edit_agents.php:275 +#: ../../godmode/users/configure_user.php:696 +#: ../../godmode/reporting/visual_console_builder.wizard.php:372 +#: ../../godmode/servers/manage_recontask_form.php:296 +#: ../../godmode/servers/manage_recontask.php:339 +#: ../../godmode/agentes/planned_downtime.editor.php:713 +#: ../../godmode/agentes/agent_manager.php:250 +#: ../../godmode/agentes/planned_downtime.list.php:154 +msgid "Any" +msgstr "Cualquier" + +#: ../../operation/events/events_list.php:442 +#: ../../godmode/events/event_edit_filter.php:388 +msgid "Module search" +msgstr "Búsqueda por módulo" + +#: ../../operation/events/events_list.php:447 +#: ../../operation/events/events.build_table.php:139 +#: ../../operation/servers/recon_view.php:173 +#: ../../include/functions_events.php:3515 +#: ../../godmode/massive/massive_edit_agents.php:316 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1221 +#: ../../godmode/agentes/agent_manager.php:294 +#: ../../godmode/agentes/module_manager.php:554 +msgid "Server" +msgstr "Servidor" + +#: ../../operation/events/events_list.php:461 +#: ../../godmode/events/event_edit_filter.php:379 +msgid "Alert events" +msgstr "Eventos de la alerta" + +#: ../../operation/events/events_list.php:464 +#: ../../godmode/events/event_edit_filter.php:383 +msgid "Filter alert events" +msgstr "Filtrar eventos de alertas" + +#: ../../operation/events/events_list.php:465 +#: ../../godmode/events/event_edit_filter.php:384 +msgid "Only alert events" +msgstr "Solo eventos de alertas" + +#: ../../operation/events/events_list.php:479 +#: ../../godmode/events/event_edit_filter.php:305 +msgid "Date from" +msgstr "Fecha desde" + +#: ../../operation/events/events_list.php:485 +#: ../../godmode/events/event_edit_filter.php:308 +msgid "Date to" +msgstr "Fecha hasta" + +#: ../../operation/events/events_list.php:491 +#: ../../operation/agentes/datos_agente.php:189 +#: ../../include/ajax/module.php:162 +msgid "Timestamp from:" +msgstr "Timestamp desde:" + +#: ../../operation/events/events_list.php:494 +#: ../../operation/agentes/datos_agente.php:195 +#: ../../include/ajax/module.php:170 +msgid "Timestamp to:" +msgstr "Timestamp hasta:" + +#: ../../operation/events/events_list.php:505 #: ../../operation/events/events_list.php:519 -#: ../../operation/events/events_list.php:528 -#: ../../operation/events/events_list.php:630 -#: ../../operation/events/events_list.php:634 -#: ../../operation/events/events_rss.php:110 -#: ../../operation/events/export_csv.php:54 -#: ../../operation/gis_maps/render_view.php:148 -#: ../../operation/snmpconsole/snmp_view.php:384 -#: ../../operation/snmpconsole/snmp_view.php:401 -#: ../../operation/snmpconsole/snmp_view.php:406 -#: ../../operation/snmpconsole/snmp_view.php:637 ../../operation/tree.php:130 -#: ../../operation/tree.php:155 -#: ../../enterprise/dashboard/widgets/events_list.php:52 -#: ../../enterprise/dashboard/widgets/tree_view.php:52 -#: ../../enterprise/dashboard/widgets/tree_view.php:65 -#: ../../enterprise/extensions/backup/main.php:85 -#: ../../enterprise/extensions/ipam/ipam_network.php:305 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:204 -#: ../../enterprise/godmode/modules/local_components.php:438 -#: ../../enterprise/godmode/modules/local_components.php:448 -#: ../../enterprise/godmode/modules/local_components.php:462 -#: ../../enterprise/godmode/policies/policy_agents.php:370 -#: ../../enterprise/godmode/policies/policy_queue.php:340 -#: ../../enterprise/godmode/policies/policy_queue.php:344 -#: ../../enterprise/godmode/policies/policy_queue.php:350 -#: ../../enterprise/godmode/policies/policy_queue.php:407 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:156 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:121 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1441 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1443 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1458 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1676 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1688 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:236 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:146 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:397 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:408 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:127 -#: ../../enterprise/godmode/setup/setup_acl.php:158 -#: ../../enterprise/godmode/setup/setup_acl.php:163 -#: ../../enterprise/godmode/setup/setup_acl.php:168 -#: ../../enterprise/godmode/setup/setup_acl.php:374 -#: ../../enterprise/godmode/setup/setup_acl.php:384 -#: ../../enterprise/godmode/setup/setup_acl.php:396 -#: ../../enterprise/godmode/setup/setup_acl.php:441 -#: ../../enterprise/godmode/setup/setup_acl.php:470 -#: ../../enterprise/include/functions_metaconsole.php:663 -#: ../../enterprise/include/functions_metaconsole.php:664 -#: ../../enterprise/include/functions_metaconsole.php:1268 -#: ../../enterprise/meta/advanced/policymanager.queue.php:214 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -#: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:229 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:268 -#: ../../enterprise/meta/include/functions_agents_meta.php:1053 -#: ../../enterprise/meta/include/functions_html_meta.php:51 -#: ../../enterprise/meta/include/functions_users_meta.php:79 -#: ../../enterprise/meta/include/functions_users_meta.php:89 -#: ../../enterprise/meta/include/functions_wizard_meta.php:251 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:105 -#: ../../enterprise/operation/agentes/agent_inventory.php:69 -#: ../../enterprise/operation/inventory/inventory.php:55 -#: ../../enterprise/operation/inventory/inventory.php:57 -#: ../../enterprise/operation/inventory/inventory.php:120 -#: ../../enterprise/operation/inventory/inventory.php:122 -#: ../../enterprise/operation/inventory/inventory.php:176 -#: ../../enterprise/operation/log/log_viewer.php:194 -#: ../../enterprise/operation/log/log_viewer.php:212 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:32 -msgid "All" -msgstr "Todo" +#: ../../godmode/events/event_edit_filter.php:350 +msgid "Events with following tags" +msgstr "Eventos con las siguientes etiquetas" -#: ../../extensions/agents_modules.php:165 -#: ../../extensions/agents_modules.php:167 -#: ../../godmode/massive/massive_add_action_alerts.php:171 -#: ../../godmode/massive/massive_add_alerts.php:169 -#: ../../godmode/massive/massive_delete_action_alerts.php:172 -#: ../../godmode/massive/massive_delete_alerts.php:229 -#: ../../godmode/massive/massive_delete_modules.php:501 -#: ../../godmode/massive/massive_edit_modules.php:349 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1045 -#: ../../enterprise/dashboard/widgets/agent_module.php:84 -#: ../../enterprise/dashboard/widgets/agent_module.php:86 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:228 -msgid "Show common modules" -msgstr "Mostrar módulos comunes" +#: ../../operation/events/events_list.php:511 +#: ../../operation/events/events_list.php:525 +#: ../../godmode/events/event_edit_filter.php:365 +msgid "Events without following tags" +msgstr "Eventos sin las siguientes etiquetas" -#: ../../extensions/agents_modules.php:166 -#: ../../godmode/massive/massive_add_action_alerts.php:172 -#: ../../godmode/massive/massive_add_alerts.php:169 -#: ../../godmode/massive/massive_delete_action_alerts.php:173 -#: ../../godmode/massive/massive_delete_alerts.php:229 -#: ../../godmode/massive/massive_delete_modules.php:501 -#: ../../godmode/massive/massive_edit_modules.php:350 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1046 -#: ../../enterprise/dashboard/widgets/agent_module.php:87 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:229 -msgid "Show all modules" -msgstr "Mostrar todos los módulos" +#: ../../operation/events/events_list.php:549 +#: ../../operation/events/events.build_table.php:185 +#: ../../operation/events/sound_events.php:78 +#: ../../operation/users/user_edit.php:505 +#: ../../operation/netflow/nf_live_view.php:309 +#: ../../operation/gis_maps/gis_map.php:90 +#: ../../operation/gis_maps/ajax.php:309 ../../operation/search_maps.php:32 +#: ../../operation/search_agents.php:47 ../../operation/search_agents.php:59 +#: ../../operation/agentes/status_monitor.php:292 +#: ../../operation/agentes/exportdata.php:235 +#: ../../operation/agentes/alerts_status.functions.php:68 +#: ../../operation/agentes/ver_agente.php:687 +#: ../../operation/agentes/pandora_networkmap.editor.php:183 +#: ../../operation/agentes/pandora_networkmap.editor.php:196 +#: ../../operation/agentes/group_view.php:164 +#: ../../operation/agentes/estado_generalagente.php:245 +#: ../../operation/agentes/estado_agente.php:167 +#: ../../operation/agentes/estado_agente.php:517 +#: ../../operation/incidents/incident_detail.php:308 +#: ../../operation/incidents/incident.php:339 +#: ../../extensions/agents_modules.php:128 +#: ../../extensions/agents_alerts.php:74 +#: ../../mobile/operation/networkmaps.php:65 +#: ../../mobile/operation/networkmaps.php:69 +#: ../../mobile/operation/networkmaps.php:129 +#: ../../mobile/operation/networkmaps.php:130 +#: ../../mobile/operation/networkmaps.php:197 +#: ../../mobile/operation/visualmaps.php:49 +#: ../../mobile/operation/visualmaps.php:53 +#: ../../mobile/operation/visualmaps.php:141 +#: ../../mobile/operation/alerts.php:84 ../../mobile/operation/alerts.php:88 +#: ../../mobile/operation/alerts.php:178 ../../mobile/operation/alerts.php:179 +#: ../../mobile/operation/agents.php:75 ../../mobile/operation/agents.php:120 +#: ../../mobile/operation/agents.php:124 ../../mobile/operation/agents.php:175 +#: ../../mobile/operation/agents.php:176 ../../mobile/operation/agents.php:317 +#: ../../mobile/operation/events.php:361 ../../mobile/operation/events.php:365 +#: ../../mobile/operation/events.php:501 ../../mobile/operation/events.php:604 +#: ../../mobile/operation/events.php:605 +#: ../../mobile/operation/modules.php:128 +#: ../../mobile/operation/modules.php:132 +#: ../../mobile/operation/modules.php:203 +#: ../../mobile/operation/modules.php:204 ../../general/ui/agents_list.php:69 +#: ../../include/functions_pandora_networkmap.php:1375 +#: ../../include/functions_pandora_networkmap.php:1554 +#: ../../include/functions_visual_map.php:2765 +#: ../../include/functions_groups.php:745 +#: ../../include/functions_visual_map_editor.php:61 +#: ../../include/functions_visual_map_editor.php:336 +#: ../../include/functions_visual_map_editor.php:610 +#: ../../include/functions_graph.php:5544 +#: ../../include/functions_reporting_html.php:2073 +#: ../../include/functions_reporting_html.php:2108 +#: ../../include/functions_events.php:38 +#: ../../include/functions_events.php:2437 +#: ../../include/functions_events.php:3557 +#: ../../include/functions_networkmap.php:1721 +#: ../../godmode/snmpconsole/snmp_alert.php:657 +#: ../../godmode/alerts/configure_alert_special_days.php:69 +#: ../../godmode/alerts/alert_special_days.php:246 +#: ../../godmode/alerts/alert_actions.php:341 +#: ../../godmode/alerts/configure_alert_action.php:116 +#: ../../godmode/alerts/configure_alert_template.php:751 +#: ../../godmode/alerts/alert_templates.php:299 +#: ../../godmode/setup/news.php:164 ../../godmode/setup/gis.php:63 +#: ../../godmode/setup/gis_step_2.php:153 +#: ../../godmode/events/event_filter.php:109 +#: ../../godmode/events/custom_events.php:80 +#: ../../godmode/events/custom_events.php:156 +#: ../../godmode/events/event_edit_filter.php:226 +#: ../../godmode/events/event_responses.editor.php:81 +#: ../../godmode/events/event_responses.list.php:56 +#: ../../godmode/massive/massive_add_action_alerts.php:151 +#: ../../godmode/massive/massive_add_alerts.php:151 +#: ../../godmode/massive/massive_edit_agents.php:207 +#: ../../godmode/massive/massive_edit_agents.php:298 +#: ../../godmode/massive/massive_delete_action_alerts.php:151 +#: ../../godmode/massive/massive_enable_disable_alerts.php:136 +#: ../../godmode/massive/massive_delete_agents.php:105 +#: ../../godmode/massive/massive_standby_alerts.php:136 +#: ../../godmode/massive/massive_copy_modules.php:71 +#: ../../godmode/massive/massive_copy_modules.php:182 +#: ../../godmode/massive/massive_delete_profiles.php:103 +#: ../../godmode/massive/massive_add_tags.php:124 +#: ../../godmode/massive/massive_delete_alerts.php:212 +#: ../../godmode/massive/massive_add_profiles.php:89 +#: ../../godmode/users/configure_user.php:624 +#: ../../godmode/users/user_list.php:227 +#: ../../godmode/reporting/reporting_builder.main.php:69 +#: ../../godmode/reporting/map_builder.php:208 +#: ../../godmode/reporting/visual_console_builder.elements.php:77 +#: ../../godmode/reporting/visual_console_builder.elements.php:193 +#: ../../godmode/reporting/reporting_builder.item_editor.php:868 +#: ../../godmode/reporting/reporting_builder.php:431 +#: ../../godmode/reporting/reporting_builder.php:561 +#: ../../godmode/reporting/graph_builder.main.php:116 +#: ../../godmode/reporting/graphs.php:155 +#: ../../godmode/netflow/nf_edit_form.php:193 +#: ../../godmode/netflow/nf_edit.php:119 +#: ../../godmode/gis_maps/configure_gis_map.php:366 +#: ../../godmode/servers/manage_recontask_form.php:305 +#: ../../godmode/servers/manage_recontask.php:291 +#: ../../godmode/modules/manage_network_components.php:479 +#: ../../godmode/modules/manage_network_components.php:568 +#: ../../godmode/modules/manage_network_templates_form.php:200 +#: ../../godmode/modules/manage_network_templates_form.php:267 +#: ../../godmode/modules/manage_network_templates_form.php:300 +#: ../../godmode/modules/manage_network_components_form_common.php:101 +#: ../../godmode/agentes/configurar_agente.php:363 +#: ../../godmode/agentes/planned_downtime.editor.php:480 +#: ../../godmode/agentes/planned_downtime.editor.php:754 +#: ../../godmode/agentes/agent_manager.php:270 +#: ../../godmode/agentes/modificar_agente.php:145 +#: ../../godmode/agentes/modificar_agente.php:489 +#: ../../godmode/agentes/agent_incidents.php:89 +#: ../../godmode/agentes/planned_downtime.list.php:393 +msgid "Group" +msgstr "Grupo" -#: ../../extensions/agents_modules.php:176 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1517 -#: ../../include/functions_visual_map_editor.php:673 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1915 -msgid "Update item" -msgstr "Actualizar item" +#: ../../operation/events/events_list.php:562 +#: ../../operation/events/events.build_table.php:191 +#: ../../include/functions_events.php:41 +#: ../../include/functions_events.php:3562 +#: ../../godmode/events/event_filter.php:110 +#: ../../godmode/events/custom_events.php:89 +#: ../../godmode/events/custom_events.php:159 +#: ../../godmode/events/event_edit_filter.php:235 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1408 +msgid "Event type" +msgstr "Tipo de evento" -#: ../../extensions/agents_modules.php:186 -#: ../../include/functions_reports.php:588 -#: ../../include/graphs/functions_pchart.php:1156 -msgid "Agents/Modules" -msgstr "Agentes/Módulos" +#: ../../operation/events/events_list.php:565 +#: ../../operation/agentes/status_monitor.php:303 +#: ../../operation/agentes/estado_agente.php:190 +#: ../../mobile/operation/modules.php:43 +#: ../../include/functions_events.php:1428 ../../include/functions.php:1083 +#: ../../godmode/events/event_edit_filter.php:233 +#: ../../godmode/massive/massive_edit_agents.php:220 +#: ../../godmode/massive/massive_delete_agents.php:117 +#: ../../godmode/massive/massive_delete_modules.php:457 +#: ../../godmode/massive/massive_delete_modules.php:471 +#: ../../godmode/massive/massive_copy_modules.php:81 +#: ../../godmode/massive/massive_copy_modules.php:194 +#: ../../godmode/massive/massive_edit_modules.php:300 +#: ../../godmode/massive/massive_edit_modules.php:331 +msgid "Not normal" +msgstr "No normal" -#: ../../extensions/agents_modules.php:232 -msgid "Agent/module view" -msgstr "Vista agente/módulo" +#: ../../operation/events/events_list.php:575 +#: ../../godmode/events/event_filter.php:111 +#: ../../godmode/events/event_edit_filter.php:245 +msgid "Event status" +msgstr "Estado del evento" -#: ../../extensions/agents_modules.php:385 -#: ../../include/functions_reporting.php:1684 -msgid "There are no agents with modules" -msgstr "No hay agentes con módulos" +#: ../../operation/events/events_list.php:578 +#: ../../mobile/operation/events.php:647 +#: ../../godmode/events/event_edit_filter.php:281 +#: ../../godmode/admin_access_logs.php:67 +#: ../../godmode/admin_access_logs.php:68 +msgid "Max. hours old" +msgstr "Máx. horas de antiguedad" -#: ../../extensions/agents_modules.php:393 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:804 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:437 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:311 -#: ../../godmode/agentes/configurar_agente.php:301 -#: ../../godmode/agentes/configurar_agente.php:534 -#: ../../godmode/agentes/modificar_agente.php:576 -#: ../../godmode/agentes/planned_downtime.editor.php:756 -#: ../../godmode/agentes/planned_downtime.editor.php:830 -#: ../../godmode/db/db_refine.php:95 -#: ../../godmode/massive/massive_add_tags.php:139 -#: ../../godmode/massive/massive_copy_modules.php:144 -#: ../../godmode/massive/massive_delete_modules.php:479 -#: ../../godmode/massive/massive_delete_tags.php:199 -#: ../../godmode/massive/massive_edit_modules.php:308 -#: ../../godmode/massive/massive_edit_plugins.php:308 -#: ../../godmode/reporting/graph_builder.graph_editor.php:148 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1053 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1102 -#: ../../godmode/reporting/reporting_builder.list_items.php:167 +#: ../../operation/events/events_list.php:580 +#: ../../mobile/operation/events.php:485 +#: ../../include/functions_events.php:2372 +#: ../../godmode/events/event_edit_filter.php:301 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:421 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:437 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:453 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:469 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:938 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:954 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:970 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:986 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1002 +msgid "Repeated" +msgstr "Repetido" + +#: ../../operation/events/events_list.php:581 +#: ../../godmode/events/event_edit_filter.php:299 +msgid "All events" +msgstr "Todos los eventos" + +#: ../../operation/events/events_list.php:582 +#: ../../godmode/events/event_edit_filter.php:300 +msgid "Group events" +msgstr "Eventos agrupados" + +#: ../../operation/events/events_list.php:583 +msgid "Group agents" +msgstr "Grupos de agente" + +#: ../../operation/events/events_list.php:590 +#: ../../include/functions_visual_map_editor.php:483 +#: ../../godmode/massive/massive_add_action_alerts.php:181 +#: ../../godmode/massive/massive_edit_agents.php:422 +#: ../../godmode/agentes/module_manager_editor.php:515 +#: ../../godmode/agentes/agent_manager.php:428 +msgid "Advanced options" +msgstr "Opciones avanzadas" + +#: ../../operation/events/events_list.php:613 +msgid "Show events graph" +msgstr "Mostrar gráfica de eventos" + +#: ../../operation/events/events_list.php:635 ../../operation/tree.php:184 +#: ../../operation/agentes/status_monitor.php:533 +#: ../../operation/agentes/alerts_status.php:390 +#: ../../godmode/alerts/alert_templates.php:268 +#: ../../godmode/users/user_list.php:243 +#: ../../godmode/reporting/reporting_builder.list_items.php:206 +#: ../../godmode/modules/manage_network_components.php:532 +#: ../../godmode/tag/tag.php:176 ../../godmode/tag/tag.php:281 +msgid "Show Options" +msgstr "Mostrar opciones" + +#: ../../operation/events/events_list.php:637 +msgid "Event control filter" +msgstr "Filtro de control de eventos" + +#: ../../operation/events/events_list.php:641 +msgid "Error creating filter." +msgstr "Error creando filtro." + +#: ../../operation/events/events_list.php:642 +msgid "Error creating filter is duplicated." +msgstr "Error creando filtro al estar duplicado." + +#: ../../operation/events/events_list.php:643 +msgid "Filter created." +msgstr "Filtro creado." + +#: ../../operation/events/events_list.php:645 +msgid "Filter updated." +msgstr "Filtro actualizado." + +#: ../../operation/events/events_list.php:646 +msgid "Error updating filter." +msgstr "Error actualizando filtro." + +#: ../../operation/events/events_list.php:1081 +msgid "Filter name cannot be left blank" +msgstr "El nombre del filtro no se puede dejar en blanco" + +#: ../../operation/events/events_list.php:1150 +#: ../../operation/events/events_list.php:1236 +msgid "none" +msgstr "Ninguno" + +#: ../../operation/events/events_list.php:1558 +msgid "Events generated -by agent-" +msgstr "Eventos generados -por agente-" + +#: ../../operation/events/events_list.php:1577 +#: ../../operation/reporting/graph_viewer.php:267 +#: ../../operation/reporting/reporting_viewer.php:254 +#: ../../operation/reporting/reporting_viewer.php:274 +#: ../../operation/tree.php:391 ../../operation/netflow/nf_live_view.php:659 +#: ../../operation/agentes/estado_monitores.php:401 +#: ../../operation/agentes/datos_agente.php:304 +#: ../../operation/agentes/stat_win.php:506 +#: ../../extensions/insert_data.php:210 +#: ../../godmode/alerts/configure_alert_template.php:1074 +#: ../../godmode/setup/news.php:297 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2023 +#: ../../godmode/agentes/planned_downtime.editor.php:1169 +msgid "Choose time" +msgstr "Seleccionar tiempo" + +#: ../../operation/events/events_list.php:1578 +#: ../../operation/reporting/graph_viewer.php:268 +#: ../../operation/reporting/reporting_viewer.php:255 +#: ../../operation/reporting/reporting_viewer.php:275 +#: ../../operation/tree.php:392 ../../operation/netflow/nf_live_view.php:660 +#: ../../operation/agentes/estado_monitores.php:402 +#: ../../operation/agentes/datos_agente.php:305 +#: ../../operation/agentes/stat_win.php:507 +#: ../../extensions/insert_data.php:211 +#: ../../godmode/alerts/configure_alert_template.php:1075 +#: ../../godmode/setup/news.php:298 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2024 +#: ../../godmode/agentes/planned_downtime.editor.php:1170 +msgid "Time" +msgstr "Hora" + +#: ../../operation/events/events_list.php:1579 +#: ../../operation/reporting/graph_viewer.php:269 +#: ../../operation/reporting/reporting_viewer.php:256 +#: ../../operation/reporting/reporting_viewer.php:276 +#: ../../operation/tree.php:393 ../../operation/netflow/nf_live_view.php:661 +#: ../../operation/agentes/estado_monitores.php:403 +#: ../../operation/agentes/datos_agente.php:306 +#: ../../operation/agentes/stat_win.php:508 +#: ../../extensions/insert_data.php:212 ../../include/functions_html.php:860 +#: ../../godmode/alerts/configure_alert_template.php:1076 +#: ../../godmode/setup/news.php:299 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2025 +#: ../../godmode/agentes/planned_downtime.editor.php:1171 +msgid "Hour" +msgstr "Hora" + +#: ../../operation/events/events_list.php:1580 +#: ../../operation/reporting/graph_viewer.php:270 +#: ../../operation/reporting/reporting_viewer.php:257 +#: ../../operation/reporting/reporting_viewer.php:277 +#: ../../operation/tree.php:394 ../../operation/netflow/nf_live_view.php:662 +#: ../../operation/agentes/estado_monitores.php:404 +#: ../../operation/agentes/datos_agente.php:307 +#: ../../operation/agentes/stat_win.php:509 +#: ../../extensions/insert_data.php:213 ../../include/functions_html.php:861 +#: ../../godmode/alerts/configure_alert_template.php:1077 +#: ../../godmode/setup/news.php:300 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2026 +#: ../../godmode/agentes/planned_downtime.editor.php:1172 +msgid "Minute" +msgstr "Minuto" + +#: ../../operation/events/events_list.php:1581 +#: ../../operation/reporting/graph_viewer.php:271 +#: ../../operation/reporting/reporting_viewer.php:258 +#: ../../operation/reporting/reporting_viewer.php:278 +#: ../../operation/tree.php:395 ../../operation/netflow/nf_live_view.php:663 +#: ../../operation/agentes/estado_monitores.php:405 +#: ../../operation/agentes/datos_agente.php:308 +#: ../../operation/agentes/stat_win.php:510 +#: ../../extensions/insert_data.php:214 +#: ../../godmode/alerts/configure_alert_template.php:1078 +#: ../../godmode/setup/news.php:301 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2027 +#: ../../godmode/agentes/planned_downtime.editor.php:1173 +msgid "Second" +msgstr "Segundo" + +#: ../../operation/events/events_list.php:1582 +#: ../../operation/reporting/graph_viewer.php:272 +#: ../../operation/reporting/reporting_viewer.php:259 +#: ../../operation/reporting/reporting_viewer.php:279 +#: ../../operation/tree.php:396 ../../operation/netflow/nf_live_view.php:664 +#: ../../operation/agentes/estado_monitores.php:406 +#: ../../operation/agentes/datos_agente.php:309 +#: ../../operation/agentes/stat_win.php:511 +#: ../../extensions/insert_data.php:215 ../../include/functions.php:436 +#: ../../include/functions.php:570 +#: ../../godmode/alerts/configure_alert_template.php:1079 +#: ../../godmode/setup/news.php:302 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2028 +#: ../../godmode/agentes/planned_downtime.editor.php:1174 +msgid "Now" +msgstr "Ahora" + +#: ../../operation/events/events_list.php:1583 +#: ../../operation/reporting/graph_viewer.php:273 +#: ../../operation/reporting/reporting_viewer.php:260 +#: ../../operation/reporting/reporting_viewer.php:280 +#: ../../operation/tree.php:397 ../../operation/netflow/nf_live_view.php:665 +#: ../../operation/agentes/estado_monitores.php:407 +#: ../../operation/agentes/datos_agente.php:310 +#: ../../operation/agentes/stat_win.php:512 +#: ../../extensions/insert_data.php:216 ../../mobile/include/ui.class.php:571 +#: ../../mobile/include/ui.class.php:610 +#: ../../include/functions_snmp_browser.php:441 +#: ../../include/functions_filemanager.php:619 +#: ../../include/functions_filemanager.php:640 +#: ../../include/functions_filemanager.php:656 +#: ../../godmode/alerts/configure_alert_template.php:1080 +#: ../../godmode/setup/news.php:303 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2029 +#: ../../godmode/agentes/planned_downtime.editor.php:1175 +msgid "Close" +msgstr "Cerrar" + +#: ../../operation/events/events_rss.php:32 +msgid "Your IP is not into the IP list with API access." +msgstr "Su IP no se encuentra en el listado de IPs con acceso a la API." + +#: ../../operation/events/events_rss.php:46 +msgid "The URL of your feed has bad hash." +msgstr "La URL de tu feed tiene mal el hash." + +#: ../../operation/events/events_rss.php:178 +#: ../../operation/events/events.php:77 ../../mobile/operation/events.php:111 +#: ../../include/functions_graph.php:2256 +#: ../../include/functions_graph.php:2922 +#: ../../include/functions_graph.php:3350 +#: ../../include/functions_graph.php:3353 +#: ../../include/functions_reporting_html.php:878 +#: ../../include/functions_reporting_html.php:1695 +#: ../../include/functions_events.php:988 +#: ../../include/functions_events.php:1419 +#: ../../include/functions_reporting.php:6365 ../../include/functions.php:1042 +#: ../../godmode/setup/setup_general.php:66 +msgid "System" +msgstr "Sistema" + +#: ../../operation/events/event_statistics.php:37 +#: ../../operation/agentes/tactical.php:203 +#: ../../include/functions_events.php:1025 +msgid "Event graph" +msgstr "Gráfica de eventos" + +#: ../../operation/events/event_statistics.php:41 +msgid "Event graph by user" +msgstr "Gráfica de eventos por usuario" + +#: ../../operation/events/event_statistics.php:57 +#: ../../operation/agentes/tactical.php:209 +#: ../../include/functions_events.php:1030 +msgid "Event graph by agent" +msgstr "Gráfica de eventos por agente" + +#: ../../operation/events/event_statistics.php:61 +#: ../../include/functions_reporting_html.php:1769 +msgid "Amount events validated" +msgstr "Cantidad de eventos validados" + +#: ../../operation/events/events.build_table.php:37 +msgid "More detail" +msgstr "Más detalles" + +#: ../../operation/events/events.build_table.php:85 +#: ../../operation/events/events.build_table.php:89 +msgid "The Agent: " +msgstr "El agente: " + +#: ../../operation/events/events.build_table.php:86 +#: ../../operation/events/events.build_table.php:90 +msgid " has " +msgstr " tiene " + +#: ../../operation/events/events.build_table.php:87 +#: ../../operation/events/events.build_table.php:91 +msgid " events." +msgstr " eventos." + +#: ../../operation/events/events.build_table.php:118 +#: ../../operation/events/events.build_table.php:787 +#: ../../mobile/operation/events.php:790 +#: ../../include/functions_reporting_html.php:3769 +#: ../../include/functions_events.php:865 +#: ../../include/functions_events.php:869 +#: ../../include/functions_reporting.php:1327 +#: ../../include/functions_reporting.php:1495 +msgid "No events" +msgstr "No hay eventos" + +#: ../../operation/events/events.build_table.php:133 +#: ../../operation/incidents/incident.php:335 +#: ../../extensions/api_checker.php:137 +#: ../../include/functions_events.php:3511 +#: ../../godmode/alerts/alert_commands.php:331 +#: ../../godmode/setup/os.list.php:33 ../../godmode/groups/group_list.php:337 +#: ../../godmode/groups/modu_group_list.php:182 +#: ../../godmode/modules/module_list.php:58 +#: ../../godmode/agentes/module_manager_editor_common.php:156 +#: ../../godmode/agentes/agent_manager.php:163 +#: ../../godmode/agentes/fields_manager.php:94 +#: ../../godmode/agentes/agent_incidents.php:85 +msgid "ID" +msgstr "ID" + +#: ../../operation/events/events.build_table.php:149 +#: ../../mobile/operation/events.php:469 +#: ../../include/functions_events.php:2333 +#: ../../include/functions_events.php:3525 +msgid "Event ID" +msgstr "ID del evento" + +#: ../../operation/events/events.build_table.php:155 +#: ../../mobile/operation/events.php:108 +#: ../../include/functions_events.php:3530 +msgid "Event Name" +msgstr "Nombre del evento" + +#: ../../operation/events/events.build_table.php:161 +#: ../../mobile/operation/modules.php:495 +#: ../../mobile/operation/modules.php:753 +#: ../../include/functions_treeview.php:555 +#: ../../include/functions_reporting_html.php:2072 +#: ../../include/functions_events.php:36 +#: ../../include/functions_events.php:908 +#: ../../include/functions_events.php:3536 +#: ../../godmode/events/custom_events.php:74 +#: ../../godmode/events/custom_events.php:154 +#: ../../godmode/agentes/agent_manager.php:155 +#: ../../godmode/agentes/modificar_agente.php:477 +msgid "Agent name" +msgstr "Nombre del agente" + +#: ../../operation/events/events.build_table.php:173 +#: ../../operation/events/events.build_table.php:582 +#: ../../operation/search_users.php:68 +#: ../../extensions/disabled/ssh_gateway.php:59 +#: ../../extensions/api_checker.php:114 +#: ../../extensions/users_connected.php:77 +#: ../../mobile/operation/tactical.php:309 +#: ../../mobile/include/user.class.php:245 ../../general/logon_ok.php:224 +#: ../../general/logon_ok.php:420 ../../general/login_page.php:135 +#: ../../general/login_page.php:160 +#: ../../include/functions_reporting_html.php:3585 +#: ../../include/functions_events.php:37 +#: ../../include/functions_events.php:3547 +#: ../../include/functions_events.php:3928 +#: ../../include/functions_config.php:332 +#: ../../include/functions_config.php:343 +#: ../../include/functions_config.php:353 ../../include/functions.php:2312 +#: ../../godmode/setup/setup_ehorus.php:73 +#: ../../godmode/events/custom_events.php:77 +#: ../../godmode/events/custom_events.php:155 +#: ../../godmode/admin_access_logs.php:63 +#: ../../godmode/admin_access_logs.php:188 +msgid "User" +msgstr "Usuario" + +#: ../../operation/events/events.build_table.php:179 +#: ../../operation/incidents/incident_detail.php:266 +#: ../../operation/incidents/incident.php:342 +#: ../../mobile/operation/events.php:477 ../../include/functions_events.php:49 +#: ../../include/functions_events.php:2353 +#: ../../include/functions_events.php:3552 +#: ../../godmode/events/custom_events.php:113 +#: ../../godmode/events/custom_events.php:167 +#: ../../godmode/agentes/agent_incidents.php:92 +msgid "Owner" +msgstr "Propietario" + +#: ../../operation/events/events.build_table.php:198 +#: ../../include/functions_events.php:3568 +msgid "Agent Module" +msgstr "Módulo del agente" + +#: ../../operation/events/events.build_table.php:217 +#: ../../operation/events/events.build_table.php:583 +#: ../../include/functions_events.php:45 +#: ../../include/functions_events.php:1751 +#: ../../include/functions_events.php:3584 +#: ../../include/functions_events.php:3929 +#: ../../godmode/events/custom_events.php:101 +#: ../../godmode/events/custom_events.php:163 +msgid "Comment" +msgstr "Comentar" + +#: ../../operation/events/events.build_table.php:223 +#: ../../operation/users/user_edit.php:506 ../../operation/tree.php:49 +#: ../../operation/agentes/status_monitor.php:340 +#: ../../operation/agentes/status_monitor.php:343 +#: ../../operation/agentes/alerts_status.functions.php:86 +#: ../../operation/agentes/group_view.php:164 +#: ../../mobile/operation/events.php:514 ../../general/firts_task/tags.php:25 +#: ../../include/functions_treeview.php:165 +#: ../../include/functions_reporting_html.php:2113 +#: ../../include/functions_events.php:46 +#: ../../include/functions_events.php:2446 +#: ../../include/functions_events.php:3589 +#: ../../godmode/events/custom_events.php:104 +#: ../../godmode/events/custom_events.php:164 +#: ../../godmode/massive/massive_edit_modules.php:562 +#: ../../godmode/massive/massive_delete_tags.php:187 +#: ../../godmode/massive/massive_add_tags.php:147 +#: ../../godmode/users/configure_user.php:625 +#: ../../godmode/modules/manage_network_components_form_common.php:200 +#: ../../godmode/tag/edit_tag.php:57 +msgid "Tags" +msgstr "Etiquetas" + +#: ../../operation/events/events.build_table.php:229 +#: ../../operation/agentes/pandora_networkmap.editor.php:194 +#: ../../operation/incidents/incident_detail.php:289 +#: ../../operation/incidents/incident.php:341 +#: ../../include/functions_events.php:47 +#: ../../include/functions_events.php:2146 +#: ../../include/functions_events.php:2261 +#: ../../include/functions_events.php:3594 +#: ../../godmode/events/custom_events.php:107 +#: ../../godmode/events/custom_events.php:165 +#: ../../godmode/massive/massive_copy_modules.php:108 +#: ../../godmode/reporting/reporting_builder.item_editor.php:881 +#: ../../godmode/agentes/agent_incidents.php:91 +msgid "Source" +msgstr "Origen" + +#: ../../operation/events/events.build_table.php:235 +#: ../../include/functions_events.php:3599 +msgid "Extra ID" +msgstr "ID Extra" + +#: ../../operation/events/events.build_table.php:241 +#: ../../include/functions_events.php:50 +#: ../../include/functions_events.php:3604 +#: ../../godmode/events/custom_events.php:116 +#: ../../godmode/events/custom_events.php:168 +msgid "ACK Timestamp" +msgstr "ACK Timestamp" + +#: ../../operation/events/events.build_table.php:247 +#: ../../include/functions_events.php:51 +#: ../../include/functions_events.php:2190 +#: ../../include/functions_events.php:2202 +#: ../../include/functions_events.php:2214 +#: ../../include/functions_events.php:2226 +#: ../../include/functions_events.php:2231 +#: ../../include/functions_events.php:2236 +#: ../../include/functions_events.php:2240 +#: ../../include/functions_events.php:3609 +#: ../../godmode/events/custom_events.php:119 +#: ../../godmode/events/custom_events.php:169 +msgid "Instructions" +msgstr "Instrucciones" + +#: ../../operation/events/events.build_table.php:304 +#: ../../mobile/operation/events.php:247 ../../include/ajax/events.php:447 +#: ../../include/functions_reporting_html.php:845 +#: ../../include/functions_reporting_html.php:1061 +#: ../../include/functions_reporting_html.php:1667 +#: ../../include/functions_events.php:928 +#: ../../include/functions_events.php:2402 +#: ../../include/functions_events.php:3657 +#: ../../include/functions_reporting.php:6339 +msgid "New event" +msgstr "Nuevo evento" + +#: ../../operation/events/events.build_table.php:308 +#: ../../operation/events/events.php:614 ../../operation/events/events.php:643 +#: ../../operation/events/events.php:644 ../../operation/events/events.php:864 +#: ../../operation/events/events.php:869 ../../operation/events/events.php:870 +#: ../../mobile/operation/events.php:251 ../../include/ajax/events.php:451 +#: ../../include/functions_reporting_html.php:849 +#: ../../include/functions_reporting_html.php:1065 +#: ../../include/functions_reporting_html.php:1671 +#: ../../include/functions_events.php:932 +#: ../../include/functions_events.php:2406 +#: ../../include/functions_events.php:3661 +#: ../../include/functions_reporting.php:6343 +msgid "Event validated" +msgstr "Evento validado" + +#: ../../operation/events/events.build_table.php:312 +#: ../../operation/events/events.php:676 ../../operation/events/events.php:714 +#: ../../operation/events/events.php:715 ../../operation/events/events.php:874 +#: ../../operation/events/events.php:888 ../../operation/events/events.php:889 +#: ../../mobile/operation/events.php:255 ../../include/ajax/events.php:455 +#: ../../include/functions_reporting_html.php:853 +#: ../../include/functions_reporting_html.php:1069 +#: ../../include/functions_reporting_html.php:1675 +#: ../../include/functions_events.php:936 +#: ../../include/functions_events.php:2410 +#: ../../include/functions_events.php:3665 +#: ../../include/functions_reporting.php:6347 +msgid "Event in process" +msgstr "Evento en proceso" + +#: ../../operation/events/events.build_table.php:581 +#: ../../operation/reporting/graph_viewer.php:195 +#: ../../operation/netflow/nf_live_view.php:234 +#: ../../extensions/insert_data.php:182 +#: ../../extensions/users_connected.php:79 +#: ../../mobile/operation/tactical.php:310 ../../general/logon_ok.php:226 +#: ../../general/logon_ok.php:423 +#: ../../include/functions_reporting_html.php:1806 +#: ../../include/functions_reporting_html.php:1810 +#: ../../include/functions_reporting_html.php:1813 +#: ../../include/functions_reporting_html.php:1828 +#: ../../include/functions_reporting_html.php:3588 +#: ../../include/functions_events.php:3927 +#: ../../include/functions_reporting.php:2349 +#: ../../include/functions_reporting.php:2382 ../../include/functions.php:2314 +#: ../../godmode/alerts/configure_alert_special_days.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1116 +#: ../../godmode/admin_access_logs.php:190 +msgid "Date" +msgstr "Fecha" + +#: ../../operation/events/events.build_table.php:677 +#: ../../include/functions_events.php:4023 +msgid "Validate event" +msgstr "Validar evento" + +#: ../../operation/events/events.build_table.php:687 +#: ../../include/functions_events.php:1759 +#: ../../include/functions_events.php:1761 +#: ../../include/functions_events.php:4033 +msgid "Delete event" +msgstr "Eliminar evento" + +#: ../../operation/events/events.build_table.php:692 +#: ../../operation/events/events.php:705 ../../operation/events/events.php:709 +#: ../../operation/events/events.php:879 ../../operation/events/events.php:883 +#: ../../include/functions_events.php:4038 +msgid "Is not allowed delete events in process" +msgstr "No puede borrar eventos en proceso" + +#: ../../operation/events/events.build_table.php:754 +msgid "Validate selected" +msgstr "Validar selección" + +#: ../../operation/events/events.build_table.php:770 +#: ../../godmode/snmpconsole/snmp_alert.php:1331 +#: ../../godmode/agentes/agent_manager.php:220 +msgid "Delete selected" +msgstr "Borrar seleccionado(s)" + +#: ../../operation/events/sound_events.php:68 +msgid "Sound console" +msgstr "Consola sonora" + +#: ../../operation/events/sound_events.php:82 +#: ../../operation/events/events.php:72 +#: ../../operation/netflow/nf_live_view.php:254 +#: ../../operation/search_modules.php:49 +#: ../../operation/agentes/ver_agente.php:806 +#: ../../mobile/operation/networkmaps.php:77 +#: ../../mobile/operation/networkmaps.php:78 +#: ../../mobile/operation/networkmaps.php:140 +#: ../../mobile/operation/networkmaps.php:141 +#: ../../mobile/operation/networkmaps.php:196 +#: ../../mobile/operation/visualmaps.php:61 +#: ../../mobile/operation/visualmaps.php:62 +#: ../../mobile/operation/events.php:352 ../../mobile/operation/events.php:353 +#: ../../mobile/operation/events.php:481 ../../mobile/operation/events.php:622 +#: ../../mobile/operation/events.php:623 +#: ../../include/functions_snmp_browser.php:410 +#: ../../include/ajax/module.php:738 +#: ../../include/functions_visual_map_editor.php:400 +#: ../../include/functions_visual_map_editor.php:419 +#: ../../include/functions_reporting_html.php:809 +#: ../../include/functions_reporting_html.php:818 +#: ../../include/functions_reporting_html.php:1023 +#: ../../include/functions_reporting_html.php:1033 +#: ../../include/functions_reporting_html.php:1641 +#: ../../include/functions_reporting_html.php:2105 +#: ../../include/functions_reporting_html.php:3095 +#: ../../include/functions_events.php:901 +#: ../../include/functions_events.php:2367 +#: ../../godmode/alerts/alert_templates.php:38 +#: ../../godmode/alerts/alert_templates.php:253 +#: ../../godmode/alerts/alert_templates.php:301 +#: ../../godmode/setup/news.php:221 ../../godmode/setup/gis_step_2.php:171 +#: ../../godmode/events/event_responses.editor.php:115 +#: ../../godmode/reporting/visual_console_builder.wizard.php:111 +#: ../../godmode/reporting/visual_console_builder.wizard.php:216 +#: ../../godmode/reporting/reporting_builder.item_editor.php:620 +#: ../../godmode/reporting/reporting_builder.list_items.php:166 #: ../../godmode/reporting/reporting_builder.list_items.php:193 -#: ../../godmode/reporting/visual_console_builder.wizard.php:294 -#: ../../godmode/servers/servers.build_table.php:68 -#: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:3246 +#: ../../godmode/reporting/reporting_builder.list_items.php:286 +#: ../../godmode/servers/servers.build_table.php:66 +#: ../../godmode/servers/plugin.php:736 +#: ../../godmode/modules/manage_network_components.php:566 +#: ../../godmode/modules/manage_network_templates_form.php:197 +#: ../../godmode/modules/manage_network_components_form_common.php:69 +#: ../../godmode/agentes/module_manager_editor_common.php:186 +#: ../../godmode/agentes/planned_downtime.editor.php:485 +#: ../../godmode/agentes/module_manager.php:131 +#: ../../godmode/agentes/module_manager.php:557 +#: ../../godmode/agentes/planned_downtime.list.php:394 +#: ../../godmode/agentes/agent_template.php:229 +msgid "Type" +msgstr "Tipo" + +#: ../../operation/events/sound_events.php:84 +#: ../../include/functions_reporting.php:7125 +msgid "Monitor critical" +msgstr "Monitor crítico" + +#: ../../operation/events/sound_events.php:85 +#: ../../include/functions_reporting.php:7140 +msgid "Monitor unknown" +msgstr "Monitor desconocido" + +#: ../../operation/events/sound_events.php:86 +#: ../../include/functions_reporting.php:7129 +msgid "Monitor warning" +msgstr "Monitor warning" + +#: ../../operation/events/events.php:71 +msgid "Event" +msgstr "Evento" + +#: ../../operation/events/events.php:195 +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, contacte con el administrador para obtener más información." + +#: ../../operation/events/events.php:334 +#: ../../operation/users/user_edit.php:278 ../../godmode/events/events.php:37 +msgid "Event list" +msgstr "Lista de eventos" + +#: ../../operation/events/events.php:339 +msgid "History event list" +msgstr "Lista histórica de eventos" + +#: ../../operation/events/events.php:344 +msgid "RSS Events" +msgstr "Eventos RSS" + +#: ../../operation/events/events.php:349 +msgid "Marquee display" +msgstr "Marquesina deslizante" + +#: ../../operation/events/events.php:354 +msgid "Export to CSV file" +msgstr "Exportar a un archivo CSV" + +#: ../../operation/events/events.php:358 ../../operation/events/events.php:397 +msgid "Sound events" +msgstr "Eventos sonoros" + +#: ../../operation/events/events.php:365 ../../godmode/events/events.php:85 +#: ../../godmode/events/events.php:88 +#: ../../godmode/users/configure_profile.php:283 +msgid "Manage events" +msgstr "Gestionar eventos" + +#: ../../operation/events/events.php:401 +msgid "History" +msgstr "Historial" + +#: ../../operation/events/events.php:446 +msgid "Main event view" +msgstr "Vista principal de eventos" + +#: ../../operation/events/events.php:452 +#: ../../operation/reporting/graph_viewer.php:159 +#: ../../operation/reporting/reporting_viewer.php:108 +#: ../../operation/visual_console/render_view.php:167 +#: ../../operation/gis_maps/render_view.php:115 +#: ../../extensions/agents_modules.php:120 +#: ../../extensions/agents_alerts.php:96 +msgid "Back to normal mode" +msgstr "Volver a modo normal" + +#: ../../operation/events/events.php:464 +msgid "No events selected" +msgstr "No se han seleccionado eventos" + +#: ../../operation/events/events.php:490 +msgid "Successfully validated" +msgstr "Validado correctamente" + +#: ../../operation/events/events.php:491 ../../operation/events/events.php:768 +#: ../../operation/events/events.php:920 +msgid "Could not be validated" +msgstr "No se pudo validar" + +#: ../../operation/events/events.php:495 +msgid "Successfully set in process" +msgstr "Correctamente establecido en modo \"en proceso\"" + +#: ../../operation/events/events.php:496 +msgid "Could not be set in process" +msgstr "No se ha podido establecer en modo \"en proceso\"" + +#: ../../operation/events/events.php:800 +msgid "Successfully delete" +msgstr "Borrado satisfactoriamente" + +#: ../../operation/events/events.php:803 +msgid "Error deleting event" +msgstr "Error al eliminar evento" + +#: ../../operation/users/webchat.php:71 +msgid "Webchat" +msgstr "Chat de la Web" + +#: ../../operation/users/webchat.php:82 +msgid "Users Online" +msgstr "Usuarios en linea" + +#: ../../operation/users/webchat.php:86 +#: ../../operation/messages/message_edit.php:92 +#: ../../operation/messages/message_edit.php:210 +msgid "Message" +msgstr "Mensaje" + +#: ../../operation/users/webchat.php:90 +#: ../../operation/messages/message_edit.php:217 +msgid "Send message" +msgstr "Enviar mensaje" + +#: ../../operation/users/webchat.php:157 +msgid "Connection established...get last 24h messages..." +msgstr "Conexión establecida. Obtener mensajes de las últimas 24 horas" + +#: ../../operation/users/webchat.php:168 +msgid "Error in connection." +msgstr "Error en la conexión" + +#: ../../operation/users/webchat.php:249 +msgid "Error sendding message." +msgstr "Error al enviar mensaje" + +#: ../../operation/users/webchat.php:277 +msgid "Error login." +msgstr "Error al acceder al sistema" + +#: ../../operation/users/user_edit.php:62 +#: ../../godmode/users/configure_user.php:90 +msgid "User detail editor" +msgstr "Editor de detalles de usuario" + +#: ../../operation/users/user_edit.php:130 +#: ../../operation/users/user_edit.php:137 +msgid "Password successfully updated" +msgstr "Contraseña actualizada correctamente" + +#: ../../operation/users/user_edit.php:131 +#: ../../operation/users/user_edit.php:138 +#, php-format +msgid "Error updating passwords: %s" +msgstr "Error al actualizar las contraseñas: %s" + +#: ../../operation/users/user_edit.php:143 +msgid "" +"Passwords didn't match or other problem encountered while updating passwords" +msgstr "" +"Las contraseñas no coincidían o se encontró otro problema al actualizar las " +"contraseñas" + +#: ../../operation/users/user_edit.php:154 +#: ../../operation/users/user_edit.php:164 +#: ../../godmode/users/configure_user.php:303 +#: ../../godmode/users/configure_user.php:313 +#: ../../godmode/users/configure_user.php:341 +#: ../../godmode/users/configure_user.php:347 +#: ../../godmode/users/configure_user.php:375 +msgid "User info successfully updated" +msgstr "Información del usuario actualizada correctamente" + +#: ../../operation/users/user_edit.php:155 +#: ../../operation/users/user_edit.php:165 +msgid "Error updating user info" +msgstr "Error al actualizar la información del usuario" + +#: ../../operation/users/user_edit.php:175 +msgid "Edit my User" +msgstr "Editar mi Usuario" + +#: ../../operation/users/user_edit.php:186 +#: ../../godmode/users/configure_user.php:445 +msgid "Full (display) name" +msgstr "Nombre completo" + +#: ../../operation/users/user_edit.php:208 +#: ../../godmode/users/configure_user.php:477 +#: ../../godmode/users/user_list.php:407 +msgid "E-mail" +msgstr "Correo-e" + +#: ../../operation/users/user_edit.php:210 +#: ../../godmode/users/configure_user.php:481 +msgid "Phone number" +msgstr "Número de teléfono" + +#: ../../operation/users/user_edit.php:219 +msgid "New Password" +msgstr "Contraseña nueva" + +#: ../../operation/users/user_edit.php:221 +#: ../../godmode/users/configure_user.php:457 +msgid "Password confirmation" +msgstr "Confirmar contraseña" + +#: ../../operation/users/user_edit.php:229 +msgid "" +"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 " +"autenticación" + +#: ../../operation/users/user_edit.php:238 +msgid "If checkbox is clicked then block size global configuration is used" +msgstr "" +"Si se marca el checkbox entonces el tamaño de bloque de la configuración " +"global será usado" + +#: ../../operation/users/user_edit.php:251 +#: ../../include/functions_config.php:469 +#: ../../godmode/setup/setup_visuals.php:459 +#: ../../godmode/users/configure_user.php:515 +msgid "Interactive charts" +msgstr "Gráficas interactivas" + +#: ../../operation/users/user_edit.php:251 +#: ../../godmode/setup/setup_visuals.php:460 +#: ../../godmode/users/configure_user.php:515 +msgid "Whether to use Javascript or static PNG graphs" +msgstr "Si usar Javascript or graficas estáticas PNG" + +#: ../../operation/users/user_edit.php:255 +#: ../../godmode/users/configure_user.php:449 +msgid "Language" +msgstr "Idioma" + +#: ../../operation/users/user_edit.php:274 +msgid "Home screen" +msgstr "Pantalla de inicio" + +#: ../../operation/users/user_edit.php:274 +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" +msgstr "" +"El usuario puede personalizar la página principal . Por defecto, desplegará " +"'Detalle del Agente'. Ejemplo: Seleccione 'Otro' y type " +"sec=estado&sec2=operation/agentes/estado_agente para mostrarla vista " +"detallada del agente." + +#: ../../operation/users/user_edit.php:284 +#: ../../mobile/include/functions_web.php:21 +msgid "Dashboard" +msgstr "Dashboard" + +#: ../../operation/users/user_edit.php:322 +#: ../../godmode/users/configure_user.php:509 +#: ../../godmode/groups/configure_group.php:196 +msgid "Skin" +msgstr "Skin" + +#: ../../operation/users/user_edit.php:334 +#: ../../include/functions_config.php:359 +#: ../../godmode/setup/setup_auth.php:128 +msgid "Double authentication" +msgstr "Doble autenticación" + +#: ../../operation/users/user_edit.php:339 +msgid "Show information" +msgstr "Mostrar información" + +#: ../../operation/users/user_edit.php:345 +msgid "Event filter" +msgstr "Filtro de eventos" + +#: ../../operation/users/user_edit.php:350 +msgid "Newsletter Subscribed" +msgstr "Suscrito al boletín informativo" + +#: ../../operation/users/user_edit.php:352 +msgid "Already subscribed to Pandora FMS newsletter" +msgstr "Ya está suscrito al boletín informativo de Pandora FMS" + +#: ../../operation/users/user_edit.php:355 +#: ../../general/login_identification_wizard.php:167 +msgid "Subscribe to our newsletter" +msgstr "Suscríbete a nuestro boletín" + +#: ../../operation/users/user_edit.php:358 +msgid "Newsletter Reminder" +msgstr "Recordatorio del boletín informativo" + +#: ../../operation/users/user_edit.php:414 +msgid "Autorefresh" +msgstr "Autorefresco" + +#: ../../operation/users/user_edit.php:414 +msgid "This will activate autorefresh in selected pages" +msgstr "Esto activará el auto refresco en las páginas seleccionadas" + +#: ../../operation/users/user_edit.php:421 +msgid "Full list of pages" +msgstr "Lista entera de páginas" + +#: ../../operation/users/user_edit.php:423 +msgid "List of pages with autorefresh" +msgstr "Lista de páginas con auto refresco" + +#: ../../operation/users/user_edit.php:429 +msgid "Push selected pages into autorefresh list" +msgstr "Añadir las páginas seleccionadas a la lista de auto refresco" + +#: ../../operation/users/user_edit.php:433 +msgid "Pop selected pages out of autorefresh list" +msgstr "Quitar las páginas seleccionadas de la lista de auto refresco" + +#: ../../operation/users/user_edit.php:448 +#: ../../mobile/operation/events.php:518 ../../general/logon_ok.php:228 +#: ../../general/logon_ok.php:425 ../../include/ajax/events.php:302 +#: ../../include/functions_reporting_html.php:3590 +#: ../../include/functions.php:2316 ../../godmode/users/configure_user.php:485 +#: ../../godmode/servers/manage_recontask_form.php:359 +#: ../../godmode/admin_access_logs.php:192 +msgid "Comments" +msgstr "Comentarios" + +#: ../../operation/users/user_edit.php:469 +msgid "" +"You can not change your user info from Pandora FMS under the current " +"authentication scheme" +msgstr "" +"No puede cambiar su información de usuario desde Pandora FMS bajo el actual " +"esquema de autenticación" + +#: ../../operation/users/user_edit.php:479 +#: ../../operation/users/user_edit.php:487 +#: ../../godmode/users/configure_user.php:604 +#: ../../godmode/users/configure_user.php:613 +msgid "Profiles/Groups assigned to this user" +msgstr "Perfiles/Grupos asignados a este usuario" + +#: ../../operation/users/user_edit.php:504 +#: ../../godmode/massive/massive_delete_profiles.php:102 +#: ../../godmode/massive/massive_add_profiles.php:88 +#: ../../godmode/users/configure_profile.php:242 +#: ../../godmode/users/configure_user.php:623 +msgid "Profile name" +msgstr "Nombre del perfil" + +#: ../../operation/users/user_edit.php:541 +msgid "This user doesn't have any assigned profile/group." +msgstr "Esté usuario no tiene asignado ningún perfil/grupo" + +#: ../../operation/users/user_edit.php:693 +#: ../../operation/users/user_edit.php:758 +#: ../../operation/users/user_edit.php:829 ../../general/logon_failed.php:21 +#: ../../include/ajax/double_auth.ajax.php:247 +#: ../../include/ajax/double_auth.ajax.php:342 +#: ../../include/ajax/double_auth.ajax.php:387 +#: ../../include/ajax/double_auth.ajax.php:501 +msgid "Authentication error" +msgstr "Error de autenticación" + +#: ../../operation/users/user_edit.php:696 +#: ../../operation/users/user_edit.php:761 +#: ../../extensions/system_info.php:533 ../../extensions/system_info.php:594 +#: ../../include/ajax/double_auth.ajax.php:250 +#: ../../include/ajax/double_auth.ajax.php:345 +#: ../../include/ajax/double_auth.ajax.php:390 +#: ../../include/ajax/double_auth.ajax.php:505 +#: ../../include/functions_ui.php:228 ../../include/functions_events.php:1176 +#: ../../include/functions_events.php:1422 ../../include/functions.php:1043 +#: ../../godmode/massive/massive_edit_plugins.php:813 +#: ../../godmode/massive/massive_edit_plugins.php:814 +#: ../../godmode/db/db_refine.php:42 ../../godmode/db/db_refine.php:47 +msgid "Error" +msgstr "Error" + +#: ../../operation/users/user_edit.php:700 +#: ../../operation/users/user_edit.php:765 +#: ../../include/ajax/double_auth.ajax.php:254 +#: ../../include/ajax/double_auth.ajax.php:349 +#: ../../include/ajax/double_auth.ajax.php:394 +#: ../../include/ajax/double_auth.ajax.php:509 +msgid "There was an error loading the data" +msgstr "Se ha producido un error al cargar los datos" + +#: ../../operation/users/user_edit.php:710 +msgid "Double autentication information" +msgstr "Información sobre la doble autenticación" + +#: ../../operation/users/user_edit.php:773 +#: ../../operation/users/user_edit.php:849 +msgid "Double autentication activation" +msgstr "Activación de la doble autenticación" + +#: ../../operation/users/user_edit.php:799 +msgid "The double authentication will be deactivated" +msgstr "La doble autenticación se desactivará" + +#: ../../operation/users/user_edit.php:800 +msgid "Deactivate" +msgstr "Desactivado" + +#: ../../operation/users/user_edit.php:832 +msgid "The double autentication was deactivated successfully" +msgstr "La doble autenticación fue desactivada con éxito" + +#: ../../operation/users/user_edit.php:835 +#: ../../operation/users/user_edit.php:839 +msgid "There was an error deactivating the double autentication" +msgstr "Ha habido un error al desactivar la doble autenticación" + +#: ../../operation/reporting/custom_reporting.php:32 +#: ../../operation/reporting/graph_viewer.php:344 +msgid "There are no defined reportings" +msgstr "No hay informes definidos" + +#: ../../operation/reporting/graph_viewer.php:36 +#: ../../operation/reporting/graph_viewer.php:43 +#: ../../godmode/events/event_filter.php:57 +#: ../../godmode/events/event_filter.php:78 +#: ../../godmode/reporting/map_builder.php:94 +#: ../../godmode/reporting/graphs.php:88 ../../godmode/reporting/graphs.php:98 +#: ../../godmode/reporting/graphs.php:137 +#: ../../godmode/netflow/nf_item_list.php:106 +#: ../../godmode/netflow/nf_item_list.php:127 +#: ../../godmode/netflow/nf_edit.php:77 ../../godmode/netflow/nf_edit.php:101 +#: ../../godmode/modules/manage_nc_groups.php:123 +#: ../../godmode/agentes/planned_downtime.list.php:108 +msgid "Not deleted. Error deleting data" +msgstr "No se pudo borrar. Error al borrar los datos." + +#: ../../operation/reporting/graph_viewer.php:137 +#: ../../godmode/reporting/graph_builder.php:203 +#: ../../godmode/reporting/graphs.php:43 ../../godmode/reporting/graphs.php:53 +msgid "Graph list" +msgstr "Lista de la gráfica" + +#: ../../operation/reporting/graph_viewer.php:140 +#: ../../operation/reporting/reporting_viewer.php:82 +#: ../../operation/visual_console/pure_ajax.php:110 +#: ../../operation/visual_console/render_view.php:113 +#: ../../godmode/reporting/reporting_builder.main.php:51 +#: ../../godmode/reporting/graph_builder.php:206 +#: ../../godmode/reporting/reporting_builder.php:1957 +#: ../../godmode/reporting/reporting_builder.php:1985 +#: ../../godmode/reporting/visual_console_builder.php:668 +msgid "Main data" +msgstr "Datos principales" + +#: ../../operation/reporting/graph_viewer.php:143 +#: ../../godmode/reporting/graph_builder.php:209 +msgid "Graph editor" +msgstr "Editor de Gráficas" + +#: ../../operation/reporting/graph_viewer.php:149 +#: ../../godmode/reporting/graph_builder.php:212 +msgid "View graph" +msgstr "Ver gráfica" + +#: ../../operation/reporting/graph_viewer.php:154 +#: ../../operation/reporting/reporting_viewer.php:103 +#: ../../operation/visual_console/pure_ajax.php:136 +#: ../../operation/visual_console/render_view.php:139 +#: ../../operation/gis_maps/render_view.php:111 +#: ../../extensions/disabled/matrix_events.php:31 +#: ../../extensions/agents_modules.php:115 +#: ../../extensions/agents_alerts.php:91 +msgid "Full screen mode" +msgstr "Modo a pantalla completa" + +#: ../../operation/reporting/graph_viewer.php:184 +msgid "No data." +msgstr "Sin datos." + +#: ../../operation/reporting/graph_viewer.php:207 +#: ../../operation/agentes/interface_traffic_graph_win.php:233 +#: ../../operation/agentes/stat_win.php:338 +#: ../../operation/agentes/graphs.php:136 +msgid "Time range" +msgstr "Rango de tiempo" + +#: ../../operation/reporting/graph_viewer.php:216 +#: ../../operation/reporting/graph_viewer.php:239 +msgid "Graph defined" +msgstr "Gráfico definido" + +#: ../../operation/reporting/graph_viewer.php:217 +#: ../../include/functions_visual_map_editor.php:325 +#: ../../godmode/setup/setup_visuals.php:481 +#: ../../godmode/setup/setup_visuals.php:490 +#: ../../godmode/reporting/graph_builder.main.php:157 +msgid "Area" +msgstr "Área" + +#: ../../operation/reporting/graph_viewer.php:218 +#: ../../godmode/reporting/graph_builder.main.php:158 +msgid "Stacked area" +msgstr "Área apilada" + +#: ../../operation/reporting/graph_viewer.php:219 +#: ../../include/functions_visual_map_editor.php:63 +#: ../../include/functions_visual_map_editor.php:324 +#: ../../include/functions_visual_map_editor.php:612 +#: ../../godmode/setup/setup_visuals.php:484 +#: ../../godmode/setup/setup_visuals.php:493 +#: ../../godmode/reporting/visual_console_builder.elements.php:198 +#: ../../godmode/reporting/graph_builder.main.php:159 +msgid "Line" +msgstr "Línea" + +#: ../../operation/reporting/graph_viewer.php:220 +#: ../../godmode/reporting/graph_builder.main.php:160 +msgid "Stacked line" +msgstr "Línea apilada" + +#: ../../operation/reporting/graph_viewer.php:221 +#: ../../godmode/reporting/graph_builder.main.php:161 +msgid "Bullet chart" +msgstr "gráfico bala" + +#: ../../operation/reporting/graph_viewer.php:222 +#: ../../godmode/reporting/graph_builder.main.php:162 +msgid "Gauge" +msgstr "Medidor" + +#: ../../operation/reporting/graph_viewer.php:223 +msgid "Horizontal Bars" +msgstr "Barras horizontales" + +#: ../../operation/reporting/graph_viewer.php:224 +msgid "Vertical Bars" +msgstr "Barras verticales" + +#: ../../operation/reporting/graph_viewer.php:225 +#: ../../godmode/reporting/graph_builder.main.php:165 +msgid "Pie" +msgstr "Gráfico Circular" + +#: ../../operation/reporting/graph_viewer.php:230 +#: ../../godmode/reporting/graph_builder.main.php:169 +msgid "Equalize maximum thresholds" +msgstr "Igualar umbrales máximos" + +#: ../../operation/reporting/graph_viewer.php:231 +#: ../../godmode/reporting/graph_builder.main.php:170 +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:240 +msgid "Zoom x1" +msgstr "Ampliación x1" + +#: ../../operation/reporting/graph_viewer.php:241 +msgid "Zoom x2" +msgstr "Ampliación x2" + +#: ../../operation/reporting/graph_viewer.php:242 +msgid "Zoom x3" +msgstr "Ampliación x3" + +#: ../../operation/reporting/graph_viewer.php:247 +#: ../../operation/visual_console/render_view.php:176 +#: ../../operation/visual_console/public_console.php:112 +#: ../../operation/servers/recon_view.php:49 +#: ../../extensions/agents_modules.php:101 +#: ../../extensions/agents_alerts.php:79 ../../general/login_page.php:46 +#: ../../general/login_page.php:199 +#: ../../include/functions_pandora_networkmap.php:751 +#: ../../include/ajax/module.php:807 +msgid "Refresh" +msgstr "Refrescar" + +#: ../../operation/reporting/graph_viewer.php:310 +#: ../../operation/reporting/reporting_viewer.php:314 +msgid "Invalid date selected" +msgstr "Fecha seleccionada inválida" + +#: ../../operation/reporting/graph_viewer.php:317 +msgid "Custom graph viewer" +msgstr "Visor de imágenes personalizadas" + +#: ../../operation/reporting/graph_viewer.php:328 +#: ../../operation/search_graphs.php:33 ../../godmode/reporting/graphs.php:152 +msgid "Graph name" +msgstr "Nombre gráfica" + +#: ../../operation/reporting/reporting_viewer.php:77 +#: ../../godmode/netflow/nf_item_list.php:39 +msgid "Report list" +msgstr "Lista de informes" + +#: ../../operation/reporting/reporting_viewer.php:86 +#: ../../godmode/reporting/reporting_builder.php:1960 +msgid "List items" +msgstr "Listado de elementos" + +#: ../../operation/reporting/reporting_viewer.php:90 +#: ../../godmode/reporting/reporting_builder.php:1963 +msgid "Item editor" +msgstr "Editor de elementos" + +#: ../../operation/reporting/reporting_viewer.php:98 +#: ../../godmode/reporting/reporting_builder.php:1972 +msgid "View report" +msgstr "Ver informe" + +#: ../../operation/reporting/reporting_viewer.php:147 +msgid "View Report" +msgstr "Ver Informe" + +#: ../../operation/reporting/reporting_viewer.php:186 +msgid "Set initial date" +msgstr "Fijar fecha de inicio" + +#: ../../operation/reporting/reporting_viewer.php:194 +#: ../../operation/agentes/gis_view.php:181 +#: ../../godmode/alerts/alert_list.list.php:532 +#: ../../godmode/alerts/alert_list.list.php:536 +#: ../../godmode/alerts/alert_templates.php:94 +#: ../../godmode/agentes/planned_downtime.list.php:143 +msgid "From" +msgstr "De" + +#: ../../operation/reporting/reporting_viewer.php:197 +#: ../../include/functions_reporting_html.php:119 +msgid "Items period before" +msgstr "Periodo de elementos antes de" + +#: ../../operation/reporting/reporting_viewer.php:198 +#: ../../include/ajax/alert_list.ajax.php:159 +#: ../../include/functions_reporting.php:9962 +#: ../../godmode/alerts/alert_list.list.php:533 +#: ../../godmode/alerts/alert_list.list.php:619 +#: ../../godmode/alerts/alert_list.builder.php:99 +#: ../../godmode/alerts/alert_templates.php:96 +#: ../../godmode/massive/massive_add_action_alerts.php:185 +msgid "to" +msgstr "a" + +#: ../../operation/reporting/reporting_viewer.php:212 +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:234 +#: ../../extensions/system_info.php:496 ../../general/ui/agents_list.php:121 +#: ../../godmode/massive/massive_copy_modules.php:164 +msgid "Loading" +msgstr "Cargando" + +#: ../../operation/tree.php:55 ../../operation/tree.php:94 +#: ../../operation/gis_maps/ajax.php:276 ../../operation/search_agents.php:45 +#: ../../operation/search_agents.php:53 +#: ../../operation/agentes/estado_generalagente.php:127 +#: ../../operation/agentes/estado_agente.php:507 +#: ../../mobile/operation/agents.php:73 ../../mobile/operation/agents.php:316 +#: ../../include/functions_reporting_html.php:2074 +#: ../../include/functions_events.php:2033 +#: ../../godmode/massive/massive_edit_agents.php:305 +#: ../../godmode/servers/manage_recontask_form.php:291 +#: ../../godmode/servers/manage_recontask.php:291 +#: ../../godmode/agentes/planned_downtime.editor.php:755 +#: ../../godmode/agentes/agent_manager.php:282 +#: ../../godmode/agentes/modificar_agente.php:485 +msgid "OS" +msgstr "SO" + +#: ../../operation/tree.php:61 +#: ../../operation/agentes/pandora_networkmap.php:400 +#: ../../extensions/files_repo/files_repo_form.php:65 +#: ../../mobile/operation/home.php:50 ../../mobile/operation/groups.php:66 +#: ../../mobile/include/functions_web.php:26 +#: ../../include/functions_maps.php:40 +#: ../../include/functions_networkmap.php:1632 +#: ../../godmode/reporting/visual_console_builder.wizard.php:260 +msgid "Groups" +msgstr "Grupos" + +#: ../../operation/tree.php:67 ../../extensions/module_groups.php:325 +#: ../../godmode/menu.php:49 +msgid "Module groups" +msgstr "Grupos de Módulos" + +#: ../../operation/tree.php:73 ../../operation/search_results.php:134 +#: ../../operation/search_agents.php:63 +#: ../../operation/agentes/exportdata.php:275 +#: ../../operation/agentes/group_view.php:121 +#: ../../operation/agentes/group_view.php:159 +#: ../../operation/agentes/estado_agente.php:522 +#: ../../operation/agentes/graphs.php:123 +#: ../../extensions/agents_modules.php:313 ../../mobile/operation/home.php:64 +#: ../../mobile/operation/agents.php:79 ../../mobile/operation/agents.php:327 +#: ../../mobile/operation/agents.php:328 ../../mobile/operation/agent.php:233 +#: ../../mobile/operation/modules.php:186 #: ../../include/functions_reports.php:563 #: ../../include/functions_reports.php:565 #: ../../include/functions_reports.php:567 @@ -1329,123 +3501,3530 @@ msgstr "No hay agentes con módulos" #: ../../include/functions_reports.php:571 #: ../../include/functions_reports.php:573 #: ../../include/functions_reports.php:575 -#: ../../mobile/operation/agent.php:233 ../../mobile/operation/agents.php:79 -#: ../../mobile/operation/agents.php:327 ../../mobile/operation/agents.php:328 -#: ../../mobile/operation/home.php:64 ../../mobile/operation/modules.php:186 -#: ../../operation/agentes/estado_agente.php:522 -#: ../../operation/agentes/exportdata.php:275 -#: ../../operation/agentes/graphs.php:123 -#: ../../operation/agentes/group_view.php:121 -#: ../../operation/agentes/group_view.php:159 -#: ../../operation/search_agents.php:63 ../../operation/search_results.php:134 -#: ../../operation/tree.php:73 -#: ../../enterprise/dashboard/widgets/agent_module.php:256 -#: ../../enterprise/dashboard/widgets/groups_status.php:160 -#: ../../enterprise/dashboard/widgets/service_map.php:98 -#: ../../enterprise/dashboard/widgets/top_n.php:332 -#: ../../enterprise/dashboard/widgets/tree_view.php:37 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:104 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93 -#: ../../enterprise/godmode/policies/policies.php:389 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:788 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:430 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:309 -#: ../../enterprise/godmode/policies/policy_modules.php:389 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:172 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:156 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:161 -#: ../../enterprise/include/functions_policies.php:3212 -#: ../../enterprise/include/functions_reporting_pdf.php:562 -#: ../../enterprise/include/functions_reporting_pdf.php:714 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 -#: ../../enterprise/meta/agentsearch.php:97 -#: ../../enterprise/meta/include/functions_wizard_meta.php:305 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1649 -#: ../../enterprise/meta/monitoring/group_view.php:99 -#: ../../enterprise/meta/monitoring/group_view.php:137 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:407 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:515 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:596 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:225 -#: ../../enterprise/operation/services/services.service_map.php:140 +#: ../../include/functions_reporting_html.php:1322 +#: ../../include/functions_reporting_html.php:3236 +#: ../../godmode/massive/massive_edit_plugins.php:308 +#: ../../godmode/massive/massive_delete_modules.php:479 +#: ../../godmode/massive/massive_copy_modules.php:144 +#: ../../godmode/massive/massive_edit_modules.php:308 +#: ../../godmode/massive/massive_delete_tags.php:199 +#: ../../godmode/massive/massive_add_tags.php:139 +#: ../../godmode/reporting/graph_builder.graph_editor.php:148 +#: ../../godmode/reporting/visual_console_builder.wizard.php:294 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1053 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1097 +#: ../../godmode/reporting/reporting_builder.list_items.php:164 +#: ../../godmode/reporting/reporting_builder.list_items.php:190 +#: ../../godmode/db/db_refine.php:95 +#: ../../godmode/servers/servers.build_table.php:68 +#: ../../godmode/agentes/configurar_agente.php:302 +#: ../../godmode/agentes/configurar_agente.php:535 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:437 +#: ../../godmode/agentes/planned_downtime.editor.php:757 +#: ../../godmode/agentes/planned_downtime.editor.php:831 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:311 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:804 +#: ../../godmode/agentes/modificar_agente.php:574 msgid "Modules" msgstr "Módulos" -#: ../../extensions/agents_modules.php:411 -msgid "Previous modules" -msgstr "Módulos anteriores" +#: ../../operation/tree.php:80 ../../include/functions_maps.php:37 +#: ../../include/functions_networkmap.php:1635 +msgid "Policies" +msgstr "Políticas" -#: ../../extensions/agents_modules.php:450 -msgid "More modules" -msgstr "Más modulos" +#: ../../operation/tree.php:88 +#, php-format +msgid "Sort the agents by %s" +msgstr "Ordenar los agentes por %s" -#: ../../extensions/agents_modules.php:569 -#: ../../extensions/module_groups.php:296 -#: ../../godmode/snmpconsole/snmp_alert.php:1343 -#: ../../include/functions_reporting_html.php:1444 -#: ../../operation/snmpconsole/snmp_view.php:935 -#: ../../enterprise/dashboard/widgets/service_map.php:49 -#: ../../enterprise/dashboard/widgets/service_map.php:74 -#: ../../enterprise/operation/services/services.service_map.php:116 -msgid "Legend" -msgstr "Leyenda" +#: ../../operation/tree.php:91 +msgid "tags" +msgstr "Etiquetas" -#: ../../extensions/agents_modules.php:570 -#: ../../include/functions_reporting_html.php:1445 -msgid "Orange cell when the module has fired alerts" -msgstr "Cuadro naranja cuando el módulo ha lanzado alertas." +#: ../../operation/tree.php:97 +msgid "groups" +msgstr "Grupos" -#: ../../extensions/agents_modules.php:571 -#: ../../include/functions_reporting_html.php:1446 -msgid "Red cell when the module has a critical status" -msgstr "Cuadro rojo cuando el modulo está en estado crítico." +#: ../../operation/tree.php:100 +msgid "module groups" +msgstr "Grupos de módulos" -#: ../../extensions/agents_modules.php:572 -#: ../../include/functions_reporting_html.php:1447 -msgid "Yellow cell when the module has a warning status" -msgstr "Cuadro amarillo cuando el módulo está en estado Warning." +#: ../../operation/tree.php:103 ../../godmode/setup/license.php:71 +#: ../../godmode/setup/license.php:74 ../../godmode/setup/license.php:77 +#: ../../godmode/setup/license.php:80 +msgid "modules" +msgstr "Módulos" -#: ../../extensions/agents_modules.php:573 -#: ../../include/functions_reporting_html.php:1448 -msgid "Green cell when the module has a normal status" -msgstr "Cuadro verde cuando el módulo está en estado normal." +#: ../../operation/tree.php:107 +msgid "policies" +msgstr "Políticas" -#: ../../extensions/agents_modules.php:574 -#: ../../include/functions_reporting_html.php:1449 -msgid "Grey cell when the module has an unknown status" -msgstr "Cuadro gris cuando el módulo está en estado desconocido" +#: ../../operation/tree.php:131 ../../operation/tree.php:156 +#: ../../operation/tree.php:303 ../../operation/netflow/nf_live_view.php:322 +#: ../../operation/agentes/status_monitor.php:299 +#: ../../operation/agentes/estado_monitores.php:450 +#: ../../operation/agentes/tactical.php:152 +#: ../../operation/agentes/group_view.php:171 +#: ../../operation/agentes/estado_agente.php:186 +#: ../../mobile/operation/agents.php:34 ../../mobile/operation/modules.php:39 +#: ../../include/functions_groups.php:821 +#: ../../include/functions_groups.php:823 +#: ../../include/functions_groups.php:825 +#: ../../include/functions_groups.php:826 +#: ../../include/functions_groups.php:827 +#: ../../include/functions_groups.php:835 +#: ../../include/functions_graph.php:2186 +#: ../../include/functions_graph.php:3284 +#: ../../include/functions_graph.php:3285 +#: ../../include/functions_graph.php:5231 +#: ../../include/functions_reporting_html.php:1567 +#: ../../include/functions_events.php:1465 ../../include/functions.php:873 +#: ../../include/functions.php:1077 ../../include/functions.php:1084 +#: ../../include/functions.php:1114 +#: ../../godmode/massive/massive_edit_agents.php:216 +#: ../../godmode/massive/massive_delete_agents.php:113 +#: ../../godmode/massive/massive_delete_modules.php:453 +#: ../../godmode/massive/massive_delete_modules.php:467 +#: ../../godmode/massive/massive_copy_modules.php:77 +#: ../../godmode/massive/massive_copy_modules.php:190 +#: ../../godmode/massive/massive_edit_modules.php:296 +#: ../../godmode/massive/massive_edit_modules.php:327 +#: ../../godmode/netflow/nf_edit_form.php:207 +msgid "Normal" +msgstr "Normal" -#: ../../extensions/agents_modules.php:575 -msgid "Cell turns blue when the module is in 'not initialize' status" +#: ../../operation/tree.php:132 ../../operation/tree.php:157 +#: ../../operation/tree.php:288 ../../operation/netflow/nf_live_view.php:273 +#: ../../operation/gis_maps/render_view.php:150 +#: ../../operation/agentes/status_monitor.php:300 +#: ../../operation/agentes/estado_monitores.php:452 +#: ../../operation/agentes/tactical.php:151 +#: ../../operation/agentes/group_view.php:172 +#: ../../operation/agentes/estado_agente.php:187 +#: ../../mobile/operation/agents.php:35 ../../mobile/operation/modules.php:40 +#: ../../include/functions_groups.php:830 +#: ../../include/functions_groups.php:832 +#: ../../include/functions_groups.php:834 +#: ../../include/functions_groups.php:835 +#: ../../include/functions_groups.php:836 ../../include/functions_ui.php:234 +#: ../../include/functions_ui.php:2001 ../../include/functions_graph.php:2185 +#: ../../include/functions_graph.php:3292 +#: ../../include/functions_graph.php:3293 +#: ../../include/functions_graph.php:5234 +#: ../../include/functions_reporting_html.php:1571 +#: ../../include/functions_events.php:1468 ../../include/functions.php:876 +#: ../../include/functions.php:1079 ../../include/functions.php:1082 +#: ../../include/functions.php:1117 ../../godmode/setup/setup_netflow.php:70 +#: ../../godmode/massive/massive_edit_agents.php:217 +#: ../../godmode/massive/massive_edit_agents.php:407 +#: ../../godmode/massive/massive_delete_agents.php:114 +#: ../../godmode/massive/massive_delete_modules.php:454 +#: ../../godmode/massive/massive_delete_modules.php:468 +#: ../../godmode/massive/massive_copy_modules.php:78 +#: ../../godmode/massive/massive_copy_modules.php:191 +#: ../../godmode/massive/massive_edit_modules.php:297 +#: ../../godmode/massive/massive_edit_modules.php:328 +#: ../../godmode/servers/manage_recontask_form.php:189 +msgid "Warning" +msgstr "Advertencia" + +#: ../../operation/tree.php:133 ../../operation/tree.php:158 +#: ../../operation/tree.php:283 ../../operation/gis_maps/render_view.php:149 +#: ../../operation/agentes/status_monitor.php:301 +#: ../../operation/agentes/estado_monitores.php:448 +#: ../../operation/agentes/tactical.php:150 +#: ../../operation/agentes/group_view.php:168 +#: ../../operation/agentes/group_view.php:173 +#: ../../operation/agentes/estado_agente.php:188 +#: ../../mobile/operation/agents.php:33 ../../mobile/operation/modules.php:41 +#: ../../include/functions_groups.php:839 +#: ../../include/functions_groups.php:841 +#: ../../include/functions_groups.php:843 +#: ../../include/functions_groups.php:844 +#: ../../include/functions_groups.php:845 ../../include/functions_ui.php:2001 +#: ../../include/functions_graph.php:2184 +#: ../../include/functions_graph.php:3300 +#: ../../include/functions_graph.php:3301 +#: ../../include/functions_graph.php:5237 +#: ../../include/functions_reporting_html.php:680 +#: ../../include/functions_reporting_html.php:1569 +#: ../../include/functions_reporting_html.php:2528 +#: ../../include/functions_events.php:1471 ../../include/functions.php:879 +#: ../../include/functions.php:1081 ../../include/functions.php:1082 +#: ../../include/functions.php:1084 ../../include/functions.php:1120 +#: ../../godmode/massive/massive_edit_agents.php:218 +#: ../../godmode/massive/massive_delete_agents.php:115 +#: ../../godmode/massive/massive_delete_modules.php:455 +#: ../../godmode/massive/massive_delete_modules.php:469 +#: ../../godmode/massive/massive_copy_modules.php:79 +#: ../../godmode/massive/massive_copy_modules.php:192 +#: ../../godmode/massive/massive_edit_modules.php:298 +#: ../../godmode/massive/massive_edit_modules.php:329 +msgid "Critical" +msgstr "Crítico" + +#: ../../operation/tree.php:134 ../../operation/tree.php:159 +#: ../../operation/tree.php:293 ../../operation/agentes/status_monitor.php:302 +#: ../../operation/agentes/pandora_networkmap.view.php:245 +#: ../../operation/agentes/estado_monitores.php:453 +#: ../../operation/agentes/tactical.php:153 +#: ../../operation/agentes/group_view.php:166 +#: ../../operation/agentes/group_view.php:169 +#: ../../operation/agentes/estado_agente.php:189 +#: ../../mobile/operation/agents.php:36 ../../mobile/operation/modules.php:42 +#: ../../include/ajax/module.php:824 +#: ../../include/functions_visual_map.php:1580 +#: ../../include/functions_visual_map.php:1601 +#: ../../include/functions_visual_map.php:1617 +#: ../../include/functions_visual_map.php:1633 +#: ../../include/functions_filemanager.php:706 +#: ../../include/functions_groups.php:803 +#: ../../include/functions_groups.php:805 +#: ../../include/functions_groups.php:807 +#: ../../include/functions_groups.php:808 +#: ../../include/functions_groups.php:809 ../../include/functions_ui.php:449 +#: ../../include/functions_ui.php:450 ../../include/functions_reports.php:426 +#: ../../include/functions_graph.php:773 +#: ../../include/functions_graph.php:2187 +#: ../../include/functions_graph.php:3957 ../../include/functions_maps.php:46 +#: ../../include/graphs/functions_flot.php:459 +#: ../../include/functions_reporting_html.php:490 +#: ../../include/functions_reporting_html.php:569 +#: ../../include/functions_reporting_html.php:1552 +#: ../../include/functions_reporting_html.php:1573 +#: ../../include/functions_reporting_html.php:2036 +#: ../../include/functions_reporting_html.php:2198 +#: ../../include/functions_alerts.php:584 +#: ../../include/functions_events.php:1392 +#: ../../include/functions_events.php:2855 +#: ../../include/functions_reporting.php:3410 ../../include/functions.php:1032 +#: ../../godmode/alerts/alert_list.builder.php:209 +#: ../../godmode/massive/massive_edit_agents.php:219 +#: ../../godmode/massive/massive_delete_agents.php:116 +#: ../../godmode/massive/massive_delete_modules.php:456 +#: ../../godmode/massive/massive_delete_modules.php:470 +#: ../../godmode/massive/massive_copy_modules.php:80 +#: ../../godmode/massive/massive_copy_modules.php:193 +#: ../../godmode/massive/massive_edit_modules.php:299 +#: ../../godmode/massive/massive_edit_modules.php:330 +msgid "Unknown" +msgstr "Desconocido" + +#: ../../operation/tree.php:135 ../../operation/tree.php:160 +#: ../../operation/tree.php:298 ../../operation/agentes/status_monitor.php:304 +#: ../../operation/agentes/tactical.php:154 +#: ../../operation/agentes/group_view.php:167 +#: ../../operation/agentes/estado_agente.php:191 +#: ../../mobile/operation/modules.php:44 +#: ../../include/functions_groups.php:812 +#: ../../include/functions_groups.php:814 +#: ../../include/functions_groups.php:816 +#: ../../include/functions_groups.php:817 +#: ../../include/functions_groups.php:818 +#: ../../include/functions_graph.php:2190 +#: ../../include/functions_reporting_html.php:1575 +#: ../../godmode/massive/massive_edit_agents.php:221 +#: ../../godmode/massive/massive_delete_agents.php:118 +#: ../../godmode/massive/massive_delete_modules.php:458 +#: ../../godmode/massive/massive_delete_modules.php:472 +#: ../../godmode/massive/massive_copy_modules.php:82 +#: ../../godmode/massive/massive_copy_modules.php:195 +#: ../../godmode/massive/massive_edit_modules.php:301 +#: ../../godmode/massive/massive_edit_modules.php:332 +msgid "Not init" +msgstr "No inicializados" + +#: ../../operation/tree.php:138 +msgid "Agent status" +msgstr "Estado de agente" + +#: ../../operation/tree.php:140 +msgid "Search agent" +msgstr "Buscar agente" + +#: ../../operation/tree.php:147 ../../operation/netflow/nf_live_view.php:320 +#: ../../operation/agentes/estado_monitores.php:474 +#: ../../operation/agentes/alerts_status.functions.php:116 +#: ../../operation/agentes/alerts_status.functions.php:126 +#: ../../operation/agentes/graphs.php:159 +#: ../../operation/incidents/incident.php:230 +#: ../../godmode/snmpconsole/snmp_alert.php:1014 +#: ../../godmode/snmpconsole/snmp_filters.php:96 +#: ../../godmode/snmpconsole/snmp_filters.php:132 +#: ../../godmode/reporting/reporting_builder.item_editor.php:663 +#: ../../godmode/reporting/reporting_builder.list_items.php:174 +#: ../../godmode/reporting/reporting_builder.list_items.php:197 +#: ../../godmode/netflow/nf_item_list.php:148 +#: ../../godmode/admin_access_logs.php:45 +#: ../../godmode/admin_access_logs.php:72 +#: ../../godmode/modules/manage_network_templates_form.php:242 +#: ../../godmode/modules/manage_network_templates_form.php:298 +#: ../../godmode/agentes/module_manager.php:49 ../../godmode/tag/tag.php:161 +msgid "Filter" +msgstr "Filtro" + +#: ../../operation/tree.php:163 +#: ../../include/functions_reporting_html.php:2751 +msgid "Module status" +msgstr "Estado del módulo" + +#: ../../operation/tree.php:165 +msgid "Search module" +msgstr "Buscar módulo" + +#: ../../operation/tree.php:189 +msgid "Tree search" +msgstr "Búsqueda de árbol" + +#: ../../operation/tree.php:264 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 +msgid "No data found" +msgstr "No se encontraron datos" + +#: ../../operation/tree.php:271 ../../mobile/operation/groups.php:125 +#: ../../include/functions_reporting_html.php:3459 +#: ../../include/functions_reporting.php:7216 ../../godmode/db/db_main.php:99 +msgid "Total agents" +msgstr "Agentes totales" + +#: ../../operation/tree.php:272 +msgid "Total modules" +msgstr "Módulos totales" + +#: ../../operation/tree.php:273 ../../operation/agentes/group_view.php:165 +#: ../../operation/agentes/gis_view.php:194 +#: ../../include/functions_reporting_html.php:1550 +#: ../../include/functions_reporting_html.php:1565 +#: ../../godmode/db/db_audit.php:80 ../../godmode/db/db_event.php:61 +msgid "Total" +msgstr "Total" + +#: ../../operation/tree.php:276 ../../operation/tree.php:277 +#: ../../operation/tree.php:278 ../../include/functions_graph.php:2109 +#: ../../include/functions_reporting.php:7061 +#: ../../include/functions_reporting.php:7082 +msgid "Fired alerts" +msgstr "Alertas disparadas" + +#: ../../operation/tree.php:281 +msgid "Critical agents" +msgstr "Agentes Críticos" + +#: ../../operation/tree.php:282 ../../mobile/operation/groups.php:157 +msgid "Critical modules" +msgstr "Módulos críticos" + +#: ../../operation/tree.php:286 +msgid "Warning agents" +msgstr "Agentes en advertencia" + +#: ../../operation/tree.php:287 ../../mobile/operation/groups.php:153 +msgid "Warning modules" +msgstr "Módulos de advertencia" + +#: ../../operation/tree.php:291 +msgid "Unknown agents" +msgstr "Agentes en desconocido" + +#: ../../operation/tree.php:292 ../../mobile/operation/groups.php:141 +msgid "Unknown modules" +msgstr "Módulos desconocidos" + +#: ../../operation/tree.php:296 +msgid "Not init agents" +msgstr "Agentes no inicializados" + +#: ../../operation/tree.php:297 ../../mobile/operation/groups.php:145 +msgid "Not init modules" +msgstr "Módulos no inicializados" + +#: ../../operation/tree.php:301 +msgid "Normal agents" +msgstr "Agentes en normal" + +#: ../../operation/tree.php:302 ../../mobile/operation/groups.php:149 +msgid "Normal modules" +msgstr "Módulos Normales" + +#: ../../operation/tree.php:357 +#: ../../operation/agentes/status_monitor.php:1530 +#: ../../operation/agentes/estado_monitores.php:367 +msgid "Module: " +msgstr "Módulo: " + +#: ../../operation/netflow/nf_live_view.php:108 +#: ../../operation/netflow/nf_live_view.php:133 +#: ../../operation/netflow/nf_live_view.php:137 +msgid "Netflow live view" +msgstr "Netflow en tiempo real" + +#: ../../operation/netflow/nf_live_view.php:113 +#: ../../godmode/setup/setup_general.php:110 +#: ../../godmode/netflow/nf_edit.php:43 +msgid "Not supported in Windows systems" +msgstr "No soportado en sistemas Windows" + +#: ../../operation/netflow/nf_live_view.php:122 +#, php-format +msgid "nfdump binary (%s) not found!" +msgstr "nfdump binary (%s) no encontrada" + +#: ../../operation/netflow/nf_live_view.php:127 +msgid "Make sure nfdump version 1.6.8 or newer is installed!" msgstr "" -"Las celdas se vuelven azules cuando el módulo está en estado 'no iniciado'" +"Asegúrese de que tiene instalada la versión 1.6.8 nfdump o alguna posterior" -#: ../../extensions/agents_modules.php:617 -msgid "Agents/Modules view" -msgstr "Vista de Agentes/Módulos" +#: ../../operation/netflow/nf_live_view.php:132 +#: ../../operation/agentes/ver_agente.php:961 +#: ../../godmode/netflow/nf_item_list.php:57 +#: ../../godmode/netflow/nf_edit_form.php:65 +#: ../../godmode/netflow/nf_edit.php:47 +msgid "Main" +msgstr "Principal" -#: ../../extensions/agents_modules.php:639 -#: ../../operation/events/events.php:579 +#: ../../operation/netflow/nf_live_view.php:149 +msgid "Error creating filter" +msgstr "Error al crear filtro" + +#: ../../operation/netflow/nf_live_view.php:152 +msgid "Filter created successfully" +msgstr "Filtro creado correctamente" + +#: ../../operation/netflow/nf_live_view.php:167 +msgid "Filter updated successfully" +msgstr "Filtro actualizado correctamente" + +#: ../../operation/netflow/nf_live_view.php:168 +msgid "Error updating filter" +msgstr "Error al actualizar el filtro" + +#: ../../operation/netflow/nf_live_view.php:193 +msgid "Draw live filter" +msgstr "Extrae filtro en directo" + +#: ../../operation/netflow/nf_live_view.php:224 +msgid "Connection" +msgstr "Conexión" + +#: ../../operation/netflow/nf_live_view.php:240 +#: ../../godmode/agentes/planned_downtime.editor.php:510 +#: ../../godmode/agentes/planned_downtime.editor.php:521 +msgid "Date format in Pandora is year/month/day" +msgstr "El formato de fecha de Pandora es año/mes/día" + +#: ../../operation/netflow/nf_live_view.php:242 +#: ../../godmode/alerts/configure_alert_template.php:540 +#: ../../godmode/alerts/configure_alert_template.php:544 +#: ../../godmode/reporting/reporting_builder.item_editor.php:848 +#: ../../godmode/reporting/reporting_builder.item_editor.php:857 +#: ../../godmode/agentes/planned_downtime.editor.php:512 +#: ../../godmode/agentes/planned_downtime.editor.php:523 +#: ../../godmode/agentes/planned_downtime.editor.php:591 +#: ../../godmode/agentes/planned_downtime.editor.php:599 +msgid "Time format in Pandora is hours(24h):minutes:seconds" +msgstr "El formato de hora en Pandora es horas(24h):minutos:segundos" + +#: ../../operation/netflow/nf_live_view.php:245 +#: ../../operation/servers/recon_view.php:92 +#: ../../operation/search_modules.php:50 ../../operation/search_agents.php:46 +#: ../../operation/search_agents.php:56 +#: ../../operation/agentes/status_monitor.php:966 +#: ../../operation/agentes/estado_generalagente.php:200 +#: ../../operation/agentes/estado_agente.php:512 +#: ../../mobile/operation/modules.php:540 +#: ../../mobile/operation/modules.php:543 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:755 +#: ../../include/functions_treeview.php:85 +#: ../../include/functions_treeview.php:581 +#: ../../include/functions_reporting_html.php:2110 +#: ../../godmode/massive/massive_edit_agents.php:301 +#: ../../godmode/massive/massive_edit_modules.php:464 +#: ../../godmode/servers/manage_recontask_form.php:252 +#: ../../godmode/servers/manage_recontask.php:291 +#: ../../godmode/modules/manage_network_components_form_common.php:104 +#: ../../godmode/agentes/module_manager_editor_common.php:379 +#: ../../godmode/agentes/module_manager_editor_common.php:405 +#: ../../godmode/agentes/agent_manager.php:276 +#: ../../godmode/agentes/module_manager.php:560 +msgid "Interval" +msgstr "Intervalo" + +#: ../../operation/netflow/nf_live_view.php:248 +#: ../../include/functions_netflow.php:1134 +#: ../../include/functions_netflow.php:1144 +#: ../../include/functions_netflow.php:1161 +#: ../../include/functions_netflow.php:1169 +#: ../../include/functions_netflow.php:1193 +#: ../../godmode/reporting/reporting_builder.item_editor.php:735 +msgid "Resolution" +msgstr "Resolución" + +#: ../../operation/netflow/nf_live_view.php:248 +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:258 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1276 +#: ../../godmode/netflow/nf_item_list.php:150 +msgid "Max. values" +msgstr "Valores máximos" + +#: ../../operation/netflow/nf_live_view.php:274 +#: ../../godmode/setup/setup_netflow.php:70 +msgid "IP address resolution can take a lot of time" +msgstr "La resolución de direcciones IP puede tardar mucho tiempo" + +#: ../../operation/netflow/nf_live_view.php:283 +msgid "IP address resolution" +msgstr "Resolución de dirección IP" + +#: ../../operation/netflow/nf_live_view.php:284 +#: ../../godmode/setup/setup_netflow.php:69 +msgid "Resolve the IP addresses to get their hostnames." +msgstr "Resolver direcciones IP para obtener sus hostnames" + +#: ../../operation/netflow/nf_live_view.php:305 +#: ../../operation/search_users.php:41 ../../operation/gis_maps/gis_map.php:89 +#: ../../operation/search_helps.php:36 ../../operation/search_maps.php:31 +#: ../../operation/agentes/pandora_networkmap.php:398 +#: ../../operation/agentes/pandora_networkmap.editor.php:180 +#: ../../extensions/files_repo/files_repo_list.php:58 +#: ../../mobile/operation/networkmaps.php:195 +#: ../../mobile/operation/visualmaps.php:139 +#: ../../include/functions_pandora_networkmap.php:1385 +#: ../../include/functions_pandora_networkmap.php:1418 +#: ../../include/functions_pandora_networkmap.php:1579 +#: ../../include/functions_filemanager.php:580 +#: ../../include/functions_treeview.php:79 +#: ../../include/functions_reporting_html.php:808 +#: ../../include/functions_reporting_html.php:817 +#: ../../include/functions_reporting_html.php:1640 +#: ../../include/functions_reporting_html.php:2104 +#: ../../include/functions_reporting_html.php:3809 +#: ../../include/functions_events.php:2018 +#: ../../include/functions_events.php:2068 +#: ../../godmode/alerts/alert_actions.php:340 +#: ../../godmode/alerts/alert_commands.php:330 +#: ../../godmode/alerts/configure_alert_command.php:146 +#: ../../godmode/alerts/configure_alert_action.php:112 +#: ../../godmode/alerts/configure_alert_template.php:747 +#: ../../godmode/alerts/alert_templates.php:298 +#: ../../godmode/setup/os.list.php:34 ../../godmode/setup/os.builder.php:35 +#: ../../godmode/events/event_filter.php:108 +#: ../../godmode/events/event_responses.editor.php:76 +#: ../../godmode/events/event_responses.list.php:54 +#: ../../godmode/users/user_list.php:269 ../../godmode/users/user_list.php:403 +#: ../../godmode/reporting/reporting_builder.main.php:65 +#: ../../godmode/reporting/reporting_builder.main.php:67 +#: ../../godmode/reporting/reporting_builder.item_editor.php:653 +#: ../../godmode/reporting/reporting_builder.list_items.php:303 +#: ../../godmode/reporting/graph_builder.main.php:103 +#: ../../godmode/netflow/nf_edit_form.php:189 +#: ../../godmode/netflow/nf_edit.php:118 +#: ../../godmode/servers/manage_recontask.php:291 +#: ../../godmode/servers/recon_script.php:95 +#: ../../godmode/servers/recon_script.php:348 +#: ../../godmode/servers/servers.build_table.php:64 +#: ../../godmode/servers/modificar_server.php:46 +#: ../../godmode/servers/plugin.php:293 ../../godmode/servers/plugin.php:735 +#: ../../godmode/category/edit_category.php:155 +#: ../../godmode/groups/configure_modu_group.php:69 +#: ../../godmode/groups/group_list.php:336 +#: ../../godmode/groups/configure_group.php:116 +#: ../../godmode/groups/modu_group_list.php:183 +#: ../../godmode/modules/module_list.php:59 +#: ../../godmode/modules/manage_nc_groups.php:194 +#: ../../godmode/modules/manage_nc_groups_form.php:67 +#: ../../godmode/modules/manage_network_templates_form.php:144 +#: ../../godmode/modules/manage_network_components_form_common.php:54 +#: ../../godmode/modules/manage_network_templates.php:190 +#: ../../godmode/agentes/module_manager_editor_common.php:149 +#: ../../godmode/agentes/module_manager_editor_common.php:655 +#: ../../godmode/agentes/configure_field.php:48 +#: ../../godmode/agentes/planned_downtime.editor.php:478 +#: ../../godmode/agentes/planned_downtime.editor.php:753 +#: ../../godmode/agentes/module_manager.php:545 ../../godmode/tag/tag.php:156 +#: ../../godmode/tag/edit_tag.php:169 +msgid "Name" +msgstr "Nombre" + +#: ../../operation/netflow/nf_live_view.php:323 +#: ../../godmode/alerts/alert_commands.php:152 +#: ../../godmode/alerts/alert_commands.php:162 +#: ../../godmode/alerts/configure_alert_template.php:693 +#: ../../godmode/alerts/configure_alert_template.php:707 +#: ../../godmode/alerts/configure_alert_template.php:776 +#: ../../godmode/users/configure_user.php:533 +#: ../../godmode/netflow/nf_edit_form.php:208 +#: ../../godmode/modules/manage_network_components_form_common.php:60 +msgid "Advanced" +msgstr "Avanzado" + +#: ../../operation/netflow/nf_live_view.php:335 +msgid "Select a filter" +msgstr "Selecciona un filtro" + +#: ../../operation/netflow/nf_live_view.php:349 +#: ../../godmode/netflow/nf_edit_form.php:210 +msgid "Dst Ip" +msgstr "Dst Ip" + +#: ../../operation/netflow/nf_live_view.php:349 +#: ../../godmode/netflow/nf_edit_form.php:210 +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" + +#: ../../operation/netflow/nf_live_view.php:358 +#: ../../godmode/netflow/nf_edit_form.php:213 +msgid "Src Ip" +msgstr "IP Origen" + +#: ../../operation/netflow/nf_live_view.php:358 +#: ../../godmode/netflow/nf_edit_form.php:213 +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" + +#: ../../operation/netflow/nf_live_view.php:370 +#: ../../operation/netflow/nf_live_view.php:399 +#: ../../godmode/netflow/nf_edit_form.php:216 +#: ../../godmode/netflow/nf_edit_form.php:226 +msgid "Dst Port" +msgstr "Puerto destino" + +#: ../../operation/netflow/nf_live_view.php:370 +#: ../../godmode/netflow/nf_edit_form.php:216 +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" + +#: ../../operation/netflow/nf_live_view.php:379 +#: ../../operation/netflow/nf_live_view.php:399 +#: ../../godmode/netflow/nf_edit_form.php:219 +#: ../../godmode/netflow/nf_edit_form.php:226 +msgid "Src Port" +msgstr "Puerto origen" + +#: ../../operation/netflow/nf_live_view.php:379 +#: ../../godmode/netflow/nf_edit_form.php:219 +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" + +#: ../../operation/netflow/nf_live_view.php:397 +#: ../../godmode/netflow/nf_edit_form.php:225 +msgid "Aggregate by" +msgstr "Agregado por" + +#: ../../operation/netflow/nf_live_view.php:399 +#: ../../include/functions_netflow.php:1660 +#: ../../godmode/netflow/nf_edit_form.php:226 +msgid "Protocol" +msgstr "Protocolo" + +#: ../../operation/netflow/nf_live_view.php:399 +#: ../../godmode/netflow/nf_edit_form.php:226 +msgid "Src Ip Address" +msgstr "Dirección IP origen" + +#: ../../operation/netflow/nf_live_view.php:399 +#: ../../godmode/netflow/nf_edit_form.php:226 +msgid "Dst Ip Address" +msgstr "Dirección IP destino" + +#: ../../operation/netflow/nf_live_view.php:402 +msgid "Router ip" +msgstr "Ip del router" + +#: ../../operation/netflow/nf_live_view.php:405 +#: ../../godmode/netflow/nf_edit_form.php:230 +msgid "Output format" +msgstr "Formato de Salida" + +#: ../../operation/netflow/nf_live_view.php:406 +#: ../../include/functions_netflow.php:1640 +#: ../../include/functions_config.php:447 +#: ../../include/functions_config.php:1494 +msgid "Bytes" +msgstr "Bytes" + +#: ../../operation/netflow/nf_live_view.php:406 +msgid "Bytes per second" +msgstr "Bytes por segundo" + +#: ../../operation/netflow/nf_live_view.php:406 +#: ../../godmode/netflow/nf_edit_form.php:231 +msgid "Kilobytes" +msgstr "Kilobytes" + +#: ../../operation/netflow/nf_live_view.php:406 +#: ../../godmode/netflow/nf_edit_form.php:231 +msgid "Megabytes" +msgstr "Megabytes" + +#: ../../operation/netflow/nf_live_view.php:406 +#: ../../godmode/netflow/nf_edit_form.php:231 +msgid "Kilobytes per second" +msgstr "Kilobytes por segundo" + +#: ../../operation/netflow/nf_live_view.php:406 +#: ../../godmode/netflow/nf_edit_form.php:231 +msgid "Megabytes per second" +msgstr "Megabytes por segundo" + +#: ../../operation/netflow/nf_live_view.php:417 +msgid "Draw" +msgstr "Dibujar" + +#: ../../operation/netflow/nf_live_view.php:421 +msgid "Save as new filter" +msgstr "Guardar nuevo filtro" + +#: ../../operation/netflow/nf_live_view.php:422 +msgid "Update current filter" +msgstr "Actualizar filtro actual" + +#: ../../operation/netflow/nf_live_view.php:436 +msgid "No filter selected" +msgstr "No se ha seleccionado ningún filtro" + +#: ../../operation/visual_console/pure_ajax.php:96 +#: ../../operation/visual_console/render_view.php:96 +#: ../../godmode/reporting/visual_console_builder.php:662 +msgid "Visual consoles list" +msgstr "Lista de consolas visuales" + +#: ../../operation/visual_console/pure_ajax.php:105 +#: ../../operation/visual_console/render_view.php:108 +#: ../../operation/gis_maps/render_view.php:128 +#: ../../godmode/reporting/visual_console_builder.php:665 +msgid "Show link to public Visual Console" +msgstr "Mostrar enlace a la Consola Visual pública" + +#: ../../operation/visual_console/pure_ajax.php:113 +#: ../../operation/visual_console/render_view.php:116 +#: ../../godmode/reporting/visual_console_builder.php:671 +msgid "List elements" +msgstr "Lista de elementos" + +#: ../../operation/visual_console/pure_ajax.php:118 +#: ../../operation/visual_console/render_view.php:121 +#: ../../godmode/reporting/visual_console_builder.php:676 +msgid "Services wizard" +msgstr "Asistente de servicios" + +#: ../../operation/visual_console/pure_ajax.php:123 +#: ../../operation/visual_console/render_view.php:126 +#: ../../godmode/reporting/visual_console_builder.wizard.php:354 +#: ../../godmode/reporting/visual_console_builder.php:681 +msgid "Wizard" +msgstr "Asistente" + +#: ../../operation/visual_console/pure_ajax.php:126 +#: ../../operation/visual_console/render_view.php:129 +#: ../../godmode/reporting/visual_console_builder.php:684 +msgid "Builder" +msgstr "Compilador" + +#: ../../operation/visual_console/pure_ajax.php:130 +#: ../../operation/visual_console/render_view.php:133 +#: ../../operation/agentes/estado_agente.php:577 +#: ../../godmode/setup/setup_visuals.php:165 +#: ../../godmode/setup/setup_visuals.php:185 +#: ../../godmode/setup/setup_visuals.php:204 +#: ../../godmode/setup/setup_visuals.php:220 +#: ../../godmode/setup/setup_visuals.php:292 +#: ../../godmode/reporting/visual_console_builder.php:687 +#: ../../godmode/servers/manage_recontask.php:32 +#: ../../godmode/agentes/configurar_agente.php:281 +#: ../../godmode/agentes/modificar_agente.php:52 +#: ../../godmode/agentes/modificar_agente.php:582 +msgid "View" +msgstr "Vista" + +#: ../../operation/visual_console/render_view.php:232 #: ../../operation/visual_console/public_console.php:153 -#: ../../operation/visual_console/render_view.php:241 msgid "Until refresh" msgstr "Hasta refrescar" +#: ../../operation/visual_console/public_console.php:130 +#: ../../general/header.php:147 +msgid "QR code of the page" +msgstr "Código QR de la página" + +#: ../../operation/search_users.php:44 +#: ../../general/login_identification_wizard.php:170 +#: ../../general/login_identification_wizard.php:171 +#: ../../godmode/tag/tag.php:203 ../../godmode/tag/edit_tag.php:195 +msgid "Email" +msgstr "Correo-e" + +#: ../../operation/search_users.php:47 ../../operation/gis_maps/ajax.php:219 +#: ../../operation/gis_maps/ajax.php:321 ../../operation/search_agents.php:66 +#: ../../operation/agentes/ver_agente.php:696 +#: ../../operation/agentes/estado_generalagente.php:205 +#: ../../operation/agentes/estado_agente.php:531 +#: ../../mobile/operation/agents.php:85 ../../mobile/operation/agents.php:337 +#: ../../mobile/operation/agents.php:339 ../../mobile/operation/agents.php:341 +#: ../../mobile/operation/agents.php:342 ../../mobile/operation/agent.php:161 +#: ../../include/ajax/module.php:751 ../../include/functions_treeview.php:602 +#: ../../include/functions_events.php:2038 +#: ../../godmode/users/user_list.php:272 +#: ../../godmode/agentes/planned_downtime.editor.php:756 +msgid "Last contact" +msgstr "Último contacto" + +#: ../../operation/search_users.php:50 +msgid "Profile" +msgstr "Perfil" + +#: ../../operation/search_users.php:63 ../../godmode/users/user_list.php:275 +#: ../../godmode/users/user_list.php:413 +msgid "Admin" +msgstr "Admin" + +#: ../../operation/search_users.php:64 +#: ../../godmode/users/configure_user.php:468 +#: ../../godmode/users/user_list.php:414 +msgid "Administrator" +msgstr "Administrador" + +#: ../../operation/search_users.php:69 +#: ../../godmode/users/configure_user.php:473 +msgid "Standard User" +msgstr "Usuario estándar" + +#: ../../operation/search_users.php:82 ../../godmode/users/user_list.php:457 +msgid "The user doesn't have any assigned profile/group" +msgstr "El usuario no tiene ningún perfil asignado" + +#: ../../operation/gis_maps/gis_map.php:29 +#: ../../godmode/gis_maps/configure_gis_map.php:214 +msgid "GIS Maps list" +msgstr "Lista de mapas GIS" + +#: ../../operation/gis_maps/gis_map.php:94 +#: ../../godmode/alerts/alert_list.list.php:412 +#: ../../godmode/alerts/alert_templates.php:302 +#: ../../godmode/users/profile_list.php:327 +#: ../../godmode/users/user_list.php:278 +#: ../../godmode/reporting/reporting_builder.php:567 +#: ../../godmode/reporting/reporting_builder.php:687 +#: ../../godmode/reporting/reporting_builder.list_items.php:305 +#: ../../godmode/reporting/graphs.php:163 +#: ../../godmode/servers/servers.build_table.php:76 +#: ../../godmode/servers/plugin.php:739 +msgid "Op." +msgstr "Op." + +#: ../../operation/gis_maps/gis_map.php:175 +msgid "No maps found" +msgstr "No se encontraron mapas" + +#: ../../operation/gis_maps/gis_map.php:182 +#: ../../operation/incidents/incident_detail.php:379 +#: ../../include/functions_filemanager.php:617 +#: ../../include/functions_filemanager.php:654 +#: ../../include/functions_visual_map_editor.php:470 +#: ../../godmode/snmpconsole/snmp_alert.php:980 +#: ../../godmode/snmpconsole/snmp_alert.php:1339 +#: ../../godmode/snmpconsole/snmp_filters.php:108 +#: ../../godmode/snmpconsole/snmp_filters.php:156 +#: ../../godmode/alerts/configure_alert_special_days.php:106 +#: ../../godmode/alerts/alert_special_days.php:464 +#: ../../godmode/alerts/alert_special_days.php:482 +#: ../../godmode/alerts/alert_actions.php:403 +#: ../../godmode/alerts/alert_commands.php:377 +#: ../../godmode/alerts/configure_alert_command.php:202 +#: ../../godmode/alerts/configure_alert_action.php:227 +#: ../../godmode/alerts/alert_list.list.php:742 +#: ../../godmode/alerts/alert_list.php:329 +#: ../../godmode/alerts/alert_templates.php:363 +#: ../../godmode/setup/news.php:204 ../../godmode/setup/gis.php:93 +#: ../../godmode/setup/os.php:52 ../../godmode/setup/os.php:76 +#: ../../godmode/setup/links.php:117 +#: ../../godmode/events/event_edit_filter.php:405 +#: ../../godmode/events/event_responses.editor.php:134 +#: ../../godmode/massive/massive_add_profiles.php:117 +#: ../../godmode/users/configure_user.php:588 +#: ../../godmode/users/profile_list.php:404 +#: ../../godmode/reporting/map_builder.php:312 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1186 +#: ../../godmode/reporting/graph_builder.main.php:186 +#: ../../godmode/netflow/nf_edit_form.php:244 +#: ../../godmode/servers/manage_recontask.php:392 +#: ../../godmode/servers/recon_script.php:220 +#: ../../godmode/servers/plugin.php:542 +#: ../../godmode/category/edit_category.php:174 +#: ../../godmode/groups/configure_modu_group.php:87 +#: ../../godmode/groups/configure_group.php:225 +#: ../../godmode/modules/manage_nc_groups.php:245 +#: ../../godmode/modules/manage_nc_groups_form.php:84 +#: ../../godmode/modules/manage_network_components.php:645 +#: ../../godmode/modules/manage_network_components_form.php:279 +#: ../../godmode/modules/manage_network_templates_form.php:157 +#: ../../godmode/modules/manage_network_templates.php:237 +#: ../../godmode/agentes/module_manager_editor.php:540 +#: ../../godmode/agentes/configure_field.php:65 +#: ../../godmode/agentes/agent_manager.php:495 +#: ../../godmode/agentes/module_manager.php:136 +#: ../../godmode/agentes/planned_downtime.list.php:366 +#: ../../godmode/agentes/planned_downtime.list.php:516 +#: ../../godmode/tag/edit_tag.php:232 +msgid "Create" +msgstr "Crear" + +#: ../../operation/gis_maps/gis_map.php:194 +msgid "Caution: Do you want delete the map?" +msgstr "Atención: Desea borrar el mapa?" + +#: ../../operation/gis_maps/gis_map.php:201 +msgid "Do you want to set default the map?" +msgstr "Desea configurar por defecto el mapa?" + +#: ../../operation/gis_maps/gis_map.php:209 +msgid "There was error on setup the default map." +msgstr "Hubo un error en la configuracion del mapa por defecto." + +#: ../../operation/gis_maps/ajax.php:217 ../../operation/gis_maps/ajax.php:254 +msgid "Position (Lat, Long, Alt)" +msgstr "Posición (Lat, Long, Alt)" + +#: ../../operation/gis_maps/ajax.php:218 +msgid "Start contact" +msgstr "Inicio de contacto" + +#: ../../operation/gis_maps/ajax.php:220 +msgid "Num reports" +msgstr "Informes numéricos" + +#: ../../operation/gis_maps/ajax.php:222 +#: ../../operation/agentes/gis_view.php:186 +msgid "Manual placement" +msgstr "Colocación manual" + +#: ../../operation/gis_maps/ajax.php:258 +msgid "Default position of map." +msgstr "Posición por defecto del mapa" + +#: ../../operation/gis_maps/ajax.php:269 +#: ../../include/functions_treeview.php:575 +#: ../../include/functions_reporting_html.php:2249 +#: ../../include/functions_reporting_html.php:2292 +#: ../../include/functions_events.php:2028 +#: ../../godmode/servers/modificar_server.php:47 +#: ../../godmode/agentes/agent_manager.php:211 +msgid "IP Address" +msgstr "Dirección IP" + +#: ../../operation/gis_maps/ajax.php:293 ../../extensions/api_checker.php:201 +#: ../../godmode/events/event_responses.editor.php:114 +#: ../../godmode/events/event_responses.editor.php:121 +#: ../../godmode/events/event_responses.editor.php:124 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1238 +msgid "URL" +msgstr "URL" + +#: ../../operation/gis_maps/ajax.php:315 +#: ../../operation/agentes/estado_generalagente.php:159 +#: ../../include/functions_treeview.php:642 +msgid "Agent Version" +msgstr "Versión del agente" + +#: ../../operation/gis_maps/ajax.php:323 ../../operation/gis_maps/ajax.php:334 +#: ../../operation/agentes/estado_generalagente.php:210 +#: ../../include/functions_ui.php:449 ../../include/functions_treeview.php:595 +#: ../../godmode/snmpconsole/snmp_alert.php:1217 +#: ../../godmode/db/db_main.php:183 +msgid "Never" +msgstr "Nunca" + +#: ../../operation/gis_maps/ajax.php:332 +#: ../../operation/agentes/estado_generalagente.php:205 +#: ../../operation/agentes/estado_agente.php:501 +#: ../../include/functions_treeview.php:602 +msgid "Remote" +msgstr "Remoto" + +#: ../../operation/gis_maps/render_view.php:119 +#: ../../operation/agentes/estado_agente.php:135 ../../godmode/menu.php:231 +#: ../../godmode/menu.php:238 ../../godmode/agentes/configurar_agente.php:293 +#: ../../godmode/agentes/configurar_agente.php:520 +msgid "Setup" +msgstr "Configuración" + +#: ../../operation/gis_maps/render_view.php:135 +#: ../../include/functions.php:2583 +msgid "5 seconds" +msgstr "5 segundos" + +#: ../../operation/gis_maps/render_view.php:136 +#: ../../include/functions.php:2584 +msgid "10 seconds" +msgstr "10 segundos" + +#: ../../operation/gis_maps/render_view.php:137 +#: ../../include/functions.php:2586 +msgid "30 seconds" +msgstr "30 segundos" + +#: ../../operation/gis_maps/render_view.php:138 +#: ../../extensions/agents_modules.php:104 +#: ../../extensions/agents_alerts.php:82 ../../include/functions.php:2587 +msgid "1 minute" +msgstr "1 minuto" + +#: ../../operation/gis_maps/render_view.php:139 +#: ../../extensions/agents_modules.php:105 +#: ../../extensions/agents_alerts.php:83 ../../include/functions.php:2588 +msgid "2 minutes" +msgstr "2 minutos" + +#: ../../operation/gis_maps/render_view.php:140 +#: ../../extensions/agents_modules.php:106 +#: ../../extensions/agents_alerts.php:84 ../../include/ajax/module.php:132 +#: ../../include/functions.php:2589 +msgid "5 minutes" +msgstr "5 minutos" + +#: ../../operation/gis_maps/render_view.php:141 +#: ../../extensions/agents_modules.php:107 +#: ../../extensions/agents_alerts.php:85 +msgid "10 minutes" +msgstr "10 minutos" + +#: ../../operation/gis_maps/render_view.php:142 +#: ../../include/ajax/module.php:134 ../../include/functions_netflow.php:1052 +#: ../../include/functions_netflow.php:1085 ../../include/functions.php:2022 +#: ../../include/functions.php:2592 ../../godmode/setup/performance.php:105 +msgid "1 hour" +msgstr "1 hora" + +#: ../../operation/gis_maps/render_view.php:143 +#: ../../include/functions_netflow.php:1053 +#: ../../include/functions_netflow.php:1086 +msgid "2 hours" +msgstr "2 horas" + +#: ../../operation/gis_maps/render_view.php:145 +msgid "Refresh: " +msgstr "Refrescar " + +#: ../../operation/gis_maps/render_view.php:151 +#: ../../include/functions_config.php:531 +#: ../../include/functions_config.php:1551 +#: ../../godmode/massive/massive_edit_agents.php:405 +msgid "Ok" +msgstr "Bien" + +#: ../../operation/gis_maps/render_view.php:154 +msgid "Show agents by state: " +msgstr "Mostrar agentes por estado " + +#: ../../operation/gis_maps/render_view.php:157 +msgid "Map" +msgstr "Mapa" + +#: ../../operation/messages/message_edit.php:35 +#: ../../operation/messages/message_list.php:32 +msgid "Received messages" +msgstr "Mensajes recibidos" + +#: ../../operation/messages/message_edit.php:39 +#: ../../operation/messages/message_list.php:36 +msgid "Sent messages" +msgstr "Mensajes enviados" + +#: ../../operation/messages/message_edit.php:43 +#: ../../operation/messages/message_list.php:40 +#: ../../operation/messages/message_list.php:226 +msgid "Create message" +msgstr "Crear mensaje" + +#: ../../operation/messages/message_edit.php:60 +msgid "This message does not exist in the system" +msgstr "Este mensaje no existe en el sistema" + +#: ../../operation/messages/message_edit.php:79 +#: ../../operation/messages/message_edit.php:160 +#: ../../operation/messages/message_list.php:125 +msgid "Sender" +msgstr "Remitente" + +#: ../../operation/messages/message_edit.php:80 +msgid "at" +msgstr "el" + +#: ../../operation/messages/message_edit.php:82 +#: ../../operation/messages/message_edit.php:169 +#: ../../operation/messages/message_list.php:123 +msgid "Destination" +msgstr "Destino" + +#: ../../operation/messages/message_edit.php:85 +#: ../../operation/messages/message_edit.php:207 +#: ../../operation/messages/message_list.php:126 +#: ../../godmode/setup/news.php:161 ../../godmode/setup/news.php:220 +#: ../../godmode/update_manager/update_manager.messages.php:136 +msgid "Subject" +msgstr "Asunto" + +#: ../../operation/messages/message_edit.php:104 +msgid "wrote" +msgstr "escribió" + +#: ../../operation/messages/message_edit.php:119 +msgid "Reply" +msgstr "Responder" + +#: ../../operation/messages/message_edit.php:136 +#, php-format +msgid "Message successfully sent to user %s" +msgstr "Mensaje enviado correctamente al usuario %s" + +#: ../../operation/messages/message_edit.php:137 +#, php-format +msgid "Error sending message to user %s" +msgstr "Error al enviar el mensaje al usuario %s" + +#: ../../operation/messages/message_edit.php:145 +msgid "Message successfully sent" +msgstr "Mensaje enviado correctamente" + +#: ../../operation/messages/message_edit.php:146 +#, php-format +msgid "Error sending message to group %s" +msgstr "Error al enviar el mensaje al grupo %s" + +#: ../../operation/messages/message_edit.php:203 +msgid "Select user" +msgstr "Seleccionar usuario" + +#: ../../operation/messages/message_edit.php:204 +msgid "OR" +msgstr "O" + +#: ../../operation/messages/message_edit.php:205 +msgid "Select group" +msgstr "Seleccionar grupo" + +#: ../../operation/messages/message_list.php:74 +msgid "Not deleted. Error deleting messages" +msgstr "No borrada. Error al suprimir mensajes" + +#: ../../operation/messages/message_list.php:80 +#: ../../operation/messages/message_list.php:88 +msgid "You have" +msgstr "Tiene" + +#: ../../operation/messages/message_list.php:81 +msgid "sent message(s)" +msgstr "Mensaje(s) enviado(s)" + +#: ../../operation/messages/message_list.php:89 +msgid "unread message(s)" +msgstr "mensaje(s) sin leer" + +#: ../../operation/messages/message_list.php:97 +msgid "There are no messages." +msgstr "No hay mensajes." + +#: ../../operation/messages/message_list.php:136 +msgid "Click to read" +msgstr "Hacer click para leer" + +#: ../../operation/messages/message_list.php:141 +msgid "Mark as unread" +msgstr "Marcar como no leído" + +#: ../../operation/messages/message_list.php:148 +#: ../../operation/messages/message_list.php:153 +msgid "Message unread - click to read" +msgstr "Mensaje sin leer; pulse para leerlo" + +#: ../../operation/messages/message_list.php:180 +msgid "No Subject" +msgstr "Sin asunto" + +#: ../../operation/search_helps.php:22 +msgid "Zero results found." +msgstr "Cero resultados" + +#: ../../operation/search_helps.php:23 +#, php-format +msgid "" +"You can find more help in the
    Pandora's wiki" +msgstr "" +"Puedes encontrar mas ayuda en el wiki de Pandora" + +#: ../../operation/search_helps.php:37 +msgid "Matches" +msgstr "Coincidencias" + +#: ../../operation/servers/recon_view.php:36 +#: ../../operation/servers/recon_view.php:51 +msgid "Recon View" +msgstr "Vista Recon" + +#: ../../operation/servers/recon_view.php:46 +#: ../../operation/search_agents.php:111 +#: ../../operation/agentes/ver_agente.php:947 +msgid "Manage" +msgstr "Gestionar" + +#: ../../operation/servers/recon_view.php:86 +#: ../../operation/servers/recon_view.php:118 +#: ../../operation/agentes/group_view.php:163 +#: ../../operation/agentes/group_view.php:216 +#: ../../include/ajax/module.php:804 ../../include/functions_groups.php:771 +#: ../../include/functions_groups.php:964 ../../include/functions_ui.php:834 +msgid "Force" +msgstr "Forzar" + +#: ../../operation/servers/recon_view.php:89 +#: ../../godmode/servers/manage_recontask_form.php:218 +msgid "Task name" +msgstr "Nombre de la tarea" + +#: ../../operation/servers/recon_view.php:95 +#: ../../godmode/servers/manage_recontask_form.php:242 +#: ../../godmode/servers/manage_recontask.php:291 +msgid "Network" +msgstr "Red" + +#: ../../operation/servers/recon_view.php:104 +#: ../../operation/servers/recon_view.php:158 +msgid "Progress" +msgstr "Progreso" + +#: ../../operation/servers/recon_view.php:107 +#: ../../operation/incidents/incident_detail.php:261 +msgid "Updated at" +msgstr "Actualizado el" + +#: ../../operation/servers/recon_view.php:137 +#: ../../include/help/clippy/operation_agentes_ver_agente.php:42 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:126 +msgid "Done" +msgstr "Hecho" + +#: ../../operation/servers/recon_view.php:140 +msgid "Pending" +msgstr "Pendiente" + +#: ../../operation/servers/recon_view.php:145 +#: ../../godmode/servers/manage_recontask.php:314 +msgid "Network recon task" +msgstr "Tarea de reconocimiento de red" + +#: ../../operation/servers/recon_view.php:173 +msgid "has no recon tasks assigned" +msgstr "No tiene tarea de descubrimiento asignado" + +#: ../../operation/search_maps.php:33 +msgid "Elements" +msgstr "Elementos" + +#: ../../operation/search_modules.php:52 +#: ../../operation/agentes/status_monitor.php:977 +#: ../../extensions/realtime_graphs.php:72 +#: ../../include/functions_pandora_networkmap.php:1387 +#: ../../include/ajax/module.php:750 +#: ../../include/functions_visual_map_editor.php:56 +#: ../../include/functions_events.php:2103 +msgid "Graph" +msgstr "Gráfico" + +#: ../../operation/search_modules.php:53 +#: ../../operation/agentes/status_monitor.php:983 +#: ../../operation/agentes/exportdata.php:98 +#: ../../operation/agentes/exportdata.excel.php:76 +#: ../../operation/agentes/exportdata.csv.php:77 +#: ../../operation/agentes/gis_view.php:194 +#: ../../extensions/insert_data.php:180 ../../extensions/insert_data.php:181 +#: ../../mobile/operation/modules.php:606 +#: ../../mobile/operation/modules.php:613 +#: ../../mobile/operation/modules.php:621 +#: ../../mobile/operation/modules.php:757 ../../include/ajax/module.php:749 +#: ../../include/functions_graph.php:3433 +#: ../../include/functions_reporting_html.php:1806 +#: ../../include/functions_reporting_html.php:1809 +#: ../../include/functions_reporting_html.php:1810 +#: ../../include/functions_reporting_html.php:1813 +#: ../../include/functions_netflow.php:311 +#: ../../include/functions_reporting.php:2349 +#: ../../include/functions_reporting.php:2383 +msgid "Data" +msgstr "Datos" + +#: ../../operation/search_modules.php:104 +#: ../../operation/agentes/status_monitor.php:1143 +#: ../../mobile/operation/modules.php:451 +#: ../../mobile/operation/modules.php:504 +#: ../../include/functions_modules.php:1871 +msgid "NOT INIT" +msgstr "No inicializado" + +#: ../../operation/search_modules.php:108 +#: ../../operation/search_modules.php:125 +#: ../../operation/agentes/status_monitor.php:1148 +#: ../../operation/agentes/status_monitor.php:1152 +#: ../../operation/agentes/status_monitor.php:1183 +#: ../../operation/agentes/status_monitor.php:1188 +#: ../../operation/agentes/pandora_networkmap.view.php:293 +#: ../../operation/agentes/pandora_networkmap.view.php:302 +#: ../../mobile/operation/modules.php:455 +#: ../../mobile/operation/modules.php:472 +#: ../../mobile/operation/modules.php:508 +#: ../../mobile/operation/modules.php:525 +#: ../../include/class/Tree.class.php:1500 +#: ../../include/functions_modules.php:1883 +#: ../../include/functions_modules.php:1891 +msgid "NORMAL" +msgstr "NORMAL" + +#: ../../operation/search_modules.php:112 +#: ../../operation/search_modules.php:132 +#: ../../operation/agentes/status_monitor.php:1158 +#: ../../operation/agentes/status_monitor.php:1162 +#: ../../operation/agentes/status_monitor.php:1195 +#: ../../operation/agentes/status_monitor.php:1200 +#: ../../operation/agentes/pandora_networkmap.view.php:285 +#: ../../operation/agentes/pandora_networkmap.view.php:307 +#: ../../mobile/operation/modules.php:459 +#: ../../mobile/operation/modules.php:477 +#: ../../mobile/operation/modules.php:512 +#: ../../mobile/operation/modules.php:530 +#: ../../include/class/Tree.class.php:1474 +#: ../../include/functions_modules.php:1875 +#: ../../include/functions_modules.php:1895 +msgid "CRITICAL" +msgstr "CRÍTICO" + +#: ../../operation/search_modules.php:116 +#: ../../operation/search_modules.php:139 +#: ../../operation/agentes/status_monitor.php:1168 +#: ../../operation/agentes/status_monitor.php:1172 +#: ../../operation/agentes/status_monitor.php:1207 +#: ../../operation/agentes/status_monitor.php:1212 +#: ../../operation/agentes/pandora_networkmap.view.php:289 +#: ../../operation/agentes/pandora_networkmap.view.php:312 +#: ../../mobile/operation/modules.php:463 +#: ../../mobile/operation/modules.php:482 +#: ../../mobile/operation/modules.php:516 +#: ../../mobile/operation/modules.php:535 +#: ../../include/class/Tree.class.php:1481 +#: ../../include/functions_modules.php:1879 +#: ../../include/functions_modules.php:1899 +msgid "WARNING" +msgstr "ADVERTENCIA" + +#: ../../operation/search_modules.php:124 +#: ../../operation/search_modules.php:131 +#: ../../operation/search_modules.php:138 +#: ../../operation/agentes/status_monitor.php:1182 +#: ../../operation/agentes/status_monitor.php:1187 +#: ../../operation/agentes/status_monitor.php:1194 +#: ../../operation/agentes/status_monitor.php:1199 +#: ../../operation/agentes/status_monitor.php:1206 +#: ../../operation/agentes/status_monitor.php:1211 +#: ../../operation/agentes/pandora_networkmap.view.php:301 +#: ../../operation/agentes/pandora_networkmap.view.php:306 +#: ../../operation/agentes/pandora_networkmap.view.php:311 +#: ../../mobile/operation/modules.php:471 +#: ../../mobile/operation/modules.php:476 +#: ../../mobile/operation/modules.php:481 +#: ../../mobile/operation/modules.php:524 +#: ../../mobile/operation/modules.php:529 +#: ../../mobile/operation/modules.php:534 +#: ../../include/class/Tree.class.php:1486 +#: ../../include/functions_modules.php:1890 +#: ../../include/functions_modules.php:1894 +#: ../../include/functions_modules.php:1898 +msgid "UNKNOWN" +msgstr "DESCONOCIDO" + +#: ../../operation/search_modules.php:124 +#: ../../operation/search_modules.php:131 +#: ../../operation/search_modules.php:138 +#: ../../operation/agentes/status_monitor.php:1182 +#: ../../operation/agentes/status_monitor.php:1187 +#: ../../operation/agentes/status_monitor.php:1194 +#: ../../operation/agentes/status_monitor.php:1199 +#: ../../operation/agentes/status_monitor.php:1206 +#: ../../operation/agentes/status_monitor.php:1211 +#: ../../operation/agentes/pandora_networkmap.view.php:301 +#: ../../operation/agentes/pandora_networkmap.view.php:306 +#: ../../operation/agentes/pandora_networkmap.view.php:311 +#: ../../mobile/operation/modules.php:471 +#: ../../mobile/operation/modules.php:476 +#: ../../mobile/operation/modules.php:481 +#: ../../mobile/operation/modules.php:524 +#: ../../mobile/operation/modules.php:529 +#: ../../mobile/operation/modules.php:534 +#: ../../include/functions_modules.php:1890 +#: ../../include/functions_modules.php:1894 +#: ../../include/functions_modules.php:1898 +msgid "Last status" +msgstr "Último estado" + +#: ../../operation/search_results.php:64 ../../mobile/operation/home.php:135 +msgid "Global search" +msgstr "Búsqueda global" + +#: ../../operation/search_results.php:74 +#: ../../operation/agentes/group_view.php:120 +#: ../../operation/agentes/group_view.php:158 +#: ../../extensions/agents_modules.php:150 +#: ../../extensions/agents_modules.php:313 +#: ../../extensions/agents_alerts.php:177 ../../mobile/operation/home.php:58 +#: ../../mobile/operation/agents.php:158 +#: ../../mobile/include/functions_web.php:22 +#: ../../include/functions_pandora_networkmap.php:1563 +#: ../../include/functions_groups.php:46 +#: ../../include/functions_groups.php:784 +#: ../../include/functions_groups.php:786 +#: ../../include/functions_groups.php:788 +#: ../../include/functions_groups.php:789 +#: ../../include/functions_groups.php:790 +#: ../../include/functions_reporting_html.php:1322 +#: ../../include/functions_reporting_html.php:1556 +#: ../../godmode/alerts/alert_list.list.php:71 +#: ../../godmode/massive/massive_add_alerts.php:157 +#: ../../godmode/massive/massive_edit_agents.php:228 +#: ../../godmode/massive/massive_enable_disable_alerts.php:141 +#: ../../godmode/massive/massive_edit_plugins.php:299 +#: ../../godmode/massive/massive_delete_agents.php:127 +#: ../../godmode/massive/massive_standby_alerts.php:142 +#: ../../godmode/massive/massive_delete_modules.php:496 +#: ../../godmode/massive/massive_edit_modules.php:342 +#: ../../godmode/massive/massive_delete_tags.php:192 +#: ../../godmode/massive/massive_add_tags.php:129 +#: ../../godmode/massive/massive_delete_alerts.php:218 +#: ../../godmode/reporting/graph_builder.graph_editor.php:146 +#: ../../godmode/reporting/visual_console_builder.wizard.php:283 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1020 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1078 +#: ../../godmode/reporting/reporting_builder.list_items.php:162 +#: ../../godmode/reporting/reporting_builder.list_items.php:187 +msgid "Agents" +msgstr "Agentes" + +#: ../../operation/search_results.php:84 +#: ../../include/functions_reporting.php:7280 +#: ../../godmode/massive/massive_delete_profiles.php:104 +#: ../../godmode/massive/massive_add_profiles.php:90 +msgid "Users" +msgstr "Usuarios" + +#: ../../operation/search_results.php:94 ../../operation/search_agents.php:65 +#: ../../operation/agentes/ver_agente.php:973 +#: ../../operation/agentes/estado_agente.php:528 +#: ../../extensions/agents_alerts.php:254 +#: ../../mobile/operation/alerts.php:154 ../../mobile/operation/agents.php:83 +#: ../../mobile/operation/agents.php:324 ../../mobile/operation/agent.php:250 +#: ../../mobile/include/functions_web.php:25 +#: ../../include/functions_reports.php:609 +#: ../../include/functions_reports.php:611 +#: ../../include/functions_reports.php:614 +#: ../../include/functions_graph.php:748 +#: ../../include/functions_graph.php:3940 +#: ../../include/functions_graph.php:4666 +#: ../../include/functions_treeview.php:374 +#: ../../include/functions_reporting_html.php:1602 +#: ../../include/functions_reporting_html.php:3245 +#: ../../godmode/alerts/configure_alert_special_days.php:55 +#: ../../godmode/alerts/alert_special_days.php:44 +#: ../../godmode/alerts/alert_actions.php:66 +#: ../../godmode/alerts/alert_actions.php:92 +#: ../../godmode/alerts/alert_actions.php:110 +#: ../../godmode/alerts/alert_actions.php:127 +#: ../../godmode/alerts/alert_actions.php:207 +#: ../../godmode/alerts/alert_actions.php:218 +#: ../../godmode/alerts/alert_actions.php:287 +#: ../../godmode/alerts/alert_actions.php:306 +#: ../../godmode/alerts/alert_actions.php:319 +#: ../../godmode/alerts/alert_commands.php:249 +#: ../../godmode/alerts/configure_alert_command.php:41 +#: ../../godmode/alerts/configure_alert_action.php:56 +#: ../../godmode/alerts/configure_alert_action.php:65 +#: ../../godmode/alerts/configure_alert_template.php:62 +#: ../../godmode/alerts/configure_alert_template.php:82 +#: ../../godmode/alerts/configure_alert_template.php:100 +#: ../../godmode/alerts/alert_list.php:326 +#: ../../godmode/alerts/alert_list.php:329 +#: ../../godmode/alerts/alert_templates.php:132 +#: ../../godmode/alerts/alert_templates.php:175 +#: ../../godmode/alerts/alert_templates.php:194 +#: ../../godmode/alerts/alert_templates.php:210 ../../godmode/menu.php:140 +#: ../../godmode/massive/massive_copy_modules.php:153 +#: ../../godmode/groups/group_list.php:339 +#: ../../godmode/groups/configure_group.php:170 +#: ../../godmode/agentes/configurar_agente.php:312 +#: ../../godmode/agentes/modificar_agente.php:578 +msgid "Alerts" +msgstr "Alertas" + +#: ../../operation/search_results.php:104 +#: ../../operation/agentes/ver_agente.php:1058 +#: ../../include/functions_groups.php:106 +#: ../../include/functions_groups.php:163 +#: ../../include/functions_reports.php:498 +#: ../../include/functions_reports.php:500 +#: ../../include/functions_reports.php:504 +#: ../../include/functions_reports.php:506 +#: ../../include/functions_reports.php:510 +#: ../../include/functions_reports.php:512 +#: ../../include/functions_reports.php:514 +#: ../../include/functions_reports.php:518 +#: ../../include/functions_reports.php:522 +#: ../../include/functions_reports.php:525 +msgid "Graphs" +msgstr "Gráficas" + +#: ../../operation/search_results.php:114 +#: ../../include/functions_groups.php:120 +msgid "Reports" +msgstr "Informes" + +#: ../../operation/search_results.php:124 +msgid "Maps" +msgstr "Mapas" + +#: ../../operation/search_results.php:144 +msgid "Helps" +msgstr "Ayudas" + +#: ../../operation/search_results.php:161 +#: ../../operation/agentes/status_monitor.php:336 +#: ../../operation/agentes/estado_agente.php:180 +#: ../../operation/agentes/estado_agente.php:198 +#: ../../operation/incidents/incident.php:294 +#: ../../general/ui/agents_list.php:80 ../../general/ui/agents_list.php:91 +#: ../../include/functions_snmp_browser.php:556 +#: ../../godmode/alerts/alert_templates.php:256 +#: ../../godmode/alerts/alert_templates.php:260 +#: ../../godmode/users/user_list.php:230 ../../godmode/users/user_list.php:234 +#: ../../godmode/reporting/reporting_builder.php:439 +#: ../../godmode/modules/manage_network_components.php:524 +#: ../../godmode/agentes/modificar_agente.php:169 +#: ../../godmode/agentes/modificar_agente.php:173 +#: ../../godmode/agentes/module_manager.php:45 +#: ../../godmode/agentes/planned_downtime.list.php:141 +#: ../../godmode/agentes/planned_downtime.list.php:177 +msgid "Search" +msgstr "Buscar" + +#: ../../operation/search_agents.php:91 +#: ../../operation/agentes/alerts_status.functions.php:76 +#: ../../operation/agentes/estado_generalagente.php:79 +#: ../../operation/agentes/estado_generalagente.php:294 +#: ../../mobile/operation/alerts.php:40 ../../mobile/operation/agent.php:124 +#: ../../include/functions_groups.php:2158 +#: ../../include/functions_treeview.php:74 +#: ../../include/functions_treeview.php:551 +#: ../../include/functions_reporting_html.php:2089 +#: ../../include/functions_reporting.php:3572 +#: ../../godmode/alerts/alert_view.php:516 +#: ../../godmode/alerts/configure_alert_template.php:663 +#: ../../godmode/massive/massive_edit_agents.php:364 +#: ../../godmode/massive/massive_edit_modules.php:467 +#: ../../godmode/agentes/module_manager_editor_common.php:172 +#: ../../godmode/agentes/module_manager_editor_common.php:471 +#: ../../godmode/agentes/agent_manager.php:341 +#: ../../godmode/agentes/modificar_agente.php:562 +msgid "Disabled" +msgstr "Desactivado" + +#: ../../operation/agentes/status_monitor.php:45 +msgid "Monitor view" +msgstr "Vista del monitor" + +#: ../../operation/agentes/status_monitor.php:306 +msgid "Monitor status" +msgstr "Estado del monitor" + +#: ../../operation/agentes/status_monitor.php:311 +#: ../../operation/agentes/estado_monitores.php:463 +#: ../../operation/agentes/ver_agente.php:810 +#: ../../extensions/agents_modules.php:132 +#: ../../mobile/operation/modules.php:140 +#: ../../mobile/operation/modules.php:141 +#: ../../mobile/operation/modules.php:229 +#: ../../mobile/operation/modules.php:230 +#: ../../include/functions_graph.php:5355 +#: ../../include/functions_treeview.php:123 +#: ../../include/functions_events.php:2075 +#: ../../godmode/massive/massive_edit_modules.php:518 +#: ../../godmode/reporting/reporting_builder.item_editor.php:909 +#: ../../godmode/modules/manage_network_components_form_common.php:95 +#: ../../godmode/agentes/module_manager_editor_common.php:174 +msgid "Module group" +msgstr "Grupo del módulo" + +#: ../../operation/agentes/status_monitor.php:312 +#: ../../include/functions_graph.php:5308 +#: ../../include/functions_treeview.php:118 +#: ../../godmode/massive/massive_edit_modules.php:521 +#: ../../godmode/agentes/module_manager_editor_common.php:176 +#: ../../godmode/agentes/module_manager_editor_common.php:182 +msgid "Not assigned" +msgstr "Sin asignar" + +#: ../../operation/agentes/status_monitor.php:327 +#: ../../operation/incidents/incident.php:238 +msgid "Show" +msgstr "Mostrar" + +#: ../../operation/agentes/status_monitor.php:332 +#: ../../operation/agentes/status_monitor.php:958 +#: ../../mobile/operation/modules.php:489 +#: ../../mobile/operation/modules.php:752 ../../include/ajax/module.php:741 +#: ../../godmode/alerts/alert_list.list.php:86 +#: ../../godmode/modules/manage_network_components.php:565 +#: ../../godmode/modules/manage_network_templates_form.php:196 +#: ../../godmode/agentes/agent_template.php:228 +msgid "Module name" +msgstr "Nombre módulo" + +#: ../../operation/agentes/status_monitor.php:341 +#: ../../operation/agentes/status_monitor.php:344 +#: ../../operation/agentes/alerts_status.functions.php:86 +msgid "Only it is show tags in use." +msgstr "Mostrar sólo etiquetas en uso" + +#: ../../operation/agentes/status_monitor.php:349 +#: ../../operation/agentes/alerts_status.functions.php:91 +msgid "No tags" +msgstr "Sin etiquetas" + +#: ../../operation/agentes/status_monitor.php:380 +#: ../../godmode/agentes/module_manager_editor_data.php:17 +msgid "Data server module" +msgstr "Módulo del servidor de datos" + +#: ../../operation/agentes/status_monitor.php:382 +#: ../../godmode/agentes/module_manager_editor_network.php:64 +msgid "Network server module" +msgstr "Módulo del servidor de red" + +#: ../../operation/agentes/status_monitor.php:384 +#: ../../godmode/agentes/module_manager_editor_plugin.php:47 +msgid "Plugin server module" +msgstr "Módulo del servidor de complementos" + +#: ../../operation/agentes/status_monitor.php:386 +#: ../../godmode/agentes/module_manager_editor_wmi.php:32 +msgid "WMI server module" +msgstr "Módulo del servidor WMI" + +#: ../../operation/agentes/status_monitor.php:388 +#: ../../godmode/agentes/module_manager_editor_prediction.php:88 +msgid "Prediction server module" +msgstr "Módulo del servidor de predicción" + +#: ../../operation/agentes/status_monitor.php:390 +msgid "Web server module" +msgstr "Módulo del servidor web" + +#: ../../operation/agentes/status_monitor.php:394 +#: ../../operation/agentes/status_monitor.php:962 +msgid "Server type" +msgstr "Tipo de servidor" + +#: ../../operation/agentes/status_monitor.php:398 +#: ../../godmode/agentes/modificar_agente.php:158 +msgid "Only enabled" +msgstr "Sólo habilitado" + +#: ../../operation/agentes/status_monitor.php:398 +#: ../../godmode/agentes/modificar_agente.php:157 +msgid "Only disabled" +msgstr "Sólo deshabilitado" + +#: ../../operation/agentes/status_monitor.php:400 +msgid "Show monitors..." +msgstr "Mostrar módulos..." + +#: ../../operation/agentes/status_monitor.php:410 +msgid "Data type" +msgstr "Tipo de dato" + +#: ../../operation/agentes/status_monitor.php:529 +msgid "Advanced Options" +msgstr "Opciones Avanzadas" + +#: ../../operation/agentes/status_monitor.php:539 +#: ../../operation/agentes/agent_fields.php:38 +msgid "Agent custom fields" +msgstr "Campos personalizados de agente" + +#: ../../operation/agentes/status_monitor.php:946 +#: ../../operation/agentes/alerts_status.php:412 +#: ../../operation/agentes/alerts_status.php:459 +#: ../../include/ajax/module.php:735 ../../godmode/alerts/alert_view.php:123 +#: ../../godmode/agentes/module_manager.php:551 +msgid "Policy" +msgstr "Política" + +#: ../../operation/agentes/status_monitor.php:946 +#: ../../operation/agentes/alerts_status.php:413 +#: ../../operation/agentes/alerts_status.php:459 +#: ../../include/ajax/module.php:735 +#: ../../godmode/snmpconsole/snmp_alert.php:1148 +#: ../../godmode/reporting/reporting_builder.list_items.php:285 +#: ../../godmode/agentes/module_manager.php:551 +msgid "P." +msgstr "P." + +#: ../../operation/agentes/status_monitor.php:952 +msgid "Data Type" +msgstr "Tipo de Dato" + +#: ../../operation/agentes/status_monitor.php:980 +#: ../../include/ajax/module.php:748 +#: ../../godmode/agentes/module_manager.php:565 +msgid "Warn" +msgstr "Advertencia" + +#: ../../operation/agentes/status_monitor.php:1035 +#: ../../operation/agentes/pandora_networkmap.view.php:258 +msgid "(Adopt) " +msgstr "Adoptar " + +#: ../../operation/agentes/status_monitor.php:1045 +#: ../../operation/agentes/pandora_networkmap.view.php:268 +msgid "(Unlinked) (Adopt) " +msgstr "(Sin enlazar) (Adoptar) " + +#: ../../operation/agentes/status_monitor.php:1049 +#: ../../operation/agentes/pandora_networkmap.view.php:272 +msgid "(Unlinked) " +msgstr "(Sin enlazar) " + +#: ../../operation/agentes/status_monitor.php:1362 +#: ../../operation/agentes/status_monitor.php:1369 +#: ../../mobile/operation/modules.php:610 +#: ../../mobile/operation/modules.php:617 ../../include/functions_ui.php:3684 +#: ../../include/functions_ui.php:3691 +#: ../../include/functions_treeview.php:279 +#: ../../include/functions_treeview.php:286 +msgid "Snapshot view" +msgstr "Vista de captura de comando" + +#: ../../operation/agentes/status_monitor.php:1443 +msgid "This group doesn't have any monitor" +msgstr "Este grupo no tiene ningún monitor definido" + +#: ../../operation/agentes/pandora_networkmap.php:153 +msgid "Succesfully created" +msgstr "Creado correctamente" + +#: ../../operation/agentes/pandora_networkmap.php:153 +#: ../../include/functions_planned_downtimes.php:110 +#: ../../include/functions_planned_downtimes.php:727 +#: ../../godmode/alerts/alert_special_days.php:149 +#: ../../godmode/alerts/alert_actions.php:185 +#: ../../godmode/alerts/alert_commands.php:294 +#: ../../godmode/alerts/configure_alert_template.php:119 +#: ../../godmode/alerts/configure_alert_template.php:432 +#: ../../godmode/alerts/alert_list.php:104 ../../godmode/setup/news.php:57 +#: ../../godmode/setup/gis.php:47 ../../godmode/users/configure_user.php:237 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2431 +#: ../../godmode/modules/manage_nc_groups.php:74 +#: ../../godmode/modules/manage_network_components.php:162 +#: ../../godmode/modules/manage_network_components.php:256 +#: ../../godmode/agentes/configurar_agente.php:266 +#: ../../godmode/agentes/configurar_agente.php:617 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:290 +#: ../../godmode/agentes/planned_downtime.editor.php:356 +msgid "Could not be created" +msgstr "No se ha podido crear" + +#: ../../operation/agentes/pandora_networkmap.php:247 +msgid "Succesfully updated" +msgstr "Actualizado correctamente" + +#: ../../operation/agentes/pandora_networkmap.php:260 +msgid "Succesfully duplicate" +msgstr "Duplicado correctamente" + +#: ../../operation/agentes/pandora_networkmap.php:260 +msgid "Could not be duplicated" +msgstr "No se puede duplicar" + +#: ../../operation/agentes/pandora_networkmap.php:269 +msgid "Succesfully deleted" +msgstr "Eliminado correctamente" + +#: ../../operation/agentes/pandora_networkmap.php:365 +#: ../../operation/agentes/pandora_networkmap.view.php:701 +#: ../../operation/agentes/pandora_networkmap.editor.php:133 +msgid "Networkmap" +msgstr "Mapa de red" + +#: ../../operation/agentes/pandora_networkmap.php:399 +#: ../../include/functions_reporting_html.php:3479 +msgid "Nodes" +msgstr "Nodos" + +#: ../../operation/agentes/pandora_networkmap.php:402 +#: ../../operation/agentes/pandora_networkmap.php:479 +#: ../../godmode/alerts/alert_actions.php:342 +#: ../../godmode/massive/massive_copy_modules.php:224 +#: ../../godmode/reporting/map_builder.php:214 +msgid "Copy" +msgstr "Copiar" + +#: ../../operation/agentes/pandora_networkmap.php:466 +msgid "Pending to generate" +msgstr "Pendiente de generar" + +#: ../../operation/agentes/pandora_networkmap.php:486 +msgid "Config" +msgstr "Config" + +#: ../../operation/agentes/pandora_networkmap.php:502 +msgid "There are no maps defined." +msgstr "No hay mapas definidos." + +#: ../../operation/agentes/pandora_networkmap.php:509 +msgid "Create networkmap" +msgstr "Crear mapa de red" + +#: ../../operation/agentes/agent_fields.php:28 +#: ../../operation/agentes/custom_fields.php:28 +#: ../../operation/agentes/estado_generalagente.php:46 +#: ../../include/functions_treeview.php:506 +msgid "There was a problem loading agent" +msgstr "Hubo un problema al cargar la configuración del agente" + +#: ../../operation/agentes/agent_fields.php:45 +#: ../../operation/agentes/estado_generalagente.php:354 +#: ../../include/functions_treeview.php:691 +msgid "Custom field" +msgstr "Campo personalizado" + +#: ../../operation/agentes/agent_fields.php:48 +#: ../../operation/agentes/custom_fields.php:87 +msgid "empty" +msgstr "vacío" + +#: ../../operation/agentes/pandora_networkmap.view.php:111 +msgid "Success be updated." +msgstr "Actualizado correctamente" + +#: ../../operation/agentes/pandora_networkmap.view.php:114 +msgid "Could not be updated." +msgstr "No se puede actualizar" + +#: ../../operation/agentes/pandora_networkmap.view.php:227 +msgid "Name: " +msgstr "Nombre: " + +#: ../../operation/agentes/pandora_networkmap.view.php:277 +msgid "Policy: " +msgstr "Política: " + +#: ../../operation/agentes/pandora_networkmap.view.php:326 +msgid "Status: " +msgstr "Estado: " + +#: ../../operation/agentes/pandora_networkmap.view.php:370 +msgid "Data: " +msgstr "Datos: " + +#: ../../operation/agentes/pandora_networkmap.view.php:373 +#: ../../operation/agentes/estado_generalagente.php:552 +msgid "Last contact: " +msgstr "Último contacto: " + +#: ../../operation/agentes/pandora_networkmap.view.php:703 +#: ../../operation/agentes/pandora_networkmap.editor.php:162 +msgid "Not found networkmap." +msgstr "No se encontró ningún networkmap." + +#: ../../operation/agentes/pandora_networkmap.view.php:747 +msgid "List of networkmap" +msgstr "Lista de mapas de red" + +#: ../../operation/agentes/exportdata.php:82 +#: ../../operation/agentes/exportdata.excel.php:67 +#: ../../operation/agentes/exportdata.csv.php:68 +msgid "Invalid time specified" +msgstr "Hora especificada no válida" + +#: ../../operation/agentes/exportdata.php:218 +#: ../../operation/agentes/exportdata.excel.php:165 +#: ../../operation/agentes/exportdata.csv.php:182 +msgid "No modules specified" +msgstr "No se especificó ningún módulo" + +#: ../../operation/agentes/exportdata.php:244 +#: ../../godmode/db/db_refine.php:83 +msgid "Source agent" +msgstr "Agente origen" + +#: ../../operation/agentes/exportdata.php:276 +msgid "No modules of type string. You can not calculate their average" +msgstr "No hay módulos de tipo cadena. No puede calcular su media." + +#: ../../operation/agentes/exportdata.php:310 +#: ../../operation/agentes/interface_traffic_graph_win.php:226 +#: ../../operation/agentes/stat_win.php:314 +#: ../../operation/agentes/graphs.php:132 +#: ../../mobile/operation/module_graph.php:452 +msgid "Begin date" +msgstr "Fecha de inicio" + +#: ../../operation/agentes/exportdata.php:319 +msgid "End date" +msgstr "Fecha final" + +#: ../../operation/agentes/exportdata.php:327 +msgid "Export type" +msgstr "Tipo de exportación" + +#: ../../operation/agentes/exportdata.php:330 +#: ../../include/functions_netflow.php:1034 +msgid "Data table" +msgstr "Tabla de datos" + +#: ../../operation/agentes/exportdata.php:331 +#: ../../extensions/insert_data.php:185 +msgid "CSV" +msgstr "CSV" + +#: ../../operation/agentes/exportdata.php:332 +msgid "MS Excel" +msgstr "MS Excel" + +#: ../../operation/agentes/exportdata.php:333 +msgid "Average per hour/day" +msgstr "Media por hora/día" + +#: ../../operation/agentes/exportdata.php:341 +#: ../../extensions/resource_exportation.php:354 +#: ../../extensions/resource_exportation.php:357 +msgid "Export" +msgstr "Exportar" + +#: ../../operation/agentes/custom_fields.php:52 +msgid "No fields defined" +msgstr "No se han definido campos" + +#: ../../operation/agentes/custom_fields.php:59 +#: ../../godmode/alerts/alert_view.php:441 +#: ../../godmode/alerts/alert_view.php:531 +#: ../../godmode/agentes/fields_manager.php:95 +msgid "Field" +msgstr "Campo" + +#: ../../operation/agentes/custom_fields.php:61 +#: ../../godmode/agentes/configure_field.php:51 +#: ../../godmode/agentes/fields_manager.php:96 +msgid "Display on front" +msgstr "Mostrar en la vista principal" + +#: ../../operation/agentes/custom_fields.php:62 +#: ../../godmode/agentes/configure_field.php:51 +#: ../../godmode/agentes/fields_manager.php:96 +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." + +#: ../../operation/agentes/estado_monitores.php:35 +msgid "Tag's information" +msgstr "Información de etiquetas" + +#: ../../operation/agentes/estado_monitores.php:81 +msgid "Relationship information" +msgstr "Información de relaciones" + +#: ../../operation/agentes/estado_monitores.php:128 +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:129 +msgid "Full list of monitors" +msgstr "Lista completa de monitores" + +#: ../../operation/agentes/estado_monitores.php:154 +msgid "List of modules" +msgstr "Lista de módulos" + +#: ../../operation/agentes/estado_monitores.php:445 +msgid "Status:" +msgstr "Estado:" + +#: ../../operation/agentes/estado_monitores.php:451 +msgid "Not Normal" +msgstr "No normal" + +#: ../../operation/agentes/estado_monitores.php:459 +msgid "Free text for search (*):" +msgstr "Texto libre de búsqueda (*)" + +#: ../../operation/agentes/estado_monitores.php:460 +msgid "Search by module name, list matches." +msgstr "Búsqueda por nombre del módulo, lista las coincidencias." + +#: ../../operation/agentes/estado_monitores.php:472 +#: ../../godmode/agentes/module_manager.php:120 +msgid "Show in hierachy mode" +msgstr "Mostrar en modo herencia" + +#: ../../operation/agentes/estado_monitores.php:475 +msgid "Reset" +msgstr "Reiniciar" + +#: ../../operation/agentes/snapshot_view.php:66 +msgid "Current data at" +msgstr "Datos actuales a" + +#: ../../operation/agentes/alerts_status.php:108 +msgid "Full list of alerts" +msgstr "Lista completa de alertas" + +#: ../../operation/agentes/alerts_status.php:135 +msgid "Alerts view" +msgstr "Vista de alertas" + +#: ../../operation/agentes/alerts_status.php:144 +msgid "Insufficient permissions to validate alerts" +msgstr "Permisos insuficientes para validar alertas" + +#: ../../operation/agentes/alerts_status.php:396 +#: ../../godmode/alerts/alert_list.list.php:163 +msgid "Alert control filter" +msgstr "Filtro de control de alertas" + +#: ../../operation/agentes/alerts_status.php:416 +#: ../../operation/agentes/alerts_status.php:462 +#: ../../operation/agentes/alerts_status.php:497 +#: ../../operation/agentes/alerts_status.php:532 +#: ../../operation/agentes/alerts_status.functions.php:103 +#: ../../godmode/alerts/alert_list.list.php:138 +msgid "Standby" +msgstr "Standby" + +#: ../../operation/agentes/alerts_status.php:417 +#: ../../operation/agentes/alerts_status.php:462 +#: ../../operation/agentes/alerts_status.php:497 +#: ../../operation/agentes/alerts_status.php:532 +#: ../../mobile/operation/agents.php:322 +#: ../../include/functions_events.php:898 +#: ../../godmode/agentes/module_manager.php:554 +msgid "S." +msgstr "S." + +#: ../../operation/agentes/alerts_status.php:422 +#: ../../operation/agentes/alerts_status.php:466 +#: ../../operation/agentes/alerts_status.php:500 +#: ../../operation/agentes/alerts_status.php:535 +#: ../../include/ajax/module.php:732 +msgid "Force execution" +msgstr "Forzar ejecución" + +#: ../../operation/agentes/alerts_status.php:423 +#: ../../operation/agentes/alerts_status.php:466 +#: ../../operation/agentes/alerts_status.php:500 +#: ../../operation/agentes/alerts_status.php:535 +#: ../../include/ajax/module.php:732 +msgid "F." +msgstr "F." + +#: ../../operation/agentes/alerts_status.php:431 +#: ../../operation/agentes/alerts_status.php:472 +#: ../../operation/agentes/alerts_status.php:506 +#: ../../operation/agentes/alerts_status.php:540 +#: ../../extensions/agents_alerts.php:282 +#: ../../include/functions_treeview.php:424 +#: ../../include/functions_reporting_html.php:3099 +#: ../../godmode/snmpconsole/snmp_alert.php:1169 +#: ../../godmode/alerts/alert_view.php:79 +msgid "Last fired" +msgstr "Lanzada por última vez" + +#: ../../operation/agentes/alerts_status.php:599 +msgid "No alerts found" +msgstr "No se encontró ninguna alerta" + +#: ../../operation/agentes/datos_agente.php:165 +msgid "Received data from" +msgstr "Datos recibidos de" + +#: ../../operation/agentes/datos_agente.php:172 +msgid "Main database" +msgstr "Base de datos principal" + +#: ../../operation/agentes/datos_agente.php:172 +msgid "History database" +msgstr "BBDD de histórico" + +#: ../../operation/agentes/datos_agente.php:173 +msgid "" +"Switch between the main database and the history database to retrieve module " +"data" +msgstr "" +"Cambiar entre base de datos principal y de histórico para recoger los datos " +"de los módulos" + +#: ../../operation/agentes/datos_agente.php:185 +#: ../../include/ajax/module.php:149 +msgid "Choose a time from now" +msgstr "Elija un tiempo a partir de ahora" + +#: ../../operation/agentes/datos_agente.php:188 +#: ../../include/ajax/module.php:161 +msgid "Specify time range" +msgstr "Especificar rango de tiempo" + +#: ../../operation/agentes/datos_agente.php:202 +#: ../../operation/agentes/alerts_status.functions.php:97 +msgid "Free text for search" +msgstr "Búsqueda de texto libre" + +#: ../../operation/agentes/datos_agente.php:286 +#: ../../include/ajax/module.php:345 +#: ../../godmode/agentes/module_manager.php:523 +msgid "No available data to show" +msgstr "No hay datos disponibles para mostrar" + +#: ../../operation/agentes/tactical.php:46 +#: ../../operation/agentes/group_view.php:61 +#: ../../extensions/agents_modules.php:56 +#: ../../extensions/agents_alerts.php:55 +msgid "Last update" +msgstr "Última actualización" + +#: ../../operation/agentes/tactical.php:135 +msgid "Report of State" +msgstr "Informe de Estado" + +#: ../../operation/agentes/tactical.php:188 +#: ../../include/functions_events.php:880 +msgid "Latest events" +msgstr "Últimos eventos" + +#: ../../operation/agentes/ehorus.php:30 +msgid "Missing agent id" +msgstr "Falta id de agente" + +#: ../../operation/agentes/ehorus.php:48 +msgid "Missing ehorus agent id" +msgstr "Falta id de agente de ehorus" + +#: ../../operation/agentes/ehorus.php:80 +msgid "There was an error retrieving an authorization token" +msgstr "Ha habido un error en la recepción del token de autorización" + +#: ../../operation/agentes/ehorus.php:93 +#: ../../operation/agentes/ehorus.php:129 +msgid "There was an error processing the response" +msgstr "Ha habido un error en el procesamiento de la respuesta" + +#: ../../operation/agentes/ehorus.php:116 +msgid "There was an error retrieving the agent data" +msgstr "Ha habido un error en la obtención de los datos del agente" + +#: ../../operation/agentes/ehorus.php:134 +msgid "Remote management of this agent with eHorus" +msgstr "Control remoto de este agente con eHorus" + +#: ../../operation/agentes/ehorus.php:136 +msgid "Launch" +msgstr "Iniciar" + +#: ../../operation/agentes/ehorus.php:142 +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:144 +msgid "Reload the page to request a new authorization token" +msgstr "Refresque la página para conseguir otro token de autorización" + +#: ../../operation/agentes/alerts_status.functions.php:32 +msgid "Alert(s) validated" +msgstr "Alerta(s) validada(s)" + +#: ../../operation/agentes/alerts_status.functions.php:33 +msgid "Error processing alert(s)" +msgstr "Error al procesar la(s) alerta(s)" + +#: ../../operation/agentes/alerts_status.functions.php:72 +#: ../../mobile/operation/alerts.php:36 +msgid "All (Enabled)" +msgstr "Todos (Habilitados)" + +#: ../../operation/agentes/alerts_status.functions.php:80 +#: ../../mobile/operation/alerts.php:44 ../../include/functions_ui.php:826 +#: ../../godmode/alerts/alert_list.list.php:140 +msgid "Standby on" +msgstr "Modo standby activado" + +#: ../../operation/agentes/alerts_status.functions.php:81 +#: ../../mobile/operation/alerts.php:45 +#: ../../godmode/alerts/alert_list.list.php:141 +msgid "Standby off" +msgstr "Modo standby desactivado" + +#: ../../operation/agentes/alerts_status.functions.php:99 +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/alerts_status.functions.php:109 +msgid "No actions" +msgstr "Sin Acciones" + +#: ../../operation/agentes/interface_traffic_graph_win.php:48 +#: ../../operation/agentes/stat_win.php:44 +msgid "There was a problem connecting with the node" +msgstr "Hubo un problema conectando con el nodo" + +#: ../../operation/agentes/interface_traffic_graph_win.php:66 +msgid "In" +msgstr "En" + +#: ../../operation/agentes/interface_traffic_graph_win.php:67 +msgid "Out" +msgstr "Fuera" + +#: ../../operation/agentes/interface_traffic_graph_win.php:201 +#: ../../operation/agentes/stat_win.php:268 +msgid "Pandora FMS Graph configuration menu" +msgstr "Menú de configuración de gráficos" + +#: ../../operation/agentes/interface_traffic_graph_win.php:203 +#: ../../operation/agentes/stat_win.php:270 +msgid "Please, make your changes and apply with the Reload button" +msgstr "Haga sus cambios y aplíquelos con el botón Actualizar." + +#: ../../operation/agentes/interface_traffic_graph_win.php:220 +#: ../../operation/agentes/stat_win.php:297 +msgid "Refresh time" +msgstr "Tiempo de actualización" + +#: ../../operation/agentes/interface_traffic_graph_win.php:239 +#: ../../operation/agentes/stat_win.php:377 +msgid "Show percentil" +msgstr "Mostrar el percentil" + +#: ../../operation/agentes/interface_traffic_graph_win.php:245 +#: ../../operation/agentes/stat_win.php:326 +msgid "Zoom factor" +msgstr "Factor de ampliación" + +#: ../../operation/agentes/interface_traffic_graph_win.php:272 +#: ../../operation/agentes/stat_win.php:421 +msgid "Reload" +msgstr "Actualizar" + +#: ../../operation/agentes/ver_agente.php:686 +msgid "Main IP" +msgstr "IP principal" + +#: ../../operation/agentes/ver_agente.php:697 +#: ../../include/functions_events.php:2043 +msgid "Last remote contact" +msgstr "Último contacto remoto" + +#: ../../operation/agentes/ver_agente.php:737 +msgid "Monitors down" +msgstr "Monitores caídos" + +#: ../../operation/agentes/ver_agente.php:773 +#: ../../mobile/operation/groups.php:161 +#: ../../include/functions_groups.php:848 +#: ../../include/functions_groups.php:850 +#: ../../include/functions_groups.php:852 +#: ../../include/functions_groups.php:853 +#: ../../include/functions_groups.php:854 +#: ../../include/functions_reporting_html.php:2920 +#: ../../include/functions_reporting_html.php:2929 +msgid "Alerts fired" +msgstr "Alertas disparadas" + +#: ../../operation/agentes/ver_agente.php:822 +msgid "Address" +msgstr "Dirección" + +#: ../../operation/agentes/ver_agente.php:854 +#: ../../operation/agentes/estado_generalagente.php:278 +#: ../../include/functions_visual_map_editor.php:525 +#: ../../godmode/massive/massive_edit_agents.php:280 +#: ../../godmode/reporting/visual_console_builder.elements.php:81 +#: ../../godmode/groups/configure_group.php:134 +#: ../../godmode/modules/manage_nc_groups_form.php:70 +#: ../../godmode/agentes/agent_manager.php:255 +msgid "Parent" +msgstr "Padre" + +#: ../../operation/agentes/ver_agente.php:863 +msgid "Sons" +msgstr "Hijos" + +#: ../../operation/agentes/ver_agente.php:1008 +#: ../../godmode/agentes/configurar_agente.php:374 +msgid "GIS data" +msgstr "Datos GIS" + +#: ../../operation/agentes/ver_agente.php:1035 +#: ../../operation/agentes/estado_generalagente.php:329 +#: ../../include/functions_treeview.php:668 +#: ../../godmode/agentes/agent_manager.php:419 +msgid "Url address" +msgstr "Dirección Url" + +#: ../../operation/agentes/ver_agente.php:1046 +#: ../../include/functions_events.php:2048 ../../godmode/menu.php:36 +#: ../../godmode/events/events.php:53 ../../godmode/events/events.php:58 +#: ../../godmode/events/events.php:69 +#: ../../godmode/massive/massive_edit_agents.php:465 +#: ../../godmode/agentes/agent_manager.php:470 +msgid "Custom fields" +msgstr "Campos personalizados" + +#: ../../operation/agentes/ver_agente.php:1076 +msgid "Log Viewer" +msgstr "Visor de sucesos" + +#: ../../operation/agentes/ver_agente.php:1089 ../../godmode/menu.php:269 +#: ../../godmode/setup/setup.php:102 ../../godmode/setup/setup.php:133 +msgid "eHorus" +msgstr "eHorus" + +#: ../../operation/agentes/ver_agente.php:1096 +msgid "Terminal" +msgstr "Terminal" + +#: ../../operation/agentes/ver_agente.php:1101 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1281 +msgid "Display" +msgstr "Mostrar" + +#: ../../operation/agentes/ver_agente.php:1106 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:301 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:793 +msgid "Processes" +msgstr "Procesos" + +#: ../../operation/agentes/ver_agente.php:1111 +#: ../../general/firts_task/service_list.php:28 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:300 +msgid "Services" +msgstr "Servicios" + +#: ../../operation/agentes/ver_agente.php:1116 +msgid "Files" +msgstr "Archivos" + +#: ../../operation/agentes/pandora_networkmap.editor.php:187 +msgid "Node radius" +msgstr "Radio de los nodos" + +#: ../../operation/agentes/pandora_networkmap.editor.php:197 +#: ../../include/functions_groups.php:92 ../../godmode/menu.php:212 +msgid "Recon task" +msgstr "Tarea de reconocimiento" + +#: ../../operation/agentes/pandora_networkmap.editor.php:198 +msgid "CIDR IP mask" +msgstr "Máscara CIDR" + +#: ../../operation/agentes/pandora_networkmap.editor.php:200 +msgid "Source from recon task" +msgstr "Origen de tarea recon" + +#: ../../operation/agentes/pandora_networkmap.editor.php:202 +msgid "" +"It is setted any recon task, the nodes get from the recontask IP mask " +"instead from the group." +msgstr "" +"Si está seleccionada alguna tarea recon, los nodos se obtendrán de la " +"máscara IP de la recontask en lugar del grupo" + +#: ../../operation/agentes/pandora_networkmap.editor.php:206 +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:208 +msgid "Source from CIDR IP mask" +msgstr "Origen de máscara CIDR" + +#: ../../operation/agentes/pandora_networkmap.editor.php:212 +msgid "Don't show subgroups:" +msgstr "No mostrar subgrupos" + +#: ../../operation/agentes/pandora_networkmap.editor.php:225 +msgid "Method generation networkmap" +msgstr "Método de generación de mapas de red" + +#: ../../operation/agentes/pandora_networkmap.editor.php:237 +msgid "Save networkmap" +msgstr "Guardar mapa de red" + +#: ../../operation/agentes/pandora_networkmap.editor.php:243 +msgid "Update networkmap" +msgstr "Actualizar mapa de red" + +#: ../../operation/agentes/group_view.php:117 +msgid "Summary of the status groups" +msgstr "Resumen de los grupos por estatus" + +#: ../../operation/agentes/group_view.php:170 +#: ../../include/functions_reporting_html.php:690 +#: ../../include/functions_reporting_html.php:2538 +msgid "Not Init" +msgstr "No iniciado" + +#: ../../operation/agentes/group_view.php:249 +#: ../../mobile/operation/modules.php:151 +#: ../../mobile/operation/modules.php:152 +#: ../../mobile/operation/modules.php:244 +#: ../../mobile/operation/modules.php:245 +msgid "Tag" +msgstr "Etiqueta" + +#: ../../operation/agentes/group_view.php:430 +#: ../../operation/agentes/estado_agente.php:642 +#: ../../godmode/agentes/modificar_agente.php:646 +msgid "There are no defined agents" +msgstr "No hay ningún agente definido" + +#: ../../operation/agentes/stat_win.php:115 +msgid "There was a problem locating the source of the graph" +msgstr "Hubo un problema al localizar la fuente del gráfico" + +#: ../../operation/agentes/stat_win.php:305 +msgid "Avg. Only" +msgstr "Solo la media" + +#: ../../operation/agentes/stat_win.php:320 +msgid "Begin time" +msgstr "Comenzar el tiempo" + +#: ../../operation/agentes/stat_win.php:345 +#: ../../operation/agentes/graphs.php:140 +msgid "Show events" +msgstr "Mostrar eventos" + +#: ../../operation/agentes/stat_win.php:356 +msgid "" +"Show events is disabled because this Pandora node is set the event " +"replication." +msgstr "" +"Los eventos no se muestran porque este nodo de Pandora tiene la replicación " +"de eventos activada." + +#: ../../operation/agentes/stat_win.php:362 +#: ../../operation/agentes/graphs.php:142 +msgid "Show alerts" +msgstr "Mostrar alertas" + +#: ../../operation/agentes/stat_win.php:368 +msgid "Show event graph" +msgstr "Mostrar gráfica de eventos" + +#: ../../operation/agentes/stat_win.php:383 +#: ../../mobile/operation/module_graph.php:418 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1295 +msgid "Time compare (Overlapped)" +msgstr "Comparación de tiempo (solapado)" + +#: ../../operation/agentes/stat_win.php:389 +#: ../../mobile/operation/module_graph.php:410 +msgid "Time compare (Separated)" +msgstr "Comparación de tiempo (por separado)" + +#: ../../operation/agentes/stat_win.php:395 +#: ../../mobile/operation/module_graph.php:426 +msgid "Show unknown graph" +msgstr "Mostrar gráficas desconocidas" + +#: ../../operation/agentes/estado_generalagente.php:42 +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:82 +#: ../../operation/agentes/estado_agente.php:572 +#: ../../mobile/operation/agent.php:129 +#: ../../include/class/Tree.class.php:1796 ../../include/ajax/module.php:879 +#: ../../godmode/massive/massive_edit_agents.php:416 +#: ../../godmode/massive/massive_edit_modules.php:601 +#: ../../godmode/agentes/module_manager_editor_common.php:565 +#: ../../godmode/agentes/planned_downtime.editor.php:488 +#: ../../godmode/agentes/agent_manager.php:423 +#: ../../godmode/agentes/modificar_agente.php:541 +#: ../../godmode/agentes/module_manager.php:643 +#: ../../godmode/agentes/planned_downtime.list.php:427 +msgid "Quiet" +msgstr "Silencioso" + +#: ../../operation/agentes/estado_generalagente.php:119 +msgid "" +"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." + +#: ../../operation/agentes/estado_generalagente.php:147 +#: ../../extensions/net_tools.php:131 +msgid "IP address" +msgstr "Dirección IP" + +#: ../../operation/agentes/estado_generalagente.php:196 +msgid "Agent contact" +msgstr "Contacto de agente" + +#: ../../operation/agentes/estado_generalagente.php:218 +msgid "Next contact" +msgstr "Siguiente contacto" + +#: ../../operation/agentes/estado_generalagente.php:241 +msgid "Agent info" +msgstr "Información del agente" + +#: ../../operation/agentes/estado_generalagente.php:256 +#: ../../include/functions_treeview.php:714 +msgid "Agent access rate (24h)" +msgstr "Accesibilidad del agente (24h)" + +#: ../../operation/agentes/estado_generalagente.php:268 +#: ../../include/functions_treeview.php:571 +msgid "Other IP addresses" +msgstr "Otras direcciones IP" + +#: ../../operation/agentes/estado_generalagente.php:292 +#: ../../godmode/massive/massive_edit_agents.php:368 +#: ../../godmode/servers/servers.build_table.php:160 +#: ../../godmode/agentes/configurar_agente.php:441 +#: ../../godmode/agentes/configurar_agente.php:553 +#: ../../godmode/agentes/agent_manager.php:347 +msgid "Remote configuration" +msgstr "Configuración remota" + +#: ../../operation/agentes/estado_generalagente.php:297 +#: ../../include/functions_groups.php:2158 +#: ../../include/functions_reporting_html.php:2086 +#: ../../godmode/alerts/configure_alert_template.php:663 +msgid "Enabled" +msgstr "Activado" + +#: ../../operation/agentes/estado_generalagente.php:310 +#: ../../include/functions_treeview.php:659 +msgid "Position (Long, Lat)" +msgstr "posición (longitud, latitud)" + +#: ../../operation/agentes/estado_generalagente.php:313 +msgid "There is no GIS data." +msgstr "No hay datos GIS" + +#: ../../operation/agentes/estado_generalagente.php:338 +#: ../../include/functions_treeview.php:676 +msgid "Timezone Offset" +msgstr "Franja horaria desactivada" + +#: ../../operation/agentes/estado_generalagente.php:388 +msgid "Active incident on this agent" +msgstr "Activar incidencia a este agente" + +#: ../../operation/agentes/estado_generalagente.php:392 +#: ../../operation/incidents/incident_detail.php:419 +#: ../../godmode/setup/news.php:222 +msgid "Author" +msgstr "Autor" + +#: ../../operation/agentes/estado_generalagente.php:397 +msgid "Title" +msgstr "Título" + +#: ../../operation/agentes/estado_generalagente.php:407 +#: ../../operation/incidents/incident_detail.php:318 +#: ../../operation/incidents/incident.php:246 +#: ../../operation/incidents/incident.php:338 +#: ../../include/functions_reporting_html.php:2873 +#: ../../include/functions_events.php:2173 +#: ../../godmode/snmpconsole/snmp_alert.php:941 +#: ../../godmode/snmpconsole/snmp_alert.php:1006 +#: ../../godmode/alerts/alert_view.php:102 +#: ../../godmode/alerts/alert_list.list.php:127 +#: ../../godmode/alerts/configure_alert_template.php:767 +#: ../../godmode/alerts/alert_templates.php:52 +#: ../../godmode/agentes/agent_incidents.php:88 +msgid "Priority" +msgstr "Prioridad" + +#: ../../operation/agentes/estado_generalagente.php:448 +#: ../../include/functions_treeview.php:796 +msgid "Interface information" +msgstr "Interfaz de información" + +#: ../../operation/agentes/estado_generalagente.php:477 +#: ../../include/functions_treeview.php:774 +msgid "Interface traffic" +msgstr "Interfaz de tráfico" + +#: ../../operation/agentes/estado_generalagente.php:538 +msgid "Events info (24hr.)" +msgstr "Información de eventos (24hr.)" + +#: ../../operation/agentes/estado_generalagente.php:601 +#: ../../mobile/operation/agent.php:214 +#: ../../include/functions_treeview.php:722 +msgid "Events (24h)" +msgstr "Eventos (24h)" + +#: ../../operation/agentes/estado_generalagente.php:620 +msgid "Refresh data" +msgstr "Refrescar datos" + +#: ../../operation/agentes/estado_generalagente.php:622 +msgid "Force remote checks" +msgstr "Forzar chequeo remoto" + +#: ../../operation/agentes/estado_agente.php:156 +msgid "Sucessfully deleted agent" +msgstr "Agente borrado correctamente" + +#: ../../operation/agentes/estado_agente.php:158 +msgid "There was an error message deleting the agent" +msgstr "Hubo errores al intentar borrar el agente" + +#: ../../operation/agentes/estado_agente.php:175 +#: ../../godmode/agentes/planned_downtime.editor.php:706 +#: ../../godmode/agentes/modificar_agente.php:165 +msgid "Recursion" +msgstr "Recursión" + +#: ../../operation/agentes/estado_agente.php:593 +msgid "Remote config" +msgstr "Configuración remota" + +#: ../../operation/agentes/gis_view.php:55 +#: ../../godmode/agentes/agent_conf_gis.php:40 +msgid "" +"There is no default map. Please go to the setup for to set a default map." +msgstr "" +"No existe un mapa por defecto. Por favor, selecciona uno en la sección de " +"configuración" + +#: ../../operation/agentes/gis_view.php:86 +#: ../../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 SIG para este agente, por lo que es colocado en posición por " +"defecto del mapa." + +#: ../../operation/agentes/gis_view.php:91 +msgid "Last position in " +msgstr "última posición en " + +#: ../../operation/agentes/gis_view.php:98 +msgid "Period to show data as path" +msgstr "periodo para mostrar datos como ruta" + +#: ../../operation/agentes/gis_view.php:102 +msgid "Refresh path" +msgstr "refrescar ruta" + +#: ../../operation/agentes/gis_view.php:105 +msgid "Positional data from the last" +msgstr "Datos de posición desde el último" + +#: ../../operation/agentes/gis_view.php:144 +msgid "This agent doesn't have any GIS data." +msgstr "Este agente no tiene ningún dato GIS." + +#: ../../operation/agentes/gis_view.php:172 +#, php-format +msgid "%s Km" +msgstr "%s Km" + +#: ../../operation/agentes/gis_view.php:178 +#: ../../godmode/setup/gis_step_2.php:300 +msgid "Longitude" +msgstr "Longitud" + +#: ../../operation/agentes/gis_view.php:179 +#: ../../godmode/setup/gis_step_2.php:296 +msgid "Latitude" +msgstr "Latitud" + +#: ../../operation/agentes/gis_view.php:180 +#: ../../godmode/setup/gis_step_2.php:304 +msgid "Altitude" +msgstr "Altitud" + +#: ../../operation/agentes/gis_view.php:182 +#: ../../godmode/agentes/planned_downtime.list.php:145 +msgid "To" +msgstr "Para" + +#: ../../operation/agentes/gis_view.php:184 +msgid "Distance" +msgstr "Distancia" + +#: ../../operation/agentes/gis_view.php:185 +msgid "# of Packages" +msgstr "# de paquetes" + +#: ../../operation/agentes/gis_view.php:189 +msgid "positional data" +msgstr "datos de posición" + +#: ../../operation/agentes/status_events.php:31 +#: ../../operation/agentes/status_events.php:32 +msgid "Latest events for this agent" +msgstr "Últimos eventos para este agente" + +#: ../../operation/agentes/graphs.php:86 +msgid "Other modules" +msgstr "Otros módulos" + +#: ../../operation/agentes/graphs.php:91 +msgid "Modules network no proc" +msgstr "Módulos de red sin proc" + +#: ../../operation/agentes/graphs.php:143 +msgid "the combined graph does not show the alerts into this graph" +msgstr "Las gráficas combinadas no muestran las alertas" + +#: ../../operation/agentes/graphs.php:145 +msgid "Show as one combined graph" +msgstr "Mostrar como una gráfica combinada" + +#: ../../operation/agentes/graphs.php:147 +msgid "one combined graph" +msgstr "gráfica combinada" + +#: ../../operation/agentes/graphs.php:150 +msgid "several graphs for each module" +msgstr "varias gráficas por cada módulo" + +#: ../../operation/agentes/graphs.php:157 +msgid "Save as custom graph" +msgstr "Guardar como gráfica personalizada" + +#: ../../operation/agentes/graphs.php:163 +msgid "Filter graphs" +msgstr "Filtrar gráficas" + +#: ../../operation/agentes/graphs.php:210 +msgid "There was an error loading the graph" +msgstr "Sucedió un error al cargar la gráfica" + +#: ../../operation/agentes/graphs.php:218 +#: ../../operation/agentes/graphs.php:221 +msgid "Name custom graph" +msgstr "Nombre de gráfica personalizada" + +#: ../../operation/agentes/graphs.php:235 ../../extensions/insert_data.php:194 +#: ../../godmode/setup/snmp_wizard.php:104 +#: ../../godmode/setup/gis_step_2.php:310 +#: ../../godmode/reporting/reporting_builder.main.php:32 +#: ../../godmode/reporting/visual_console_builder.data.php:181 +msgid "Save" +msgstr "Guardar" + +#: ../../operation/agentes/graphs.php:243 +msgid "Save custom graph" +msgstr "Guardar gráfica personalizada" + +#: ../../operation/agentes/graphs.php:264 +msgid "Custom graph create from the tab graphs in the agent." +msgstr "Creada gráfica personalizada desde la sección de gráficas del agente" + +#: ../../operation/agentes/networkmap.dinamic.php:130 +#: ../../mobile/operation/networkmap.php:110 +#: ../../mobile/operation/networkmap.php:129 +#: ../../mobile/operation/networkmap.php:146 +#: ../../include/functions_pandora_networkmap.php:99 +msgid "Pandora FMS" +msgstr "Pandora FMS" + +#: ../../operation/incidents/incident_statistics.php:33 +msgid "Incidents by status" +msgstr "Incidentes por estado" + +#: ../../operation/incidents/incident_statistics.php:36 +msgid "Incidents by priority" +msgstr "Incidentes por prioridad" + +#: ../../operation/incidents/incident_statistics.php:39 +msgid "Incidents by group" +msgstr "Incidentes por grupo" + +#: ../../operation/incidents/incident_statistics.php:42 +msgid "Incidents by user" +msgstr "Incidentes por usuario" + +#: ../../operation/incidents/incident_statistics.php:45 +msgid "Incidents by source" +msgstr "Incidentes por origen" + +#: ../../operation/incidents/incident_detail.php:67 +#: ../../godmode/alerts/alert_list.php:170 +#: ../../godmode/massive/massive_add_action_alerts.php:112 +#: ../../godmode/massive/massive_add_alerts.php:112 +#: ../../godmode/massive/massive_add_tags.php:88 +msgid "Successfully added" +msgstr "Añadido correctamente" + +#: ../../operation/incidents/incident_detail.php:68 +#: ../../godmode/alerts/alert_list.php:170 +#: ../../godmode/massive/massive_add_action_alerts.php:59 +#: ../../godmode/massive/massive_add_action_alerts.php:96 +#: ../../godmode/massive/massive_add_action_alerts.php:112 +#: ../../godmode/massive/massive_add_action_alerts.php:116 +#: ../../godmode/massive/massive_add_action_alerts.php:120 +#: ../../godmode/massive/massive_add_alerts.php:113 +#: ../../godmode/massive/massive_delete_action_alerts.php:119 +#: ../../godmode/massive/massive_add_tags.php:89 +msgid "Could not be added" +msgstr "No se pudo añadir" + +#: ../../operation/incidents/incident_detail.php:120 +msgid "No description available" +msgstr "Sin descripción disponible" + +#: ../../operation/incidents/incident_detail.php:160 +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" + +#: ../../operation/incidents/incident_detail.php:173 +msgid "File uploaded" +msgstr "Archivo subido" + +#: ../../operation/incidents/incident_detail.php:174 +msgid "File could not be uploaded" +msgstr "No se pudo subir el archivo" + +#: ../../operation/incidents/incident_detail.php:233 +msgid "Incident details" +msgstr "Detalles del incidente" + +#: ../../operation/incidents/incident_detail.php:238 +#: ../../operation/incidents/incident.php:411 +msgid "Create incident" +msgstr "Crear incidente" + +#: ../../operation/incidents/incident_detail.php:244 +#: ../../operation/incidents/incident.php:337 +#: ../../godmode/servers/manage_recontask_form.php:311 +#: ../../godmode/servers/manage_recontask.php:291 +#: ../../godmode/agentes/agent_incidents.php:87 +msgid "Incident" +msgstr "Incidente" + +#: ../../operation/incidents/incident_detail.php:259 +msgid "Opened at" +msgstr "Abierto el" + +#: ../../operation/incidents/incident_detail.php:327 +msgid "Creator" +msgstr "Creador" + +#: ../../operation/incidents/incident_detail.php:376 +msgid "Update incident" +msgstr "Actualizar incidente" + +#: ../../operation/incidents/incident_detail.php:382 +msgid "Submit" +msgstr "Enviar" + +#: ../../operation/incidents/incident_detail.php:396 +#: ../../operation/incidents/incident_detail.php:400 +msgid "Add note" +msgstr "Insertar nota" + +#: ../../operation/incidents/incident_detail.php:432 +msgid "Notes attached to incident" +msgstr "Notas asociadas al incidente" + +#: ../../operation/incidents/incident_detail.php:453 +#: ../../operation/incidents/incident_detail.php:505 +msgid "Filename" +msgstr "Nombre del archivo" + +#: ../../operation/incidents/incident_detail.php:455 +#: ../../extensions/files_repo/files_repo_list.php:60 +#: ../../include/functions_filemanager.php:582 +#: ../../include/functions_visual_map_editor.php:107 +#: ../../include/functions_visual_map_editor.php:149 +#: ../../include/functions_visual_map_editor.php:444 +#: ../../include/functions_visual_map_editor.php:508 +#: ../../godmode/events/event_responses.editor.php:97 +msgid "Size" +msgstr "Tamaño" + +#: ../../operation/incidents/incident_detail.php:481 +msgid "Attached files" +msgstr "Archivos adjuntos" + +#: ../../operation/incidents/incident_detail.php:499 +#: ../../operation/incidents/incident_detail.php:503 +msgid "Add attachment" +msgstr "Añadir adjunto" + +#: ../../operation/incidents/incident_detail.php:507 +#: ../../extensions/resource_registration.php:876 +#: ../../extensions/plugin_registration.php:43 +#: ../../extensions/extension_uploader.php:85 +#: ../../godmode/alerts/alert_special_days.php:260 +msgid "Upload" +msgstr "Subir" + +#: ../../operation/incidents/incident.php:33 +msgid "Incident management" +msgstr "Gestión de incidentes" + +#: ../../operation/incidents/incident.php:72 +msgid "Successfully reclaimed ownership" +msgstr "La propiedad se reclamó correctamente" + +#: ../../operation/incidents/incident.php:73 +msgid "Could not reclame ownership" +msgstr "No se pudo reclamar la propiedad" + +#: ../../operation/incidents/incident.php:143 +msgid "Error creating incident" +msgstr "Error al crear el incidente" + +#: ../../operation/incidents/incident.php:146 +msgid "Incident created" +msgstr "Incidente creado" + +#: ../../operation/incidents/incident.php:233 +msgid "Incidents:" +msgstr "Incidentes:" + +#: ../../operation/incidents/incident.php:234 +msgid "All incidents" +msgstr "Todos los incidentes" + +#: ../../operation/incidents/incident.php:256 +msgid "Priorities:" +msgstr "Prioridades:" + +#: ../../operation/incidents/incident.php:257 +msgid "All priorities" +msgstr "Todas las prioridades" + +#: ../../operation/incidents/incident.php:261 +msgid "Users:" +msgstr "Usuarios:" + +#: ../../operation/incidents/incident.php:262 +msgid "All users" +msgstr "Todos los usuarios" + +#: ../../operation/incidents/incident.php:277 +msgid "Agents:" +msgstr "Agentes:" + +#: ../../operation/incidents/incident.php:279 +#: ../../godmode/db/db_purge.php:167 +msgid "All agents" +msgstr "Todos los agentes" + +#: ../../operation/incidents/incident.php:284 +msgid "Groups:" +msgstr "Grupos:" + +#: ../../operation/incidents/incident.php:290 +msgid "Free text:" +msgstr "Texto libre:" + +#: ../../operation/incidents/incident.php:291 +msgid "Search by incident name or description, list matches." +msgstr "" +"Búsqueda por nombre de incidencia o descripción. Lista las concidencias" + +#: ../../operation/incidents/incident.php:340 +#: ../../godmode/servers/servers.build_table.php:72 +#: ../../godmode/agentes/agent_incidents.php:90 +msgid "Updated" +msgstr "Actualizado hace" + +#: ../../operation/incidents/incident.php:399 +msgid "Delete incidents" +msgstr "Borrar incidentes" + +#: ../../operation/incidents/incident.php:403 +msgid "Become owner" +msgstr "Hacerse propietario" + +#: ../../extensions/resource_exportation.php:53 +#: ../../extensions/resource_exportation.php:338 +msgid "Resource exportation" +msgstr "Exportación de recursos" + +#: ../../extensions/resource_exportation.php:341 +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). " +msgstr "" +"Esta extensión hace la exportación de plantillas de recursos más sencillo. " +"Desde aquí puedes exportar como plantillas de recursos en el formato de " +"Pandora FMS 3.x (.ptr). " + +#: ../../extensions/resource_exportation.php:352 +msgid "Report" +msgstr "Informe" + +#: ../../extensions/module_groups.php:39 +msgid "Number fired of alerts" +msgstr "Numero de alertas disparadas" + +#: ../../extensions/module_groups.php:46 +#: ../../godmode/massive/massive_add_alerts.php:174 +#: ../../godmode/massive/massive_enable_disable_alerts.php:148 +#: ../../godmode/massive/massive_standby_alerts.php:148 +#: ../../godmode/massive/massive_delete_alerts.php:206 +msgid "Alert template" +msgstr "Plantilla de alertas" + +#: ../../extensions/module_groups.php:84 +#: ../../include/functions_filemanager.php:583 +#: ../../include/functions_treeview.php:382 +#: ../../include/functions_reporting_html.php:1952 +#: ../../godmode/alerts/alert_view.php:344 +#: ../../godmode/alerts/alert_list.list.php:121 +#: ../../godmode/alerts/alert_list.list.php:410 +#: ../../godmode/alerts/alert_list.builder.php:83 ../../godmode/menu.php:156 +#: ../../godmode/events/event_responses.list.php:57 +#: ../../godmode/category/category.php:111 +#: ../../godmode/groups/group_list.php:341 +#: ../../godmode/agentes/planned_downtime.editor.php:760 +#: ../../godmode/agentes/modificar_agente.php:494 +#: ../../godmode/agentes/fields_manager.php:97 ../../godmode/tag/tag.php:205 +msgid "Actions" +msgstr "Acciones" + +#: ../../extensions/module_groups.php:168 +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:171 +msgid "" +"This table shows in columns the modules group and in rows agents group. The " +"cell shows all modules" +msgstr "" +"Esta tabla muestra en las columnas del grupo de los módulos y en hileras de " +"agentes de grupo. La celda muestra todos los módulos" + +#: ../../extensions/module_groups.php:297 +msgid "" +"Orange cell when the module group and agent have at least one alarm fired." +msgstr "" +"Celda de color naranja cuando el grupo y el agente del modulo tengan al " +"menos una alerta disparada." + +#: ../../extensions/module_groups.php:298 +msgid "" +"Red cell when the module group and agent have at least one module in " +"critical status and the others in any status" +msgstr "" +"Cuadro rojo 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:299 +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 "" +"Cuadro amarillo 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:300 +msgid "" +"Green cell when the module group and agent have all modules in OK status" +msgstr "" +"Cuadro verde cuando todos los grupos de modulos y los agentes estén en " +"estado OK." + +#: ../../extensions/module_groups.php:301 +msgid "" +"Grey cell when the module group and agent have at least one in unknown " +"status and the others in green status" +msgstr "" +"Cuadro gris cuando el grupo de módulos y el agente tienen al menos uno en " +"estado desconocido, todos los demás están en OK y no tiene ninguno en estado " +"critico o warning." + +#: ../../extensions/module_groups.php:302 +msgid "" +"Blue cell when the module group and agent have all modules in not init " +"status." +msgstr "" +"Azul cuando todos los módulos de todos los agentes del grupo tienen estado " +"no inicializado." + +#: ../../extensions/module_groups.php:307 +msgid "There are no defined groups or module groups" +msgstr "No hay grupos o grupos de módulos definidos." + +#: ../../extensions/resource_registration.php:40 +#, php-format +msgid "Success add '%s' item in report '%s'." +msgstr "Éxito al añadir el objeto '%s' al informe '%s'." + +#: ../../extensions/resource_registration.php:41 +#, php-format +msgid "Error create '%s' item in report '%s'." +msgstr "Error al añadir el objeto '%s' al informe '%s'." + +#: ../../extensions/resource_registration.php:68 +#, 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:75 +#, 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:82 +msgid "Error the report haven't name." +msgstr "Error. El informe no tiene un nombre." + +#: ../../extensions/resource_registration.php:88 +msgid "Error the report haven't group." +msgstr "Error. El informe no tiene un grupo asignado." + +#: ../../extensions/resource_registration.php:98 +#, php-format +msgid "Success create '%s' report." +msgstr "Éxito al crear el informe '%s'." + +#: ../../extensions/resource_registration.php:99 +#, php-format +msgid "Error create '%s' report." +msgstr "Error al crear el informe '%s'-" + +#: ../../extensions/resource_registration.php:327 +#: ../../extensions/resource_registration.php:348 +#: ../../extensions/resource_registration.php:358 +#, php-format +msgid "Success add '%s' content." +msgstr "Éxito al añadir el contenido '%s'." + +#: ../../extensions/resource_registration.php:328 +#: ../../extensions/resource_registration.php:349 +#: ../../extensions/resource_registration.php:359 +#, php-format +msgid "Error add '%s' action." +msgstr "Error al añadir la acción '%s'." + +#: ../../extensions/resource_registration.php:335 +#, php-format +msgid "Success add '%s' SLA." +msgstr "Éxito al añadir el SLA '%s'." + +#: ../../extensions/resource_registration.php:336 +#, php-format +msgid "Error add '%s' SLA." +msgstr "Error al añadir el SLA '%s'." + +#: ../../extensions/resource_registration.php:377 +#, 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:413 +#, 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:420 +#, 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:428 +#, php-format +msgid "Success create '%s' visual map." +msgstr "Éxito al crear el mapa visual '%s'." + +#: ../../extensions/resource_registration.php:429 +#, php-format +msgid "Error create '%s' visual map." +msgstr "Error al crear el mapa visual '%s'." + +#: ../../extensions/resource_registration.php:535 +#, php-format +msgid "Success create item type '%d' visual map." +msgstr "Éxito al crear el objeto de tipo '%d' del mapa visual." + +#: ../../extensions/resource_registration.php:536 +#, php-format +msgid "Error create item type '%d' visual map." +msgstr "Error al crear el tipo de objeto '%d' del mapa visual." + +#: ../../extensions/resource_registration.php:554 +#: ../../extensions/resource_registration.php:569 +#, php-format +msgid "Success create item for agent '%s' visual map." +msgstr "Éxito al crear el objeto de agente '%s' del mapa visual." + +#: ../../extensions/resource_registration.php:555 +#: ../../extensions/resource_registration.php:570 +#, php-format +msgid "Error create item for agent '%s' visual map." +msgstr "Error al crear el objeto de agente '%s' del mapa visual." + +#: ../../extensions/resource_registration.php:792 +#, php-format +msgid "Success create '%s' component." +msgstr "Creado componente '%s' satisfactoriamente" + +#: ../../extensions/resource_registration.php:793 +#, php-format +msgid "Error create '%s' component." +msgstr "Hubo un problema al crear el componente '%s'" + +#: ../../extensions/resource_registration.php:849 +#: ../../extensions/resource_registration.php:889 +msgid "Resource registration" +msgstr "Registro del recurso" + +#: ../../extensions/resource_registration.php:852 +msgid "Error, please install the PHP libXML in the system." +msgstr "Error, por favor, installe la libreria PHP LibXML en el sistema." + +#: ../../extensions/resource_registration.php:858 +#, 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" +msgstr "" +"Esta extensión hace el registro de una plantilla de recursos de forma fácil. " +"Puede subir una plantilla de recursos en el formato (.PTR), de Pandora FMS. " +"Por favor, consulte la documentación sobre como obtener y usar los recursos " +"de plantilla de Pandora FMS

    Puede obtener más recursos en nuestra Libreria Pública de recursos." + +#: ../../extensions/resource_registration.php:872 +msgid "Group filter: " +msgstr "Filtrado por grupos: " + +#: ../../extensions/disabled/ssh_gateway.php:52 +msgid "You need to specify a user and a host address" +msgstr "Necesita especificar un usuario y una dirección del host" + +#: ../../extensions/disabled/ssh_gateway.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:66 +msgid "Host address" +msgstr "Dirección del Host" + +#: ../../extensions/disabled/ssh_gateway.php:59 +#, 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" + +#: ../../extensions/disabled/ssh_gateway.php:60 +msgid "Connect" +msgstr "Conectar" + +#: ../../extensions/disabled/ssh_gateway.php:63 +msgid "Port (use 0 for default)" +msgstr "Puerto (uso de 0 por defecto)" + +#: ../../extensions/disabled/ssh_gateway.php:65 +msgid "Connect mode" +msgstr "Modo conexión" + +#: ../../extensions/disabled/matrix_events.php:29 +msgid "Matrix events" +msgstr "Eventos Matrix" + +#: ../../extensions/disabled/vnc_view.php:25 +msgid "VNC Display (:0 by default)" +msgstr "VNC Display (: 0 por defecto)" + +#: ../../extensions/disabled/vnc_view.php:28 +msgid "Send" +msgstr "Enviar" + +#: ../../extensions/disabled/vnc_view.php:42 +msgid "VNC view" +msgstr "Vista VNC" + +#: ../../extensions/net_tools.php:96 +msgid "The agent hasn't got IP" +msgstr "El agente no tiene IP" + +#: ../../extensions/net_tools.php:118 ../../extensions/api_checker.php:132 +#: ../../include/functions_menu.php:574 +#: ../../include/functions_reporting_html.php:1481 +#: ../../include/functions_reporting_html.php:2582 +#: ../../godmode/extensions.php:153 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1748 +msgid "Operation" +msgstr "Operación" + +#: ../../extensions/net_tools.php:120 +msgid "" +"You can set the command path in the menu Administration -> Extensions -" +"> Config Network Tools" +msgstr "" +"Puede introducir la ruta de comando en el menú Administration -> " +"Extensions -> Config Network Tools" + +#: ../../extensions/net_tools.php:123 +msgid "Traceroute" +msgstr "Traceroute" + +#: ../../extensions/net_tools.php:124 +msgid "Ping host & Latency" +msgstr "Ping host y Latencia" + +#: ../../extensions/net_tools.php:125 +msgid "SNMP Interface status" +msgstr "Estado de la interfaz SNMP" + +#: ../../extensions/net_tools.php:126 +msgid "Basic TCP Port Scan" +msgstr "Escaneo básico de puertos TCP" + +#: ../../extensions/net_tools.php:127 +msgid "DiG/Whois Lookup" +msgstr "Búsqueda DiG/Whois" + +#: ../../extensions/net_tools.php:145 +msgid "SNMP Community" +msgstr "Comunidad SNMP" + +#: ../../extensions/net_tools.php:148 ../../include/functions_events.php:1796 +msgid "Execute" +msgstr "Ejecutar" + +#: ../../extensions/net_tools.php:162 +msgid "Traceroute executable does not exist." +msgstr "El ejecutable Traceroute no existe." + +#: ../../extensions/net_tools.php:165 +msgid "Traceroute to " +msgstr "Trazando ruta a " + +#: ../../extensions/net_tools.php:174 +msgid "Ping executable does not exist." +msgstr "El ejecutable Ping no existe." + +#: ../../extensions/net_tools.php:177 +#, php-format +msgid "Ping to %s" +msgstr "Ping a %s" + +#: ../../extensions/net_tools.php:186 +msgid "Nmap executable does not exist." +msgstr "El ejecutable Nmap no existe." + +#: ../../extensions/net_tools.php:189 +msgid "Basic TCP Scan on " +msgstr "Escaneo básico TCP en " + +#: ../../extensions/net_tools.php:196 +msgid "Domain and IP information for " +msgstr "Información de dominio e IP para " + +#: ../../extensions/net_tools.php:200 +msgid "Dig executable does not exist." +msgstr "El ejecutable Dig no existe." + +#: ../../extensions/net_tools.php:210 +msgid "Whois executable does not exist." +msgstr "El ejecutable Whois no existe." + +#: ../../extensions/net_tools.php:219 +msgid "SNMP information for " +msgstr "Información SNMP para " + +#: ../../extensions/net_tools.php:223 +msgid "SNMPget executable does not exist." +msgstr "El ejecutable SNMPget no existe." + +#: ../../extensions/net_tools.php:226 +msgid "Uptime" +msgstr "Tiempo en Activo" + +#: ../../extensions/net_tools.php:230 +msgid "Device info" +msgstr "Información del dispositivo" + +#: ../../extensions/net_tools.php:238 +msgid "Interface" +msgstr "Interfaz" + +#: ../../extensions/net_tools.php:268 ../../extensions/net_tools.php:343 +msgid "Config Network Tools" +msgstr "Configuración de herramientas de red" + +#: ../../extensions/net_tools.php:289 ../../extensions/net_tools.php:290 +msgid "Set the paths." +msgstr "Introducir rutas" + +#: ../../extensions/net_tools.php:310 +msgid "Traceroute path" +msgstr "Ruta Traceroute" + +#: ../../extensions/net_tools.php:311 +msgid "If it is empty, Pandora searchs the traceroute system." +msgstr "Si está vacío, Pandora FMS buscará el sistema Traceroute" + +#: ../../extensions/net_tools.php:314 +msgid "Ping path" +msgstr "Ruta al comando ping" + +#: ../../extensions/net_tools.php:315 +msgid "If it is empty, Pandora searchs the ping system." +msgstr "Si está vacío, Pandora FMS buscará el sistema ping" + +#: ../../extensions/net_tools.php:318 +msgid "Nmap path" +msgstr "Ruta Nmap" + +#: ../../extensions/net_tools.php:319 +msgid "If it is empty, Pandora searchs the nmap system." +msgstr "Si está vacío, Pandora FMS buscará el sistema nmap." + +#: ../../extensions/net_tools.php:322 +msgid "Dig path" +msgstr "Ruta Dig" + +#: ../../extensions/net_tools.php:323 +msgid "If it is empty, Pandora searchs the dig system." +msgstr "Si está vacío, Pandora FMS buscará el sistema dig" + +#: ../../extensions/net_tools.php:326 +msgid "Snmpget path" +msgstr "Ruta Snmpget" + +#: ../../extensions/net_tools.php:327 +msgid "If it is empty, Pandora searchs the snmpget system." +msgstr "Si está vacío, Pandora FMS buscará el sistema snmpget" + +#: ../../extensions/net_tools.php:332 +#: ../../godmode/reporting/reporting_builder.list_items.php:305 +#: ../../godmode/update_manager/update_manager.php:35 +msgid "Options" +msgstr "Opciones" + +#: ../../extensions/insert_data.php:56 +msgid "Insert data" +msgstr "Insertar datos" + +#: ../../extensions/insert_data.php:93 +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:130 +#, php-format +msgid "Can't save agent (%s), module (%s) data xml." +msgstr "No se puede guardar el agente (%s), modulo (%s) datos xml" + +#: ../../extensions/insert_data.php:137 +#, php-format +msgid "Save agent (%s), module (%s) data xml." +msgstr "Guardar agente (%s), módulo (%s) datos xml." + +#: ../../extensions/insert_data.php:146 +#, 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, compruebe que se puede escribir en el directorio \"%s\"por " +"usuarios de apache.

    El formato del archivo CSV es " +"date;value<newline>date;value<newline>... La fecha en CVS está " +"en formato Y/m/d H:i:s." + +#: ../../extensions/insert_data.php:179 ../../general/header.php:204 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 +#: ../../godmode/alerts/configure_alert_template.php:592 +#: ../../godmode/alerts/alert_list.builder.php:77 +#: ../../godmode/alerts/alert_list.builder.php:125 +#: ../../godmode/massive/massive_add_alerts.php:176 +#: ../../godmode/massive/massive_delete_modules.php:412 +#: ../../godmode/massive/massive_delete_modules.php:481 +#: ../../godmode/massive/massive_copy_modules.php:95 +#: ../../godmode/massive/massive_edit_modules.php:256 +#: ../../godmode/massive/massive_edit_modules.php:310 +#: ../../godmode/massive/massive_delete_alerts.php:208 +#: ../../godmode/gis_maps/configure_gis_map.php:588 +msgid "Select" +msgstr "Seleccionar" + +#: ../../extensions/insert_data.php:258 +msgid "Insert Data" +msgstr "Insertar Datos" + #: ../../extensions/api_checker.php:92 ../../extensions/api_checker.php:228 msgid "API checker" msgstr "Verificación API" #: ../../extensions/api_checker.php:99 ../../extensions/users_connected.php:78 +#: ../../include/functions_visual_map_editor.php:653 +#: ../../include/functions_reporting_html.php:1901 +#: ../../include/functions_reporting_html.php:2075 +#: ../../godmode/reporting/visual_console_builder.elements.php:558 #: ../../godmode/admin_access_logs.php:69 #: ../../godmode/admin_access_logs.php:70 -#: ../../godmode/reporting/visual_console_builder.elements.php:558 -#: ../../include/functions_visual_map_editor.php:699 -#: ../../include/functions_reporting_html.php:1907 -#: ../../include/functions_reporting_html.php:2081 -#: ../../enterprise/extensions/ipam/ipam_network.php:272 -#: ../../enterprise/extensions/ipam/ipam_network.php:273 -#: ../../enterprise/include/functions_reporting_pdf.php:2317 msgid "IP" msgstr "IP" @@ -1457,78 +7036,17 @@ msgstr "Consola URL de Pandora FMS" msgid "API Pass" msgstr "Contraseña API" -#: ../../extensions/api_checker.php:114 -#: ../../extensions/disabled/ssh_gateway.php:59 -#: ../../extensions/users_connected.php:77 ../../general/login_page.php:147 -#: ../../general/login_page.php:176 ../../general/logon_ok.php:224 -#: ../../general/logon_ok.php:420 ../../godmode/admin_access_logs.php:63 -#: ../../godmode/admin_access_logs.php:188 -#: ../../godmode/events/custom_events.php:77 -#: ../../godmode/events/custom_events.php:155 -#: ../../godmode/setup/setup_ehorus.php:73 ../../include/functions.php:2335 -#: ../../include/functions_config.php:347 -#: ../../include/functions_config.php:358 -#: ../../include/functions_config.php:368 -#: ../../include/functions_events.php:37 -#: ../../include/functions_events.php:3547 -#: ../../include/functions_events.php:3928 -#: ../../include/functions_reporting_html.php:3595 -#: ../../mobile/include/user.class.php:245 -#: ../../mobile/operation/tactical.php:309 -#: ../../operation/events/events.build_table.php:173 -#: ../../operation/events/events.build_table.php:582 -#: ../../operation/search_users.php:68 -#: ../../enterprise/extensions/cron/main.php:196 -#: ../../enterprise/extensions/disabled/check_acls.php:42 -#: ../../enterprise/extensions/disabled/check_acls.php:120 -#: ../../enterprise/extensions/vmware/main.php:243 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:167 -#: ../../enterprise/godmode/servers/manage_export_form.php:97 -#: ../../enterprise/godmode/setup/setup_auth.php:272 -#: ../../enterprise/godmode/setup/setup_auth.php:303 -#: ../../enterprise/godmode/setup/setup_auth.php:334 -#: ../../enterprise/meta/general/login_page.php:79 -#: ../../enterprise/meta/general/login_page.php:108 -#: ../../enterprise/meta/include/functions_events_meta.php:64 -#: ../../enterprise/meta/include/functions_meta.php:849 -#: ../../enterprise/meta/include/functions_meta.php:902 -#: ../../enterprise/meta/include/functions_meta.php:955 -#: ../../enterprise/meta/include/functions_wizard_meta.php:402 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1311 -msgid "User" -msgstr "Usuario" - -#: ../../extensions/api_checker.php:119 ../../general/login_page.php:155 -#: ../../general/login_page.php:183 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:264 -#: ../../godmode/agentes/module_manager_editor_wmi.php:57 -#: ../../godmode/massive/massive_edit_modules.php:528 -#: ../../godmode/modules/manage_network_components_form_wmi.php:50 +#: ../../extensions/api_checker.php:119 +#: ../../mobile/include/user.class.php:252 ../../general/login_page.php:141 +#: ../../general/login_page.php:165 ../../include/functions_config.php:334 +#: ../../include/functions_config.php:345 +#: ../../include/functions_config.php:355 #: ../../godmode/setup/setup_ehorus.php:79 -#: ../../godmode/users/configure_user.php:492 -#: ../../include/functions_config.php:349 -#: ../../include/functions_config.php:360 -#: ../../include/functions_config.php:370 -#: ../../mobile/include/user.class.php:252 -#: ../../enterprise/extensions/vmware/main.php:248 -#: ../../enterprise/godmode/agentes/inventory_manager.php:191 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:262 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:203 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:326 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:55 -#: ../../enterprise/godmode/servers/manage_export_form.php:101 -#: ../../enterprise/godmode/setup/setup_auth.php:278 -#: ../../enterprise/godmode/setup/setup_auth.php:309 -#: ../../enterprise/godmode/setup/setup_auth.php:340 -#: ../../enterprise/include/functions_setup.php:30 -#: ../../enterprise/include/functions_setup.php:59 -#: ../../enterprise/meta/general/login_page.php:87 -#: ../../enterprise/meta/general/login_page.php:116 -#: ../../enterprise/meta/include/functions_meta.php:859 -#: ../../enterprise/meta/include/functions_meta.php:912 -#: ../../enterprise/meta/include/functions_meta.php:965 -#: ../../enterprise/meta/include/functions_wizard_meta.php:406 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1315 +#: ../../godmode/massive/massive_edit_modules.php:528 +#: ../../godmode/users/configure_user.php:454 +#: ../../godmode/modules/manage_network_components_form_wmi.php:50 +#: ../../godmode/agentes/module_manager_editor_wmi.php:57 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:264 msgid "Password" msgstr "Contraseña" @@ -1536,40 +7054,6 @@ msgstr "Contraseña" msgid "Action (get or set)" msgstr "Acción (obtener o introducir)" -#: ../../extensions/api_checker.php:132 ../../extensions/net_tools.php:118 -#: ../../godmode/extensions.php:153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1753 -#: ../../include/functions_menu.php:585 -#: ../../include/functions_reporting_html.php:1487 -#: ../../include/functions_reporting_html.php:2592 -#: ../../enterprise/dashboard/widgets/top_n.php:128 -#: ../../enterprise/dashboard/widgets/top_n.php:337 -#: ../../enterprise/godmode/policies/policy_queue.php:342 -#: ../../enterprise/godmode/policies/policy_queue.php:376 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2106 -#: ../../enterprise/include/functions_reporting_pdf.php:835 -#: ../../enterprise/include/functions_reporting_pdf.php:928 -#: ../../enterprise/meta/advanced/policymanager.queue.php:216 -#: ../../enterprise/meta/advanced/policymanager.queue.php:258 -msgid "Operation" -msgstr "Operación" - -#: ../../extensions/api_checker.php:137 -#: ../../godmode/agentes/agent_incidents.php:85 -#: ../../godmode/agentes/agent_manager.php:163 -#: ../../godmode/agentes/fields_manager.php:94 -#: ../../godmode/agentes/module_manager_editor_common.php:156 -#: ../../godmode/alerts/alert_commands.php:331 -#: ../../godmode/groups/group_list.php:337 -#: ../../godmode/groups/modu_group_list.php:182 -#: ../../godmode/modules/module_list.php:58 ../../godmode/setup/os.list.php:33 -#: ../../include/functions_events.php:3511 -#: ../../operation/events/events.build_table.php:133 -#: ../../operation/incidents/incident.php:335 -msgid "ID" -msgstr "ID" - #: ../../extensions/api_checker.php:142 msgid "ID 2" msgstr "ID 2" @@ -1578,34 +7062,6 @@ msgstr "ID 2" msgid "Return Type" msgstr "Tipo de retorno" -#: ../../extensions/api_checker.php:152 -#: ../../godmode/groups/configure_group.php:190 -#: ../../godmode/snmpconsole/snmp_alert.php:33 -#: ../../godmode/users/configure_user.php:567 -#: ../../include/functions_graph.php:2595 -#: ../../include/functions_graph.php:2745 -#: ../../include/functions_graph.php:2786 -#: ../../include/functions_graph.php:2827 -#: ../../include/functions_graph.php:2883 -#: ../../include/functions_graph.php:2939 -#: ../../include/functions_graph.php:2993 -#: ../../include/functions_graph.php:3171 -#: ../../include/functions_graph.php:3316 -#: ../../include/functions_graph.php:3366 -#: ../../include/functions_graph.php:4377 -#: ../../operation/gis_maps/render_view.php:152 -#: ../../operation/snmpconsole/snmp_statistics.php:172 -#: ../../operation/snmpconsole/snmp_statistics.php:219 -#: ../../operation/snmpconsole/snmp_view.php:429 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:832 -#: ../../operation/users/user_edit.php:282 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 -#: ../../enterprise/godmode/setup/setup_acl.php:157 -msgid "Other" -msgstr "Otro" - #: ../../extensions/api_checker.php:157 msgid "Other Mode" msgstr "Otro modo" @@ -1615,8 +7071,6 @@ msgid "Raw URL" msgstr "URL en crudo" #: ../../extensions/api_checker.php:171 -#: ../../enterprise/meta/include/functions_wizard_meta.php:833 -#: ../../enterprise/meta/include/functions_wizard_meta.php:918 msgid "Credentials" msgstr "Credenciales" @@ -1637,17 +7091,6 @@ msgstr "URL Personalizada:" msgid "Result" msgstr "Resultado" -#: ../../extensions/api_checker.php:201 -#: ../../godmode/events/event_responses.editor.php:114 -#: ../../godmode/events/event_responses.editor.php:121 -#: ../../godmode/events/event_responses.editor.php:124 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1243 -#: ../../operation/gis_maps/ajax.php:293 -#: ../../enterprise/dashboard/widgets/url.php:25 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1549 -msgid "URL" -msgstr "URL" - #: ../../extensions/api_checker.php:203 ../../extensions/api_checker.php:220 msgid "Show URL" msgstr "Mostrar URL" @@ -1656,6 +7099,115 @@ msgstr "Mostrar URL" msgid "Hide URL" msgstr "Ocultar URL" +#: ../../extensions/users_connected.php:38 +#: ../../extensions/users_connected.php:122 +#: ../../extensions/users_connected.php:123 +msgid "Users connected" +msgstr "Usuarios conectados" + +#: ../../extensions/users_connected.php:66 +msgid "No other users connected" +msgstr "No hay otros usuarios conectados" + +#: ../../extensions/agents_modules.php:103 +#: ../../extensions/agents_alerts.php:81 +#: ../../include/functions_netflow.php:1134 +#: ../../include/functions_netflow.php:1144 +#: ../../include/functions_netflow.php:1161 +#: ../../include/functions_netflow.php:1169 +#: ../../include/functions_netflow.php:1193 +#: ../../include/functions_html.php:727 ../../include/functions.php:430 +#: ../../include/functions.php:564 +#: ../../godmode/snmpconsole/snmp_alert.php:938 +#: ../../godmode/alerts/configure_alert_action.php:144 +#: ../../godmode/alerts/alert_list.builder.php:136 +#: ../../godmode/setup/setup_visuals.php:711 +msgid "seconds" +msgstr "segundos" + +#: ../../extensions/agents_modules.php:154 +#: ../../extensions/agents_modules.php:156 +#: ../../godmode/massive/massive_add_action_alerts.php:171 +#: ../../godmode/massive/massive_add_alerts.php:169 +#: ../../godmode/massive/massive_delete_action_alerts.php:172 +#: ../../godmode/massive/massive_delete_modules.php:501 +#: ../../godmode/massive/massive_edit_modules.php:349 +#: ../../godmode/massive/massive_delete_alerts.php:229 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1045 +msgid "Show common modules" +msgstr "Mostrar módulos comunes" + +#: ../../extensions/agents_modules.php:155 +#: ../../godmode/massive/massive_add_action_alerts.php:172 +#: ../../godmode/massive/massive_add_alerts.php:169 +#: ../../godmode/massive/massive_delete_action_alerts.php:173 +#: ../../godmode/massive/massive_delete_modules.php:501 +#: ../../godmode/massive/massive_edit_modules.php:350 +#: ../../godmode/massive/massive_delete_alerts.php:229 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1046 +msgid "Show all modules" +msgstr "Mostrar todos los módulos" + +#: ../../extensions/agents_modules.php:165 +#: ../../include/functions_visual_map_editor.php:627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1512 +msgid "Update item" +msgstr "Actualizar item" + +#: ../../extensions/agents_modules.php:176 +#: ../../include/functions_reports.php:588 +#: ../../include/graphs/functions_pchart.php:1196 +msgid "Agents/Modules" +msgstr "Agentes/Módulos" + +#: ../../extensions/agents_modules.php:305 +#: ../../include/functions_reporting.php:1679 +msgid "There are no agents with modules" +msgstr "No hay agentes con módulos" + +#: ../../extensions/agents_modules.php:331 +msgid "Previous modules" +msgstr "Módulos anteriores" + +#: ../../extensions/agents_modules.php:370 +msgid "More modules" +msgstr "Más modulos" + +#: ../../extensions/agents_modules.php:491 +#: ../../include/functions_reporting_html.php:1439 +msgid "Orange cell when the module has fired alerts" +msgstr "Cuadro naranja cuando el módulo ha lanzado alertas." + +#: ../../extensions/agents_modules.php:492 +#: ../../include/functions_reporting_html.php:1440 +msgid "Red cell when the module has a critical status" +msgstr "Cuadro rojo cuando el modulo está en estado crítico." + +#: ../../extensions/agents_modules.php:493 +#: ../../include/functions_reporting_html.php:1441 +msgid "Yellow cell when the module has a warning status" +msgstr "Cuadro amarillo cuando el módulo está en estado Warning." + +#: ../../extensions/agents_modules.php:494 +#: ../../include/functions_reporting_html.php:1442 +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:495 +#: ../../include/functions_reporting_html.php:1443 +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:496 +#: ../../include/functions_reporting_html.php:1444 +msgid "Cell turns grey when the module is in 'not initialize' status" +msgstr "" +"La celda se vuelve gris cuando el módulo está en estado \"no iniciado\"" + +#: ../../extensions/agents_modules.php:538 +msgid "Agents/Modules view" +msgstr "Vista de Agentes/Módulos" + #: ../../extensions/db_status.php:43 ../../extensions/db_status.php:361 msgid "DB Status" msgstr "Estado BD" @@ -1818,1786 +7370,6 @@ msgstr "Ejecutar SQL" msgid "DB interface" msgstr "Interfaz BBDD" -#: ../../extensions/disabled/matrix_events.php:29 -msgid "Matrix events" -msgstr "Eventos Matrix" - -#: ../../extensions/disabled/ssh_gateway.php:52 -msgid "You need to specify a user and a host address" -msgstr "Necesita especificar un usuario y una dirección del host" - -#: ../../extensions/disabled/ssh_gateway.php:57 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:66 -msgid "Host address" -msgstr "Dirección del Host" - -#: ../../extensions/disabled/ssh_gateway.php:59 -#, 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" - -#: ../../extensions/disabled/ssh_gateway.php:60 -msgid "Connect" -msgstr "Conectar" - -#: ../../extensions/disabled/ssh_gateway.php:63 -msgid "Port (use 0 for default)" -msgstr "Puerto (uso de 0 por defecto)" - -#: ../../extensions/disabled/ssh_gateway.php:65 -msgid "Connect mode" -msgstr "Modo conexión" - -#: ../../extensions/disabled/vnc_view.php:25 -msgid "VNC Display (:0 by default)" -msgstr "VNC Display (: 0 por defecto)" - -#: ../../extensions/disabled/vnc_view.php:28 -msgid "Send" -msgstr "Enviar" - -#: ../../extensions/disabled/vnc_view.php:42 -msgid "VNC view" -msgstr "Vista VNC" - -#: ../../extensions/extension_uploader.php:28 -msgid "Uploader extension" -msgstr "Extensión de subidas" - -#: ../../extensions/extension_uploader.php:64 -msgid "Success to upload extension" -msgstr "Extensión subida con éxito" - -#: ../../extensions/extension_uploader.php:65 -msgid "Fail to upload extension" -msgstr "Fallo al subir extensión" - -#: ../../extensions/extension_uploader.php:73 -msgid "Upload extension" -msgstr "Subir extensión" - -#: ../../extensions/extension_uploader.php:75 -msgid "Upload the extension as a zip file." -msgstr "Subir la extensión como un archivo zip" - -#: ../../extensions/extension_uploader.php:77 -msgid "Upload enterprise extension" -msgstr "Actualizar extensión Enterprise" - -#: ../../extensions/extension_uploader.php:85 -#: ../../extensions/plugin_registration.php:43 -#: ../../extensions/resource_registration.php:876 -#: ../../godmode/alerts/alert_special_days.php:260 -#: ../../operation/incidents/incident_detail.php:507 -#: ../../enterprise/include/functions_policies.php:4110 -msgid "Upload" -msgstr "Subir" - -#: ../../extensions/extension_uploader.php:90 -msgid "Extension uploader" -msgstr "Cargador de extensiones" - -#: ../../extensions/files_repo/files_repo_form.php:65 -#: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../include/functions_maps.php:40 -#: ../../include/functions_networkmap.php:1632 -#: ../../mobile/include/functions_web.php:26 -#: ../../mobile/operation/groups.php:66 ../../mobile/operation/home.php:50 -#: ../../operation/agentes/pandora_networkmap.php:404 -#: ../../operation/tree.php:61 -#: ../../enterprise/dashboard/widgets/events_list.php:57 -#: ../../enterprise/dashboard/widgets/groups_status.php:28 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:35 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:35 -#: ../../enterprise/dashboard/widgets/tree_view.php:34 -#: ../../enterprise/godmode/setup/setup_auth.php:427 -#: ../../enterprise/godmode/setup/setup_auth.php:468 -msgid "Groups" -msgstr "Grupos" - -#: ../../extensions/files_repo/files_repo_form.php:72 -#: ../../extensions/files_repo/files_repo_list.php:59 -#: ../../godmode/agentes/agent_manager.php:305 -#: ../../godmode/agentes/agent_template.php:230 -#: ../../godmode/agentes/modificar_agente.php:495 -#: ../../godmode/agentes/module_manager.php:563 -#: ../../godmode/agentes/module_manager_editor_common.php:355 -#: ../../godmode/agentes/planned_downtime.editor.php:482 -#: ../../godmode/agentes/planned_downtime.list.php:392 -#: ../../godmode/alerts/alert_commands.php:332 -#: ../../godmode/alerts/alert_templates.php:47 -#: ../../godmode/alerts/configure_alert_command.php:155 -#: ../../godmode/alerts/configure_alert_special_days.php:90 -#: ../../godmode/alerts/configure_alert_template.php:766 -#: ../../godmode/events/event_responses.editor.php:87 -#: ../../godmode/events/event_responses.list.php:55 -#: ../../godmode/groups/configure_group.php:182 -#: ../../godmode/groups/group_list.php:340 -#: ../../godmode/massive/massive_edit_agents.php:321 -#: ../../godmode/massive/massive_edit_modules.php:459 -#: ../../godmode/massive/massive_edit_plugins.php:451 -#: ../../godmode/modules/manage_network_components.php:567 -#: ../../godmode/modules/manage_network_components_form.php:263 -#: ../../godmode/modules/manage_network_templates.php:191 -#: ../../godmode/modules/manage_network_templates_form.php:150 -#: ../../godmode/modules/manage_network_templates_form.php:201 -#: ../../godmode/modules/module_list.php:60 -#: ../../godmode/netflow/nf_item_list.php:149 -#: ../../godmode/reporting/create_container.php:194 -#: ../../godmode/reporting/graph_builder.main.php:123 -#: ../../godmode/reporting/graphs.php:156 -#: ../../godmode/reporting/reporting_builder.item_editor.php:684 -#: ../../godmode/reporting/reporting_builder.list_items.php:306 -#: ../../godmode/reporting/reporting_builder.main.php:121 -#: ../../godmode/reporting/reporting_builder.php:533 -#: ../../godmode/servers/modificar_server.php:48 -#: ../../godmode/servers/plugin.php:312 ../../godmode/servers/plugin.php:444 -#: ../../godmode/servers/recon_script.php:107 -#: ../../godmode/servers/recon_script.php:154 -#: ../../godmode/servers/recon_script.php:349 -#: ../../godmode/setup/os.builder.php:36 ../../godmode/setup/os.list.php:35 -#: ../../godmode/setup/snmp_wizard.php:40 -#: ../../godmode/snmpconsole/snmp_alert.php:627 -#: ../../godmode/snmpconsole/snmp_alert.php:1163 -#: ../../godmode/snmpconsole/snmp_filters.php:94 -#: ../../godmode/snmpconsole/snmp_filters.php:131 -#: ../../godmode/tag/edit_tag.php:177 ../../godmode/tag/tag.php:156 -#: ../../godmode/tag/tag.php:200 ../../godmode/users/user_list.php:277 -#: ../../include/ajax/module.php:744 ../../include/functions_treeview.php:129 -#: ../../include/functions_treeview.php:587 -#: ../../include/functions_container.php:130 -#: ../../include/functions_events.php:1810 -#: ../../include/functions_reporting_html.php:123 -#: ../../include/functions_reporting_html.php:2082 -#: ../../include/functions_reporting_html.php:2115 -#: ../../include/functions_reporting_html.php:3106 -#: ../../include/functions_reporting_html.php:3820 -#: ../../include/functions_snmp_browser.php:415 -#: ../../mobile/operation/tactical.php:312 -#: ../../operation/agentes/custom_fields.php:64 -#: ../../operation/agentes/estado_agente.php:495 -#: ../../operation/agentes/estado_generalagente.php:171 -#: ../../operation/agentes/gis_view.php:183 -#: ../../operation/agentes/pandora_networkmap.editor.php:191 -#: ../../operation/events/events.php:91 ../../operation/gis_maps/ajax.php:302 -#: ../../operation/incidents/incident_detail.php:454 -#: ../../operation/incidents/incident_detail.php:506 -#: ../../operation/reporting/custom_reporting.php:39 -#: ../../operation/reporting/graph_viewer.php:339 -#: ../../operation/search_graphs.php:34 ../../operation/search_reports.php:39 -#: ../../operation/search_users.php:53 -#: ../../enterprise/extensions/backup/main.php:98 -#: ../../enterprise/extensions/backup/main.php:213 -#: ../../enterprise/extensions/cron/functions.php:62 -#: ../../enterprise/extensions/ipam/ipam_editor.php:85 -#: ../../enterprise/extensions/ipam/ipam_list.php:160 -#: ../../enterprise/extensions/ipam/ipam_network.php:143 -#: ../../enterprise/godmode/agentes/collection_manager.php:107 -#: ../../enterprise/godmode/agentes/collection_manager.php:165 -#: ../../enterprise/godmode/agentes/collections.php:234 -#: ../../enterprise/godmode/agentes/inventory_manager.php:234 -#: ../../enterprise/godmode/alerts/alert_events.php:501 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:241 -#: ../../enterprise/godmode/modules/configure_local_component.php:305 -#: ../../enterprise/godmode/modules/configure_local_component.php:443 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:155 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:80 -#: ../../enterprise/godmode/policies/configure_policy.php:75 -#: ../../enterprise/godmode/policies/policy_collections.php:123 -#: ../../enterprise/godmode/policies/policy_collections.php:194 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:243 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:163 -#: ../../enterprise/godmode/reporting/graph_template_list.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:286 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:122 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1223 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:331 -#: ../../enterprise/godmode/services/services.elements.php:383 -#: ../../enterprise/godmode/services/services.service.php:247 -#: ../../enterprise/godmode/setup/edit_skin.php:231 -#: ../../enterprise/godmode/setup/setup_skins.php:119 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:322 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:78 -#: ../../enterprise/include/functions_netflow_pdf.php:166 -#: ../../enterprise/include/functions_reporting.php:4942 -#: ../../enterprise/include/functions_reporting_csv.php:257 -#: ../../enterprise/include/functions_reporting_csv.php:260 -#: ../../enterprise/include/functions_reporting_csv.php:342 -#: ../../enterprise/include/functions_reporting_csv.php:344 -#: ../../enterprise/include/functions_reporting_csv.php:373 -#: ../../enterprise/include/functions_reporting_csv.php:375 -#: ../../enterprise/include/functions_reporting_csv.php:399 -#: ../../enterprise/include/functions_reporting_csv.php:401 -#: ../../enterprise/include/functions_reporting_csv.php:426 -#: ../../enterprise/include/functions_reporting_csv.php:428 -#: ../../enterprise/include/functions_reporting_csv.php:452 -#: ../../enterprise/include/functions_reporting_csv.php:454 -#: ../../enterprise/include/functions_reporting_csv.php:492 -#: ../../enterprise/include/functions_reporting_csv.php:494 -#: ../../enterprise/include/functions_reporting_csv.php:520 -#: ../../enterprise/include/functions_reporting_csv.php:522 -#: ../../enterprise/include/functions_reporting_csv.php:524 -#: ../../enterprise/include/functions_reporting_csv.php:555 -#: ../../enterprise/include/functions_reporting_csv.php:557 -#: ../../enterprise/include/functions_reporting_csv.php:559 -#: ../../enterprise/include/functions_reporting_csv.php:591 -#: ../../enterprise/include/functions_reporting_csv.php:593 -#: ../../enterprise/include/functions_reporting_csv.php:595 -#: ../../enterprise/include/functions_reporting_csv.php:627 -#: ../../enterprise/include/functions_reporting_csv.php:629 -#: ../../enterprise/include/functions_reporting_csv.php:632 -#: ../../enterprise/include/functions_reporting_csv.php:662 -#: ../../enterprise/include/functions_reporting_csv.php:664 -#: ../../enterprise/include/functions_reporting_csv.php:696 -#: ../../enterprise/include/functions_reporting_csv.php:698 -#: ../../enterprise/include/functions_reporting_csv.php:700 -#: ../../enterprise/include/functions_reporting_csv.php:732 -#: ../../enterprise/include/functions_reporting_csv.php:734 -#: ../../enterprise/include/functions_reporting_csv.php:736 -#: ../../enterprise/include/functions_reporting_csv.php:768 -#: ../../enterprise/include/functions_reporting_csv.php:770 -#: ../../enterprise/include/functions_reporting_csv.php:772 -#: ../../enterprise/include/functions_reporting_csv.php:804 -#: ../../enterprise/include/functions_reporting_csv.php:806 -#: ../../enterprise/include/functions_reporting_csv.php:808 -#: ../../enterprise/include/functions_reporting_csv.php:840 -#: ../../enterprise/include/functions_reporting_csv.php:842 -#: ../../enterprise/include/functions_reporting_csv.php:844 -#: ../../enterprise/include/functions_reporting_csv.php:876 -#: ../../enterprise/include/functions_reporting_csv.php:878 -#: ../../enterprise/include/functions_reporting_csv.php:917 -#: ../../enterprise/include/functions_reporting_csv.php:919 -#: ../../enterprise/include/functions_reporting_csv.php:1040 -#: ../../enterprise/include/functions_reporting_csv.php:1153 -#: ../../enterprise/include/functions_reporting_csv.php:1300 -#: ../../enterprise/include/functions_reporting_csv.php:1365 -#: ../../enterprise/include/functions_reporting_csv.php:1505 -#: ../../enterprise/include/functions_reporting_csv.php:1509 -#: ../../enterprise/include/functions_reporting_pdf.php:2175 -#: ../../enterprise/include/functions_reporting_pdf.php:2318 -#: ../../enterprise/include/functions_reporting_pdf.php:2366 -#: ../../enterprise/include/functions_reporting_pdf.php:2421 -#: ../../enterprise/include/functions_services.php:1414 -#: ../../enterprise/include/functions_update_manager.php:172 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:102 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1113 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1393 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1658 -#: ../../enterprise/meta/include/functions_wizard_meta.php:158 -#: ../../enterprise/meta/include/functions_wizard_meta.php:369 -#: ../../enterprise/meta/include/functions_wizard_meta.php:469 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1005 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1302 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1419 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1519 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1637 -#: ../../enterprise/mobile/include/enterprise.class.php:80 -#: ../../enterprise/operation/agentes/collection_view.php:65 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:358 -#: ../../enterprise/operation/agentes/policy_view.php:49 -#: ../../enterprise/operation/agentes/transactional_map.php:149 -#: ../../enterprise/operation/agentes/ver_agente.php:58 -#: ../../enterprise/operation/services/services.list.php:331 -#: ../../enterprise/operation/services/services.service.php:130 -msgid "Description" -msgstr "Descripción" - -#: ../../extensions/files_repo/files_repo_form.php:73 -msgid "Only 200 characters are permitted" -msgstr "Sólo 200 caracteres permitidos" - -#: ../../extensions/files_repo/files_repo_form.php:84 -#: ../../extensions/system_info.php:471 ../../extensions/system_info.php:526 -#: ../../godmode/extensions.php:143 -msgid "File" -msgstr "Archivo" - -#: ../../extensions/files_repo/files_repo_form.php:87 -#: ../../extensions/files_repo/files_repo_form.php:93 -#: ../../extensions/files_repo/files_repo_list.php:89 -msgid "Public link" -msgstr "Enlace público" - -#: ../../extensions/files_repo/files_repo_form.php:88 -#: ../../extensions/net_tools.php:338 -#: ../../godmode/agentes/agent_conf_gis.php:88 -#: ../../godmode/agentes/agent_manager.php:489 -#: ../../godmode/agentes/agent_template.php:253 -#: ../../godmode/agentes/configure_field.php:61 -#: ../../godmode/agentes/module_manager_editor.php:525 -#: ../../godmode/agentes/planned_downtime.editor.php:624 -#: ../../godmode/agentes/planned_downtime.list.php:466 -#: ../../godmode/agentes/planned_downtime.list.php:475 -#: ../../godmode/alerts/alert_list.list.php:147 -#: ../../godmode/alerts/alert_list.list.php:155 -#: ../../godmode/alerts/configure_alert_action.php:216 -#: ../../godmode/alerts/configure_alert_action.php:222 -#: ../../godmode/alerts/configure_alert_command.php:198 -#: ../../godmode/alerts/configure_alert_special_days.php:102 -#: ../../godmode/category/edit_category.php:169 -#: ../../godmode/events/custom_events.php:201 -#: ../../godmode/events/event_edit_filter.php:401 -#: ../../godmode/events/event_responses.editor.php:145 -#: ../../godmode/groups/configure_group.php:221 -#: ../../godmode/groups/configure_modu_group.php:83 -#: ../../godmode/massive/massive_edit_agents.php:473 -#: ../../godmode/massive/massive_edit_modules.php:625 -#: ../../godmode/massive/massive_edit_plugins.php:321 -#: ../../godmode/modules/manage_nc_groups_form.php:80 -#: ../../godmode/modules/manage_network_components_form.php:274 -#: ../../godmode/modules/manage_network_templates_form.php:156 -#: ../../godmode/netflow/nf_edit_form.php:240 -#: ../../godmode/reporting/create_container.php:232 -#: ../../godmode/reporting/graph_builder.main.php:183 -#: ../../godmode/reporting/reporting_builder.main.php:38 -#: ../../godmode/reporting/visual_console_builder.data.php:185 -#: ../../godmode/reporting/visual_console_builder.elements.php:516 -#: ../../godmode/servers/manage_recontask_form.php:407 -#: ../../godmode/servers/modificar_server.php:53 -#: ../../godmode/servers/plugin.php:173 ../../godmode/servers/plugin.php:546 -#: ../../godmode/servers/recon_script.php:223 -#: ../../godmode/setup/links.php:120 ../../godmode/setup/news.php:207 -#: ../../godmode/setup/os.php:57 ../../godmode/setup/os.php:110 -#: ../../godmode/setup/performance.php:157 -#: ../../godmode/setup/setup_auth.php:202 -#: ../../godmode/setup/setup_ehorus.php:57 -#: ../../godmode/setup/setup_ehorus.php:158 -#: ../../godmode/setup/setup_general.php:232 -#: ../../godmode/setup/setup_netflow.php:81 -#: ../../godmode/setup/setup_visuals.php:786 -#: ../../godmode/setup/snmp_wizard.php:106 -#: ../../godmode/snmpconsole/snmp_alert.php:977 -#: ../../godmode/snmpconsole/snmp_alert.php:1232 -#: ../../godmode/snmpconsole/snmp_filters.php:105 -#: ../../godmode/snmpconsole/snmp_filters.php:142 -#: ../../godmode/tag/edit_tag.php:224 -#: ../../godmode/update_manager/update_manager.setup.php:132 -#: ../../godmode/users/configure_profile.php:381 -#: ../../godmode/users/configure_user.php:686 -#: ../../include/ajax/alert_list.ajax.php:172 -#: ../../include/functions_pandora_networkmap.php:1486 -#: ../../include/functions_events.php:1706 -#: ../../include/functions_events.php:1744 -#: ../../include/functions_visual_map_editor.php:465 -#: ../../operation/agentes/datos_agente.php:209 -#: ../../operation/events/events_list.php:696 -#: ../../operation/reporting/reporting_viewer.php:201 -#: ../../operation/snmpconsole/snmp_view.php:450 -#: ../../operation/users/user_edit.php:473 -#: ../../enterprise/dashboard/main_dashboard.php:294 -#: ../../enterprise/dashboard/widget.php:190 -#: ../../enterprise/extensions/cron/main.php:351 -#: ../../enterprise/extensions/ipam/ipam_editor.php:118 -#: ../../enterprise/extensions/ipam/ipam_massive.php:95 -#: ../../enterprise/extensions/ipam/ipam_network.php:670 -#: ../../enterprise/extensions/translate_string.php:306 -#: ../../enterprise/extensions/translate_string.php:313 -#: ../../enterprise/extensions/vmware/vmware_view.php:1353 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:216 -#: ../../enterprise/godmode/agentes/collection_manager.php:132 -#: ../../enterprise/godmode/agentes/collection_manager.php:217 -#: ../../enterprise/godmode/agentes/collections.data.php:95 -#: ../../enterprise/godmode/agentes/collections.data.php:202 -#: ../../enterprise/godmode/agentes/collections.data.php:260 -#: ../../enterprise/godmode/agentes/collections.data.php:335 -#: ../../enterprise/godmode/agentes/collections.editor.php:130 -#: ../../enterprise/godmode/agentes/collections.editor.php:196 -#: ../../enterprise/godmode/agentes/inventory_manager.php:204 -#: ../../enterprise/godmode/agentes/inventory_manager.php:267 -#: ../../enterprise/godmode/agentes/plugins_manager.php:145 -#: ../../enterprise/godmode/agentes/plugins_manager.php:179 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:225 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:300 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:291 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:126 -#: ../../enterprise/godmode/modules/configure_local_component.php:486 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:228 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:115 -#: ../../enterprise/godmode/policies/configure_policy.php:86 -#: ../../enterprise/godmode/policies/policy_collections.php:158 -#: ../../enterprise/godmode/policies/policy_collections.php:210 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:274 -#: ../../enterprise/godmode/policies/policy_modules.php:364 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:229 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:109 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:146 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:78 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:88 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:327 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:87 -#: ../../enterprise/godmode/servers/manage_export_form.php:120 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:172 -#: ../../enterprise/godmode/services/services.elements.php:421 -#: ../../enterprise/godmode/services/services.service.php:377 -#: ../../enterprise/godmode/setup/edit_skin.php:262 -#: ../../enterprise/godmode/setup/setup.php:260 -#: ../../enterprise/godmode/setup/setup.php:360 -#: ../../enterprise/godmode/setup/setup_history.php:84 -#: ../../enterprise/godmode/setup/setup_log_collector.php:55 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:218 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:345 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:86 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:348 -#: ../../enterprise/meta/advanced/metasetup.mail.php:106 -#: ../../enterprise/meta/advanced/metasetup.password.php:146 -#: ../../enterprise/meta/advanced/metasetup.performance.php:103 -#: ../../enterprise/meta/advanced/metasetup.setup.php:263 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:102 -#: ../../enterprise/meta/advanced/metasetup.visual.php:283 -#: ../../enterprise/meta/event/custom_events.php:197 -#: ../../enterprise/operation/agentes/collection_view.php:98 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:191 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:399 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:76 -#: ../../enterprise/operation/agentes/policy_view.php:161 -msgid "Update" -msgstr "Actualizar" - -#: ../../extensions/files_repo/files_repo_form.php:94 -#: ../../godmode/agentes/planned_downtime.editor.php:628 -#: ../../godmode/agentes/planned_downtime.editor.php:723 -#: ../../godmode/agentes/planned_downtime.editor.php:863 -#: ../../godmode/alerts/alert_list.list.php:633 -#: ../../godmode/events/event_edit_filter.php:353 -#: ../../godmode/events/event_edit_filter.php:368 -#: ../../godmode/massive/massive_add_action_alerts.php:205 -#: ../../godmode/massive/massive_add_alerts.php:185 -#: ../../godmode/massive/massive_add_tags.php:161 -#: ../../godmode/modules/manage_network_templates_form.php:310 -#: ../../godmode/reporting/graph_builder.graph_editor.php:163 -#: ../../godmode/reporting/visual_console_builder.wizard.php:367 -#: ../../godmode/servers/manage_recontask_form.php:411 -#: ../../godmode/servers/plugin.php:796 -#: ../../godmode/servers/recon_script.php:383 -#: ../../godmode/setup/links.php:158 ../../godmode/setup/news.php:275 -#: ../../godmode/setup/setup_visuals.php:710 -#: ../../godmode/setup/setup_visuals.php:746 -#: ../../godmode/snmpconsole/snmp_alert.php:1317 -#: ../../godmode/users/configure_profile.php:375 -#: ../../operation/events/events_list.php:401 -#: ../../operation/events/events_list.php:428 -#: ../../operation/incidents/incident_detail.php:404 -#: ../../enterprise/dashboard/main_dashboard.php:348 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:186 -#: ../../enterprise/godmode/agentes/collection_manager.php:109 -#: ../../enterprise/godmode/agentes/collection_manager.php:126 -#: ../../enterprise/godmode/agentes/inventory_manager.php:208 -#: ../../enterprise/godmode/agentes/plugins_manager.php:127 -#: ../../enterprise/godmode/alerts/alert_events_list.php:608 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:123 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:112 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:110 -#: ../../enterprise/godmode/policies/policy_alerts.php:474 -#: ../../enterprise/godmode/policies/policy_alerts.php:520 -#: ../../enterprise/godmode/policies/policy_collections.php:196 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:285 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:336 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:219 -#: ../../enterprise/godmode/policies/policy_plugins.php:70 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:183 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:316 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:180 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:221 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:516 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:193 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:133 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:380 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:78 -#: ../../enterprise/godmode/servers/manage_export_form.php:122 -#: ../../enterprise/godmode/setup/setup_acl.php:172 -#: ../../enterprise/godmode/setup/setup_acl.php:191 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:221 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:329 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:352 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:484 -#: ../../enterprise/meta/advanced/metasetup.visual.php:149 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1213 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:235 -msgid "Add" -msgstr "Añadir" - -#: ../../extensions/files_repo/files_repo_get_file.php:65 -msgid "Unreliable petition" -msgstr "Petición no fiable" - -#: ../../extensions/files_repo/files_repo_get_file.php:65 -msgid "Please contact the administrator" -msgstr "Por favor, contacta con el administrador" - -#: ../../extensions/files_repo/files_repo_list.php:58 -#: ../../godmode/agentes/configure_field.php:48 -#: ../../godmode/agentes/module_manager.php:545 -#: ../../godmode/agentes/module_manager_editor_common.php:149 -#: ../../godmode/agentes/module_manager_editor_common.php:654 -#: ../../godmode/agentes/planned_downtime.editor.php:478 -#: ../../godmode/agentes/planned_downtime.editor.php:752 -#: ../../godmode/alerts/alert_actions.php:340 -#: ../../godmode/alerts/alert_commands.php:330 -#: ../../godmode/alerts/alert_templates.php:299 -#: ../../godmode/alerts/configure_alert_action.php:112 -#: ../../godmode/alerts/configure_alert_command.php:146 -#: ../../godmode/alerts/configure_alert_template.php:750 -#: ../../godmode/category/edit_category.php:155 -#: ../../godmode/events/event_filter.php:108 -#: ../../godmode/events/event_responses.editor.php:76 -#: ../../godmode/events/event_responses.list.php:54 -#: ../../godmode/groups/configure_group.php:116 -#: ../../godmode/groups/configure_modu_group.php:69 -#: ../../godmode/groups/group_list.php:336 -#: ../../godmode/groups/modu_group_list.php:183 -#: ../../godmode/modules/manage_nc_groups.php:194 -#: ../../godmode/modules/manage_nc_groups_form.php:67 -#: ../../godmode/modules/manage_network_components_form_common.php:54 -#: ../../godmode/modules/manage_network_templates.php:190 -#: ../../godmode/modules/manage_network_templates_form.php:146 -#: ../../godmode/modules/module_list.php:59 -#: ../../godmode/netflow/nf_edit.php:118 -#: ../../godmode/netflow/nf_edit_form.php:189 -#: ../../godmode/reporting/create_container.php:167 -#: ../../godmode/reporting/graph_builder.main.php:103 -#: ../../godmode/reporting/reporting_builder.item_editor.php:653 -#: ../../godmode/reporting/reporting_builder.list_items.php:306 -#: ../../godmode/reporting/reporting_builder.main.php:65 -#: ../../godmode/reporting/reporting_builder.main.php:67 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/modificar_server.php:46 -#: ../../godmode/servers/plugin.php:293 ../../godmode/servers/plugin.php:735 -#: ../../godmode/servers/recon_script.php:95 -#: ../../godmode/servers/recon_script.php:348 -#: ../../godmode/servers/servers.build_table.php:64 -#: ../../godmode/setup/os.builder.php:35 ../../godmode/setup/os.list.php:34 -#: ../../godmode/tag/edit_tag.php:169 ../../godmode/tag/tag.php:156 -#: ../../godmode/users/user_list.php:269 ../../godmode/users/user_list.php:403 -#: ../../include/functions_treeview.php:79 -#: ../../include/functions_pandora_networkmap.php:1399 -#: ../../include/functions_pandora_networkmap.php:1432 -#: ../../include/functions_pandora_networkmap.php:1439 -#: ../../include/functions_pandora_networkmap.php:1600 -#: ../../include/functions_events.php:2018 -#: ../../include/functions_events.php:2068 -#: ../../include/functions_filemanager.php:580 -#: ../../include/functions_reporting_html.php:808 -#: ../../include/functions_reporting_html.php:817 -#: ../../include/functions_reporting_html.php:1646 -#: ../../include/functions_reporting_html.php:2110 -#: ../../include/functions_reporting_html.php:3819 -#: ../../mobile/operation/networkmaps.php:195 -#: ../../mobile/operation/visualmaps.php:139 -#: ../../operation/agentes/pandora_networkmap.editor.php:180 -#: ../../operation/agentes/pandora_networkmap.php:402 -#: ../../operation/gis_maps/gis_map.php:89 -#: ../../operation/netflow/nf_live_view.php:305 -#: ../../operation/search_helps.php:36 ../../operation/search_maps.php:31 -#: ../../operation/search_users.php:41 -#: ../../enterprise/dashboard/dashboards.php:84 -#: ../../enterprise/dashboard/main_dashboard.php:303 -#: ../../enterprise/dashboard/main_dashboard.php:338 -#: ../../enterprise/godmode/agentes/collection_manager.php:105 -#: ../../enterprise/godmode/agentes/collection_manager.php:163 -#: ../../enterprise/godmode/agentes/inventory_manager.php:233 -#: ../../enterprise/godmode/alerts/alert_events.php:488 -#: ../../enterprise/godmode/alerts/alert_events_list.php:422 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:407 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:131 -#: ../../enterprise/godmode/modules/configure_local_component.php:149 -#: ../../enterprise/godmode/modules/local_components.php:481 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:154 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:78 -#: ../../enterprise/godmode/policies/configure_policy.php:65 -#: ../../enterprise/godmode/policies/policies.php:254 -#: ../../enterprise/godmode/policies/policy_agents.php:377 -#: ../../enterprise/godmode/policies/policy_collections.php:121 -#: ../../enterprise/godmode/policies/policy_collections.php:192 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:242 -#: ../../enterprise/godmode/policies/policy_modules.php:1203 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:153 -#: ../../enterprise/godmode/reporting/mysql_builder.php:41 -#: ../../enterprise/godmode/reporting/mysql_builder.php:138 -#: ../../enterprise/godmode/reporting/mysql_builder.php:139 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:111 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:112 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1213 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:102 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:325 -#: ../../enterprise/godmode/servers/list_satellite.php:35 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:54 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:67 -#: ../../enterprise/godmode/services/services.service.php:244 -#: ../../enterprise/godmode/setup/edit_skin.php:208 -#: ../../enterprise/godmode/setup/setup_skins.php:82 -#: ../../enterprise/include/functions_reporting.php:4941 -#: ../../enterprise/include/functions_reporting_pdf.php:2420 -#: ../../enterprise/include/functions_services.php:1413 -#: ../../enterprise/meta/advanced/servers.build_table.php:59 -#: ../../enterprise/meta/include/functions_wizard_meta.php:148 -#: ../../enterprise/meta/include/functions_wizard_meta.php:359 -#: ../../enterprise/meta/include/functions_wizard_meta.php:464 -#: ../../enterprise/meta/include/functions_wizard_meta.php:995 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1415 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1515 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1629 -#: ../../enterprise/mobile/include/enterprise.class.php:79 -#: ../../enterprise/operation/agentes/collection_view.php:63 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:118 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:357 -#: ../../enterprise/operation/agentes/policy_view.php:131 -#: ../../enterprise/operation/agentes/policy_view.php:305 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:158 -#: ../../enterprise/operation/services/services.list.php:326 -#: ../../enterprise/operation/services/services.service.php:129 -msgid "Name" -msgstr "Nombre" - -#: ../../extensions/files_repo/files_repo_list.php:60 -#: ../../godmode/events/event_responses.editor.php:97 -#: ../../include/functions_visual_map_editor.php:107 -#: ../../include/functions_visual_map_editor.php:149 -#: ../../include/functions_visual_map_editor.php:444 -#: ../../include/functions_visual_map_editor.php:511 -#: ../../include/functions_filemanager.php:582 -#: ../../operation/incidents/incident_detail.php:455 -#: ../../enterprise/extensions/backup/main.php:100 -msgid "Size" -msgstr "Tamaño" - -#: ../../extensions/files_repo/files_repo_list.php:61 -#: ../../include/functions_filemanager.php:581 -msgid "Last modification" -msgstr "Última modificación" - -#: ../../extensions/files_repo/files_repo_list.php:86 -msgid "Copy to clipboard" -msgstr "Copiar al portapapeles" - -#: ../../extensions/files_repo/files_repo_list.php:94 -#: ../../extensions/system_info.php:467 -#: ../../enterprise/extensions/backup/main.php:179 -msgid "Download" -msgstr "Descargar" - -#: ../../extensions/files_repo/files_repo_list.php:101 -#: ../../godmode/agentes/fields_manager.php:126 -#: ../../godmode/agentes/modificar_agente.php:571 -#: ../../godmode/agentes/planned_downtime.list.php:401 -#: ../../godmode/alerts/alert_special_days.php:449 -#: ../../godmode/events/event_responses.list.php:67 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 -#: ../../godmode/reporting/reporting_builder.list_items.php:437 -#: ../../godmode/reporting/reporting_builder.php:698 -#: ../../godmode/servers/plugin.php:157 ../../godmode/servers/plugin.php:781 -#: ../../godmode/servers/servers.build_table.php:159 -#: ../../godmode/setup/snmp_wizard.php:119 -#: ../../godmode/users/profile_list.php:389 -#: ../../godmode/users/user_list.php:468 ../../include/ajax/module.php:866 -#: ../../include/functions_pandora_networkmap.php:1464 -#: ../../include/functions_groups.php:2166 -#: ../../operation/agentes/estado_agente.php:581 -#: ../../operation/agentes/pandora_networkmap.php:407 -#: ../../operation/agentes/status_monitor.php:1118 -#: ../../operation/gis_maps/gis_map.php:163 -#: ../../operation/search_reports.php:52 -#: ../../operation/servers/recon_view.php:110 -#: ../../enterprise/extensions/cron/main.php:293 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:256 -#: ../../enterprise/godmode/agentes/collections.editor.php:178 -#: ../../enterprise/godmode/alerts/alert_events_list.php:634 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:475 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 -#: ../../enterprise/godmode/reporting/mysql_builder.php:86 -#: ../../enterprise/godmode/reporting/mysql_builder.php:100 -#: ../../enterprise/godmode/reporting/mysql_builder.php:110 -#: ../../enterprise/godmode/reporting/mysql_builder.php:152 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:349 -#: ../../enterprise/include/ajax/transactional.ajax.php:119 -#: ../../enterprise/include/ajax/transactional.ajax.php:210 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1419 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1909 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2003 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2481 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:264 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:425 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:617 -#: ../../enterprise/meta/screens/screens.visualmap.php:63 -msgid "Edit" -msgstr "Editar" - -#: ../../extensions/files_repo/files_repo_list.php:105 -#: ../../godmode/agentes/agent_manager.php:203 -#: ../../godmode/agentes/agent_template.php:251 -#: ../../godmode/agentes/fields_manager.php:127 -#: ../../godmode/agentes/modificar_agente.php:637 -#: ../../godmode/agentes/module_manager.php:759 -#: ../../godmode/agentes/module_manager.php:767 -#: ../../godmode/agentes/module_manager.php:782 -#: ../../godmode/agentes/module_manager.php:797 -#: ../../godmode/agentes/module_manager.php:808 -#: ../../godmode/agentes/module_manager_editor_common.php:159 -#: ../../godmode/agentes/planned_downtime.editor.php:847 -#: ../../godmode/alerts/alert_actions.php:385 -#: ../../godmode/alerts/alert_actions.php:388 -#: ../../godmode/alerts/alert_commands.php:361 -#: ../../godmode/alerts/alert_list.list.php:826 -#: ../../godmode/alerts/alert_special_days.php:451 -#: ../../godmode/alerts/alert_templates.php:342 -#: ../../godmode/category/category.php:126 -#: ../../godmode/category/category.php:131 ../../godmode/db/db_audit.php:107 -#: ../../godmode/db/db_event.php:92 ../../godmode/db/db_refine.php:119 -#: ../../godmode/events/event_filter.php:146 -#: ../../godmode/groups/modu_group_list.php:198 -#: ../../godmode/groups/modu_group_list.php:200 -#: ../../godmode/massive/massive_add_action_alerts.php:203 -#: ../../godmode/massive/massive_add_alerts.php:183 -#: ../../godmode/massive/massive_add_profiles.php:115 -#: ../../godmode/massive/massive_add_tags.php:158 -#: ../../godmode/massive/massive_delete_action_alerts.php:202 -#: ../../godmode/massive/massive_delete_agents.php:138 -#: ../../godmode/massive/massive_delete_modules.php:511 -#: ../../godmode/massive/massive_delete_profiles.php:129 -#: ../../godmode/massive/massive_delete_tags.php:215 -#: ../../godmode/massive/massive_edit_plugins.php:533 -#: ../../godmode/massive/massive_enable_disable_alerts.php:167 -#: ../../godmode/massive/massive_operations.php:247 -#: ../../godmode/massive/massive_operations.php:256 -#: ../../godmode/massive/massive_standby_alerts.php:167 -#: ../../godmode/modules/manage_nc_groups.php:220 -#: ../../godmode/modules/manage_network_components.php:616 -#: ../../godmode/modules/manage_network_templates.php:209 -#: ../../godmode/modules/manage_network_templates.php:214 -#: ../../godmode/netflow/nf_edit.php:143 -#: ../../godmode/netflow/nf_item_list.php:237 -#: ../../godmode/reporting/create_container.php:525 -#: ../../godmode/reporting/graphs.php:193 -#: ../../godmode/reporting/reporting_builder.php:703 -#: ../../godmode/reporting/visual_console_builder.elements.php:318 -#: ../../godmode/servers/plugin.php:782 ../../godmode/setup/links.php:150 -#: ../../godmode/setup/news.php:267 -#: ../../godmode/snmpconsole/snmp_alert.php:1200 -#: ../../godmode/snmpconsole/snmp_alert.php:1236 -#: ../../godmode/snmpconsole/snmp_alert.php:1452 -#: ../../godmode/snmpconsole/snmp_filters.php:143 -#: ../../godmode/tag/tag.php:273 ../../godmode/users/configure_user.php:759 -#: ../../godmode/users/profile_list.php:390 -#: ../../godmode/users/user_list.php:470 ../../godmode/users/user_list.php:472 -#: ../../include/functions_container.php:167 -#: ../../include/functions_container.php:284 -#: ../../include/functions_events.php:1761 -#: ../../include/functions_filemanager.php:740 -#: ../../include/functions_groups.php:2173 -#: ../../operation/agentes/pandora_networkmap.php:496 -#: ../../operation/events/events.build_table.php:774 -#: ../../operation/events/events.php:852 -#: ../../operation/incidents/incident_detail.php:425 -#: ../../operation/incidents/incident_detail.php:472 -#: ../../operation/messages/message_list.php:193 -#: ../../operation/messages/message_list.php:199 -#: ../../operation/snmpconsole/snmp_view.php:750 -#: ../../operation/snmpconsole/snmp_view.php:756 -#: ../../operation/snmpconsole/snmp_view.php:907 -#: ../../operation/users/user_edit.php:800 -#: ../../enterprise/dashboard/dashboards.php:143 -#: ../../enterprise/extensions/backup/main.php:238 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:206 -#: ../../enterprise/godmode/agentes/inventory_manager.php:261 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:210 -#: ../../enterprise/godmode/alerts/alert_events_list.php:643 -#: ../../enterprise/godmode/alerts/alert_events_list.php:756 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:479 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:574 -#: ../../enterprise/godmode/modules/local_components.php:530 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:223 -#: ../../enterprise/godmode/policies/policies.php:430 -#: ../../enterprise/godmode/policies/policies.php:440 -#: ../../enterprise/godmode/policies/policies.php:458 -#: ../../enterprise/godmode/policies/policy_agents.php:227 -#: ../../enterprise/godmode/policies/policy_agents.php:326 -#: ../../enterprise/godmode/policies/policy_agents.php:470 -#: ../../enterprise/godmode/policies/policy_agents.php:523 -#: ../../enterprise/godmode/policies/policy_alerts.php:411 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:246 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:269 -#: ../../enterprise/godmode/policies/policy_modules.php:1251 -#: ../../enterprise/godmode/policies/policy_modules.php:1258 -#: ../../enterprise/godmode/policies/policy_modules.php:1287 -#: ../../enterprise/godmode/policies/policy_queue.php:440 -#: ../../enterprise/godmode/policies/policy_queue.php:476 -#: ../../enterprise/godmode/policies/policy_queue.php:492 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:175 -#: ../../enterprise/godmode/reporting/graph_template_list.php:149 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:396 -#: ../../enterprise/godmode/reporting/mysql_builder.php:49 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:361 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:369 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:762 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:367 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:162 -#: ../../enterprise/godmode/setup/setup_skins.php:136 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:348 -#: ../../enterprise/include/ajax/transactional.ajax.php:120 -#: ../../enterprise/include/ajax/transactional.ajax.php:212 -#: ../../enterprise/include/functions_services.php:1660 -#: ../../enterprise/meta/advanced/policymanager.queue.php:330 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:101 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:195 -#: ../../enterprise/operation/agentes/transactional_map.php:300 -#: ../../enterprise/operation/agentes/transactional_map.php:306 -#: ../../enterprise/operation/agentes/transactional_map.php:318 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:228 -#: ../../enterprise/operation/services/services.list.php:482 -msgid "Are you sure?" -msgstr "¿Está seguro?" - -#: ../../extensions/files_repo/files_repo_list.php:106 -#: ../../godmode/agentes/agent_template.php:251 -#: ../../godmode/agentes/fields_manager.php:127 -#: ../../godmode/agentes/module_manager.php:569 -#: ../../godmode/agentes/module_manager.php:799 -#: ../../godmode/agentes/module_manager.php:816 -#: ../../godmode/agentes/module_manager_editor_common.php:719 -#: ../../godmode/agentes/planned_downtime.editor.php:797 -#: ../../godmode/agentes/planned_downtime.editor.php:802 -#: ../../godmode/agentes/planned_downtime.editor.php:850 -#: ../../godmode/agentes/planned_downtime.list.php:402 -#: ../../godmode/agentes/planned_downtime.list.php:470 -#: ../../godmode/alerts/alert_actions.php:343 -#: ../../godmode/alerts/alert_commands.php:333 -#: ../../godmode/alerts/alert_list.list.php:711 -#: ../../godmode/alerts/alert_templates.php:345 -#: ../../godmode/db/db_refine.php:119 -#: ../../godmode/events/event_filter.php:148 -#: ../../godmode/events/event_filter.php:162 -#: ../../godmode/events/event_responses.list.php:66 -#: ../../godmode/extensions.php:272 ../../godmode/extensions.php:276 -#: ../../godmode/groups/modu_group_list.php:184 -#: ../../godmode/massive/massive_delete_action_alerts.php:204 -#: ../../godmode/massive/massive_delete_agents.php:140 -#: ../../godmode/massive/massive_delete_alerts.php:238 -#: ../../godmode/massive/massive_delete_modules.php:513 -#: ../../godmode/massive/massive_delete_profiles.php:131 -#: ../../godmode/massive/massive_delete_tags.php:218 -#: ../../godmode/modules/manage_nc_groups.php:222 -#: ../../godmode/modules/manage_nc_groups.php:233 -#: ../../godmode/modules/manage_network_components.php:617 -#: ../../godmode/modules/manage_network_components.php:629 -#: ../../godmode/modules/manage_network_templates.php:214 -#: ../../godmode/modules/manage_network_templates.php:227 -#: ../../godmode/modules/manage_network_templates_form.php:221 -#: ../../godmode/netflow/nf_edit.php:145 ../../godmode/netflow/nf_edit.php:157 -#: ../../godmode/netflow/nf_item_list.php:239 -#: ../../godmode/netflow/nf_item_list.php:250 -#: ../../godmode/reporting/create_container.php:471 -#: ../../godmode/reporting/create_container.php:526 -#: ../../godmode/reporting/graph_builder.graph_editor.php:88 -#: ../../godmode/reporting/graph_builder.graph_editor.php:127 -#: ../../godmode/reporting/graphs.php:194 -#: ../../godmode/reporting/graphs.php:207 -#: ../../godmode/reporting/map_builder.php:215 -#: ../../godmode/reporting/reporting_builder.list_items.php:439 -#: ../../godmode/reporting/reporting_builder.list_items.php:466 -#: ../../godmode/reporting/reporting_builder.list_items.php:485 -#: ../../godmode/reporting/reporting_builder.list_items.php:545 -#: ../../godmode/reporting/reporting_builder.php:707 -#: ../../godmode/reporting/visual_console_builder.elements.php:518 -#: ../../godmode/servers/recon_script.php:350 -#: ../../godmode/servers/servers.build_table.php:172 -#: ../../godmode/setup/gis.php:64 ../../godmode/setup/links.php:137 -#: ../../godmode/setup/news.php:225 ../../godmode/setup/setup_visuals.php:720 -#: ../../godmode/setup/setup_visuals.php:751 -#: ../../godmode/setup/snmp_wizard.php:122 -#: ../../godmode/snmpconsole/snmp_alert.php:1201 -#: ../../godmode/snmpconsole/snmp_alert.php:1237 -#: ../../godmode/snmpconsole/snmp_filters.php:144 -#: ../../godmode/update_manager/update_manager.messages.php:91 -#: ../../godmode/update_manager/update_manager.messages.php:165 -#: ../../godmode/users/user_list.php:470 -#: ../../include/functions_pandora_networkmap.php:762 -#: ../../include/functions_container.php:168 -#: ../../include/functions_container.php:285 -#: ../../include/functions_groups.php:2173 -#: ../../operation/agentes/pandora_networkmap.php:408 -#: ../../operation/agentes/pandora_networkmap.php:496 -#: ../../operation/gis_maps/gis_map.php:165 -#: ../../operation/incidents/incident_detail.php:456 -#: ../../operation/messages/message_edit.php:109 -#: ../../operation/messages/message_list.php:128 -#: ../../operation/messages/message_list.php:194 -#: ../../operation/messages/message_list.php:200 -#: ../../operation/messages/message_list.php:218 -#: ../../operation/snmpconsole/snmp_view.php:750 -#: ../../operation/snmpconsole/snmp_view.php:756 -#: ../../operation/snmpconsole/snmp_view.php:907 -#: ../../operation/snmpconsole/snmp_view.php:932 -#: ../../enterprise/dashboard/dashboards.php:99 -#: ../../enterprise/dashboard/dashboards.php:143 -#: ../../enterprise/extensions/backup/main.php:190 -#: ../../enterprise/extensions/cron/main.php:296 -#: ../../enterprise/godmode/agentes/inventory_manager.php:262 -#: ../../enterprise/godmode/agentes/plugins_manager.php:147 -#: ../../enterprise/godmode/agentes/plugins_manager.php:218 -#: ../../enterprise/godmode/alerts/alert_events_list.php:568 -#: ../../enterprise/godmode/alerts/alert_events_list.php:646 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:480 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:122 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:191 -#: ../../enterprise/godmode/modules/local_components.php:531 -#: ../../enterprise/godmode/modules/local_components.php:543 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:224 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:237 -#: ../../enterprise/godmode/policies/policies.php:444 -#: ../../enterprise/godmode/policies/policy_agents.php:478 -#: ../../enterprise/godmode/policies/policy_alerts.php:422 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:257 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:270 -#: ../../enterprise/godmode/policies/policy_modules.php:1269 -#: ../../enterprise/godmode/policies/policy_modules.php:1293 -#: ../../enterprise/godmode/policies/policy_plugins.php:88 -#: ../../enterprise/godmode/policies/policy_queue.php:344 -#: ../../enterprise/godmode/policies/policy_queue.php:379 -#: ../../enterprise/godmode/policies/policy_queue.php:421 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:177 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:188 -#: ../../enterprise/godmode/reporting/graph_template_list.php:161 -#: ../../enterprise/godmode/reporting/mysql_builder.php:42 -#: ../../enterprise/godmode/reporting/mysql_builder.php:49 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:373 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:355 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:328 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:366 -#: ../../enterprise/godmode/setup/setup_acl.php:227 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:349 -#: ../../enterprise/include/ajax/transactional.ajax.php:121 -#: ../../enterprise/include/ajax/transactional.ajax.php:213 -#: ../../enterprise/meta/advanced/metasetup.visual.php:154 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/meta/advanced/policymanager.queue.php:312 -#: ../../enterprise/meta/advanced/servers.build_table.php:132 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1425 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1594 -#: ../../enterprise/meta/include/functions_wizard_meta.php:294 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:267 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:428 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:620 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:196 -#: ../../enterprise/operation/agentes/transactional_map.php:319 -#: ../../enterprise/operation/services/services.list.php:483 -msgid "Delete" -msgstr "Borrar" - -#: ../../extensions/files_repo/files_repo_list.php:115 -msgid "No items" -msgstr "No hay elementos" - -#: ../../extensions/files_repo/functions_files_repo.php:29 -#: ../../extensions/files_repo/functions_files_repo.php:40 -#: ../../include/functions_config.php:1835 -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:30 -#: ../../extensions/files_repo/functions_files_repo.php:41 -#, php-format -msgid "Please check that the web server has write rights on the %s directory" -msgstr "" -"Por favor, comprobar que el directorio %s del servidor web tiene permisos de " -"escritura" - -#: ../../extensions/files_repo/functions_files_repo.php:229 -msgid "The file could not be copied" -msgstr "El fichero no ha sido copiado" - -#: ../../extensions/files_repo/functions_files_repo.php:233 -msgid "There was an error creating the file" -msgstr "Se ha producido un error creando el fichero" - -#: ../../extensions/files_repo/functions_files_repo.php:274 -#: ../../enterprise/extensions/vmware/main.php:76 -msgid "There was an error updating the file" -msgstr "Se ha producido un error actualizando el fichero" - -#: ../../extensions/files_repo.php:91 -msgid "Extension not installed" -msgstr "Extensión no instalada" - -#: ../../extensions/files_repo.php:104 ../../extensions/files_repo.php:187 -#: ../../enterprise/extensions/ipam.php:213 -#: ../../enterprise/extensions/ipam.php:226 -#: ../../enterprise/extensions/ipam.php:292 -msgid "Administration view" -msgstr "Vista de administración" - -#: ../../extensions/files_repo.php:110 ../../extensions/files_repo.php:192 -#: ../../enterprise/extensions/ipam.php:159 -#: ../../enterprise/extensions/ipam.php:300 -msgid "Operation view" -msgstr "Vista de operación" - -#: ../../extensions/files_repo.php:116 ../../extensions/files_repo.php:218 -msgid "Files repository manager" -msgstr "Manejo de repositorio de archivos" - -#: ../../extensions/files_repo.php:133 ../../include/functions.php:2213 -#: ../../include/functions.php:2216 -msgid "The file exceeds the maximum size" -msgstr "El fichero excede el tamaño máximo" - -#: ../../extensions/files_repo.php:166 -#: ../../godmode/agentes/planned_downtime.list.php:107 -#: ../../godmode/alerts/alert_actions.php:332 -#: ../../godmode/alerts/alert_commands.php:319 -#: ../../godmode/alerts/alert_list.php:145 -#: ../../godmode/alerts/alert_list.php:213 -#: ../../godmode/alerts/alert_special_days.php:223 -#: ../../godmode/alerts/alert_templates.php:225 -#: ../../godmode/events/event_filter.php:56 -#: ../../godmode/events/event_filter.php:77 -#: ../../godmode/massive/massive_delete_action_alerts.php:114 -#: ../../godmode/massive/massive_delete_alerts.php:156 -#: ../../godmode/massive/massive_delete_modules.php:236 -#: ../../godmode/massive/massive_delete_tags.php:151 -#: ../../godmode/modules/manage_nc_groups.php:122 -#: ../../godmode/modules/manage_network_components.php:372 -#: ../../godmode/netflow/nf_edit.php:76 ../../godmode/netflow/nf_edit.php:100 -#: ../../godmode/netflow/nf_item_list.php:105 -#: ../../godmode/netflow/nf_item_list.php:126 -#: ../../godmode/reporting/graphs.php:89 ../../godmode/reporting/graphs.php:97 -#: ../../godmode/reporting/graphs.php:139 -#: ../../godmode/reporting/map_builder.php:87 -#: ../../godmode/reporting/reporting_builder.php:412 -#: ../../godmode/setup/gis.php:57 ../../godmode/setup/links.php:69 -#: ../../godmode/setup/news.php:97 -#: ../../godmode/snmpconsole/snmp_alert.php:560 -#: ../../godmode/snmpconsole/snmp_filters.php:76 -#: ../../godmode/users/configure_user.php:453 -#: ../../godmode/users/profile_list.php:94 -#: ../../godmode/users/user_list.php:147 ../../godmode/users/user_list.php:188 -#: ../../operation/events/events.php:536 -#: ../../operation/gis_maps/gis_map.php:74 -#: ../../operation/incidents/incident.php:66 -#: ../../operation/incidents/incident_detail.php:85 -#: ../../operation/incidents/incident_detail.php:114 -#: ../../operation/messages/message_list.php:56 -#: ../../operation/messages/message_list.php:73 -#: ../../operation/reporting/graph_viewer.php:44 -#: ../../operation/reporting/graph_viewer.php:51 -#: ../../operation/snmpconsole/snmp_view.php:95 -#: ../../enterprise/dashboard/dashboards.php:52 -#: ../../enterprise/extensions/ipam/ipam_action.php:64 -#: ../../enterprise/godmode/alerts/alert_events_list.php:160 -#: ../../enterprise/godmode/alerts/alert_events_list.php:204 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:281 -#: ../../enterprise/godmode/modules/local_components.php:330 -#: ../../enterprise/godmode/policies/policies.php:174 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:98 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:119 -#: ../../enterprise/godmode/reporting/graph_template_list.php:89 -#: ../../enterprise/godmode/reporting/graph_template_list.php:109 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:244 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:117 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:53 -#: ../../enterprise/operation/agentes/transactional_map.php:132 -msgid "Successfully deleted" -msgstr "Borrado correctamente" - -#: ../../extensions/files_repo.php:166 -#: ../../godmode/alerts/alert_actions.php:333 -#: ../../godmode/alerts/alert_commands.php:320 -#: ../../godmode/alerts/alert_list.php:145 -#: ../../godmode/alerts/alert_list.php:213 -#: ../../godmode/alerts/alert_special_days.php:224 -#: ../../godmode/alerts/alert_templates.php:226 -#: ../../godmode/massive/massive_delete_action_alerts.php:115 -#: ../../godmode/massive/massive_delete_alerts.php:157 -#: ../../godmode/massive/massive_delete_tags.php:152 -#: ../../godmode/modules/manage_network_components.php:373 -#: ../../godmode/reporting/reporting_builder.php:413 -#: ../../godmode/setup/gis.php:55 ../../godmode/setup/news.php:98 -#: ../../godmode/users/configure_user.php:454 -#: ../../operation/agentes/pandora_networkmap.php:273 -#: ../../operation/events/events.php:537 -#: ../../operation/gis_maps/gis_map.php:75 -#: ../../operation/incidents/incident.php:67 -#: ../../operation/incidents/incident_detail.php:86 -#: ../../operation/incidents/incident_detail.php:115 -#: ../../operation/messages/message_list.php:57 -#: ../../operation/snmpconsole/snmp_view.php:96 -#: ../../enterprise/dashboard/dashboards.php:53 -#: ../../enterprise/extensions/ipam/ipam_action.php:61 -#: ../../enterprise/godmode/alerts/alert_events_list.php:161 -#: ../../enterprise/godmode/alerts/alert_events_list.php:205 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:282 -#: ../../enterprise/godmode/modules/local_components.php:331 -#: ../../enterprise/godmode/policies/policies.php:175 -#: ../../enterprise/godmode/policies/policy_agents.php:91 -#: ../../enterprise/godmode/policies/policy_alerts.php:165 -#: ../../enterprise/godmode/policies/policy_alerts.php:206 -#: ../../enterprise/godmode/policies/policy_collections.php:69 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:96 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:141 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:96 -#: ../../enterprise/godmode/policies/policy_modules.php:1097 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:245 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:191 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:118 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:54 -#: ../../enterprise/operation/agentes/transactional_map.php:133 -msgid "Could not be deleted" -msgstr "No se pudo borrar" - -#: ../../extensions/files_repo.php:200 ../../extensions/files_repo.php:216 -msgid "Files repository" -msgstr "Repositorio" - -#: ../../extensions/insert_data.php:56 -msgid "Insert data" -msgstr "Insertar datos" - -#: ../../extensions/insert_data.php:93 -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:130 -#, php-format -msgid "Can't save agent (%s), module (%s) data xml." -msgstr "No se puede guardar el agente (%s), modulo (%s) datos xml" - -#: ../../extensions/insert_data.php:137 -#, php-format -msgid "Save agent (%s), module (%s) data xml." -msgstr "Guardar agente (%s), módulo (%s) datos xml." - -#: ../../extensions/insert_data.php:146 -#, 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, compruebe que se puede escribir en el directorio \"%s\"por " -"usuarios de apache.

    El formato del archivo CSV es " -"date;value<newline>date;value<newline>... La fecha en CVS está " -"en formato Y/m/d H:i:s." - -#: ../../extensions/insert_data.php:179 ../../general/header.php:204 -#: ../../godmode/alerts/alert_list.builder.php:77 -#: ../../godmode/alerts/alert_list.builder.php:125 -#: ../../godmode/alerts/configure_alert_template.php:595 -#: ../../godmode/gis_maps/configure_gis_map.php:588 -#: ../../godmode/massive/massive_add_alerts.php:176 -#: ../../godmode/massive/massive_copy_modules.php:95 -#: ../../godmode/massive/massive_delete_alerts.php:208 -#: ../../godmode/massive/massive_delete_modules.php:412 -#: ../../godmode/massive/massive_delete_modules.php:481 -#: ../../godmode/massive/massive_edit_modules.php:256 -#: ../../godmode/massive/massive_edit_modules.php:310 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 -#: ../../enterprise/godmode/alerts/alert_events.php:513 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:207 -#: ../../enterprise/godmode/policies/policy_alerts.php:509 -#: ../../enterprise/godmode/policies/policy_alerts.php:513 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:328 -#: ../../enterprise/meta/advanced/synchronizing.user.php:538 -#: ../../enterprise/meta/general/main_header.php:392 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:224 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:223 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:313 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:482 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:555 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:107 -msgid "Select" -msgstr "Seleccionar" - -#: ../../extensions/insert_data.php:180 ../../extensions/insert_data.php:181 -#: ../../include/ajax/module.php:749 -#: ../../include/functions_reporting.php:2360 -#: ../../include/functions_reporting.php:2394 -#: ../../include/functions_graph.php:3434 -#: ../../include/functions_netflow.php:311 -#: ../../include/functions_reporting_html.php:1812 -#: ../../include/functions_reporting_html.php:1815 -#: ../../include/functions_reporting_html.php:1816 -#: ../../include/functions_reporting_html.php:1819 -#: ../../mobile/operation/modules.php:606 -#: ../../mobile/operation/modules.php:613 -#: ../../mobile/operation/modules.php:621 -#: ../../mobile/operation/modules.php:757 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/exportdata.php:98 -#: ../../operation/agentes/gis_view.php:194 -#: ../../operation/agentes/status_monitor.php:983 -#: ../../operation/search_modules.php:53 -#: ../../enterprise/godmode/agentes/collections.agents.php:50 -#: ../../enterprise/godmode/agentes/collections.agents.php:59 -#: ../../enterprise/godmode/agentes/collections.data.php:62 -#: ../../enterprise/godmode/agentes/collections.data.php:101 -#: ../../enterprise/godmode/agentes/collections.data.php:138 -#: ../../enterprise/godmode/agentes/collections.data.php:154 -#: ../../enterprise/godmode/agentes/collections.data.php:169 -#: ../../enterprise/godmode/agentes/collections.data.php:191 -#: ../../enterprise/godmode/agentes/collections.data.php:214 -#: ../../enterprise/godmode/agentes/collections.data.php:235 -#: ../../enterprise/godmode/agentes/collections.data.php:254 -#: ../../enterprise/godmode/agentes/collections.editor.php:39 -#: ../../enterprise/include/functions_reporting.php:1853 -#: ../../enterprise/include/functions_reporting.php:1977 -#: ../../enterprise/include/functions_reporting.php:1980 -#: ../../enterprise/include/functions_reporting_csv.php:349 -#: ../../enterprise/include/functions_reporting_csv.php:405 -#: ../../enterprise/include/functions_reporting_csv.php:431 -#: ../../enterprise/include/functions_reporting_csv.php:497 -#: ../../enterprise/include/functions_reporting_csv.php:880 -#: ../../enterprise/include/functions_reporting_pdf.php:365 -#: ../../enterprise/include/functions_reporting_pdf.php:371 -#: ../../enterprise/include/functions_reporting_pdf.php:977 -#: ../../enterprise/include/functions_reporting_pdf.php:983 -#: ../../enterprise/include/functions_reporting_pdf.php:984 -#: ../../enterprise/include/functions_reporting_pdf.php:987 -#: ../../enterprise/include/functions_services.php:1428 -#: ../../enterprise/operation/agentes/policy_view.php:308 -msgid "Data" -msgstr "Datos" - -#: ../../extensions/insert_data.php:182 -#: ../../extensions/users_connected.php:79 ../../general/logon_ok.php:226 -#: ../../general/logon_ok.php:423 ../../godmode/admin_access_logs.php:190 -#: ../../godmode/alerts/configure_alert_special_days.php:66 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1121 -#: ../../include/functions.php:2337 ../../include/functions_reporting.php:2360 -#: ../../include/functions_reporting.php:2393 -#: ../../include/functions_events.php:3927 -#: ../../include/functions_reporting_html.php:1812 -#: ../../include/functions_reporting_html.php:1816 -#: ../../include/functions_reporting_html.php:1819 -#: ../../include/functions_reporting_html.php:1834 -#: ../../include/functions_reporting_html.php:3598 -#: ../../mobile/operation/tactical.php:310 -#: ../../operation/events/events.build_table.php:581 -#: ../../operation/netflow/nf_live_view.php:234 -#: ../../operation/reporting/graph_viewer.php:205 -#: ../../enterprise/extensions/backup/main.php:99 -#: ../../enterprise/include/functions_inventory.php:508 -#: ../../enterprise/include/functions_log.php:349 -#: ../../enterprise/include/functions_reporting.php:1829 -#: ../../enterprise/include/functions_reporting.php:1852 -#: ../../enterprise/include/functions_reporting.php:1977 -#: ../../enterprise/include/functions_reporting.php:1980 -#: ../../enterprise/include/functions_reporting_csv.php:324 -#: ../../enterprise/include/functions_reporting_csv.php:378 -#: ../../enterprise/include/functions_reporting_pdf.php:364 -#: ../../enterprise/include/functions_reporting_pdf.php:373 -#: ../../enterprise/include/functions_reporting_pdf.php:976 -#: ../../enterprise/include/functions_reporting_pdf.php:982 -#: ../../enterprise/include/functions_reporting_pdf.php:999 -#: ../../enterprise/operation/agentes/agent_inventory.php:70 -#: ../../enterprise/operation/inventory/inventory.php:223 -msgid "Date" -msgstr "Fecha" - -#: ../../extensions/insert_data.php:185 -#: ../../operation/agentes/exportdata.php:331 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:293 -#: ../../enterprise/operation/reporting/custom_reporting.php:21 -msgid "CSV" -msgstr "CSV" - -#: ../../extensions/insert_data.php:194 -#: ../../godmode/reporting/reporting_builder.main.php:32 -#: ../../godmode/reporting/visual_console_builder.data.php:181 -#: ../../godmode/setup/gis_step_2.php:310 -#: ../../godmode/setup/snmp_wizard.php:104 -#: ../../operation/agentes/graphs.php:235 -#: ../../enterprise/dashboard/main_dashboard.php:323 -#: ../../enterprise/godmode/reporting/mysql_builder.php:149 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:67 -#: ../../enterprise/include/ajax/transactional.ajax.php:83 -msgid "Save" -msgstr "Guardar" - -#: ../../extensions/insert_data.php:210 -#: ../../godmode/agentes/planned_downtime.editor.php:1168 -#: ../../godmode/alerts/configure_alert_template.php:1077 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2028 -#: ../../godmode/setup/news.php:297 -#: ../../operation/agentes/datos_agente.php:304 -#: ../../operation/agentes/estado_monitores.php:401 -#: ../../operation/agentes/interface_traffic_graph_win.php:354 -#: ../../operation/agentes/stat_win.php:506 -#: ../../operation/events/events_list.php:1688 -#: ../../operation/netflow/nf_live_view.php:659 -#: ../../operation/reporting/graph_viewer.php:277 -#: ../../operation/reporting/reporting_viewer.php:254 -#: ../../operation/reporting/reporting_viewer.php:274 -#: ../../operation/tree.php:391 -#: ../../enterprise/dashboard/widgets/tree_view.php:317 -#: ../../enterprise/extensions/cron/main.php:371 -#: ../../enterprise/godmode/alerts/alert_events.php:577 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:684 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2283 -#: ../../enterprise/operation/log/log_viewer.php:310 -#: ../../enterprise/operation/log/log_viewer.php:322 -msgid "Choose time" -msgstr "Seleccionar tiempo" - -#: ../../extensions/insert_data.php:211 -#: ../../godmode/agentes/planned_downtime.editor.php:1169 -#: ../../godmode/alerts/configure_alert_template.php:1078 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2029 -#: ../../godmode/setup/news.php:298 -#: ../../operation/agentes/datos_agente.php:305 -#: ../../operation/agentes/estado_monitores.php:402 -#: ../../operation/agentes/interface_traffic_graph_win.php:355 -#: ../../operation/agentes/stat_win.php:507 -#: ../../operation/events/events_list.php:1689 -#: ../../operation/netflow/nf_live_view.php:660 -#: ../../operation/reporting/graph_viewer.php:278 -#: ../../operation/reporting/reporting_viewer.php:255 -#: ../../operation/reporting/reporting_viewer.php:275 -#: ../../operation/tree.php:392 -#: ../../enterprise/dashboard/widgets/tree_view.php:318 -#: ../../enterprise/extensions/cron/main.php:372 -#: ../../enterprise/godmode/alerts/alert_events.php:578 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:685 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2284 -#: ../../enterprise/operation/log/log_viewer.php:311 -#: ../../enterprise/operation/log/log_viewer.php:323 -msgid "Time" -msgstr "Hora" - -#: ../../extensions/insert_data.php:212 -#: ../../godmode/agentes/planned_downtime.editor.php:1170 -#: ../../godmode/alerts/configure_alert_template.php:1079 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2030 -#: ../../godmode/setup/news.php:299 ../../include/functions_html.php:866 -#: ../../operation/agentes/datos_agente.php:306 -#: ../../operation/agentes/estado_monitores.php:403 -#: ../../operation/agentes/interface_traffic_graph_win.php:356 -#: ../../operation/agentes/stat_win.php:508 -#: ../../operation/events/events_list.php:1690 -#: ../../operation/netflow/nf_live_view.php:661 -#: ../../operation/reporting/graph_viewer.php:279 -#: ../../operation/reporting/reporting_viewer.php:256 -#: ../../operation/reporting/reporting_viewer.php:276 -#: ../../operation/tree.php:393 -#: ../../enterprise/dashboard/widgets/tree_view.php:319 -#: ../../enterprise/extensions/cron/main.php:373 -#: ../../enterprise/godmode/alerts/alert_events.php:579 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:686 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2285 -#: ../../enterprise/operation/log/log_viewer.php:312 -#: ../../enterprise/operation/log/log_viewer.php:324 -msgid "Hour" -msgstr "Hora" - -#: ../../extensions/insert_data.php:213 -#: ../../godmode/agentes/planned_downtime.editor.php:1171 -#: ../../godmode/alerts/configure_alert_template.php:1080 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2031 -#: ../../godmode/setup/news.php:300 ../../include/functions_html.php:867 -#: ../../operation/agentes/datos_agente.php:307 -#: ../../operation/agentes/estado_monitores.php:404 -#: ../../operation/agentes/interface_traffic_graph_win.php:357 -#: ../../operation/agentes/stat_win.php:509 -#: ../../operation/events/events_list.php:1691 -#: ../../operation/netflow/nf_live_view.php:662 -#: ../../operation/reporting/graph_viewer.php:280 -#: ../../operation/reporting/reporting_viewer.php:257 -#: ../../operation/reporting/reporting_viewer.php:277 -#: ../../operation/tree.php:394 -#: ../../enterprise/dashboard/widgets/tree_view.php:320 -#: ../../enterprise/extensions/cron/main.php:374 -#: ../../enterprise/godmode/alerts/alert_events.php:580 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:687 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2286 -#: ../../enterprise/operation/log/log_viewer.php:313 -#: ../../enterprise/operation/log/log_viewer.php:325 -msgid "Minute" -msgstr "Minuto" - -#: ../../extensions/insert_data.php:214 -#: ../../godmode/agentes/planned_downtime.editor.php:1172 -#: ../../godmode/alerts/configure_alert_template.php:1081 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2032 -#: ../../godmode/setup/news.php:301 -#: ../../operation/agentes/datos_agente.php:308 -#: ../../operation/agentes/estado_monitores.php:405 -#: ../../operation/agentes/interface_traffic_graph_win.php:358 -#: ../../operation/agentes/stat_win.php:510 -#: ../../operation/events/events_list.php:1692 -#: ../../operation/netflow/nf_live_view.php:663 -#: ../../operation/reporting/graph_viewer.php:281 -#: ../../operation/reporting/reporting_viewer.php:258 -#: ../../operation/reporting/reporting_viewer.php:278 -#: ../../operation/tree.php:395 -#: ../../enterprise/dashboard/widgets/tree_view.php:321 -#: ../../enterprise/extensions/cron/main.php:375 -#: ../../enterprise/godmode/alerts/alert_events.php:581 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:688 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2287 -#: ../../enterprise/operation/log/log_viewer.php:314 -#: ../../enterprise/operation/log/log_viewer.php:326 -msgid "Second" -msgstr "Segundo" - -#: ../../extensions/insert_data.php:215 -#: ../../godmode/agentes/planned_downtime.editor.php:1173 -#: ../../godmode/alerts/configure_alert_template.php:1082 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2033 -#: ../../godmode/setup/news.php:302 ../../include/functions.php:436 -#: ../../include/functions.php:570 -#: ../../operation/agentes/datos_agente.php:309 -#: ../../operation/agentes/estado_monitores.php:406 -#: ../../operation/agentes/interface_traffic_graph_win.php:359 -#: ../../operation/agentes/stat_win.php:511 -#: ../../operation/events/events_list.php:1693 -#: ../../operation/netflow/nf_live_view.php:664 -#: ../../operation/reporting/graph_viewer.php:282 -#: ../../operation/reporting/reporting_viewer.php:259 -#: ../../operation/reporting/reporting_viewer.php:279 -#: ../../operation/tree.php:396 -#: ../../enterprise/dashboard/widgets/tree_view.php:322 -#: ../../enterprise/extensions/cron/main.php:376 -#: ../../enterprise/godmode/alerts/alert_events.php:582 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:689 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2288 -#: ../../enterprise/operation/agentes/agent_inventory.php:89 -#: ../../enterprise/operation/log/log_viewer.php:315 -#: ../../enterprise/operation/log/log_viewer.php:327 -msgid "Now" -msgstr "Ahora" - -#: ../../extensions/insert_data.php:216 -#: ../../godmode/agentes/planned_downtime.editor.php:1174 -#: ../../godmode/alerts/configure_alert_template.php:1083 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2034 -#: ../../godmode/setup/news.php:303 -#: ../../include/functions_filemanager.php:619 -#: ../../include/functions_filemanager.php:640 -#: ../../include/functions_filemanager.php:656 -#: ../../include/functions_snmp_browser.php:441 -#: ../../mobile/include/ui.class.php:571 ../../mobile/include/ui.class.php:610 -#: ../../operation/agentes/datos_agente.php:310 -#: ../../operation/agentes/estado_monitores.php:407 -#: ../../operation/agentes/interface_traffic_graph_win.php:360 -#: ../../operation/agentes/stat_win.php:512 -#: ../../operation/events/events_list.php:1694 -#: ../../operation/netflow/nf_live_view.php:665 -#: ../../operation/reporting/graph_viewer.php:283 -#: ../../operation/reporting/reporting_viewer.php:260 -#: ../../operation/reporting/reporting_viewer.php:280 -#: ../../operation/tree.php:397 -#: ../../enterprise/dashboard/widgets/tree_view.php:323 -#: ../../enterprise/extensions/cron/main.php:377 -#: ../../enterprise/godmode/alerts/alert_events.php:583 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:690 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2289 -#: ../../enterprise/operation/log/log_viewer.php:316 -#: ../../enterprise/operation/log/log_viewer.php:328 -msgid "Close" -msgstr "Cerrar" - -#: ../../extensions/insert_data.php:258 -msgid "Insert Data" -msgstr "Insertar Datos" - -#: ../../extensions/module_groups.php:39 -msgid "Number fired of alerts" -msgstr "Numero de alertas disparadas" - -#: ../../extensions/module_groups.php:46 -#: ../../godmode/massive/massive_add_alerts.php:174 -#: ../../godmode/massive/massive_delete_alerts.php:206 -#: ../../godmode/massive/massive_enable_disable_alerts.php:148 -#: ../../godmode/massive/massive_standby_alerts.php:148 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:102 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:101 -#: ../../enterprise/godmode/policies/policy_alerts.php:507 -msgid "Alert template" -msgstr "Plantilla de alertas" - -#: ../../extensions/module_groups.php:84 -#: ../../godmode/agentes/fields_manager.php:97 -#: ../../godmode/agentes/modificar_agente.php:496 -#: ../../godmode/agentes/planned_downtime.editor.php:759 -#: ../../godmode/alerts/alert_list.builder.php:83 -#: ../../godmode/alerts/alert_list.list.php:121 -#: ../../godmode/alerts/alert_list.list.php:410 -#: ../../godmode/alerts/alert_view.php:344 -#: ../../godmode/category/category.php:111 -#: ../../godmode/events/event_responses.list.php:57 -#: ../../godmode/groups/group_list.php:341 ../../godmode/menu.php:156 -#: ../../godmode/tag/tag.php:205 ../../include/functions_treeview.php:382 -#: ../../include/functions_filemanager.php:583 -#: ../../include/functions_reporting_html.php:1958 -#: ../../enterprise/extensions/backup/main.php:103 -#: ../../enterprise/extensions/cron/main.php:201 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:261 -#: ../../enterprise/godmode/agentes/collections.php:235 -#: ../../enterprise/godmode/agentes/inventory_manager.php:237 -#: ../../enterprise/godmode/alerts/alert_events_list.php:421 -#: ../../enterprise/godmode/policies/policy_alerts.php:241 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:171 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:245 -#: ../../enterprise/godmode/setup/setup_skins.php:120 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:323 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1196 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1408 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1500 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1583 -#: ../../enterprise/meta/include/functions_alerts_meta.php:111 -#: ../../enterprise/meta/include/functions_alerts_meta.php:128 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:98 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:122 -#: ../../enterprise/operation/agentes/transactional_map.php:155 -#: ../../enterprise/operation/services/services.list.php:348 -msgid "Actions" -msgstr "Acciones" - -#: ../../extensions/module_groups.php:168 -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:171 -msgid "" -"This table shows in columns the modules group and in rows agents group. The " -"cell shows all modules" -msgstr "" -"Esta tabla muestra en las columnas del grupo de los módulos y en hileras de " -"agentes de grupo. La celda muestra todos los módulos" - -#: ../../extensions/module_groups.php:297 -msgid "" -"Orange cell when the module group and agent have at least one alarm fired." -msgstr "" -"Celda de color naranja cuando el grupo y el agente del modulo tengan al " -"menos una alerta disparada." - -#: ../../extensions/module_groups.php:298 -msgid "" -"Red cell when the module group and agent have at least one module in " -"critical status and the others in any status" -msgstr "" -"Cuadro rojo 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:299 -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 "" -"Cuadro amarillo 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:300 -msgid "" -"Green cell when the module group and agent have all modules in OK status" -msgstr "" -"Cuadro verde cuando todos los grupos de modulos y los agentes estén en " -"estado OK." - -#: ../../extensions/module_groups.php:301 -msgid "" -"Grey cell when the module group and agent have at least one in unknown " -"status and the others in green status" -msgstr "" -"Cuadro gris cuando el grupo de módulos y el agente tienen al menos uno en " -"estado desconocido, todos los demás están en OK y no tiene ninguno en estado " -"critico o warning." - -#: ../../extensions/module_groups.php:302 -msgid "" -"Blue cell when the module group and agent have all modules in not init " -"status." -msgstr "" -"Azul cuando todos los módulos de todos los agentes del grupo tienen estado " -"no inicializado." - -#: ../../extensions/module_groups.php:307 -msgid "There are no defined groups or module groups" -msgstr "No hay grupos o grupos de módulos definidos." - -#: ../../extensions/module_groups.php:325 ../../godmode/menu.php:49 -#: ../../operation/tree.php:67 -#: ../../enterprise/dashboard/widgets/tree_view.php:36 -msgid "Module groups" -msgstr "Grupos de Módulos" - -#: ../../extensions/net_tools.php:96 -msgid "The agent hasn't got IP" -msgstr "El agente no tiene IP" - -#: ../../extensions/net_tools.php:120 -msgid "" -"You can set the command path in the menu Administration -> Extensions -" -"> Config Network Tools" -msgstr "" -"Puede introducir la ruta de comando en el menú Administration -> " -"Extensions -> Config Network Tools" - -#: ../../extensions/net_tools.php:123 -msgid "Traceroute" -msgstr "Traceroute" - -#: ../../extensions/net_tools.php:124 -msgid "Ping host & Latency" -msgstr "Ping host y Latencia" - -#: ../../extensions/net_tools.php:125 -msgid "SNMP Interface status" -msgstr "Estado de la interfaz SNMP" - -#: ../../extensions/net_tools.php:126 -msgid "Basic TCP Port Scan" -msgstr "Escaneo básico de puertos TCP" - -#: ../../extensions/net_tools.php:127 -msgid "DiG/Whois Lookup" -msgstr "Búsqueda DiG/Whois" - -#: ../../extensions/net_tools.php:131 -#: ../../operation/agentes/estado_generalagente.php:147 -msgid "IP address" -msgstr "Dirección IP" - -#: ../../extensions/net_tools.php:145 -#: ../../enterprise/meta/include/functions_wizard_meta.php:826 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1322 -msgid "SNMP Community" -msgstr "Comunidad SNMP" - -#: ../../extensions/net_tools.php:148 ../../include/functions_events.php:1796 -msgid "Execute" -msgstr "Ejecutar" - -#: ../../extensions/net_tools.php:162 -msgid "Traceroute executable does not exist." -msgstr "El ejecutable Traceroute no existe." - -#: ../../extensions/net_tools.php:165 -msgid "Traceroute to " -msgstr "Trazando ruta a " - -#: ../../extensions/net_tools.php:174 -msgid "Ping executable does not exist." -msgstr "El ejecutable Ping no existe." - -#: ../../extensions/net_tools.php:177 -#, php-format -msgid "Ping to %s" -msgstr "Ping a %s" - -#: ../../extensions/net_tools.php:186 -msgid "Nmap executable does not exist." -msgstr "El ejecutable Nmap no existe." - -#: ../../extensions/net_tools.php:189 -msgid "Basic TCP Scan on " -msgstr "Escaneo básico TCP en " - -#: ../../extensions/net_tools.php:196 -msgid "Domain and IP information for " -msgstr "Información de dominio e IP para " - -#: ../../extensions/net_tools.php:200 -msgid "Dig executable does not exist." -msgstr "El ejecutable Dig no existe." - -#: ../../extensions/net_tools.php:210 -msgid "Whois executable does not exist." -msgstr "El ejecutable Whois no existe." - -#: ../../extensions/net_tools.php:219 -msgid "SNMP information for " -msgstr "Información SNMP para " - -#: ../../extensions/net_tools.php:223 -msgid "SNMPget executable does not exist." -msgstr "El ejecutable SNMPget no existe." - -#: ../../extensions/net_tools.php:226 -msgid "Uptime" -msgstr "Tiempo en Activo" - -#: ../../extensions/net_tools.php:230 -msgid "Device info" -msgstr "Información del dispositivo" - -#: ../../extensions/net_tools.php:238 -msgid "Interface" -msgstr "Interfaz" - -#: ../../extensions/net_tools.php:268 ../../extensions/net_tools.php:343 -msgid "Config Network Tools" -msgstr "Configuración de herramientas de red" - -#: ../../extensions/net_tools.php:289 ../../extensions/net_tools.php:290 -msgid "Set the paths." -msgstr "Introducir rutas" - -#: ../../extensions/net_tools.php:310 -msgid "Traceroute path" -msgstr "Ruta Traceroute" - -#: ../../extensions/net_tools.php:311 -msgid "If it is empty, Pandora searchs the traceroute system." -msgstr "Si está vacío, Pandora FMS buscará el sistema Traceroute" - -#: ../../extensions/net_tools.php:314 -msgid "Ping path" -msgstr "Ruta al comando ping" - -#: ../../extensions/net_tools.php:315 -msgid "If it is empty, Pandora searchs the ping system." -msgstr "Si está vacío, Pandora FMS buscará el sistema ping" - -#: ../../extensions/net_tools.php:318 -msgid "Nmap path" -msgstr "Ruta Nmap" - -#: ../../extensions/net_tools.php:319 -msgid "If it is empty, Pandora searchs the nmap system." -msgstr "Si está vacío, Pandora FMS buscará el sistema nmap." - -#: ../../extensions/net_tools.php:322 -msgid "Dig path" -msgstr "Ruta Dig" - -#: ../../extensions/net_tools.php:323 -msgid "If it is empty, Pandora searchs the dig system." -msgstr "Si está vacío, Pandora FMS buscará el sistema dig" - -#: ../../extensions/net_tools.php:326 -msgid "Snmpget path" -msgstr "Ruta Snmpget" - -#: ../../extensions/net_tools.php:327 -msgid "If it is empty, Pandora searchs the snmpget system." -msgstr "Si está vacío, Pandora FMS buscará el sistema snmpget" - -#: ../../extensions/net_tools.php:332 -#: ../../godmode/reporting/reporting_builder.list_items.php:308 -#: ../../godmode/update_manager/update_manager.php:35 -#: ../../enterprise/dashboard/main_dashboard.php:162 -#: ../../enterprise/dashboard/main_dashboard.php:250 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:254 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:243 -msgid "Options" -msgstr "Opciones" - #: ../../extensions/pandora_logs.php:33 ../../extensions/system_info.php:174 msgid "Cannot find file" msgstr "Archivo no encontrado" @@ -3631,6 +7403,74 @@ msgstr "" msgid "System logfiles" msgstr "Logs sistema" +#: ../../extensions/files_repo/files_repo_get_file.php:65 +msgid "Unreliable petition" +msgstr "Petición no fiable" + +#: ../../extensions/files_repo/files_repo_get_file.php:65 +msgid "Please contact the administrator" +msgstr "Por favor, contacta con el administrador" + +#: ../../extensions/files_repo/files_repo_form.php:73 +msgid "Only 200 characters are permitted" +msgstr "Sólo 200 caracteres permitidos" + +#: ../../extensions/files_repo/files_repo_form.php:84 +#: ../../extensions/system_info.php:471 ../../extensions/system_info.php:526 +#: ../../godmode/extensions.php:143 +msgid "File" +msgstr "Archivo" + +#: ../../extensions/files_repo/files_repo_form.php:87 +#: ../../extensions/files_repo/files_repo_form.php:93 +#: ../../extensions/files_repo/files_repo_list.php:89 +msgid "Public link" +msgstr "Enlace público" + +#: ../../extensions/files_repo/files_repo_list.php:61 +#: ../../include/functions_filemanager.php:581 +msgid "Last modification" +msgstr "Última modificación" + +#: ../../extensions/files_repo/files_repo_list.php:86 +msgid "Copy to clipboard" +msgstr "Copiar al portapapeles" + +#: ../../extensions/files_repo/files_repo_list.php:94 +#: ../../extensions/system_info.php:467 +msgid "Download" +msgstr "Descargar" + +#: ../../extensions/files_repo/files_repo_list.php:115 +msgid "No items" +msgstr "No hay elementos" + +#: ../../extensions/files_repo/functions_files_repo.php:29 +#: ../../extensions/files_repo/functions_files_repo.php:40 +#: ../../include/functions_config.php:1730 +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:30 +#: ../../extensions/files_repo/functions_files_repo.php:41 +#, php-format +msgid "Please check that the web server has write rights on the %s directory" +msgstr "" +"Por favor, comprobar que el directorio %s del servidor web tiene permisos de " +"escritura" + +#: ../../extensions/files_repo/functions_files_repo.php:229 +msgid "The file could not be copied" +msgstr "El fichero no ha sido copiado" + +#: ../../extensions/files_repo/functions_files_repo.php:233 +msgid "There was an error creating the file" +msgstr "Se ha producido un error creando el fichero" + +#: ../../extensions/files_repo/functions_files_repo.php:274 +msgid "There was an error updating the file" +msgstr "Se ha producido un error actualizando el fichero" + #: ../../extensions/plugin_registration.php:26 #: ../../extensions/plugin_registration.php:33 msgid "Plugin registration" @@ -3685,9 +7525,9 @@ msgid "Module plugin registered" msgstr "Módulo de complemento registrado." #: ../../extensions/plugin_registration.php:422 -#: ../../godmode/agentes/module_manager_editor_plugin.php:50 #: ../../godmode/massive/massive_edit_plugins.php:287 #: ../../godmode/modules/manage_network_components_form_plugin.php:22 +#: ../../godmode/agentes/module_manager_editor_plugin.php:50 msgid "Plugin" msgstr "Complemento" @@ -3732,18 +7572,6 @@ msgstr "Cargar Pandora Server" msgid "SNMP Interface throughput" msgstr "Rendimiento interfaz SNMP" -#: ../../extensions/realtime_graphs.php:72 ../../include/ajax/module.php:750 -#: ../../include/functions_pandora_networkmap.php:1401 -#: ../../include/functions_events.php:2103 -#: ../../include/functions_visual_map_editor.php:56 -#: ../../operation/agentes/status_monitor.php:977 -#: ../../operation/search_modules.php:52 -#: ../../enterprise/dashboard/widgets/custom_graph.php:33 -#: ../../enterprise/operation/services/services.list.php:344 -#: ../../enterprise/operation/services/services.service.php:143 -msgid "Graph" -msgstr "Gráfico" - #: ../../extensions/realtime_graphs.php:79 msgid "Refresh interval" msgstr "Intervalo de actualización" @@ -3757,41 +7585,32 @@ msgid "Clear graph" msgstr "Limpiar gráfica" #: ../../extensions/realtime_graphs.php:94 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:700 +#: ../../include/functions_snmp_browser.php:506 +#: ../../godmode/massive/massive_edit_modules.php:488 #: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:339 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:254 #: ../../godmode/agentes/module_manager_editor_network.php:67 #: ../../godmode/agentes/module_manager_editor_wmi.php:45 -#: ../../godmode/massive/massive_edit_modules.php:488 -#: ../../include/functions_snmp_browser.php:506 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:689 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:336 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:252 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:254 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:700 msgid "Target IP" msgstr "IP objetivo" #: ../../extensions/realtime_graphs.php:97 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:69 #: ../../include/functions_snmp_browser.php:508 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:69 msgid "Community" msgstr "Comunidad" #: ../../extensions/realtime_graphs.php:108 -#: ../../godmode/setup/snmp_wizard.php:41 #: ../../include/functions_snmp_browser.php:401 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:243 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:318 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 +#: ../../godmode/setup/snmp_wizard.php:41 msgid "OID" msgstr "OID" -#: ../../extensions/realtime_graphs.php:111 ../../godmode/extensions.php:144 -#: ../../godmode/servers/servers.build_table.php:67 +#: ../../extensions/realtime_graphs.php:111 #: ../../include/functions_snmp_browser.php:513 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:39 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:388 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../godmode/extensions.php:144 +#: ../../godmode/servers/servers.build_table.php:67 msgid "Version" msgstr "Versión" @@ -3805,205 +7624,103 @@ msgstr "SNMP walk" msgid "Use this OID" msgstr "Usar esta OID" -#: ../../extensions/resource_exportation.php:53 -#: ../../extensions/resource_exportation.php:338 -msgid "Resource exportation" -msgstr "Exportación de recursos" +#: ../../extensions/files_repo.php:91 +msgid "Extension not installed" +msgstr "Extensión no instalada" -#: ../../extensions/resource_exportation.php:341 -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). " -msgstr "" -"Esta extensión hace la exportación de plantillas de recursos más sencillo. " -"Desde aquí puedes exportar como plantillas de recursos en el formato de " -"Pandora FMS 3.x (.ptr). " +#: ../../extensions/files_repo.php:104 ../../extensions/files_repo.php:187 +msgid "Administration view" +msgstr "Vista de administración" -#: ../../extensions/resource_exportation.php:352 -#: ../../enterprise/dashboard/widgets/reports.php:27 -#: ../../enterprise/dashboard/widgets/reports.php:43 -#: ../../enterprise/extensions/cron/functions.php:452 -#: ../../enterprise/extensions/cron/main.php:225 -#: ../../enterprise/extensions/cron/main.php:267 -#: ../../enterprise/extensions/cron/main.php:281 -msgid "Report" -msgstr "Informe" +#: ../../extensions/files_repo.php:110 ../../extensions/files_repo.php:192 +msgid "Operation view" +msgstr "Vista de operación" -#: ../../extensions/resource_exportation.php:354 -#: ../../extensions/resource_exportation.php:357 -#: ../../operation/agentes/exportdata.php:341 -#: ../../enterprise/extensions/resource_exportation/functions.php:20 -msgid "Export" -msgstr "Exportar" +#: ../../extensions/files_repo.php:116 ../../extensions/files_repo.php:218 +msgid "Files repository manager" +msgstr "Manejo de repositorio de archivos" -#: ../../extensions/resource_exportation.php:355 -#: ../../godmode/users/configure_user.php:562 ../../operation/menu.php:128 -#: ../../operation/users/user_edit.php:277 -#: ../../enterprise/meta/screens/screens.visualmap.php:216 -#: ../../enterprise/meta/screens/screens.visualmap.php:220 -msgid "Visual console" -msgstr "Consola visual" +#: ../../extensions/files_repo.php:133 ../../include/functions.php:2190 +#: ../../include/functions.php:2193 +msgid "The file exceeds the maximum size" +msgstr "El fichero excede el tamaño máximo" -#: ../../extensions/resource_registration.php:40 -#, php-format -msgid "Success add '%s' item in report '%s'." -msgstr "Éxito al añadir el objeto '%s' al informe '%s'." +#: ../../extensions/files_repo.php:200 ../../extensions/files_repo.php:216 +msgid "Files repository" +msgstr "Repositorio" -#: ../../extensions/resource_registration.php:41 -#, php-format -msgid "Error create '%s' item in report '%s'." -msgstr "Error al añadir el objeto '%s' al informe '%s'." +#: ../../extensions/agents_alerts.php:109 +msgid "Agents/Alerts" +msgstr "Agentes/Alertas" -#: ../../extensions/resource_registration.php:68 -#, 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/agents_alerts.php:156 +msgid "There are no agents with alerts" +msgstr "No existen agentes con alertas" -#: ../../extensions/resource_registration.php:75 -#, 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/agents_alerts.php:177 +#: ../../godmode/alerts/alert_templates.php:132 +#: ../../godmode/alerts/alert_templates.php:175 +#: ../../godmode/alerts/alert_templates.php:194 +#: ../../godmode/alerts/alert_templates.php:210 +#: ../../godmode/massive/massive_add_action_alerts.php:163 +#: ../../godmode/massive/massive_delete_action_alerts.php:167 +msgid "Alert templates" +msgstr "Plantillas de alertas" -#: ../../extensions/resource_registration.php:82 -msgid "Error the report haven't name." -msgstr "Error. El informe no tiene un nombre." +#: ../../extensions/agents_alerts.php:184 +msgid "Previous templates" +msgstr "Plantillas anteriores" -#: ../../extensions/resource_registration.php:88 -msgid "Error the report haven't group." -msgstr "Error. El informe no tiene un grupo asignado." +#: ../../extensions/agents_alerts.php:222 +msgid "More templates" +msgstr "Más plantillas" -#: ../../extensions/resource_registration.php:98 -#, php-format -msgid "Success create '%s' report." -msgstr "Éxito al crear el informe '%s'." +#: ../../extensions/agents_alerts.php:324 +#: ../../mobile/operation/alerts.php:253 ../../include/functions_ui.php:921 +#: ../../godmode/alerts/alert_view.php:85 +#: ../../godmode/alerts/alert_list.list.php:642 +msgid "times" +msgstr "veces" -#: ../../extensions/resource_registration.php:99 -#, php-format -msgid "Error create '%s' report." -msgstr "Error al crear el informe '%s'-" +#: ../../extensions/agents_alerts.php:328 +#: ../../mobile/operation/alerts.php:257 ../../include/functions_ui.php:925 +#: ../../include/functions_reporting.php:7972 +#: ../../godmode/alerts/alert_view.php:89 +#: ../../godmode/alerts/alert_list.list.php:646 +msgid "Alert disabled" +msgstr "Alerta desactivada" -#: ../../extensions/resource_registration.php:327 -#: ../../extensions/resource_registration.php:348 -#: ../../extensions/resource_registration.php:358 -#, php-format -msgid "Success add '%s' content." -msgstr "Éxito al añadir el contenido '%s'." +#: ../../extensions/agents_alerts.php:348 +msgid "Agents/Alerts view" +msgstr "Vista de Agentes/Alertas" -#: ../../extensions/resource_registration.php:328 -#: ../../extensions/resource_registration.php:349 -#: ../../extensions/resource_registration.php:359 -#: ../../enterprise/extensions/resource_registration/functions.php:516 -#, php-format -msgid "Error add '%s' action." -msgstr "Error al añadir la acción '%s'." +#: ../../extensions/extension_uploader.php:28 +msgid "Uploader extension" +msgstr "Extensión de subidas" -#: ../../extensions/resource_registration.php:335 -#, php-format -msgid "Success add '%s' SLA." -msgstr "Éxito al añadir el SLA '%s'." +#: ../../extensions/extension_uploader.php:64 +msgid "Success to upload extension" +msgstr "Extensión subida con éxito" -#: ../../extensions/resource_registration.php:336 -#, php-format -msgid "Error add '%s' SLA." -msgstr "Error al añadir el SLA '%s'." +#: ../../extensions/extension_uploader.php:65 +msgid "Fail to upload extension" +msgstr "Fallo al subir extensión" -#: ../../extensions/resource_registration.php:377 -#, 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/extension_uploader.php:73 +msgid "Upload extension" +msgstr "Subir extensión" -#: ../../extensions/resource_registration.php:413 -#, 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/extension_uploader.php:75 +msgid "Upload the extension as a zip file." +msgstr "Subir la extensión como un archivo zip" -#: ../../extensions/resource_registration.php:420 -#, 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/extension_uploader.php:77 +msgid "Upload enterprise extension" +msgstr "Actualizar extensión Enterprise" -#: ../../extensions/resource_registration.php:428 -#, php-format -msgid "Success create '%s' visual map." -msgstr "Éxito al crear el mapa visual '%s'." - -#: ../../extensions/resource_registration.php:429 -#, php-format -msgid "Error create '%s' visual map." -msgstr "Error al crear el mapa visual '%s'." - -#: ../../extensions/resource_registration.php:535 -#, php-format -msgid "Success create item type '%d' visual map." -msgstr "Éxito al crear el objeto de tipo '%d' del mapa visual." - -#: ../../extensions/resource_registration.php:536 -#, php-format -msgid "Error create item type '%d' visual map." -msgstr "Error al crear el tipo de objeto '%d' del mapa visual." - -#: ../../extensions/resource_registration.php:554 -#: ../../extensions/resource_registration.php:569 -#, php-format -msgid "Success create item for agent '%s' visual map." -msgstr "Éxito al crear el objeto de agente '%s' del mapa visual." - -#: ../../extensions/resource_registration.php:555 -#: ../../extensions/resource_registration.php:570 -#, php-format -msgid "Error create item for agent '%s' visual map." -msgstr "Error al crear el objeto de agente '%s' del mapa visual." - -#: ../../extensions/resource_registration.php:792 -#, php-format -msgid "Success create '%s' component." -msgstr "Creado componente '%s' satisfactoriamente" - -#: ../../extensions/resource_registration.php:793 -#, php-format -msgid "Error create '%s' component." -msgstr "Hubo un problema al crear el componente '%s'" - -#: ../../extensions/resource_registration.php:849 -#: ../../extensions/resource_registration.php:889 -msgid "Resource registration" -msgstr "Registro del recurso" - -#: ../../extensions/resource_registration.php:852 -#: ../../enterprise/include/functions_policies.php:4090 -msgid "Error, please install the PHP libXML in the system." -msgstr "Error, por favor, installe la libreria PHP LibXML en el sistema." - -#: ../../extensions/resource_registration.php:858 -#, 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" -msgstr "" -"Esta extensión hace el registro de una plantilla de recursos de forma fácil. " -"Puede subir una plantilla de recursos en el formato (.PTR), de Pandora FMS. " -"Por favor, consulte la documentación sobre como obtener y usar los recursos " -"de plantilla de Pandora FMS

    Puede obtener más recursos en nuestra Libreria Pública de recursos." - -#: ../../extensions/resource_registration.php:872 -#: ../../enterprise/include/functions_policies.php:4106 -msgid "Group filter: " -msgstr "Filtrado por grupos: " +#: ../../extensions/extension_uploader.php:90 +msgid "Extension uploader" +msgstr "Cargador de extensiones" #: ../../extensions/system_info.php:179 msgid "Cannot read file" @@ -4052,15 +7769,11 @@ msgid "Number lines of log" msgstr "Número de líneas de log" #: ../../extensions/system_info.php:476 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:216 msgid "Created" msgstr "Creado" #: ../../extensions/system_info.php:481 ../../extensions/system_info.php:527 #: ../../godmode/events/event_responses.editor.php:93 -#: ../../enterprise/extensions/ipam/ipam_editor.php:89 -#: ../../enterprise/extensions/ipam/ipam_list.php:161 -#: ../../enterprise/extensions/ipam/ipam_network.php:140 msgid "Location" msgstr "Ubicación" @@ -4068,61 +7781,613 @@ msgstr "Ubicación" msgid "Generate file" msgstr "Generar archivo" -#: ../../extensions/system_info.php:496 ../../general/ui/agents_list.php:121 -#: ../../godmode/massive/massive_copy_modules.php:164 -#: ../../operation/reporting/reporting_viewer.php:234 -#: ../../enterprise/godmode/policies/policy_modules.php:1309 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:106 -#: ../../enterprise/operation/log/log_viewer.php:246 -#: ../../enterprise/operation/log/log_viewer.php:252 -msgid "Loading" -msgstr "Cargando" - -#: ../../extensions/system_info.php:533 ../../extensions/system_info.php:594 -#: ../../godmode/db/db_refine.php:42 ../../godmode/db/db_refine.php:47 -#: ../../godmode/massive/massive_edit_plugins.php:813 -#: ../../godmode/massive/massive_edit_plugins.php:814 -#: ../../include/ajax/double_auth.ajax.php:250 -#: ../../include/ajax/double_auth.ajax.php:347 -#: ../../include/ajax/double_auth.ajax.php:392 -#: ../../include/ajax/double_auth.ajax.php:507 -#: ../../include/functions.php:1043 ../../include/functions_ui.php:228 -#: ../../include/functions_events.php:1176 -#: ../../include/functions_events.php:1422 -#: ../../operation/users/user_edit.php:697 -#: ../../operation/users/user_edit.php:762 -#: ../../enterprise/dashboard/main_dashboard.php:363 -#: ../../enterprise/dashboard/main_dashboard.php:443 -#: ../../enterprise/include/functions_login.php:99 -#: ../../enterprise/meta/include/functions_ui_meta.php:779 -msgid "Error" -msgstr "Error" - #: ../../extensions/system_info.php:548 msgid "At least one option must be selected" msgstr "Se debe seleccionar al menos una opción" -#: ../../extensions/users_connected.php:38 -#: ../../extensions/users_connected.php:122 -#: ../../extensions/users_connected.php:123 -msgid "Users connected" -msgstr "Usuarios conectados" +#: ../../index.php:241 ../../mobile/include/user.class.php:171 +#: ../../include/ajax/double_auth.ajax.php:489 +msgid "Invalid code" +msgstr "Código inválido" -#: ../../extensions/users_connected.php:66 -msgid "No other users connected" -msgstr "No hay otros usuarios conectados" +#: ../../index.php:252 +msgid "The code shouldn't be empty" +msgstr "El código no debería estar vacío" -#: ../../extras/pandora_diag.php:90 -msgid "Pandora FMS Diagnostic tool" -msgstr "Herramienta de diagnóstico de Pandora FMS" +#: ../../index.php:264 +msgid "Expired login" +msgstr "Inicio de sesión caducado" -#: ../../extras/pandora_diag.php:93 -msgid "Item" -msgstr "Elemento" +#: ../../index.php:272 ../../index.php:278 +msgid "Login error" +msgstr "Error de conexión" -#: ../../extras/pandora_diag.php:94 -msgid "Data value" -msgstr "valor de los datos" +#: ../../index.php:548 +msgid "User doesn\\'t exist." +msgstr "El usuario no existe" + +#: ../../index.php:564 +msgid "User only can use the API." +msgstr "El usuario solo puede usar la API" + +#: ../../index.php:794 +msgid "Sorry! I can't find the page!" +msgstr "No se puede encontrar la página." + +#: ../../mobile/operation/home.php:78 +#: ../../include/functions_visual_map.php:2744 +#: ../../include/functions_visual_map_editor.php:251 +#: ../../godmode/reporting/visual_console_builder.wizard.php:106 +msgid "Module graph" +msgstr "Gráfico de módulo" + +#: ../../mobile/operation/home.php:118 ../../mobile/include/user.class.php:286 +#: ../../mobile/include/ui.class.php:175 +#: ../../mobile/include/functions_web.php:33 ../../general/header.php:289 +msgid "Logout" +msgstr "Salir" + +#: ../../mobile/operation/home.php:128 ../../mobile/include/ui.class.php:185 +msgid "Home" +msgstr "Inicio" + +#: ../../mobile/operation/networkmaps.php:99 +#: ../../mobile/operation/networkmap.php:78 +#: ../../mobile/operation/visualmaps.php:83 +#: ../../mobile/operation/tactical.php:71 ../../mobile/operation/groups.php:53 +#: ../../mobile/operation/alerts.php:141 ../../mobile/operation/agents.php:145 +#: ../../mobile/operation/events.php:430 +#: ../../mobile/operation/module_graph.php:270 +#: ../../mobile/operation/agent.php:66 ../../mobile/operation/visualmap.php:65 +#: ../../mobile/operation/modules.php:173 ../../mobile/index.php:240 +#: ../../general/noaccess2.php:18 ../../general/noaccess2.php:21 +msgid "You don't have access to this page" +msgstr "No tiene permiso para acceder a esta página" + +#: ../../mobile/operation/networkmaps.php:100 +#: ../../mobile/operation/networkmap.php:79 +#: ../../mobile/operation/visualmaps.php:84 +#: ../../mobile/operation/tactical.php:72 ../../mobile/operation/groups.php:54 +#: ../../mobile/operation/alerts.php:142 ../../mobile/operation/agents.php:146 +#: ../../mobile/operation/events.php:431 +#: ../../mobile/operation/module_graph.php:271 +#: ../../mobile/operation/agent.php:67 ../../mobile/operation/visualmap.php:66 +#: ../../mobile/operation/modules.php:174 ../../mobile/index.php:241 +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" +msgstr "" +"El acceso a esta página está restringido a usuarios autorizados, contacte " +"con el administrador del sistema si necesita asistencia.

    Todos los " +"intentos de acceso a esta página son grabados en los registros de seguridad " +"de Pandora FMS." + +#: ../../mobile/operation/networkmaps.php:112 +msgid "Networkmaps" +msgstr "Mapas de red" + +#: ../../mobile/operation/networkmaps.php:116 +#: ../../mobile/operation/networkmap.php:98 +#: ../../mobile/operation/visualmaps.php:100 +#: ../../mobile/operation/tactical.php:88 ../../mobile/operation/groups.php:69 +#: ../../mobile/operation/alerts.php:158 ../../mobile/operation/agents.php:162 +#: ../../mobile/operation/events.php:568 +#: ../../mobile/operation/module_graph.php:368 +#: ../../mobile/operation/module_graph.php:377 +#: ../../mobile/operation/agent.php:108 +#: ../../mobile/operation/visualmap.php:103 +#: ../../mobile/operation/modules.php:190 +msgid "Back" +msgstr "Atrás" + +#: ../../mobile/operation/networkmaps.php:120 +#, php-format +msgid "Filter Networkmaps by %s" +msgstr "Filtrar mapas de red por %s" + +#: ../../mobile/operation/networkmaps.php:150 +#: ../../mobile/operation/alerts.php:213 ../../mobile/operation/agents.php:201 +#: ../../mobile/operation/events.php:659 +#: ../../mobile/operation/modules.php:261 +msgid "Apply Filter" +msgstr "Aplicar el filtro" + +#: ../../mobile/operation/networkmaps.php:202 +#: ../../mobile/operation/networkmap.php:164 +msgid "No networkmaps" +msgstr "No hay mapas de red" + +#: ../../mobile/operation/networkmaps.php:216 +#: ../../mobile/operation/alerts.php:306 ../../mobile/operation/agents.php:460 +#: ../../mobile/operation/events.php:1070 +#: ../../mobile/operation/modules.php:786 +msgid "(Default)" +msgstr "Por defecto" + +#: ../../mobile/operation/networkmaps.php:222 +#: ../../mobile/operation/alerts.php:316 ../../mobile/operation/agents.php:466 +#: ../../mobile/operation/events.php:1096 +#: ../../mobile/operation/modules.php:793 +#, php-format +msgid "Group: %s" +msgstr "Grupo: %s" + +#: ../../mobile/operation/networkmaps.php:229 +#: ../../mobile/operation/events.php:1108 +#, php-format +msgid "Type: %s" +msgstr "Tipo: %s" + +#: ../../mobile/operation/networkmap.php:222 +#: ../../mobile/operation/networkmap.php:234 +msgid "Map could not be generated" +msgstr "El mapa no pudo ser generado" + +#: ../../mobile/operation/visualmaps.php:96 +msgid "Visual consoles" +msgstr "Consola visual" + +#: ../../mobile/operation/visualmaps.php:146 +msgid "No maps defined" +msgstr "No hay mapas definidos" + +#: ../../mobile/operation/tactical.php:193 +msgid "Last activity" +msgstr "Última actividad" + +#: ../../mobile/operation/tactical.php:215 +#: ../../mobile/operation/agents.php:381 ../../mobile/operation/events.php:797 +#: ../../mobile/operation/module_graph.php:467 +#: ../../mobile/operation/agent.php:305 +#: ../../mobile/operation/visualmap.php:118 +#: ../../mobile/operation/modules.php:706 +#: ../../godmode/reporting/visual_console_builder.wizard.php:377 +msgid "Loading..." +msgstr "Cargando…" + +#: ../../mobile/operation/groups.php:129 +#: ../../include/functions_reporting_html.php:3422 +msgid "Agents not init" +msgstr "Agentes no inicializados" + +#: ../../mobile/operation/groups.php:133 +#: ../../include/functions_reporting_html.php:3404 +msgid "Agents critical" +msgstr "Agentes críticos" + +#: ../../mobile/operation/groups.php:137 +#: ../../include/functions_groups.php:794 +#: ../../include/functions_groups.php:796 +#: ../../include/functions_groups.php:798 +#: ../../include/functions_groups.php:799 +#: ../../include/functions_groups.php:800 +#: ../../include/functions_reporting_html.php:3416 +msgid "Agents unknown" +msgstr "agentes desconocidos" + +#: ../../mobile/operation/alerts.php:96 ../../mobile/operation/alerts.php:97 +#: ../../mobile/operation/alerts.php:203 ../../mobile/operation/alerts.php:204 +#: ../../godmode/alerts/alert_view.php:106 +msgid "Stand by" +msgstr "En espera" + +#: ../../mobile/operation/alerts.php:162 +#, php-format +msgid "Filter Alerts by %s" +msgstr "Filtros de alertas por %s" + +#: ../../mobile/operation/alerts.php:272 +msgid "Last Fired" +msgstr "Último/a lanzado/a" + +#: ../../mobile/operation/alerts.php:282 +msgid "No alerts" +msgstr "Sin alertas" + +#: ../../mobile/operation/alerts.php:312 +#, php-format +msgid "Standby: %s" +msgstr "Standby: %s" + +#: ../../mobile/operation/alerts.php:320 ../../mobile/operation/agents.php:470 +#: ../../mobile/operation/events.php:1112 +#: ../../mobile/operation/modules.php:805 +#, php-format +msgid "Status: %s" +msgstr "Estado: %s" + +#: ../../mobile/operation/alerts.php:324 ../../mobile/operation/agents.php:474 +#: ../../mobile/operation/modules.php:809 +#, php-format +msgid "Free Search: %s" +msgstr "Búsqueda libre: %s" + +#: ../../mobile/operation/agents.php:166 +#, php-format +msgid "Filter Agents by %s" +msgstr "Filtros de agentes por %s" + +#: ../../mobile/operation/agents.php:324 +#: ../../godmode/reporting/visual_console_builder.elements.php:86 +msgid "A." +msgstr "A." + +#: ../../mobile/operation/agents.php:370 +msgid "No agents" +msgstr "Sin agentes" + +#: ../../mobile/operation/events.php:382 ../../mobile/operation/events.php:383 +#: ../../mobile/operation/events.php:590 ../../mobile/operation/events.php:591 +msgid "Preset Filters" +msgstr "Fijar los filtros" + +#: ../../mobile/operation/events.php:443 +msgid "ERROR: Event detail" +msgstr "ERROR: Detalles del evento" + +#: ../../mobile/operation/events.php:445 +msgid "Error connecting to DB pandora." +msgstr "Error al conectar a la base de datos de Pandora" + +#: ../../mobile/operation/events.php:458 +msgid "Event detail" +msgstr "Detalles del evento" + +#: ../../mobile/operation/events.php:497 +#: ../../include/functions_events.php:2421 +msgid "Acknowledged by" +msgstr "Admitido por" + +#: ../../mobile/operation/events.php:506 +#: ../../include/functions_visual_map_editor.php:606 +#: ../../godmode/reporting/visual_console_builder.elements.php:153 +msgid "Module Graph" +msgstr "Gráfica de módulo" + +#: ../../mobile/operation/events.php:541 +msgid "Sucessful validate" +msgstr "Validación correcta" + +#: ../../mobile/operation/events.php:543 +msgid "Fail validate" +msgstr "Validación fallida" + +#: ../../mobile/operation/events.php:575 +#, php-format +msgid "Filter Events by %s" +msgstr "Filtrar eventos por %s" + +#: ../../mobile/operation/events.php:1076 +#, php-format +msgid "Filter: %s" +msgstr "Filtro: %s" + +#: ../../mobile/operation/events.php:1089 +#, php-format +msgid "Severity: %s" +msgstr "Severidad: %s" + +#: ../../mobile/operation/events.php:1116 +#, php-format +msgid "Free search: %s" +msgstr "Búsqueda libre: %s" + +#: ../../mobile/operation/events.php:1120 +#, php-format +msgid "Hours: %s" +msgstr "Horas: %s" + +#: ../../mobile/operation/module_graph.php:364 +#: ../../mobile/operation/module_graph.php:373 +#, php-format +msgid "PandoraFMS: %s" +msgstr "PandoraFMS: %s" + +#: ../../mobile/operation/module_graph.php:387 +#, php-format +msgid "Options for %s : %s" +msgstr "Opciones para %s: %s" + +#: ../../mobile/operation/module_graph.php:394 +msgid "Show Alerts" +msgstr "Mostrar alertas" + +#: ../../mobile/operation/module_graph.php:402 +msgid "Show Events" +msgstr "Mostrar eventos" + +#: ../../mobile/operation/module_graph.php:434 +msgid "Avg Only" +msgstr "Solo promedio" + +#: ../../mobile/operation/module_graph.php:439 +msgid "Time range (hours)" +msgstr "Rango de tiempo (horas)" + +#: ../../mobile/operation/module_graph.php:459 +msgid "Update graph" +msgstr "Actualizar gráfica" + +#: ../../mobile/operation/module_graph.php:468 +msgid "Error get the graph" +msgstr "Error al obtener gráfica" + +#: ../../mobile/operation/agent.php:112 +msgid "PandoraFMS: Agents" +msgstr "PandoraFMS: Agentes" + +#: ../../mobile/operation/agent.php:118 +msgid "No agent found" +msgstr "No se han encontrado agentes" + +#: ../../mobile/operation/agent.php:200 +msgid "Modules by status" +msgstr "Módulos por estado" + +#: ../../mobile/operation/agent.php:269 +#, php-format +msgid "Last %s Events" +msgstr "Últimos %s Eventos" + +#: ../../mobile/operation/modules.php:194 +#, php-format +msgid "Filter Modules by %s" +msgstr "Filtrar Módulos por %s" + +#: ../../mobile/operation/modules.php:543 +msgid "Interval." +msgstr "Intervalo" + +#: ../../mobile/operation/modules.php:549 +msgid "Last update." +msgstr "Última actualización" + +#: ../../mobile/operation/modules.php:668 +#: ../../godmode/agentes/agent_template.php:263 +msgid "No modules" +msgstr "Sin módulos" + +#: ../../mobile/operation/modules.php:801 +#, php-format +msgid "Module group: %s" +msgstr "Grupos de módulos: %s" + +#: ../../mobile/operation/modules.php:814 +#, php-format +msgid "Tag: %s" +msgstr "Etiqueta: %s" + +#: ../../mobile/include/user.class.php:152 +#: ../../mobile/include/user.class.php:170 +#: ../../mobile/include/user.class.php:177 +msgid "Double authentication failed" +msgstr "Fallo en la doble autenticación" + +#: ../../mobile/include/user.class.php:153 +msgid "Secret code not found" +msgstr "Código secreto no encontrado" + +#: ../../mobile/include/user.class.php:154 +msgid "Please contact the administrator to reset your double authentication" +msgstr "" +"Por favor contacte el administrador para restablecer la doble autenticación" + +#: ../../mobile/include/user.class.php:178 +msgid "There was an error checking the code" +msgstr "Hubo un error verificando el código" + +#: ../../mobile/include/user.class.php:211 +msgid "Login Failed" +msgstr "Indentificación fallida" + +#: ../../mobile/include/user.class.php:212 +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:220 +msgid "Login out" +msgstr "Cerrar sesión" + +#: ../../mobile/include/user.class.php:221 ../../general/login_page.php:176 +msgid "" +"Your session is over. Please close your browser window to close this Pandora " +"session." +msgstr "" +"Su sesión ha caducado. Cierre la ventana de su navegador web para cerrar " +"esta sesión de Pandora FMS." + +#: ../../mobile/include/user.class.php:244 +msgid "user" +msgstr "Usuario" + +#: ../../mobile/include/user.class.php:251 +msgid "password" +msgstr "contraseña" + +#: ../../mobile/include/user.class.php:256 ../../general/login_page.php:168 +msgid "Login" +msgstr "Iniciar sesión" + +#: ../../mobile/include/user.class.php:301 +#: ../../mobile/include/user.class.php:302 ../../general/login_page.php:186 +msgid "Authenticator code" +msgstr "Código de autenticación" + +#: ../../mobile/include/user.class.php:306 ../../general/login_page.php:192 +msgid "Check code" +msgstr "Código de verificación" + +#: ../../mobile/include/ui.class.php:87 ../../mobile/include/ui.class.php:168 +msgid "Pandora FMS mobile" +msgstr "Pandora FMS móvil" + +#: ../../mobile/include/ui.class.php:257 +#: ../../mobile/include/functions_web.php:81 +#, php-format +msgid "Pandora FMS %s - Build %s" +msgstr "Pandora FMS %s - Revisión %s" + +#: ../../mobile/include/ui.class.php:258 +#: ../../mobile/include/functions_web.php:82 +msgid "Generated at" +msgstr "Generado el" + +#: ../../mobile/include/ui.class.php:630 +msgid "Not found header." +msgstr "Encabezado no encontrado" + +#: ../../mobile/include/ui.class.php:633 +msgid "Not found content." +msgstr "Contenido no encontrado" + +#: ../../mobile/include/ui.class.php:636 +msgid "Not found footer." +msgstr "Pie de página no encontrado" + +#: ../../mobile/include/ui.class.php:639 +msgid "Incorrect form." +msgstr "Forma incorrecta" + +#: ../../mobile/include/ui.class.php:642 +msgid "Incorrect grid." +msgstr "Matriz incorrecta" + +#: ../../mobile/include/ui.class.php:645 +msgid "Incorrect collapsible." +msgstr "Plegable incorrecto" + +#: ../../mobile/include/functions_web.php:23 +#: ../../include/functions_reporting_html.php:3025 +#: ../../include/functions_reporting_html.php:3165 +msgid "Monitor" +msgstr "Monitor" + +#: ../../mobile/include/functions_web.php:27 ../../godmode/menu.php:201 +#: ../../godmode/reporting/visual_console_builder.wizard.php:246 +msgid "Servers" +msgstr "Servidores" + +#: ../../general/logon_failed.php:33 +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. Verifique 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 sucesos de Pandora y " +"pueden ser revisados por cada usuario. Comunique al administrador cualquier " +"incidente o fallo." + +#: ../../general/footer.php:35 +#, php-format +msgid "Pandora FMS %s - Build %s - MR %s" +msgstr "Pandora FMS %s - Build %s - MR %s" + +#: ../../general/footer.php:38 +msgid "Page generated at" +msgstr "Página generada en" + +#: ../../general/footer.php:39 +msgid "® Ártica ST" +msgstr "Ártica ST" + +#: ../../general/ui/agents_list.php:127 +msgid "No agents found" +msgstr "No se encontró ningún agente" + +#: ../../general/pandora_help.php:24 ../../general/pandora_help.php:68 +#: ../../general/pandora_help.php:95 +msgid "Pandora FMS help system" +msgstr "Sistema de ayuda de Pandora FMS" + +#: ../../general/pandora_help.php:73 +msgid "Help system error" +msgstr "Error del sistema de ayuda" + +#: ../../general/pandora_help.php:78 +msgid "" +"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 invocado con una referencia que " +"no existe actualmente. No hay contenido que mostrar." + +#: ../../general/header.php:75 +msgid "Blank characters are used as AND conditions" +msgstr "Los espacios serán usados para una condicion \"AND\"" + +#: ../../general/header.php:90 ../../general/header.php:92 +msgid "Enter keywords to search" +msgstr "Introduzca palabras clave para buscar" + +#: ../../general/header.php:114 ../../general/header.php:122 +msgid "All systems" +msgstr "Todos los sistemas" + +#: ../../general/header.php:114 +msgid "Down" +msgstr "Caído(s)" + +#: ../../general/header.php:118 +msgid "servers down" +msgstr "servidor(es) caído(s)" + +#: ../../general/header.php:122 +msgid "Ready" +msgstr "Listos" + +#: ../../general/header.php:142 ../../general/header.php:143 +msgid "QR Code of the page" +msgstr "Código QR de la página" + +#: ../../general/header.php:169 ../../general/header.php:170 +#: ../../include/functions_clippy.php:128 +msgid "Pandora FMS assistant" +msgstr "Asistente de Pandora FMS" + +#: ../../general/header.php:195 +msgid "Configure autorefresh" +msgstr "Configurar autorresfresco" + +#: ../../general/header.php:222 +msgid "Disabled autorefresh" +msgstr "Autorrefresco deshabilitado" + +#: ../../general/header.php:248 +msgid "System alerts detected - Please fix as soon as possible" +msgstr "Alertas del sistema detectadas - Por favor corregir lo antes posible" + +#: ../../general/header.php:263 +#, php-format +msgid "You have %d warning(s)" +msgstr "Tiene %d advertencia(s)" + +#: ../../general/header.php:274 +msgid "There are not warnings" +msgstr "No hay advertencias" + +#: ../../general/header.php:283 +msgid "Main help" +msgstr "Ayuda general" + +#: ../../general/header.php:305 +msgid "New chat message" +msgstr "Nuevo mensaje del chat" + +#: ../../general/header.php:314 +msgid "Message overview" +msgstr "Vista general de mensajes" + +#: ../../general/header.php:315 +#, php-format +msgid "You have %d unread message(s)" +msgstr "Tiene %d mensaje(s) sin leer" #: ../../general/alert_enterprise.php:96 msgid "" @@ -4380,19 +8645,367 @@ msgstr "" "correlación de alertas de eventos para simplificar el sistema de alertas y " "poder manejarlo de forma sencilla y aumentar el rendimiento." +#: ../../general/logon_ok.php:114 ../../general/logon_ok.php:318 +msgid "Pandora FMS Overview" +msgstr "Vista general de Pandora FMS" + +#: ../../general/logon_ok.php:181 ../../general/logon_ok.php:380 +msgid "News board" +msgstr "Noticias globales" + +#: ../../general/logon_ok.php:186 ../../general/logon_ok.php:385 +msgid "ago" +msgstr "hace" + +#: ../../general/logon_ok.php:193 ../../general/logon_ok.php:392 +msgid "by" +msgstr "por" + +#: ../../general/logon_ok.php:229 ../../general/logon_ok.php:426 +msgid "This is your last activity in Pandora FMS console" +msgstr "Ésta es su última actividad en la consola de Pandora FMS" + +#: ../../general/login_page.php:35 +msgid "Go to Pandora FMS Website" +msgstr "Ir a la Web de Pandora FMS" + +#: ../../general/login_page.php:40 +msgid "Go to Login" +msgstr "Ir a la pantalla de inicio" + +#: ../../general/login_page.php:82 +msgid "Docs" +msgstr "Documentos" + +#: ../../general/login_page.php:84 ../../general/login_help_dialog.php:67 +#: ../../general/login_help_dialog.php:69 +msgid "Support" +msgstr "Soporte" + +#: ../../general/login_page.php:145 +msgid "Login as admin" +msgstr "Entrar como administrador" + +#: ../../general/login_page.php:152 +msgid "Login with SAML" +msgstr "Entrar con SAML" + +#: ../../general/login_page.php:174 +msgid "Logged out" +msgstr "Desconectado" + +#: ../../general/login_page.php:200 +msgid "View details" +msgstr "Ver detalles" + +#: ../../general/login_page.php:224 +msgid "Build" +msgstr "Construcción" + +#: ../../general/login_page.php:237 +msgid "Login failed" +msgstr "Falló el inicio de sesión" + +#: ../../general/login_page.php:261 +msgid "" +"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." + +#: ../../general/login_page.php:262 +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." +msgstr "" +"Le recomendamos que elija e instale un navegador moderno. Sólo tardará unos " +"minutos." + +#: ../../general/login_page.php:325 +msgid "Why is it recommended to upgrade the web browser?" +msgstr "¿Por qué le recomendamos que actualice su navegador?" + +#: ../../general/login_page.php:330 +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." +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." + +#: ../../general/login_page.php:339 +msgid "Continue despite this warning" +msgstr "Continúe a pesar de esta advertencia" + +#: ../../general/noaccess2.php:26 +msgid "Access to this page is restricted" +msgstr "El acceso a esta página es restringido" + +#: ../../general/noaccess2.php:31 +msgid "No access" +msgstr "Acceso denegado" + +#: ../../general/noaccess2.php:36 +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 póngase en contacto con el administrador del sistema si necesita " +"ayuda.

    \n" +"\t\t\tPor favor, sepa que todos los intentos de acceso a esta página son " +"guardados en los registros de seguridad de la base de datos de Sistema de " +"Pandora" + +#: ../../general/login_required.php:69 +#: ../../general/login_identification_wizard.php:180 +msgid "Pandora FMS instance identification wizard" +msgstr "Asistente de identificación de PandoraFMS" + +#: ../../general/login_required.php:72 +msgid "" +"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 con éxito" + +#: ../../general/login_required.php:86 ../../include/functions_config.php:129 +#: ../../godmode/setup/setup_general.php:52 +msgid "Language code for Pandora" +msgstr "Código de idioma para Pandora FMS" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Africa" +msgstr "África" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "America" +msgstr "América" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Antarctica" +msgstr "La Antártida" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Arctic" +msgstr "Ártico" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Asia" +msgstr "Asia" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Atlantic" +msgstr "Atlántico" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Australia" +msgstr "Australia" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Europe" +msgstr "Europa" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Indian" +msgstr "Índico" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "Pacific" +msgstr "Pacífico" + +#: ../../general/login_required.php:91 +#: ../../godmode/setup/setup_general.php:115 +msgid "UTC" +msgstr "UTC" + +#: ../../general/login_required.php:111 ../../include/functions_config.php:166 +#: ../../godmode/setup/setup_general.php:135 +msgid "Timezone setup" +msgstr "Zona horaria" + +#: ../../general/login_required.php:112 +#: ../../godmode/setup/setup_general.php:136 +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" + +#: ../../general/login_required.php:116 +msgid "E-mail for receiving alerts" +msgstr "E-mail para la recepción de alertas" + +#: ../../general/login_required.php:124 +msgid "Register" +msgstr "Registrar" + +#: ../../general/login_required.php:127 +#: ../../include/functions_visual_map_editor.php:461 +#: ../../include/functions_visual_map_editor.php:469 +#: ../../godmode/setup/snmp_wizard.php:109 +msgid "Cancel" +msgstr "Cancelar" + +#: ../../general/login_required.php:130 +msgid "All fields required" +msgstr "Todos los campos requeridos" + +#: ../../general/login_help_dialog.php:39 +msgid "Welcome to Pandora FMS" +msgstr "Bienvenido a Pandora FMS" + +#: ../../general/login_help_dialog.php:42 +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!" +msgstr "" +"Si esta es tu primera vez con Pandora FMS, te proponemos unos enlaces para " +"aprender más sobre Pandora FMS. Monitorizar puede ser abrumador, pero tómate " +"tu tiempo para aprender como usar el potencial de Pandora FMS!" + +#: ../../general/login_help_dialog.php:51 +#: ../../general/login_help_dialog.php:53 +msgid "Online help" +msgstr "Ayuda en línea" + +#: ../../general/login_help_dialog.php:59 +#: ../../general/login_help_dialog.php:61 +msgid "Enterprise version" +msgstr "Versión Enterprise" + +#: ../../general/login_help_dialog.php:69 +msgid "Forums" +msgstr "Foros" + +#: ../../general/login_help_dialog.php:75 +#: ../../general/login_help_dialog.php:77 +msgid "Documentation" +msgstr "Documentación" + +#: ../../general/login_help_dialog.php:86 +msgid "Click here to don't show again this message" +msgstr "Pinche aquí para no volver a ver este mensaje" + +#: ../../general/firts_task/recon_view.php:21 +msgid "There are no recon task defined yet." +msgstr "No hay tarea definida recon todavía." + +#: ../../general/firts_task/recon_view.php:25 +#: ../../include/functions_servers.php:378 +#: ../../godmode/servers/manage_recontask_form.php:222 +msgid "Recon server" +msgstr "Servidor de exploración de red" + +#: ../../general/firts_task/recon_view.php:28 +#: ../../general/firts_task/recon_view.php:35 +msgid "Create Recon Task" +msgstr "Crear tarea de descubrimiento" + +#: ../../general/firts_task/recon_view.php:29 +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" +"\t\ttype. You can define your own customized recon script." +msgstr "" +"La definición de la Tarea Recon de Pandora FMS es usada 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." + +#: ../../general/firts_task/transactional_list.php:23 +msgid "There are no transactions defined yet." +msgstr "No hay transacciones definidas por el momento" + +#: ../../general/firts_task/transactional_list.php:30 +msgid "Transactions" +msgstr "Transacciones" + +#: ../../general/firts_task/transactional_list.php:33 +#: ../../general/firts_task/transactional_list.php:38 +msgid "Create Transactions" +msgstr "Crear transacciones" + +#: ../../general/firts_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 cuál usamos para dar nuestros servicios.." + +#: ../../general/firts_task/custom_fields.php:23 +#: ../../general/firts_task/fields_manager.php:21 +msgid "There are no custom fields defined yet." +msgstr "No hay campos personalizados definidos todavía." + +#: ../../general/firts_task/custom_fields.php:28 +msgid "Custom Fields" +msgstr "Campos Personalizados" + +#: ../../general/firts_task/custom_fields.php:31 +#: ../../general/firts_task/custom_fields.php:35 +msgid "Create Custom Fields" +msgstr "Crear Campos Personalizados" + +#: ../../general/firts_task/custom_fields.php:32 +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 a la información del agente " +"personalizado.\n" +"\t \t Usted es capaz de crear campos personalizados haciendo click en " +"\"Administración\" -> \"Administrar monitoreo\" -> \"Administrar campos " +"personalizados\". " + #: ../../general/firts_task/collections.php:21 msgid "There are no collections defined yet." msgstr "No hay colecciones definidas todavía." #: ../../general/firts_task/collections.php:25 -#: ../../enterprise/godmode/agentes/collections.agents.php:47 -#: ../../enterprise/godmode/agentes/collections.data.php:42 -#: ../../enterprise/godmode/agentes/collections.editor.php:50 -#: ../../enterprise/godmode/menu.php:56 -#: ../../enterprise/godmode/policies/policies.php:385 -#: ../../enterprise/godmode/policies/policy_collections.php:29 -#: ../../enterprise/godmode/policies/policy_collections.php:173 -#: ../../enterprise/include/functions_policies.php:3289 msgid "Collections" msgstr "Colecciones" @@ -4436,178 +9049,43 @@ msgstr "" "puede ver en \n" "\t\t la imagen de abajo. " -#: ../../general/firts_task/custom_fields.php:23 -#: ../../general/firts_task/fields_manager.php:21 -msgid "There are no custom fields defined yet." -msgstr "No hay campos personalizados definidos todavía." +#: ../../general/firts_task/service_list.php:23 +msgid "There are no services defined yet." +msgstr "No hay servicios definidos todavía." -#: ../../general/firts_task/custom_fields.php:28 -msgid "Custom Fields" -msgstr "Campos Personalizados" +#: ../../general/firts_task/service_list.php:31 +#: ../../general/firts_task/service_list.php:40 +msgid "Create Services" +msgstr "Crear Servicios" -#: ../../general/firts_task/custom_fields.php:31 -#: ../../general/firts_task/custom_fields.php:35 -msgid "Create Custom Fields" -msgstr "Crear Campos Personalizados" - -#: ../../general/firts_task/custom_fields.php:32 +#: ../../general/firts_task/service_list.php:32 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'. " +"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 "" -"Los campos personalizados son una manera fácil a la información del agente " -"personalizado.\n" -"\t \t Usted es capaz de crear campos personalizados haciendo click en " -"\"Administración\" -> \"Administrar monitoreo\" -> \"Administrar campos " -"personalizados\". " - -#: ../../general/firts_task/custom_graphs.php:23 -msgid "There are no custom graphs defined yet." -msgstr "No hay gráficos personalizados definidos todavía." - -#: ../../general/firts_task/custom_graphs.php:28 -msgid "Custom Graphs" -msgstr "Gráficos Personalizados" - -#: ../../general/firts_task/custom_graphs.php:31 -#: ../../general/firts_task/custom_graphs.php:36 -msgid "Create Custom Graph" -msgstr "Crear Gráfico Personalizado" - -#: ../../general/firts_task/custom_graphs.php:32 -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." -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\tLas gráficas Pandora FMS muestran los datos en tiempo real. Ellos se " -"generan cada vez que el operador requiere cualquiera de ellos y mostrar el " -"estado actualizado.\n" -"\t \t \t \t Hay dos tipos de gráficos: gráficos automatizados del agente y " -"los gráficos la usuario personaliza mediante el uso de uno o más módulos " -"para hacerlo." - -#: ../../general/firts_task/fields_manager.php:25 -msgid "Fields Manager" -msgstr "Gestor de ficheros" - -#: ../../general/firts_task/fields_manager.php:28 -msgid "Create Fields Manager" -msgstr "Gestor de creación de ficheros" - -#: ../../general/firts_task/fields_manager.php:29 -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 " - -#: ../../general/firts_task/fields_manager.php:32 -msgid "Create Fields " -msgstr "Crear campos " - -#: ../../general/firts_task/incidents.php:25 -msgid "There are no incidents defined yet." -msgstr "No hay incidentes definidos todavía." - -#: ../../general/firts_task/incidents.php:32 -#: ../../godmode/agentes/configurar_agente.php:417 -#: ../../godmode/agentes/configurar_agente.php:549 -#: ../../operation/agentes/ver_agente.php:1022 -#: ../../operation/incidents/incident_statistics.php:30 -#: ../../operation/menu.php:354 -msgid "Incidents" -msgstr "Incidentes" - -#: ../../general/firts_task/incidents.php:35 -#: ../../general/firts_task/incidents.php:44 -msgid "Create Incidents" -msgstr "Crear incidentes" - -#: ../../general/firts_task/incidents.php:36 -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" -msgstr "" -"Además de los datos recibidos y procesados para monitorizar sistemas o " -"aplicaciones, \n" -"\t\t\ttambién está obligado a monitorizar posibles incidentes los cuales " -"podrían tener lugar 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 es capaz de abrir incidentes, \n" -"\t\t\texplicando que 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 work-flow que permite a un incidente ser \n" -"\t\t\tmovido de 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" - -#: ../../general/firts_task/map_builder.php:26 -#: ../../godmode/reporting/map_builder.php:255 -msgid "There are no visual console defined yet." -msgstr "No hay consola visual definida todavía." - -#: ../../general/firts_task/map_builder.php:32 -#: ../../godmode/reporting/map_builder.php:39 -#: ../../enterprise/include/functions_enterprise.php:292 -#: ../../enterprise/meta/general/main_header.php:189 -msgid "Visual Console" -msgstr "Consola visual" - -#: ../../general/firts_task/map_builder.php:35 -#: ../../general/firts_task/map_builder.php:43 -msgid "Create Visual Console" -msgstr "Crear Consola Viual" - -#: ../../general/firts_task/map_builder.php:36 -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\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'. " -msgstr "" -"Pandora FMS permite crear mapas visuales en la que cada usuario es capaz de " -"crear su propio mapa de monitoreo.\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 tenido éxito en 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 de dividiéndolo en varias " -"pestañas en la materia llamados 'datos', 'Vista previa', \"mago\", \"Lista " -"de Elementos 'y' Editor '.\n" -"\t \t \t Los elementos de la Pandora FMS Visual Map fue diseñado para " -"manejar son \"imagen estática\", \"barra de porcentaje ',' gráfico del " -"módulo\" y \"Valor simple\". " +"Un servicio es una forma de agrupar sus recursos de TI basados en sus " +"funcionalidades.\n" +"\t\t\t\t\t\tUn servicio puede ser por ejemplo su página web oficial, su " +"sistema CRM, su aplicación de soporte o incluso sus 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/firts_task/network_map.php:23 msgid "There are no network map defined yet." @@ -4656,6 +9134,89 @@ msgstr "Mapa dinámico" msgid "Policy Map (Only Enterprise version)" msgstr "Mapa de políticas (Solo versión Enterprise)" +#: ../../general/firts_task/map_builder.php:26 +#: ../../godmode/reporting/map_builder.php:255 +msgid "There are no visual console defined yet." +msgstr "No hay consola visual definida todavía." + +#: ../../general/firts_task/map_builder.php:32 +#: ../../godmode/reporting/map_builder.php:39 +msgid "Visual Console" +msgstr "Consola visual" + +#: ../../general/firts_task/map_builder.php:35 +#: ../../general/firts_task/map_builder.php:43 +msgid "Create Visual Console" +msgstr "Crear Consola Viual" + +#: ../../general/firts_task/map_builder.php:36 +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\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'. " +msgstr "" +"Pandora FMS permite crear mapas visuales en la que cada usuario es capaz de " +"crear su propio mapa de monitoreo.\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 tenido éxito en 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 de dividiéndolo en varias " +"pestañas en la materia llamados 'datos', 'Vista previa', \"mago\", \"Lista " +"de Elementos 'y' Editor '.\n" +"\t \t \t Los elementos de la Pandora FMS Visual Map fue diseñado para " +"manejar son \"imagen estática\", \"barra de porcentaje ',' gráfico del " +"módulo\" y \"Valor simple\". " + +#: ../../general/firts_task/incidents.php:25 +msgid "There are no incidents defined yet." +msgstr "No hay incidentes definidos todavía." + +#: ../../general/firts_task/incidents.php:35 +#: ../../general/firts_task/incidents.php:44 +msgid "Create Incidents" +msgstr "Crear incidentes" + +#: ../../general/firts_task/incidents.php:36 +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" +msgstr "" +"Además de los datos recibidos y procesados para monitorizar sistemas o " +"aplicaciones, \n" +"\t\t\ttambién está obligado a monitorizar posibles incidentes los cuales " +"podrían tener lugar 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 es capaz de abrir incidentes, \n" +"\t\t\texplicando que 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 work-flow que permite a un incidente ser \n" +"\t\t\tmovido de 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" + #: ../../general/firts_task/planned_downtime.php:21 msgid "There are no planned downtime defined yet." msgstr "No hay tiempo de inactividad planificado aún definido." @@ -4689,105 +9250,6 @@ msgstr "" "\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. " -#: ../../general/firts_task/recon_view.php:21 -msgid "There are no recon task defined yet." -msgstr "No hay tarea definida recon todavía." - -#: ../../general/firts_task/recon_view.php:25 -#: ../../godmode/servers/manage_recontask_form.php:228 -#: ../../include/functions_servers.php:378 -#: ../../enterprise/extensions/ipam/ipam_editor.php:80 -msgid "Recon server" -msgstr "Servidor de exploración de red" - -#: ../../general/firts_task/recon_view.php:28 -#: ../../general/firts_task/recon_view.php:35 -msgid "Create Recon Task" -msgstr "Crear tarea de descubrimiento" - -#: ../../general/firts_task/recon_view.php:29 -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" -"\t\ttype. You can define your own customized recon script." -msgstr "" -"La definición de la Tarea Recon de Pandora FMS es usada 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." - -#: ../../general/firts_task/service_list.php:23 -msgid "There are no services defined yet." -msgstr "No hay servicios definidos todavía." - -#: ../../general/firts_task/service_list.php:28 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:300 -#: ../../operation/agentes/ver_agente.php:1111 -#: ../../enterprise/dashboard/widgets/service_map.php:79 -#: ../../enterprise/godmode/menu.php:92 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:298 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:164 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:101 -#: ../../enterprise/godmode/services/services.elements.php:135 -#: ../../enterprise/godmode/services/services.service.php:210 -#: ../../enterprise/include/functions_groups.php:61 -#: ../../enterprise/meta/general/main_header.php:172 -#: ../../enterprise/operation/menu.php:31 -#: ../../enterprise/operation/services/services.list.php:60 -#: ../../enterprise/operation/services/services.list.php:64 -#: ../../enterprise/operation/services/services.service_map.php:121 -#: ../../enterprise/operation/services/services.table_services.php:46 -#: ../../enterprise/operation/services/services.table_services.php:50 -msgid "Services" -msgstr "Servicios" - -#: ../../general/firts_task/service_list.php:31 -#: ../../general/firts_task/service_list.php:40 -msgid "Create Services" -msgstr "Crear Servicios" - -#: ../../general/firts_task/service_list.php:32 -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 sus recursos de TI basados en sus " -"funcionalidades.\n" -"\t\t\t\t\t\tUn servicio puede ser por ejemplo su página web oficial, su " -"sistema CRM, su aplicación de soporte o incluso sus 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/firts_task/snmp_filters.php:21 msgid "There are no SNMP filter defined yet." msgstr "No hay filtro SNMP definido todavía." @@ -4823,43 +9285,31 @@ msgstr "" "\t \t \t \t Una trampa que se va a ejecutar en conjunto con cualquiera de " "ellos - sólo los del servidor van a ser descartado automáticamente. " +#: ../../general/firts_task/fields_manager.php:25 +msgid "Fields Manager" +msgstr "Gestor de ficheros" + +#: ../../general/firts_task/fields_manager.php:28 +msgid "Create Fields Manager" +msgstr "Gestor de creación de ficheros" + +#: ../../general/firts_task/fields_manager.php:29 +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 " + +#: ../../general/firts_task/fields_manager.php:32 +msgid "Create Fields " +msgstr "Crear campos " + #: ../../general/firts_task/tags.php:21 msgid "There are no tags defined yet." msgstr "No hay etiquetas definidas todavía." -#: ../../general/firts_task/tags.php:25 -#: ../../godmode/events/custom_events.php:104 -#: ../../godmode/events/custom_events.php:164 -#: ../../godmode/massive/massive_add_tags.php:147 -#: ../../godmode/massive/massive_delete_tags.php:187 -#: ../../godmode/massive/massive_edit_modules.php:568 -#: ../../godmode/modules/manage_network_components_form_common.php:200 -#: ../../godmode/tag/edit_tag.php:57 -#: ../../godmode/users/configure_user.php:717 -#: ../../include/functions_treeview.php:165 -#: ../../include/functions_events.php:46 -#: ../../include/functions_events.php:2446 -#: ../../include/functions_events.php:3589 -#: ../../include/functions_reporting_html.php:2119 -#: ../../mobile/operation/events.php:514 -#: ../../operation/agentes/alerts_status.functions.php:86 -#: ../../operation/agentes/group_view.php:164 -#: ../../operation/agentes/status_monitor.php:340 -#: ../../operation/agentes/status_monitor.php:343 -#: ../../operation/events/events.build_table.php:223 -#: ../../operation/tree.php:49 ../../operation/users/user_edit.php:507 -#: ../../enterprise/dashboard/widgets/events_list.php:62 -#: ../../enterprise/dashboard/widgets/tree_view.php:35 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:94 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:92 -#: ../../enterprise/godmode/modules/configure_local_component.php:375 -#: ../../enterprise/godmode/setup/setup_auth.php:427 -#: ../../enterprise/godmode/setup/setup_auth.php:468 -#: ../../enterprise/include/functions_reporting_pdf.php:2370 -#: ../../enterprise/meta/include/functions_events_meta.php:91 -msgid "Tags" -msgstr "Etiquetas" - #: ../../general/firts_task/tags.php:28 ../../general/firts_task/tags.php:33 msgid "Create Tags" msgstr "Crear tags" @@ -4880,201 +9330,37 @@ msgstr "" "\t\t\t\t\t\t\t\tDe esta manera, el acceso de los usuarios puede estar " "limitado a módulos con ciertas etiquetas. " -#: ../../general/firts_task/transactional_list.php:23 -msgid "There are no transactions defined yet." -msgstr "No hay transacciones definidas por el momento" +#: ../../general/firts_task/custom_graphs.php:23 +msgid "There are no custom graphs defined yet." +msgstr "No hay gráficos personalizados definidos todavía." -#: ../../general/firts_task/transactional_list.php:30 -msgid "Transactions" -msgstr "Transacciones" +#: ../../general/firts_task/custom_graphs.php:28 +msgid "Custom Graphs" +msgstr "Gráficos Personalizados" -#: ../../general/firts_task/transactional_list.php:33 -#: ../../general/firts_task/transactional_list.php:38 -msgid "Create Transactions" -msgstr "Crear transacciones" +#: ../../general/firts_task/custom_graphs.php:31 +#: ../../general/firts_task/custom_graphs.php:36 +msgid "Create Custom Graph" +msgstr "Crear Gráfico Personalizado" -#: ../../general/firts_task/transactional_list.php:34 +#: ../../general/firts_task/custom_graphs.php:32 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." +"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 "" -"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 cuál usamos para dar nuestros servicios.." - -#: ../../general/footer.php:43 -#, php-format -msgid "Pandora FMS %s - Build %s - MR %s" -msgstr "Pandora FMS %s - Build %s - MR %s" - -#: ../../general/footer.php:46 ../../enterprise/meta/general/footer.php:27 -msgid "Page generated at" -msgstr "Página generada en" - -#: ../../general/footer.php:47 ../../enterprise/meta/general/footer.php:28 -msgid "® Ártica ST" -msgstr "Ártica ST" - -#: ../../general/header.php:75 -msgid "Blank characters are used as AND conditions" -msgstr "Los espacios serán usados para una condicion \"AND\"" - -#: ../../general/header.php:90 ../../general/header.php:92 -msgid "Enter keywords to search" -msgstr "Introduzca palabras clave para buscar" - -#: ../../general/header.php:114 ../../general/header.php:122 -#: ../../enterprise/meta/general/main_header.php:355 -#: ../../enterprise/meta/general/main_header.php:363 -msgid "All systems" -msgstr "Todos los sistemas" - -#: ../../general/header.php:114 -#: ../../enterprise/meta/general/main_header.php:355 -msgid "Down" -msgstr "Caído(s)" - -#: ../../general/header.php:118 -#: ../../enterprise/meta/general/main_header.php:359 -msgid "servers down" -msgstr "servidor(es) caído(s)" - -#: ../../general/header.php:122 -#: ../../enterprise/meta/general/main_header.php:363 -msgid "Ready" -msgstr "Listos" - -#: ../../general/header.php:142 ../../general/header.php:143 -msgid "QR Code of the page" -msgstr "Código QR de la página" - -#: ../../general/header.php:147 -#: ../../operation/visual_console/public_console.php:130 -msgid "QR code of the page" -msgstr "Código QR de la página" - -#: ../../general/header.php:169 ../../general/header.php:170 -#: ../../include/functions_clippy.php:128 -msgid "Pandora FMS assistant" -msgstr "Asistente de Pandora FMS" - -#: ../../general/header.php:195 -#: ../../enterprise/meta/general/main_header.php:388 -msgid "Configure autorefresh" -msgstr "Configurar autorresfresco" - -#: ../../general/header.php:222 -#: ../../enterprise/meta/general/main_header.php:405 -#: ../../enterprise/meta/general/main_header.php:415 -msgid "Disabled autorefresh" -msgstr "Autorrefresco deshabilitado" - -#: ../../general/header.php:248 -msgid "System alerts detected - Please fix as soon as possible" -msgstr "Alertas del sistema detectadas - Por favor corregir lo antes posible" - -#: ../../general/header.php:263 -#, php-format -msgid "You have %d warning(s)" -msgstr "Tiene %d advertencia(s)" - -#: ../../general/header.php:274 -msgid "There are not warnings" -msgstr "No hay advertencias" - -#: ../../general/header.php:283 -msgid "Main help" -msgstr "Ayuda general" - -#: ../../general/header.php:289 ../../mobile/include/functions_web.php:33 -#: ../../mobile/include/ui.class.php:175 -#: ../../mobile/include/user.class.php:286 ../../mobile/operation/home.php:118 -#: ../../enterprise/meta/general/main_header.php:373 -msgid "Logout" -msgstr "Salir" - -#: ../../general/header.php:294 ../../general/header.php:296 -#: ../../operation/menu.php:336 -#: ../../enterprise/meta/general/main_header.php:428 -#: ../../enterprise/meta/general/main_header.php:433 -#: ../../enterprise/meta/include/functions_users_meta.php:178 -#: ../../enterprise/meta/include/functions_users_meta.php:190 -msgid "Edit my user" -msgstr "Editar mi usuario" - -#: ../../general/header.php:305 -msgid "New chat message" -msgstr "Nuevo mensaje del chat" - -#: ../../general/header.php:314 -msgid "Message overview" -msgstr "Vista general de mensajes" - -#: ../../general/header.php:315 -#, php-format -msgid "You have %d unread message(s)" -msgstr "Tiene %d mensaje(s) sin leer" - -#: ../../general/links_menu.php:20 ../../godmode/menu.php:298 -#: ../../godmode/menu.php:416 -msgid "Links" -msgstr "Enlaces" - -#: ../../general/login_help_dialog.php:39 -#: ../../enterprise/dashboard/widgets/example.php:37 -msgid "Welcome to Pandora FMS" -msgstr "Bienvenido a Pandora FMS" - -#: ../../general/login_help_dialog.php:42 -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!" -msgstr "" -"Si esta es tu primera vez con Pandora FMS, te proponemos unos enlaces para " -"aprender más sobre Pandora FMS. Monitorizar puede ser abrumador, pero tómate " -"tu tiempo para aprender como usar el potencial de Pandora FMS!" - -#: ../../general/login_help_dialog.php:51 -#: ../../general/login_help_dialog.php:53 -msgid "Online help" -msgstr "Ayuda en línea" - -#: ../../general/login_help_dialog.php:59 -#: ../../general/login_help_dialog.php:61 -msgid "Enterprise version" -msgstr "Versión Enterprise" - -#: ../../general/login_help_dialog.php:67 -#: ../../general/login_help_dialog.php:69 ../../general/login_page.php:95 -#: ../../enterprise/include/reset_pass.php:58 -#: ../../enterprise/include/process_reset_pass.php:58 -#: ../../enterprise/meta/general/login_page.php:45 -#: ../../enterprise/meta/include/process_reset_pass.php:43 -#: ../../enterprise/meta/include/reset_pass.php:43 -msgid "Support" -msgstr "Soporte" - -#: ../../general/login_help_dialog.php:69 -msgid "Forums" -msgstr "Foros" - -#: ../../general/login_help_dialog.php:75 -#: ../../general/login_help_dialog.php:77 -msgid "Documentation" -msgstr "Documentación" - -#: ../../general/login_help_dialog.php:86 -msgid "Click here to don't show again this message" -msgstr "Pinche aquí para no volver a ver este mensaje" +"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\tLas gráficas Pandora FMS muestran los datos en tiempo real. Ellos se " +"generan cada vez que el operador requiere cualquiera de ellos y mostrar el " +"estado actualizado.\n" +"\t \t \t \t Hay dos tipos de gráficos: gráficos automatizados del agente y " +"los gráficos la usuario personaliza mediante el uso de uno o más módulos " +"para hacerlo." #: ../../general/login_identification_wizard.php:142 msgid "The Pandora FMS community wizard" @@ -5115,9 +9401,7 @@ msgstr "" "datos en cualquier momento desde las opciones de suscripción a los boletines" #: ../../general/login_identification_wizard.php:157 -#: ../../godmode/alerts/configure_alert_template.php:817 -#: ../../enterprise/godmode/alerts/alert_events.php:548 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:91 +#: ../../godmode/alerts/configure_alert_template.php:814 msgid "Finish" msgstr "Finalizar" @@ -5129,14374 +9413,1288 @@ msgstr "Volver" msgid "Join the Pandora FMS community" msgstr "Únete a la comunidad de Pandora FMS" -#: ../../general/login_identification_wizard.php:167 -#: ../../operation/users/user_edit.php:356 -msgid "Subscribe to our newsletter" -msgstr "Suscríbete a nuestro boletín" - -#: ../../general/login_identification_wizard.php:170 -#: ../../general/login_identification_wizard.php:171 -#: ../../godmode/tag/edit_tag.php:195 ../../godmode/tag/tag.php:203 -#: ../../operation/search_users.php:44 -#: ../../enterprise/extensions/cron/main.php:226 -#: ../../enterprise/extensions/cron/main.php:251 -#: ../../enterprise/operation/reporting/custom_reporting.php:24 -#: ../../enterprise/operation/reporting/custom_reporting.php:78 -msgid "Email" -msgstr "Correo-e" - #: ../../general/login_identification_wizard.php:172 msgid "Required" msgstr "Requerido" -#: ../../general/login_identification_wizard.php:180 -#: ../../general/login_required.php:69 -msgid "Pandora FMS instance identification wizard" -msgstr "Asistente de identificación de PandoraFMS" - #: ../../general/login_identification_wizard.php:182 msgid "Do you want to continue without any registration" msgstr "Desea continuar sin ningún registro?" -#: ../../general/login_identification_wizard.php:185 -#: ../../godmode/agentes/agent_conf_gis.php:80 -#: ../../godmode/agentes/agent_manager.php:414 -#: ../../godmode/alerts/alert_view.php:107 -#: ../../godmode/alerts/alert_view.php:303 -#: ../../godmode/alerts/alert_view.php:385 -#: ../../godmode/massive/massive_edit_agents.php:293 -#: ../../godmode/massive/massive_edit_agents.php:413 -#: ../../godmode/massive/massive_edit_agents.php:419 -#: ../../godmode/massive/massive_edit_modules.php:408 -#: ../../godmode/massive/massive_edit_modules.php:453 -#: ../../godmode/massive/massive_edit_modules.php:472 -#: ../../godmode/massive/massive_edit_modules.php:564 -#: ../../godmode/massive/massive_edit_modules.php:592 -#: ../../godmode/massive/massive_edit_modules.php:610 -#: ../../godmode/reporting/reporting_builder.main.php:115 -#: ../../godmode/reporting/reporting_builder.php:639 -#: ../../godmode/reporting/visual_console_builder.wizard.php:274 -#: ../../godmode/reporting/visual_console_builder.wizard.php:315 -#: ../../godmode/servers/manage_recontask.php:340 -#: ../../godmode/servers/manage_recontask_form.php:317 -#: ../../godmode/setup/news.php:264 ../../godmode/setup/performance.php:119 -#: ../../godmode/setup/performance.php:126 -#: ../../godmode/setup/performance.php:133 -#: ../../godmode/setup/setup_auth.php:52 ../../godmode/setup/setup_auth.php:59 -#: ../../godmode/setup/setup_auth.php:95 -#: ../../godmode/setup/setup_auth.php:133 -#: ../../godmode/setup/setup_ehorus.php:56 -#: ../../godmode/setup/setup_general.php:72 -#: ../../godmode/setup/setup_general.php:76 -#: ../../godmode/setup/setup_general.php:80 -#: ../../godmode/setup/setup_general.php:104 -#: ../../godmode/setup/setup_general.php:113 -#: ../../godmode/setup/setup_general.php:170 -#: ../../godmode/setup/setup_general.php:178 -#: ../../godmode/setup/setup_general.php:185 -#: ../../godmode/setup/setup_general.php:206 -#: ../../godmode/setup/setup_general.php:215 -#: ../../godmode/setup/setup_netflow.php:64 -#: ../../godmode/setup/setup_netflow.php:72 -#: ../../godmode/setup/setup_visuals.php:90 -#: ../../godmode/setup/setup_visuals.php:110 -#: ../../godmode/setup/setup_visuals.php:132 -#: ../../godmode/setup/setup_visuals.php:259 -#: ../../godmode/setup/setup_visuals.php:268 -#: ../../godmode/setup/setup_visuals.php:276 -#: ../../godmode/setup/setup_visuals.php:304 -#: ../../godmode/setup/setup_visuals.php:397 -#: ../../godmode/setup/setup_visuals.php:482 -#: ../../godmode/setup/setup_visuals.php:489 -#: ../../godmode/setup/setup_visuals.php:501 -#: ../../godmode/setup/setup_visuals.php:528 -#: ../../godmode/setup/setup_visuals.php:645 -#: ../../godmode/setup/setup_visuals.php:672 -#: ../../godmode/update_manager/update_manager.setup.php:125 -#: ../../godmode/users/configure_user.php:554 -#: ../../include/functions_events.php:2375 -#: ../../include/functions_events.php:2382 -#: ../../mobile/operation/events.php:186 ../../mobile/operation/events.php:193 -#: ../../operation/netflow/nf_live_view.php:280 -#: ../../operation/snmpconsole/snmp_view.php:439 -#: ../../operation/users/user_edit.php:249 -#: ../../enterprise/extensions/cron/functions.php:327 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:334 -#: ../../enterprise/godmode/setup/setup.php:32 -#: ../../enterprise/godmode/setup/setup.php:41 -#: ../../enterprise/godmode/setup/setup.php:57 -#: ../../enterprise/godmode/setup/setup.php:141 -#: ../../enterprise/godmode/setup/setup.php:206 -#: ../../enterprise/godmode/setup/setup.php:279 -#: ../../enterprise/godmode/setup/setup.php:288 -#: ../../enterprise/godmode/setup/setup.php:293 -#: ../../enterprise/godmode/setup/setup.php:302 -#: ../../enterprise/godmode/setup/setup.php:316 -#: ../../enterprise/godmode/setup/setup.php:321 -#: ../../enterprise/godmode/setup/setup.php:332 -#: ../../enterprise/godmode/setup/setup_auth.php:359 -#: ../../enterprise/godmode/setup/setup_auth.php:394 -#: ../../enterprise/godmode/setup/setup_auth.php:513 -#: ../../enterprise/godmode/setup/setup_history.php:47 -#: ../../enterprise/godmode/setup/setup_history.php:51 -#: ../../enterprise/meta/advanced/metasetup.password.php:80 -#: ../../enterprise/meta/advanced/metasetup.password.php:91 -#: ../../enterprise/meta/advanced/metasetup.password.php:97 -#: ../../enterprise/meta/advanced/metasetup.password.php:108 -#: ../../enterprise/meta/advanced/metasetup.password.php:124 -#: ../../enterprise/meta/advanced/metasetup.password.php:130 -#: ../../enterprise/meta/advanced/metasetup.performance.php:84 -#: ../../enterprise/meta/advanced/metasetup.setup.php:138 -#: ../../enterprise/meta/advanced/metasetup.setup.php:189 -#: ../../enterprise/meta/advanced/metasetup.setup.php:254 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:95 -#: ../../enterprise/meta/advanced/metasetup.visual.php:122 -#: ../../enterprise/meta/advanced/metasetup.visual.php:126 -#: ../../enterprise/meta/advanced/metasetup.visual.php:170 -#: ../../enterprise/meta/advanced/metasetup.visual.php:179 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1565 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:95 -msgid "No" -msgstr "No" +#: ../../general/links_menu.php:20 ../../godmode/menu.php:298 +#: ../../godmode/menu.php:414 +msgid "Links" +msgstr "Enlaces" -#: ../../general/login_identification_wizard.php:188 -#: ../../godmode/agentes/agent_conf_gis.php:79 -#: ../../godmode/agentes/agent_manager.php:411 -#: ../../godmode/alerts/alert_view.php:107 -#: ../../godmode/alerts/alert_view.php:301 -#: ../../godmode/massive/massive_edit_agents.php:293 -#: ../../godmode/massive/massive_edit_agents.php:412 -#: ../../godmode/massive/massive_edit_agents.php:419 -#: ../../godmode/massive/massive_edit_modules.php:407 -#: ../../godmode/massive/massive_edit_modules.php:452 -#: ../../godmode/massive/massive_edit_modules.php:471 -#: ../../godmode/massive/massive_edit_modules.php:564 -#: ../../godmode/massive/massive_edit_modules.php:591 -#: ../../godmode/massive/massive_edit_modules.php:610 -#: ../../godmode/reporting/reporting_builder.main.php:111 -#: ../../godmode/reporting/reporting_builder.php:637 -#: ../../godmode/reporting/visual_console_builder.wizard.php:269 -#: ../../godmode/reporting/visual_console_builder.wizard.php:312 -#: ../../godmode/servers/manage_recontask.php:340 -#: ../../godmode/servers/manage_recontask_form.php:317 -#: ../../godmode/setup/performance.php:118 -#: ../../godmode/setup/performance.php:125 -#: ../../godmode/setup/performance.php:132 -#: ../../godmode/setup/setup_auth.php:51 ../../godmode/setup/setup_auth.php:58 -#: ../../godmode/setup/setup_auth.php:94 -#: ../../godmode/setup/setup_auth.php:130 -#: ../../godmode/setup/setup_ehorus.php:55 -#: ../../godmode/setup/setup_general.php:71 -#: ../../godmode/setup/setup_general.php:75 -#: ../../godmode/setup/setup_general.php:79 -#: ../../godmode/setup/setup_general.php:103 -#: ../../godmode/setup/setup_general.php:112 -#: ../../godmode/setup/setup_general.php:167 -#: ../../godmode/setup/setup_general.php:175 -#: ../../godmode/setup/setup_general.php:184 -#: ../../godmode/setup/setup_general.php:205 -#: ../../godmode/setup/setup_general.php:214 -#: ../../godmode/setup/setup_netflow.php:63 -#: ../../godmode/setup/setup_netflow.php:71 -#: ../../godmode/setup/setup_visuals.php:86 -#: ../../godmode/setup/setup_visuals.php:106 -#: ../../godmode/setup/setup_visuals.php:128 -#: ../../godmode/setup/setup_visuals.php:251 -#: ../../godmode/setup/setup_visuals.php:265 -#: ../../godmode/setup/setup_visuals.php:273 -#: ../../godmode/setup/setup_visuals.php:302 -#: ../../godmode/setup/setup_visuals.php:395 -#: ../../godmode/setup/setup_visuals.php:481 -#: ../../godmode/setup/setup_visuals.php:487 -#: ../../godmode/setup/setup_visuals.php:497 -#: ../../godmode/setup/setup_visuals.php:526 -#: ../../godmode/setup/setup_visuals.php:641 -#: ../../godmode/setup/setup_visuals.php:668 -#: ../../godmode/update_manager/update_manager.setup.php:124 -#: ../../godmode/users/configure_user.php:554 -#: ../../operation/netflow/nf_live_view.php:276 -#: ../../operation/snmpconsole/snmp_view.php:436 -#: ../../operation/users/user_edit.php:249 -#: ../../enterprise/extensions/cron/functions.php:327 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:171 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:332 -#: ../../enterprise/godmode/setup/setup.php:31 -#: ../../enterprise/godmode/setup/setup.php:40 -#: ../../enterprise/godmode/setup/setup.php:56 -#: ../../enterprise/godmode/setup/setup.php:140 -#: ../../enterprise/godmode/setup/setup.php:205 -#: ../../enterprise/godmode/setup/setup.php:278 -#: ../../enterprise/godmode/setup/setup.php:287 -#: ../../enterprise/godmode/setup/setup.php:292 -#: ../../enterprise/godmode/setup/setup.php:301 -#: ../../enterprise/godmode/setup/setup.php:315 -#: ../../enterprise/godmode/setup/setup.php:320 -#: ../../enterprise/godmode/setup/setup.php:331 -#: ../../enterprise/godmode/setup/setup_auth.php:356 -#: ../../enterprise/godmode/setup/setup_auth.php:391 -#: ../../enterprise/godmode/setup/setup_auth.php:512 -#: ../../enterprise/godmode/setup/setup_history.php:46 -#: ../../enterprise/godmode/setup/setup_history.php:50 -#: ../../enterprise/meta/advanced/metasetup.password.php:79 -#: ../../enterprise/meta/advanced/metasetup.password.php:90 -#: ../../enterprise/meta/advanced/metasetup.password.php:96 -#: ../../enterprise/meta/advanced/metasetup.password.php:107 -#: ../../enterprise/meta/advanced/metasetup.password.php:123 -#: ../../enterprise/meta/advanced/metasetup.password.php:129 -#: ../../enterprise/meta/advanced/metasetup.performance.php:83 -#: ../../enterprise/meta/advanced/metasetup.setup.php:137 -#: ../../enterprise/meta/advanced/metasetup.setup.php:188 -#: ../../enterprise/meta/advanced/metasetup.setup.php:253 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:94 -#: ../../enterprise/meta/advanced/metasetup.visual.php:121 -#: ../../enterprise/meta/advanced/metasetup.visual.php:125 -#: ../../enterprise/meta/advanced/metasetup.visual.php:166 -#: ../../enterprise/meta/advanced/metasetup.visual.php:175 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1563 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:94 -msgid "Yes" -msgstr "Sí" +#: ../../extras/pandora_diag.php:90 +msgid "Pandora FMS Diagnostic tool" +msgstr "Herramienta de diagnóstico de Pandora FMS" -#: ../../general/login_page.php:35 -msgid "Go to Pandora FMS Website" -msgstr "Ir a la Web de Pandora FMS" +#: ../../extras/pandora_diag.php:93 +msgid "Item" +msgstr "Elemento" -#: ../../general/login_page.php:47 -msgid "Go to Login" -msgstr "Ir a la pantalla de inicio" +#: ../../extras/pandora_diag.php:94 +msgid "Data value" +msgstr "valor de los datos" -#: ../../general/login_page.php:55 -#: ../../enterprise/meta/general/login_page.php:32 -#: ../../enterprise/meta/include/process_reset_pass.php:30 -#: ../../enterprise/meta/include/reset_pass.php:30 -msgid "Splash login" -msgstr "Imagen de login" +#: ../../include/functions_snmp_browser.php:145 +msgid "Target IP cannot be blank." +msgstr "Ip Target no puede dejarse en blanco" -#: ../../general/login_page.php:89 ../../enterprise/include/reset_pass.php:56 -#: ../../enterprise/include/process_reset_pass.php:56 -msgid "Docs" -msgstr "Documentos" +#: ../../include/functions_snmp_browser.php:403 +msgid "Numeric OID" +msgstr "OID numérico" -#: ../../general/login_page.php:159 -msgid "Login as admin" -msgstr "Entrar como administrador" - -#: ../../general/login_page.php:167 -#: ../../enterprise/meta/general/login_page.php:99 -msgid "Login with SAML" -msgstr "Entrar con SAML" - -#: ../../general/login_page.php:186 ../../mobile/include/user.class.php:256 -#: ../../enterprise/meta/general/login_page.php:91 -#: ../../enterprise/meta/general/login_page.php:119 -msgid "Login" -msgstr "Iniciar sesión" - -#: ../../general/login_page.php:201 -msgid "Authentication code" -msgstr "Código de autenticación" - -#: ../../general/login_page.php:204 ../../mobile/include/user.class.php:306 -msgid "Check code" -msgstr "Código de verificación" - -#: ../../general/login_page.php:212 -msgid "View details" -msgstr "Ver detalles" - -#: ../../general/login_page.php:226 -#: ../../enterprise/meta/general/login_page.php:127 -msgid "Forgot your password?" -msgstr "¿Olvidó su contraseña?" - -#: ../../general/login_page.php:241 ../../general/login_page.php:245 -#: ../../include/functions_config.php:1148 -#: ../../enterprise/include/reset_pass.php:121 -#: ../../enterprise/include/reset_pass.php:125 -#: ../../enterprise/include/process_reset_pass.php:132 -#: ../../enterprise/include/process_reset_pass.php:136 -msgid "WELCOME TO PANDORA FMS" -msgstr "BIENVENIDO A PANDORA FMS" - -#: ../../general/login_page.php:254 ../../general/login_page.php:258 -#: ../../include/functions_config.php:1152 -#: ../../enterprise/include/reset_pass.php:134 -#: ../../enterprise/include/reset_pass.php:138 -#: ../../enterprise/include/process_reset_pass.php:145 -#: ../../enterprise/include/process_reset_pass.php:149 -msgid "NEXT GENERATION" -msgstr "NEXT GENERATION" - -#: ../../general/login_page.php:277 -#: ../../enterprise/include/reset_pass.php:159 -#: ../../enterprise/include/process_reset_pass.php:170 -#: ../../enterprise/meta/general/login_page.php:163 -#: ../../enterprise/meta/include/process_reset_pass.php:129 -#: ../../enterprise/meta/include/reset_pass.php:118 -msgid "Build" -msgstr "Construcción" - -#: ../../general/login_page.php:281 ../../general/login_page.php:284 -#: ../../general/login_page.php:299 ../../general/login_page.php:302 -#: ../../general/login_page.php:319 ../../general/login_page.php:322 -#: ../../enterprise/meta/general/login_page.php:167 -#: ../../enterprise/meta/general/login_page.php:170 -#: ../../enterprise/meta/general/login_page.php:185 -#: ../../enterprise/meta/general/login_page.php:188 -#: ../../enterprise/meta/general/login_page.php:205 -#: ../../enterprise/meta/general/login_page.php:208 -msgid "Password reset" -msgstr "Resetear Contraseña" - -#: ../../general/login_page.php:288 -#: ../../enterprise/meta/general/login_page.php:174 -msgid "INFO" -msgstr "INFO" - -#: ../../general/login_page.php:289 -#: ../../enterprise/meta/general/login_page.php:175 -msgid "An email has been sent to your email address" -msgstr "Se ha enviado un email a su dirección de correo" - -#: ../../general/login_page.php:306 ../../general/login_page.php:345 -#: ../../enterprise/include/reset_pass.php:170 -#: ../../enterprise/meta/general/login_page.php:192 -#: ../../enterprise/meta/general/login_page.php:231 -#: ../../enterprise/meta/include/reset_pass.php:129 -msgid "ERROR" -msgstr "ERROR" - -#: ../../general/login_page.php:326 -#: ../../enterprise/meta/general/login_page.php:212 -msgid "SUCCESS" -msgstr "ÉXITO" - -#: ../../general/login_page.php:338 ../../general/login_page.php:341 -#: ../../general/login_page.php:440 ../../general/login_page.php:443 -#: ../../enterprise/include/functions_login.php:132 -#: ../../enterprise/meta/general/login_page.php:224 -#: ../../enterprise/meta/general/login_page.php:227 -msgid "Login failed" -msgstr "Falló el inicio de sesión" - -#: ../../general/login_page.php:357 ../../general/login_page.php:360 -#: ../../general/login_page.php:364 -#: ../../enterprise/meta/general/login_page.php:243 -#: ../../enterprise/meta/general/login_page.php:246 -#: ../../enterprise/meta/general/login_page.php:250 -msgid "Logged out" -msgstr "Desconectado" - -#: ../../general/login_page.php:365 ../../mobile/include/user.class.php:221 -#: ../../enterprise/meta/general/login_page.php:251 -msgid "" -"Your session is over. Please close your browser window to close this Pandora " -"session." -msgstr "" -"Su sesión ha caducado. Cierre la ventana de su navegador web para cerrar " -"esta sesión de Pandora FMS." - -#: ../../general/login_page.php:378 ../../include/functions_ui.php:3604 -msgid "Problem with Pandora FMS database" -msgstr "Problema con la base de datos de Pandora FMS" - -#: ../../general/login_page.php:379 -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 a la base de datos, por favor compruebe su configuración " -"en el fichero include/config.php .

    \n" -"\t\tProbablemente el host de la base de datos, su usuario o contraseña sean " -"incorrectos o\n" -"\t\tel servidos de la base de datos no esté corriendo." - -#: ../../general/login_page.php:383 ../../include/functions_ui.php:3609 -msgid "DB ERROR" -msgstr "ERROR de la BD" - -#: ../../general/login_page.php:389 ../../include/functions_ui.php:3615 -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\";
    " -msgstr "" -"Si usted ha modificado el sistema de autenticación, este problema puede ser " -"porque Pandora no puede anular las variables de autorización de la base de " -"datos de configuración. Quítelas de su base de datos " -"ejecutando
    DELETE FROM tconfig WHERE token = \"auth\";
    " - -#: ../../general/login_page.php:393 ../../include/functions_ui.php:3619 -msgid "Empty configuration table" -msgstr "Tabla de configuración vacía" - -#: ../../general/login_page.php:394 -msgid "" -"Cannot load configuration variables from database. Please check your " -"database setup in the\n" -"\t\tinclude/config.php file.

    \n" -"\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

    Pandora FMS 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 "" -"No se pudo cargar las variables de configuración de la base de datos. Por " -"favor, compruebe la configuración de la base de datos en el fichero\n" -"\t\tinclude/config.php .

    \n" -"\t\tLo más probable es que el esquema de la base de datos se haya creado " -"pero no tenga datos en el, que haya un problema con las credenciales de la " -"base de datos o que su esquema esté fuera de fecha.\n" -"\t\t

    La consola de Pandora FMS no encuentra include/config.php " -"o este fichero no tiene\n" -"\t\tpermisos y HTTP no puede leerlo. Por favor lea la documentación para " -"resolver este problema.
    " - -#: ../../general/login_page.php:401 ../../include/functions_ui.php:3627 -msgid "No configuration file found" -msgstr "No se ha encontrado el fichero de configuración" - -#: ../../general/login_page.php:402 -msgid "" -"Pandora FMS 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 de Pandora FMS no encuentra include/config.php o este " -"fichero no tiene\n" -"\t\tpermisos y HTTP no puede leerlo. Por favor lea la documentación para " -"resolver este problema." - -#: ../../general/login_page.php:413 ../../include/functions_ui.php:3639 -#, php-format -msgid "You may try to run the %sinstallation wizard%s to create one." -msgstr "" -"Puede intentar correr el %sinstallation wizard%s para crear uno." - -#: ../../general/login_page.php:416 ../../include/functions_ui.php:3642 -msgid "Installer active" -msgstr "Instalador activo" - -#: ../../general/login_page.php:417 -msgid "" -"For security reasons, normal operation is not possible until you delete " -"installer file.\n" -"\t\tPlease delete the ./install.php file before running Pandora FMS " -"Console." -msgstr "" -"Por razones de seguridad, el normal funcionamiento no es posible hasta que " -"se borre el fichero de instalación.\n" -"\t\tPor favor, elimine el fichero ./install.php antes de lanzar la " -"consola de Pandora FMS." - -#: ../../general/login_page.php:421 ../../include/functions_ui.php:3647 -msgid "Bad permission for include/config.php" -msgstr "Permiso incorrecto para include/config.php" - -#: ../../general/login_page.php:422 -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 razones de seguridad, config.php debe tener permisos " -"restringidos, y los usuarios pertenecientes a \"otros\"\n" -"\t\tno deberían leerlo ni editarlo. Solo debería poder ser escrito por el " -"usuario al que pertenece\n" -"\t\t(habitualmente www-data o http daemon user), El normal funcionamiento no " -"es posible hasta que se cambien\n" -"\t\tlos permisos para el fichero include/config.php . Por favor " -"hágalo, es por su seguridad." - -#: ../../general/login_page.php:428 -msgid "Bad defined homedir" -msgstr "homedir mal definida" - -#: ../../general/login_page.php:429 -msgid "" -"In the config.php file in the variable $config[\"homedir\"] = add the " -"correct path" -msgstr "" -"En el fichero config.php en la variable $config[\"homedir\"] = añadir la " -"ruta correcta" - -#: ../../general/login_page.php:432 -msgid "Bad defined homeurl or homeurl_static" -msgstr "homeurl o himeurl_static mal definida" - -#: ../../general/login_page.php:433 -msgid "" -"In the config.php file in the variable $config[\"homeurl\"] or " -"$config[\"homeurl_static\"] = add the correct path" -msgstr "" -"En el fichero config.php en la variable $config[\"homeurl\"] o " -"$config[\"homeurl_static\"] = añadir la ruta correcta" - -#: ../../general/login_required.php:72 -msgid "" -"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 con éxito" - -#: ../../general/login_required.php:86 -#: ../../godmode/setup/setup_general.php:52 -#: ../../include/functions_config.php:129 -#: ../../enterprise/meta/advanced/metasetup.setup.php:119 -#: ../../enterprise/meta/include/functions_meta.php:337 -msgid "Language code for Pandora" -msgstr "Código de idioma para Pandora FMS" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:148 -msgid "Africa" -msgstr "África" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 -msgid "America" -msgstr "América" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:150 -msgid "Antarctica" -msgstr "La Antártida" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:151 -msgid "Arctic" -msgstr "Ártico" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:152 -msgid "Asia" -msgstr "Asia" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:153 -msgid "Atlantic" -msgstr "Atlántico" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:154 -msgid "Australia" -msgstr "Australia" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:155 -msgid "Europe" -msgstr "Europa" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:156 -msgid "Indian" -msgstr "Índico" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:157 -msgid "Pacific" -msgstr "Pacífico" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../enterprise/meta/advanced/metasetup.setup.php:158 -msgid "UTC" -msgstr "UTC" - -#: ../../general/login_required.php:111 -#: ../../godmode/setup/setup_general.php:135 -#: ../../include/functions_config.php:166 -#: ../../enterprise/meta/advanced/metasetup.setup.php:177 -#: ../../enterprise/meta/include/functions_meta.php:387 -msgid "Timezone setup" -msgstr "Zona horaria" - -#: ../../general/login_required.php:112 -#: ../../godmode/setup/setup_general.php:136 -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" - -#: ../../general/login_required.php:116 -msgid "E-mail for receiving alerts" -msgstr "E-mail para la recepción de alertas" - -#: ../../general/login_required.php:124 -msgid "Register" -msgstr "Registrar" - -#: ../../general/login_required.php:127 -#: ../../godmode/setup/snmp_wizard.php:109 -#: ../../godmode/update_manager/update_manager.offline.php:65 -#: ../../include/functions_update_manager.php:365 -#: ../../include/functions_visual_map_editor.php:464 -#: ../../include/functions_visual_map_editor.php:472 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:185 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:226 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:194 -#: ../../enterprise/include/functions_update_manager.php:197 -msgid "Cancel" -msgstr "Cancelar" - -#: ../../general/login_required.php:130 -msgid "All fields required" -msgstr "Todos los campos requeridos" - -#: ../../general/logon_failed.php:21 -#: ../../include/ajax/double_auth.ajax.php:247 -#: ../../include/ajax/double_auth.ajax.php:344 -#: ../../include/ajax/double_auth.ajax.php:389 -#: ../../include/ajax/double_auth.ajax.php:503 -#: ../../operation/users/user_edit.php:694 -#: ../../operation/users/user_edit.php:759 -#: ../../operation/users/user_edit.php:830 -msgid "Authentication error" -msgstr "Error de autenticación" - -#: ../../general/logon_failed.php:33 -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. Verifique 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 sucesos de Pandora y " -"pueden ser revisados por cada usuario. Comunique al administrador cualquier " -"incidente o fallo." - -#: ../../general/logon_ok.php:114 ../../general/logon_ok.php:318 -msgid "Pandora FMS Overview" -msgstr "Vista general de Pandora FMS" - -#: ../../general/logon_ok.php:181 ../../general/logon_ok.php:380 -msgid "News board" -msgstr "Noticias globales" - -#: ../../general/logon_ok.php:186 ../../general/logon_ok.php:385 -msgid "ago" -msgstr "hace" - -#: ../../general/logon_ok.php:193 ../../general/logon_ok.php:392 -msgid "by" -msgstr "por" - -#: ../../general/logon_ok.php:227 ../../general/logon_ok.php:424 -#: ../../godmode/admin_access_logs.php:191 -#: ../../include/functions_reporting_html.php:3599 -#: ../../mobile/operation/tactical.php:311 -#: ../../operation/snmpconsole/snmp_statistics.php:140 -msgid "Source IP" -msgstr "IP origen" - -#: ../../general/logon_ok.php:228 ../../general/logon_ok.php:425 -#: ../../godmode/admin_access_logs.php:192 -#: ../../godmode/servers/manage_recontask_form.php:371 -#: ../../godmode/users/configure_user.php:523 -#: ../../include/ajax/events.php:302 ../../include/functions.php:2339 -#: ../../include/functions_reporting_html.php:3600 -#: ../../mobile/operation/events.php:518 -#: ../../operation/users/user_edit.php:449 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:93 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:206 -#: ../../enterprise/extensions/ipam/ipam_massive.php:69 -#: ../../enterprise/extensions/ipam/ipam_network.php:543 -#: ../../enterprise/extensions/ipam/ipam_network.php:654 -msgid "Comments" -msgstr "Comentarios" - -#: ../../general/logon_ok.php:229 ../../general/logon_ok.php:426 -msgid "This is your last activity in Pandora FMS console" -msgstr "Ésta es su última actividad en la consola de Pandora FMS" - -#: ../../general/noaccess2.php:18 ../../general/noaccess2.php:21 -#: ../../mobile/index.php:240 ../../mobile/operation/agent.php:66 -#: ../../mobile/operation/agents.php:145 ../../mobile/operation/alerts.php:141 -#: ../../mobile/operation/events.php:430 ../../mobile/operation/groups.php:53 -#: ../../mobile/operation/module_graph.php:270 -#: ../../mobile/operation/modules.php:173 -#: ../../mobile/operation/networkmap.php:78 -#: ../../mobile/operation/networkmaps.php:99 -#: ../../mobile/operation/tactical.php:71 -#: ../../mobile/operation/visualmap.php:65 -#: ../../mobile/operation/visualmaps.php:83 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:13 -#: ../../enterprise/meta/general/noaccess.php:24 -msgid "You don't have access to this page" -msgstr "No tiene permiso para acceder a esta página" - -#: ../../general/noaccess2.php:26 -msgid "Access to this page is restricted" -msgstr "El acceso a esta página es restringido" - -#: ../../general/noaccess2.php:31 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:21 -#: ../../enterprise/meta/general/noaccess.php:28 -msgid "No access" -msgstr "Acceso denegado" - -#: ../../general/noaccess2.php:36 -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 póngase en contacto con el administrador del sistema si necesita " -"ayuda.

    \n" -"\t\t\tPor favor, sepa que todos los intentos de acceso a esta página son " -"guardados en los registros de seguridad de la base de datos de Sistema de " -"Pandora" - -#: ../../general/pandora_help.php:24 -msgid "Pandora FMS help system" -msgstr "Sistema de ayuda de Pandora FMS" - -#: ../../general/pandora_help.php:75 -msgid "Help system error" -msgstr "Error del sistema de ayuda" - -#: ../../general/pandora_help.php:80 -msgid "" -"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 invocado con una referencia que " -"no existe actualmente. No hay contenido que mostrar." - -#: ../../general/ui/agents_list.php:80 ../../general/ui/agents_list.php:91 -#: ../../godmode/agentes/modificar_agente.php:171 -#: ../../godmode/agentes/modificar_agente.php:175 -#: ../../godmode/agentes/module_manager.php:45 -#: ../../godmode/agentes/planned_downtime.list.php:141 -#: ../../godmode/agentes/planned_downtime.list.php:177 -#: ../../godmode/alerts/alert_templates.php:257 -#: ../../godmode/alerts/alert_templates.php:261 -#: ../../godmode/modules/manage_network_components.php:524 -#: ../../godmode/reporting/reporting_builder.php:439 -#: ../../godmode/users/user_list.php:230 ../../godmode/users/user_list.php:234 -#: ../../include/functions_snmp_browser.php:556 -#: ../../operation/agentes/estado_agente.php:180 -#: ../../operation/agentes/estado_agente.php:198 -#: ../../operation/agentes/status_monitor.php:336 -#: ../../operation/incidents/incident.php:294 -#: ../../operation/search_results.php:161 -#: ../../enterprise/extensions/translate_string.php:265 -#: ../../enterprise/godmode/agentes/collection_manager.php:50 -#: ../../enterprise/godmode/agentes/collections.php:221 -#: ../../enterprise/godmode/alerts/alert_events_list.php:364 -#: ../../enterprise/godmode/alerts/alert_events_list.php:368 -#: ../../enterprise/godmode/modules/local_components.php:450 -#: ../../enterprise/godmode/modules/local_components.php:464 -#: ../../enterprise/godmode/policies/policy_agents.php:366 -#: ../../enterprise/godmode/policies/policy_agents.php:371 -#: ../../enterprise/godmode/policies/policy_collections.php:182 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:138 -#: ../../enterprise/meta/agentsearch.php:69 -#: ../../enterprise/meta/general/main_header.php:486 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:228 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:318 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:487 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:560 -#: ../../enterprise/operation/agentes/agent_inventory.php:90 -#: ../../enterprise/operation/agentes/agent_inventory.php:95 -#: ../../enterprise/operation/inventory/inventory.php:179 -#: ../../enterprise/operation/inventory/inventory.php:219 -#: ../../enterprise/operation/log/log_viewer.php:170 -#: ../../enterprise/operation/log/log_viewer.php:238 -#: ../../enterprise/operation/services/services.list.php:164 -#: ../../enterprise/operation/services/services.list.php:203 -#: ../../enterprise/operation/services/services.table_services.php:133 -#: ../../enterprise/operation/services/services.table_services.php:172 -msgid "Search" -msgstr "Buscar" - -#: ../../general/ui/agents_list.php:127 -#: ../../enterprise/extensions/vmware/vmware_view.php:1363 -#: ../../enterprise/operation/policies/networkmap.policies.php:71 -msgid "No agents found" -msgstr "No se encontró ningún agente" - -#: ../../godmode/admin_access_logs.php:33 -msgid "Pandora audit" -msgstr "Auditoría de Pandora FMS" - -#: ../../godmode/admin_access_logs.php:33 -msgid "Review Logs" -msgstr "Revisar logs" - -#: ../../godmode/admin_access_logs.php:45 -#: ../../godmode/admin_access_logs.php:72 -#: ../../godmode/agentes/module_manager.php:49 -#: ../../godmode/modules/manage_network_templates_form.php:244 -#: ../../godmode/modules/manage_network_templates_form.php:300 -#: ../../godmode/netflow/nf_item_list.php:148 -#: ../../godmode/reporting/reporting_builder.item_editor.php:663 -#: ../../godmode/reporting/reporting_builder.list_items.php:177 -#: ../../godmode/reporting/reporting_builder.list_items.php:200 -#: ../../godmode/snmpconsole/snmp_alert.php:1014 -#: ../../godmode/snmpconsole/snmp_filters.php:96 -#: ../../godmode/snmpconsole/snmp_filters.php:132 -#: ../../godmode/tag/tag.php:161 -#: ../../operation/agentes/alerts_status.functions.php:116 -#: ../../operation/agentes/alerts_status.functions.php:126 -#: ../../operation/agentes/estado_monitores.php:474 -#: ../../operation/agentes/graphs.php:159 -#: ../../operation/incidents/incident.php:230 -#: ../../operation/netflow/nf_live_view.php:320 ../../operation/tree.php:147 -#: ../../enterprise/extensions/backup/main.php:87 -#: ../../enterprise/extensions/ipam/ipam_network.php:328 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:150 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:179 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:230 -#: ../../enterprise/godmode/policies/policies.php:239 -#: ../../enterprise/godmode/policies/policy_linking.php:68 -#: ../../enterprise/godmode/policies/policy_queue.php:354 -#: ../../enterprise/godmode/setup/setup_acl.php:207 -#: ../../enterprise/godmode/setup/setup_skins.php:91 -#: ../../enterprise/meta/advanced/policymanager.queue.php:228 -#: ../../enterprise/operation/services/services.list.php:293 -#: ../../enterprise/operation/services/services.list.php:299 -#: ../../enterprise/operation/services/services.table_services.php:261 -#: ../../enterprise/operation/services/services.table_services.php:267 -msgid "Filter" -msgstr "Filtro" - -#: ../../godmode/admin_access_logs.php:65 -#: ../../godmode/admin_access_logs.php:66 -#: ../../enterprise/extensions/translate_string.php:254 -#: ../../enterprise/extensions/translate_string.php:255 -#: ../../enterprise/godmode/agentes/collection_manager.php:44 -#: ../../enterprise/godmode/agentes/collections.php:217 -#: ../../enterprise/godmode/policies/policies.php:235 -#: ../../enterprise/godmode/policies/policy_collections.php:176 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:139 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:140 -msgid "Free text for search (*)" -msgstr "Búsqueda libre de texto" - -#: ../../godmode/admin_access_logs.php:67 -#: ../../godmode/admin_access_logs.php:68 -#: ../../godmode/events/event_edit_filter.php:281 -#: ../../mobile/operation/events.php:647 -#: ../../operation/events/events_list.php:642 -#: ../../enterprise/dashboard/widgets/events_list.php:38 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:33 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:33 -#: ../../enterprise/include/functions_events.php:163 -msgid "Max. hours old" -msgstr "Máx. horas de antiguedad" - -#: ../../godmode/admin_access_logs.php:303 -msgid "Export to CSV " -msgstr "Exportar a CSV " - -#: ../../godmode/agentes/agent_conf_gis.php:40 -#: ../../operation/agentes/gis_view.php:55 -msgid "" -"There is no default map. Please go to the setup for to set a default map." -msgstr "" -"No existe un mapa por defecto. Por favor, selecciona uno en la sección de " -"configuración" - -#: ../../godmode/agentes/agent_conf_gis.php:50 -#: ../../operation/agentes/gis_view.php:86 -msgid "" -"There is no GIS data for this agent, so it's positioned in default position " -"of map." -msgstr "" -"No hay datos de SIG para este agente, por lo que es colocado en posición por " -"defecto del mapa." - -#: ../../godmode/agentes/agent_conf_gis.php:53 -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:60 -msgid "Agent position" -msgstr "Posición del agente" - -#: ../../godmode/agentes/agent_conf_gis.php:66 -msgid "Latitude: " -msgstr "Latitud: " - -#: ../../godmode/agentes/agent_conf_gis.php:70 -msgid "Longitude: " -msgstr "Longitud: " - -#: ../../godmode/agentes/agent_conf_gis.php:74 -msgid "Altitude: " -msgstr "Altitud: " - -#: ../../godmode/agentes/agent_conf_gis.php:78 -#: ../../godmode/agentes/agent_manager.php:410 -#: ../../godmode/massive/massive_edit_agents.php:410 -msgid "Ignore new GIS data:" -msgstr "Ignorar nuevos datos GIS" - -#: ../../godmode/agentes/agent_incidents.php:67 -msgid "No incidents associated to this agent" -msgstr "No hay incidentes asociados a este agente" - -#: ../../godmode/agentes/agent_incidents.php:87 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:318 -#: ../../operation/incidents/incident.php:337 -#: ../../operation/incidents/incident_detail.php:244 -msgid "Incident" -msgstr "Incidente" - -#: ../../godmode/agentes/agent_incidents.php:88 -#: ../../godmode/alerts/alert_list.list.php:127 -#: ../../godmode/alerts/alert_templates.php:52 -#: ../../godmode/alerts/alert_view.php:102 -#: ../../godmode/alerts/configure_alert_template.php:770 -#: ../../godmode/snmpconsole/snmp_alert.php:941 -#: ../../godmode/snmpconsole/snmp_alert.php:1006 -#: ../../include/functions_events.php:2173 -#: ../../include/functions_reporting_html.php:2883 -#: ../../operation/agentes/estado_generalagente.php:407 -#: ../../operation/incidents/incident.php:246 -#: ../../operation/incidents/incident.php:338 -#: ../../operation/incidents/incident_detail.php:318 -#: ../../enterprise/godmode/alerts/alert_events.php:505 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:172 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:223 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:276 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:107 -msgid "Priority" -msgstr "Prioridad" - -#: ../../godmode/agentes/agent_incidents.php:90 -#: ../../godmode/servers/servers.build_table.php:72 -#: ../../operation/incidents/incident.php:340 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:221 -#: ../../enterprise/meta/advanced/servers.build_table.php:67 -msgid "Updated" -msgstr "Actualizado hace" - -#: ../../godmode/agentes/agent_incidents.php:91 -#: ../../godmode/events/custom_events.php:107 -#: ../../godmode/events/custom_events.php:165 -#: ../../godmode/massive/massive_copy_modules.php:108 -#: ../../godmode/reporting/reporting_builder.item_editor.php:881 -#: ../../include/functions_events.php:47 -#: ../../include/functions_events.php:2146 -#: ../../include/functions_events.php:2261 -#: ../../include/functions_events.php:3594 -#: ../../operation/agentes/pandora_networkmap.editor.php:194 -#: ../../operation/events/events.build_table.php:229 -#: ../../operation/incidents/incident.php:341 -#: ../../operation/incidents/incident_detail.php:289 -#: ../../enterprise/include/functions_log.php:349 -#: ../../enterprise/meta/advanced/policymanager.sync.php:291 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:332 -#: ../../enterprise/meta/advanced/synchronizing.component.php:310 -#: ../../enterprise/meta/advanced/synchronizing.group.php:147 -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:75 -#: ../../enterprise/meta/advanced/synchronizing.os.php:75 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:91 -#: ../../enterprise/meta/advanced/synchronizing.user.php:517 -#: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/operation/log/log_viewer.php:205 -msgid "Source" -msgstr "Origen" - -#: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/events/custom_events.php:113 -#: ../../godmode/events/custom_events.php:167 -#: ../../include/functions_events.php:49 -#: ../../include/functions_events.php:2353 -#: ../../include/functions_events.php:3552 -#: ../../mobile/operation/events.php:477 -#: ../../operation/events/events.build_table.php:179 -#: ../../operation/incidents/incident.php:342 -#: ../../operation/incidents/incident_detail.php:266 -#: ../../enterprise/meta/include/functions_events_meta.php:100 -msgid "Owner" -msgstr "Propietario" - -#: ../../godmode/agentes/agent_manager.php:155 -#: ../../godmode/agentes/modificar_agente.php:479 -#: ../../godmode/events/custom_events.php:74 -#: ../../godmode/events/custom_events.php:154 -#: ../../include/functions_treeview.php:555 -#: ../../include/functions_events.php:36 -#: ../../include/functions_events.php:908 -#: ../../include/functions_events.php:3536 -#: ../../include/functions_reporting_html.php:2078 -#: ../../mobile/operation/modules.php:495 -#: ../../mobile/operation/modules.php:753 -#: ../../operation/events/events.build_table.php:161 -#: ../../enterprise/include/functions_reporting_pdf.php:2314 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1071 -#: ../../enterprise/meta/include/functions_events_meta.php:61 -msgid "Agent name" -msgstr "Nombre del agente" - -#: ../../godmode/agentes/agent_manager.php:156 -msgid "The agent's name must be the same as the one defined at the console" -msgstr "El nombre del agente debe ser el mismo que el definido en la consola" - -#: ../../godmode/agentes/agent_manager.php:159 -msgid "QR Code Agent view" -msgstr "Código QR de la vista de agente" - -#: ../../godmode/agentes/agent_manager.php:166 -#: ../../operation/agentes/estado_agente.php:145 ../../operation/menu.php:54 -msgid "Agent detail" -msgstr "Detalle de agente" - -#: ../../godmode/agentes/agent_manager.php:193 -#: ../../enterprise/godmode/policies/policy_agents.php:428 -msgid "This agent can be remotely configured" -msgstr "Este agente puede ser configurado remotamente" - -#: ../../godmode/agentes/agent_manager.php:196 -msgid "You can remotely edit this agent configuration" -msgstr "Puede editar remotamente la configuración de este agente" - -#: ../../godmode/agentes/agent_manager.php:203 -msgid "Delete agent" -msgstr "Borrar agente" - -#: ../../godmode/agentes/agent_manager.php:205 -msgid "Alias" -msgstr "Alias" - -#: ../../godmode/agentes/agent_manager.php:208 -msgid "Use alias as name" -msgstr "Usar el alias como nombre" - -#: ../../godmode/agentes/agent_manager.php:211 -#: ../../godmode/servers/modificar_server.php:47 -#: ../../include/functions_treeview.php:575 -#: ../../include/functions_events.php:2028 -#: ../../include/functions_reporting_html.php:2255 -#: ../../include/functions_reporting_html.php:2298 -#: ../../operation/gis_maps/ajax.php:269 -#: ../../enterprise/include/functions_reporting_pdf.php:1844 -#: ../../enterprise/include/functions_reporting_pdf.php:1863 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1087 -#: ../../enterprise/meta/include/functions_wizard_meta.php:163 -#: ../../enterprise/meta/include/functions_wizard_meta.php:166 -#: ../../enterprise/meta/include/functions_wizard_meta.php:375 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1306 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1641 -msgid "IP Address" -msgstr "Dirección IP" - -#: ../../godmode/agentes/agent_manager.php:220 -#: ../../godmode/snmpconsole/snmp_alert.php:1331 -#: ../../operation/events/events.build_table.php:770 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:210 -msgid "Delete selected" -msgstr "Borrar seleccionado(s)" - -#: ../../godmode/agentes/agent_manager.php:238 -msgid "Only it is show when
    the agent is saved." -msgstr "Solo muestra cuando
    el agente es guardado." - -#: ../../godmode/agentes/agent_manager.php:250 -#: ../../godmode/agentes/planned_downtime.editor.php:712 -#: ../../godmode/agentes/planned_downtime.list.php:154 -#: ../../godmode/events/event_edit_filter.php:297 -#: ../../godmode/massive/massive_add_action_alerts.php:161 -#: ../../godmode/massive/massive_edit_agents.php:275 -#: ../../godmode/reporting/create_container.php:433 -#: ../../godmode/reporting/visual_console_builder.wizard.php:372 -#: ../../godmode/servers/manage_recontask.php:344 -#: ../../godmode/servers/manage_recontask_form.php:303 -#: ../../godmode/users/configure_user.php:788 -#: ../../include/ajax/visual_console_builder.ajax.php:703 -#: ../../include/functions_visual_map_editor.php:313 -#: ../../include/functions_visual_map_editor.php:698 -#: ../../include/functions_html.php:873 ../../include/functions_html.php:874 -#: ../../include/functions_html.php:875 ../../include/functions_html.php:876 -#: ../../include/functions_html.php:877 ../../include/functions_html.php:880 -#: ../../include/functions_html.php:881 ../../include/functions_html.php:882 -#: ../../include/functions_html.php:883 ../../include/functions_html.php:884 -#: ../../operation/events/events_list.php:505 -#: ../../enterprise/dashboard/widgets/events_list.php:31 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:156 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:159 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:207 -#: ../../enterprise/godmode/setup/setup_acl.php:205 -#: ../../enterprise/godmode/setup/setup_auth.php:66 -#: ../../enterprise/godmode/setup/setup_auth.php:383 -#: ../../enterprise/godmode/setup/setup_auth.php:475 -#: ../../enterprise/operation/services/services.list.php:176 -#: ../../enterprise/operation/services/services.list.php:193 -#: ../../enterprise/operation/services/services.table_services.php:145 -#: ../../enterprise/operation/services/services.table_services.php:162 -msgid "Any" -msgstr "Cualquier" - -#: ../../godmode/agentes/agent_manager.php:255 -#: ../../godmode/groups/configure_group.php:134 -#: ../../godmode/massive/massive_edit_agents.php:280 -#: ../../godmode/modules/manage_nc_groups_form.php:70 -#: ../../godmode/reporting/visual_console_builder.elements.php:81 -#: ../../include/functions_visual_map_editor.php:528 -#: ../../operation/agentes/estado_generalagente.php:278 -#: ../../operation/agentes/ver_agente.php:854 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1277 -msgid "Parent" -msgstr "Padre" - -#: ../../godmode/agentes/agent_manager.php:266 -#: ../../godmode/massive/massive_edit_agents.php:291 -msgid "Cascade protection" -msgstr "Protección en cascada" - -#: ../../godmode/agentes/agent_manager.php:276 -#: ../../godmode/agentes/module_manager.php:560 -#: ../../godmode/agentes/module_manager_editor_common.php:378 -#: ../../godmode/agentes/module_manager_editor_common.php:404 -#: ../../godmode/massive/massive_edit_agents.php:301 -#: ../../godmode/massive/massive_edit_modules.php:464 -#: ../../godmode/modules/manage_network_components_form_common.php:104 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:259 -#: ../../include/functions_treeview.php:85 -#: ../../include/functions_treeview.php:581 -#: ../../include/functions_reporting_html.php:2116 -#: ../../mobile/operation/modules.php:540 -#: ../../mobile/operation/modules.php:543 -#: ../../mobile/operation/modules.php:544 -#: ../../mobile/operation/modules.php:755 -#: ../../operation/agentes/estado_agente.php:512 -#: ../../operation/agentes/estado_generalagente.php:200 -#: ../../operation/agentes/status_monitor.php:966 -#: ../../operation/netflow/nf_live_view.php:245 -#: ../../operation/search_agents.php:46 ../../operation/search_agents.php:56 -#: ../../operation/search_modules.php:50 -#: ../../operation/servers/recon_view.php:92 -#: ../../enterprise/extensions/ipam/ipam_list.php:162 -#: ../../enterprise/extensions/ipam/ipam_network.php:125 -#: ../../enterprise/extensions/vmware/main.php:253 -#: ../../enterprise/godmode/agentes/inventory_manager.php:174 -#: ../../enterprise/godmode/agentes/inventory_manager.php:236 -#: ../../enterprise/godmode/modules/configure_local_component.php:223 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:188 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:244 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:80 -#: ../../enterprise/include/functions_reporting_pdf.php:2367 -#: ../../enterprise/meta/agentsearch.php:95 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1108 -#: ../../enterprise/meta/include/functions_wizard_meta.php:780 -#: ../../enterprise/meta/include/functions_wizard_meta.php:898 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1062 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1360 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1441 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1574 -msgid "Interval" -msgstr "Intervalo" - -#: ../../godmode/agentes/agent_manager.php:282 -#: ../../godmode/agentes/modificar_agente.php:487 -#: ../../godmode/agentes/planned_downtime.editor.php:754 -#: ../../godmode/massive/massive_edit_agents.php:305 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:298 -#: ../../include/functions_events.php:2033 -#: ../../include/functions_reporting_html.php:2080 -#: ../../mobile/operation/agents.php:73 ../../mobile/operation/agents.php:316 -#: ../../operation/agentes/estado_agente.php:507 -#: ../../operation/agentes/estado_generalagente.php:127 -#: ../../operation/gis_maps/ajax.php:276 ../../operation/search_agents.php:45 -#: ../../operation/search_agents.php:53 ../../operation/tree.php:55 -#: ../../operation/tree.php:94 -#: ../../enterprise/dashboard/widgets/tree_view.php:38 -#: ../../enterprise/extensions/ipam/ipam_network.php:538 -#: ../../enterprise/godmode/modules/configure_local_component.php:168 -#: ../../enterprise/godmode/modules/local_components.php:446 -#: ../../enterprise/godmode/modules/local_components.php:460 -#: ../../enterprise/godmode/modules/local_components.php:482 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:156 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:82 -#: ../../enterprise/meta/agentsearch.php:94 -msgid "OS" -msgstr "SO" - -#: ../../godmode/agentes/agent_manager.php:294 -#: ../../godmode/agentes/module_manager.php:554 -#: ../../godmode/massive/massive_edit_agents.php:316 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1226 -#: ../../include/functions_events.php:3515 -#: ../../operation/events/events.build_table.php:139 -#: ../../operation/events/events_list.php:512 -#: ../../operation/servers/recon_view.php:173 -#: ../../enterprise/extensions/csv_import/main.php:75 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1401 -#: ../../enterprise/include/functions_events.php:204 -#: ../../enterprise/meta/advanced/policymanager.queue.php:255 -#: ../../enterprise/meta/agentsearch.php:92 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1081 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1371 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1494 -#: ../../enterprise/meta/include/functions_wizard_meta.php:133 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1624 -msgid "Server" -msgstr "Servidor" - -#: ../../godmode/agentes/agent_manager.php:302 -#: ../../godmode/agentes/agent_manager.php:401 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:692 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:771 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:933 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:949 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:965 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:981 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:997 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1012 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1018 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:331 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:409 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:246 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:286 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:416 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:432 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:448 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:464 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:479 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:485 -#: ../../godmode/agentes/module_manager_editor_common.php:428 -#: ../../godmode/agentes/module_manager_editor_common.php:630 -#: ../../godmode/agentes/module_manager_editor_common.php:790 -#: ../../godmode/agentes/module_manager_editor_common.php:796 -#: ../../godmode/agentes/module_manager_editor_common.php:805 -#: ../../godmode/agentes/module_manager_editor_common.php:811 -#: ../../godmode/agentes/module_manager_editor_plugin.php:52 -#: ../../godmode/alerts/alert_list.list.php:611 -#: ../../godmode/alerts/configure_alert_action.php:131 -#: ../../godmode/alerts/configure_alert_template.php:588 -#: ../../godmode/events/custom_events.php:213 -#: ../../godmode/events/custom_events.php:224 -#: ../../godmode/events/event_edit_filter.php:422 -#: ../../godmode/gis_maps/configure_gis_map.php:414 -#: ../../godmode/groups/configure_group.php:197 -#: ../../godmode/massive/massive_add_action_alerts.php:288 -#: ../../godmode/massive/massive_add_alerts.php:193 -#: ../../godmode/massive/massive_add_tags.php:169 -#: ../../godmode/massive/massive_delete_alerts.php:243 -#: ../../godmode/massive/massive_delete_modules.php:490 -#: ../../godmode/massive/massive_delete_modules.php:564 -#: ../../godmode/massive/massive_delete_modules.php:609 -#: ../../godmode/massive/massive_delete_modules.php:610 -#: ../../godmode/massive/massive_delete_modules.php:611 -#: ../../godmode/massive/massive_delete_modules.php:612 -#: ../../godmode/massive/massive_delete_modules.php:679 -#: ../../godmode/massive/massive_delete_tags.php:226 -#: ../../godmode/massive/massive_delete_tags.php:253 -#: ../../godmode/massive/massive_delete_tags.php:289 -#: ../../godmode/massive/massive_edit_agents.php:315 -#: ../../godmode/massive/massive_edit_modules.php:319 -#: ../../godmode/massive/massive_edit_modules.php:538 -#: ../../godmode/massive/massive_edit_modules.php:570 -#: ../../godmode/massive/massive_edit_modules.php:631 -#: ../../godmode/massive/massive_edit_modules.php:690 -#: ../../godmode/massive/massive_edit_modules.php:775 -#: ../../godmode/massive/massive_edit_modules.php:776 -#: ../../godmode/massive/massive_edit_modules.php:777 -#: ../../godmode/massive/massive_edit_modules.php:778 -#: ../../godmode/massive/massive_edit_modules.php:973 -#: ../../godmode/massive/massive_edit_plugins.php:284 -#: ../../godmode/modules/manage_nc_groups_form.php:72 -#: ../../godmode/modules/manage_network_components_form.php:455 -#: ../../godmode/modules/manage_network_components_form.php:461 -#: ../../godmode/modules/manage_network_components_form.php:470 -#: ../../godmode/modules/manage_network_components_form.php:476 -#: ../../godmode/modules/manage_network_components_form_common.php:191 -#: ../../godmode/modules/manage_network_components_form_plugin.php:24 -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../godmode/reporting/create_container.php:365 -#: ../../godmode/reporting/graph_builder.graph_editor.php:135 -#: ../../godmode/reporting/graph_builder.graph_editor.php:194 -#: ../../godmode/reporting/graph_builder.graph_editor.php:214 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1077 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1105 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1146 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1156 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1181 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1474 -#: ../../godmode/reporting/visual_console_builder.elements.php:288 -#: ../../godmode/reporting/visual_console_builder.elements.php:429 -#: ../../godmode/reporting/visual_console_builder.wizard.php:199 -#: ../../godmode/reporting/visual_console_builder.wizard.php:296 -#: ../../godmode/reporting/visual_console_builder.wizard.php:304 -#: ../../godmode/reporting/visual_console_builder.wizard.php:326 -#: ../../godmode/reporting/visual_console_builder.wizard.php:335 -#: ../../godmode/reporting/visual_console_builder.wizard.php:374 -#: ../../godmode/reporting/visual_console_builder.wizard.php:571 -#: ../../godmode/reporting/visual_console_builder.wizard.php:581 -#: ../../godmode/reporting/visual_console_builder.wizard.php:613 -#: ../../godmode/servers/manage_recontask_form.php:277 -#: ../../godmode/setup/os.builder.php:40 -#: ../../godmode/setup/setup_visuals.php:315 -#: ../../godmode/snmpconsole/snmp_alert.php:27 -#: ../../godmode/snmpconsole/snmp_alert.php:1008 -#: ../../godmode/users/configure_user.php:548 -#: ../../godmode/users/configure_user.php:635 -#: ../../godmode/users/configure_user.php:640 -#: ../../godmode/users/configure_user.php:774 -#: ../../godmode/users/configure_user.php:778 -#: ../../godmode/users/configure_user.php:783 -#: ../../include/ajax/alert_list.ajax.php:150 -#: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/functions.php:909 -#: ../../include/functions_pandora_networkmap.php:267 -#: ../../include/functions_pandora_networkmap.php:753 -#: ../../include/functions_pandora_networkmap.php:1471 -#: ../../include/functions_pandora_networkmap.php:1474 -#: ../../include/functions_pandora_networkmap.php:1525 -#: ../../include/functions_pandora_networkmap.php:1529 -#: ../../include/functions_pandora_networkmap.php:1581 -#: ../../include/functions_pandora_networkmap.php:1586 -#: ../../include/functions_events.php:1698 -#: ../../include/functions_events.php:1705 -#: ../../include/functions_visual_map_editor.php:268 -#: ../../include/functions_visual_map_editor.php:353 -#: ../../include/functions_visual_map_editor.php:531 -#: ../../include/functions_html.php:317 ../../include/functions_html.php:480 -#: ../../mobile/operation/events.php:587 -#: ../../operation/agentes/pandora_networkmap.editor.php:204 -#: ../../operation/agentes/ver_agente.php:813 -#: ../../operation/agentes/ver_agente.php:856 -#: ../../operation/agentes/ver_agente.php:866 -#: ../../operation/events/events_list.php:347 -#: ../../operation/events/events_list.php:959 -#: ../../operation/netflow/nf_live_view.php:399 -#: ../../operation/snmpconsole/snmp_view.php:423 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:814 -#: ../../operation/users/user_edit.php:324 -#: ../../operation/users/user_edit.php:348 -#: ../../operation/users/user_edit.php:388 -#: ../../operation/users/user_edit.php:402 -#: ../../operation/users/user_edit.php:555 -#: ../../operation/users/user_edit.php:562 -#: ../../operation/users/user_edit.php:571 -#: ../../operation/users/user_edit.php:578 -#: ../../enterprise/dashboard/widgets/service_map.php:39 -#: ../../enterprise/dashboard/widgets/top_n.php:398 -#: ../../enterprise/dashboard/widgets/ux_transaction.php:68 -#: ../../enterprise/dashboard/widgets/ux_transaction.php:71 -#: ../../enterprise/extensions/ipam/ipam_network.php:635 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:427 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:558 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:654 -#: ../../enterprise/godmode/alerts/alert_events.php:468 -#: ../../enterprise/godmode/alerts/alert_events_list.php:595 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:98 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:117 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:97 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:116 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:128 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:27 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:174 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:306 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:384 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:459 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:460 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:461 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:462 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:511 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:90 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:135 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:89 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:133 -#: ../../enterprise/godmode/modules/configure_local_component.php:367 -#: ../../enterprise/godmode/modules/configure_local_component.php:507 -#: ../../enterprise/godmode/modules/configure_local_component.php:513 -#: ../../enterprise/godmode/modules/configure_local_component.php:521 -#: ../../enterprise/godmode/modules/configure_local_component.php:527 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:681 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:756 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:917 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:933 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:949 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:965 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:981 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:996 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1002 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:328 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:403 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:244 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:284 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:414 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:430 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:446 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:462 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:477 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:483 -#: ../../enterprise/godmode/policies/policy_agents.php:223 -#: ../../enterprise/godmode/policies/policy_agents.php:653 -#: ../../enterprise/godmode/policies/policy_alerts.php:459 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:273 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:141 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:347 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:366 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:377 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:392 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:424 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:59 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:336 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:353 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:369 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:409 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:467 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:500 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:509 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:528 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:666 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:730 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:745 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:755 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:769 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1745 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1832 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:252 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:699 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:720 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:735 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:745 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:755 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:759 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:786 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:75 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:580 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:596 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:617 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:626 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:986 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1014 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1033 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1060 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:75 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:274 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:282 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:292 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:314 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:332 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:365 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:395 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:416 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:436 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:461 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:480 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:500 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:158 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:196 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:208 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:218 -#: ../../enterprise/godmode/servers/manage_export_form.php:73 -#: ../../enterprise/godmode/setup/setup.php:374 -#: ../../enterprise/godmode/setup/setup.php:380 -#: ../../enterprise/godmode/setup/setup.php:388 -#: ../../enterprise/godmode/setup/setup.php:394 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:148 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:258 -#: ../../enterprise/meta/advanced/metasetup.setup.php:282 -#: ../../enterprise/meta/advanced/metasetup.setup.php:288 -#: ../../enterprise/meta/advanced/metasetup.setup.php:298 -#: ../../enterprise/meta/advanced/metasetup.setup.php:304 -#: ../../enterprise/meta/event/custom_events.php:211 -#: ../../enterprise/meta/event/custom_events.php:222 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:232 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:322 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:383 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:491 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:564 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:100 -#: ../../enterprise/operation/agentes/ver_agente.php:36 -msgid "None" -msgstr "Ninguno/a" - -#: ../../godmode/agentes/agent_manager.php:323 -#: ../../godmode/agentes/module_manager_editor_common.php:360 -#: ../../godmode/groups/configure_group.php:178 -#: ../../godmode/massive/massive_edit_agents.php:352 -msgid "Custom ID" -msgstr "ID Personalizado" - -#: ../../godmode/agentes/agent_manager.php:327 -#: ../../godmode/massive/massive_edit_agents.php:356 -msgid "Module definition" -msgstr "Definición de módulos" - -#: ../../godmode/agentes/agent_manager.php:329 -#: ../../godmode/massive/massive_edit_agents.php:358 -msgid "Learning mode" -msgstr "Modo de aprendizaje" - -#: ../../godmode/agentes/agent_manager.php:332 -#: ../../godmode/massive/massive_edit_agents.php:359 -msgid "Normal mode" -msgstr "Modo normal" - -#: ../../godmode/agentes/agent_manager.php:335 -msgid "Autodisable mode" -msgstr "Modo auto deshabilitado" - -#: ../../godmode/agentes/agent_manager.php:341 -#: ../../godmode/agentes/modificar_agente.php:564 -#: ../../godmode/agentes/module_manager_editor_common.php:172 -#: ../../godmode/agentes/module_manager_editor_common.php:470 -#: ../../godmode/alerts/alert_view.php:516 -#: ../../godmode/alerts/configure_alert_template.php:666 -#: ../../godmode/massive/massive_edit_agents.php:364 -#: ../../godmode/massive/massive_edit_modules.php:467 -#: ../../include/functions_reporting.php:3604 -#: ../../include/functions_treeview.php:74 -#: ../../include/functions_treeview.php:551 -#: ../../include/functions_groups.php:2158 -#: ../../include/functions_reporting_html.php:2095 -#: ../../mobile/operation/agent.php:124 ../../mobile/operation/alerts.php:40 -#: ../../operation/agentes/alerts_status.functions.php:76 -#: ../../operation/agentes/estado_generalagente.php:79 -#: ../../operation/agentes/estado_generalagente.php:294 -#: ../../operation/search_agents.php:91 -#: ../../enterprise/extensions/vmware/functions.php:20 -#: ../../enterprise/godmode/modules/configure_local_component.php:287 -#: ../../enterprise/godmode/setup/edit_skin.php:248 -#: ../../enterprise/include/functions_reporting_pdf.php:2347 -#: ../../enterprise/meta/agentsearch.php:160 -#: ../../enterprise/meta/agentsearch.php:168 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:408 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:680 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:890 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1073 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1364 -#: ../../enterprise/meta/include/functions_wizard_meta.php:179 -#: ../../enterprise/meta/include/functions_wizard_meta.php:411 -#: ../../enterprise/meta/include/functions_wizard_meta.php:480 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1009 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1370 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1460 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1645 -msgid "Disabled" -msgstr "Desactivado" - -#: ../../godmode/agentes/agent_manager.php:343 -#: ../../godmode/massive/massive_edit_agents.php:365 -msgid "Active" -msgstr "Activo" - -#: ../../godmode/agentes/agent_manager.php:347 -#: ../../godmode/agentes/configurar_agente.php:440 -#: ../../godmode/agentes/configurar_agente.php:552 -#: ../../godmode/massive/massive_edit_agents.php:368 -#: ../../godmode/servers/servers.build_table.php:165 -#: ../../operation/agentes/estado_generalagente.php:292 -#: ../../enterprise/godmode/policies/policy_agents.php:378 -msgid "Remote configuration" -msgstr "Configuración remota" - -#: ../../godmode/agentes/agent_manager.php:350 -#: ../../godmode/agentes/agent_manager.php:372 -#: ../../godmode/massive/massive_edit_agents.php:375 -msgid "Not available" -msgstr "No disponible" - -#: ../../godmode/agentes/agent_manager.php:363 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:207 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:163 -msgid "Delete remote configuration file" -msgstr "Borrar el archivo de configuración remota." - -#: ../../godmode/agentes/agent_manager.php:366 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:208 -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, debe reactivar la " -"configuración remota en el agente local." - -#: ../../godmode/agentes/agent_manager.php:381 -#: ../../godmode/massive/massive_edit_agents.php:401 -msgid "Agent icon" -msgstr "Icono de agente" - -#: ../../godmode/agentes/agent_manager.php:381 -msgid "Agent icon for GIS Maps." -msgstr "Icono de agente para mapas GIS." - -#: ../../godmode/agentes/agent_manager.php:419 -#: ../../include/functions_treeview.php:668 -#: ../../operation/agentes/estado_generalagente.php:329 -#: ../../operation/agentes/ver_agente.php:1035 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1144 -msgid "Url address" -msgstr "Dirección Url" - -#: ../../godmode/agentes/agent_manager.php:423 -#: ../../godmode/agentes/modificar_agente.php:543 -#: ../../godmode/agentes/module_manager.php:643 -#: ../../godmode/agentes/module_manager_editor_common.php:564 -#: ../../godmode/agentes/planned_downtime.editor.php:488 -#: ../../godmode/agentes/planned_downtime.list.php:427 -#: ../../godmode/massive/massive_edit_agents.php:416 -#: ../../godmode/massive/massive_edit_modules.php:607 -#: ../../include/ajax/module.php:879 ../../include/class/Tree.class.php:1796 -#: ../../mobile/operation/agent.php:129 -#: ../../operation/agentes/estado_agente.php:572 -#: ../../operation/agentes/estado_generalagente.php:82 -msgid "Quiet" -msgstr "Silencioso" - -#: ../../godmode/agentes/agent_manager.php:425 -#: ../../godmode/massive/massive_edit_agents.php:417 -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/agentes/agent_manager.php:428 -#: ../../godmode/agentes/module_manager_editor.php:515 -#: ../../godmode/massive/massive_add_action_alerts.php:181 -#: ../../godmode/massive/massive_edit_agents.php:422 -#: ../../include/functions_visual_map_editor.php:486 -#: ../../operation/events/events_list.php:654 -#: ../../enterprise/godmode/alerts/alert_events_list.php:597 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:276 -#: ../../enterprise/godmode/policies/policy_modules.php:341 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:147 -msgid "Advanced options" -msgstr "Opciones avanzadas" - -#: ../../godmode/agentes/agent_manager.php:448 -#: ../../godmode/massive/massive_edit_agents.php:446 -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" - -#: ../../godmode/agentes/agent_manager.php:450 -#: ../../godmode/massive/massive_edit_agents.php:448 -msgid "The format is: [url='url to navigate']'text to show'[/url]" -msgstr "El formato es: [url='url para navegar']'texto para mostrar'[/url]" - -#: ../../godmode/agentes/agent_manager.php:452 -#: ../../godmode/massive/massive_edit_agents.php:450 -msgid "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" -msgstr "e.g.: [url=pandorafms.org]Comunidad de Pandora FMS[/url]" - -#: ../../godmode/agentes/agent_manager.php:470 -#: ../../godmode/events/events.php:53 ../../godmode/events/events.php:58 -#: ../../godmode/events/events.php:69 -#: ../../godmode/massive/massive_edit_agents.php:465 ../../godmode/menu.php:36 -#: ../../include/functions_events.php:2048 -#: ../../operation/agentes/ver_agente.php:1046 -#: ../../enterprise/meta/event/custom_events.php:53 -#: ../../enterprise/meta/event/custom_events.php:58 -#: ../../enterprise/meta/event/custom_events.php:69 -#: ../../enterprise/meta/event/custom_events.php:83 -msgid "Custom fields" -msgstr "Campos personalizados" - -#: ../../godmode/agentes/agent_manager.php:495 -#: ../../godmode/agentes/configure_field.php:65 -#: ../../godmode/agentes/module_manager.php:136 -#: ../../godmode/agentes/module_manager_editor.php:540 -#: ../../godmode/agentes/planned_downtime.list.php:366 -#: ../../godmode/agentes/planned_downtime.list.php:516 -#: ../../godmode/alerts/alert_actions.php:403 -#: ../../godmode/alerts/alert_commands.php:377 -#: ../../godmode/alerts/alert_list.list.php:743 -#: ../../godmode/alerts/alert_list.php:329 -#: ../../godmode/alerts/alert_special_days.php:464 -#: ../../godmode/alerts/alert_special_days.php:482 -#: ../../godmode/alerts/alert_templates.php:364 -#: ../../godmode/alerts/configure_alert_action.php:227 -#: ../../godmode/alerts/configure_alert_command.php:202 -#: ../../godmode/alerts/configure_alert_special_days.php:106 -#: ../../godmode/category/edit_category.php:174 -#: ../../godmode/events/event_edit_filter.php:405 -#: ../../godmode/events/event_responses.editor.php:134 -#: ../../godmode/groups/configure_group.php:225 -#: ../../godmode/groups/configure_modu_group.php:87 -#: ../../godmode/massive/massive_add_profiles.php:117 -#: ../../godmode/modules/manage_nc_groups.php:245 -#: ../../godmode/modules/manage_nc_groups_form.php:84 -#: ../../godmode/modules/manage_network_components.php:645 -#: ../../godmode/modules/manage_network_components_form.php:279 -#: ../../godmode/modules/manage_network_templates.php:237 -#: ../../godmode/modules/manage_network_templates_form.php:159 -#: ../../godmode/netflow/nf_edit_form.php:244 -#: ../../godmode/reporting/create_container.php:236 -#: ../../godmode/reporting/graph_builder.main.php:186 -#: ../../godmode/reporting/map_builder.php:312 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1191 -#: ../../godmode/servers/manage_recontask.php:397 -#: ../../godmode/servers/plugin.php:542 -#: ../../godmode/servers/recon_script.php:220 ../../godmode/setup/gis.php:93 -#: ../../godmode/setup/links.php:117 ../../godmode/setup/news.php:204 -#: ../../godmode/setup/os.php:52 ../../godmode/setup/os.php:76 -#: ../../godmode/snmpconsole/snmp_alert.php:980 -#: ../../godmode/snmpconsole/snmp_alert.php:1339 -#: ../../godmode/snmpconsole/snmp_filters.php:108 -#: ../../godmode/snmpconsole/snmp_filters.php:156 -#: ../../godmode/tag/edit_tag.php:232 -#: ../../godmode/users/configure_user.php:680 -#: ../../godmode/users/profile_list.php:404 -#: ../../include/functions_visual_map_editor.php:473 -#: ../../include/functions_filemanager.php:617 -#: ../../include/functions_filemanager.php:654 -#: ../../operation/gis_maps/gis_map.php:182 -#: ../../operation/incidents/incident_detail.php:379 -#: ../../enterprise/extensions/backup/main.php:227 -#: ../../enterprise/extensions/cron/main.php:355 -#: ../../enterprise/extensions/ipam/ipam_editor.php:121 -#: ../../enterprise/extensions/ipam/ipam_list.php:257 -#: ../../enterprise/godmode/agentes/collections.agents.php:40 -#: ../../enterprise/godmode/agentes/collections.data.php:56 -#: ../../enterprise/godmode/agentes/collections.data.php:127 -#: ../../enterprise/godmode/agentes/collections.data.php:146 -#: ../../enterprise/godmode/agentes/collections.data.php:161 -#: ../../enterprise/godmode/agentes/collections.data.php:183 -#: ../../enterprise/godmode/agentes/collections.data.php:225 -#: ../../enterprise/godmode/agentes/collections.editor.php:117 -#: ../../enterprise/godmode/agentes/collections.php:287 -#: ../../enterprise/godmode/alerts/alert_events_list.php:671 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:511 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:220 -#: ../../enterprise/godmode/modules/configure_local_component.php:490 -#: ../../enterprise/godmode/modules/local_components.php:551 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:245 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 -#: ../../enterprise/godmode/policies/configure_policy.php:90 -#: ../../enterprise/godmode/policies/policies.php:478 -#: ../../enterprise/godmode/policies/policy_modules.php:369 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:232 -#: ../../enterprise/godmode/servers/manage_export.php:125 -#: ../../enterprise/godmode/servers/manage_export.php:157 -#: ../../enterprise/godmode/services/services.elements.php:426 -#: ../../enterprise/godmode/services/services.service.php:372 -#: ../../enterprise/godmode/setup/edit_skin.php:270 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:365 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:90 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1215 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1430 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:309 -msgid "Create" -msgstr "Crear" - -#: ../../godmode/agentes/agent_template.php:69 -msgid "Created by template " -msgstr "Creado mediante la plantilla " - -#: ../../godmode/agentes/agent_template.php:157 -msgid "Error adding modules" -msgstr "Error añadiendo módulos" - -#: ../../godmode/agentes/agent_template.php:159 -msgid "Error adding modules. The following errors already exists: " -msgstr "Error añadiendo módulos. Ocurrieron los siguientes errores: " - -#: ../../godmode/agentes/agent_template.php:162 -msgid "Modules successfully added" -msgstr "Módulos añadidos correctamente" - -#: ../../godmode/agentes/agent_template.php:189 -msgid "Assign" -msgstr "Asignar" - -#: ../../godmode/agentes/agent_template.php:228 -#: ../../godmode/alerts/alert_list.list.php:86 -#: ../../godmode/modules/manage_network_components.php:565 -#: ../../godmode/modules/manage_network_templates_form.php:198 -#: ../../include/ajax/module.php:741 ../../mobile/operation/modules.php:489 -#: ../../mobile/operation/modules.php:752 -#: ../../operation/agentes/status_monitor.php:332 -#: ../../operation/agentes/status_monitor.php:958 -#: ../../enterprise/include/functions_reporting_pdf.php:2361 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1361 -msgid "Module name" -msgstr "Nombre módulo" - -#: ../../godmode/agentes/agent_template.php:229 -#: ../../godmode/agentes/module_manager.php:131 -#: ../../godmode/agentes/module_manager.php:557 -#: ../../godmode/agentes/module_manager_editor_common.php:186 -#: ../../godmode/agentes/planned_downtime.editor.php:485 -#: ../../godmode/agentes/planned_downtime.list.php:394 -#: ../../godmode/alerts/alert_templates.php:38 -#: ../../godmode/alerts/alert_templates.php:254 -#: ../../godmode/alerts/alert_templates.php:302 -#: ../../godmode/events/event_responses.editor.php:115 -#: ../../godmode/modules/manage_network_components.php:566 -#: ../../godmode/modules/manage_network_components_form_common.php:69 -#: ../../godmode/modules/manage_network_templates_form.php:199 -#: ../../godmode/reporting/reporting_builder.item_editor.php:620 -#: ../../godmode/reporting/reporting_builder.list_items.php:169 -#: ../../godmode/reporting/reporting_builder.list_items.php:196 -#: ../../godmode/reporting/reporting_builder.list_items.php:289 -#: ../../godmode/reporting/visual_console_builder.wizard.php:111 -#: ../../godmode/reporting/visual_console_builder.wizard.php:216 -#: ../../godmode/servers/plugin.php:736 -#: ../../godmode/servers/servers.build_table.php:66 -#: ../../godmode/setup/gis_step_2.php:171 ../../godmode/setup/news.php:221 -#: ../../include/ajax/module.php:738 ../../include/functions_events.php:901 -#: ../../include/functions_events.php:2367 -#: ../../include/functions_visual_map_editor.php:400 -#: ../../include/functions_visual_map_editor.php:419 -#: ../../include/functions_reporting_html.php:809 -#: ../../include/functions_reporting_html.php:818 -#: ../../include/functions_reporting_html.php:1023 -#: ../../include/functions_reporting_html.php:1033 -#: ../../include/functions_reporting_html.php:1647 -#: ../../include/functions_reporting_html.php:2111 -#: ../../include/functions_reporting_html.php:3105 -#: ../../include/functions_snmp_browser.php:410 -#: ../../mobile/operation/events.php:352 ../../mobile/operation/events.php:353 -#: ../../mobile/operation/events.php:481 ../../mobile/operation/events.php:622 -#: ../../mobile/operation/events.php:623 -#: ../../mobile/operation/networkmaps.php:77 -#: ../../mobile/operation/networkmaps.php:78 -#: ../../mobile/operation/networkmaps.php:140 -#: ../../mobile/operation/networkmaps.php:141 -#: ../../mobile/operation/networkmaps.php:196 -#: ../../mobile/operation/visualmaps.php:61 -#: ../../mobile/operation/visualmaps.php:62 -#: ../../operation/agentes/ver_agente.php:806 -#: ../../operation/events/events.php:72 -#: ../../operation/events/sound_events.php:82 -#: ../../operation/netflow/nf_live_view.php:254 -#: ../../operation/search_modules.php:49 -#: ../../enterprise/godmode/modules/configure_local_component.php:184 -#: ../../enterprise/godmode/policies/policy_modules.php:1204 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:82 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1194 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:98 -#: ../../enterprise/godmode/services/services.elements.php:338 -#: ../../enterprise/include/functions_reporting_csv.php:1031 -#: ../../enterprise/include/functions_reporting_csv.php:1144 -#: ../../enterprise/include/functions_reporting_csv.php:1291 -#: ../../enterprise/include/functions_reporting_csv.php:1356 -#: ../../enterprise/include/functions_reporting_pdf.php:2362 -#: ../../enterprise/include/functions_services.php:1412 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:93 -#: ../../enterprise/operation/agentes/policy_view.php:306 -#: ../../enterprise/operation/agentes/ver_agente.php:30 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:159 -msgid "Type" -msgstr "Tipo" - -#: ../../godmode/agentes/agent_template.php:263 -#: ../../mobile/operation/modules.php:668 -msgid "No modules" -msgstr "Sin módulos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:60 -msgid "The SNMP remote plugin doesnt seem to be installed" -msgstr "El plugin remoto SNMP no parece estar instalado" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:60 -msgid "It is necessary to use some features" -msgstr "Necesita usar algunas características" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:60 -msgid "" -"Please, install the SNMP remote plugin (The name of the plugin must be " -"snmp_remote.pl)" -msgstr "" -"Por favor, instale el plugin remoto de SNMP (El nombre del plugin debe ser " -"snmp_remote.pl)" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:253 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:248 -msgid "Remote system doesnt support host SNMP information" -msgstr "Sistema remoto no soporta información del host SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:298 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:179 -msgid "No agent selected or the agent does not exist" -msgstr "No se ha seleccionado un agente o ese agente no existe." - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:338 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:330 -msgid "The number of bytes read from this device since boot" -msgstr "El número de bytes leídos desde este dispositivo desde el arranque" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:340 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:332 -msgid "The number of bytes written to this device since boot" -msgstr "El número de bytes escritos en este dispositivo desde el arranque" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:342 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:334 -msgid "The number of read accesses from this device since boot" -msgstr "" -"El número de lectura accesible desde este dispositivo desde el arranque" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:344 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:336 -msgid "The number of write accesses from this device since boot" -msgstr "" -"El número de escritura accesible desde este dispositivo desde el arranque" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:519 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:511 -#, php-format -msgid "Check if the process %s is running or not" -msgstr "Compruebe si el proceso %s se está ejecutando correctamente" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:590 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:582 -msgid "Disk use information" -msgstr "Información del disco en uso" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:661 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:651 -#, php-format -msgid "%s modules created succesfully" -msgstr "%s módulos creados correctamente" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:666 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:671 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:656 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:661 -#, php-format -msgid "Error creating %s modules" -msgstr "Error al crear %s módulos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:676 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:234 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:666 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:232 -#, php-format -msgid "%s modules already exist" -msgstr "%s módulos ya existen" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:685 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:675 -msgid "Modules created succesfully" -msgstr "Módulos creados con éxito" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:703 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:342 -#: ../../godmode/agentes/module_manager_editor_network.php:106 -#: ../../godmode/modules/manage_network_components_form_network.php:38 -#: ../../include/functions_config.php:715 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:692 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:339 -#: ../../enterprise/godmode/servers/manage_export_form.php:105 -#: ../../enterprise/godmode/setup/setup_history.php:56 -msgid "Port" -msgstr "Puerto" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:706 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:345 -msgid "Use agent ip" -msgstr "Usar ip del agente" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:714 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:353 -#: ../../godmode/agentes/module_manager_editor_network.php:119 -#: ../../godmode/modules/manage_network_components_form_network.php:50 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:700 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:347 -msgid "SNMP community" -msgstr "Comunidad SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:717 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:356 -#: ../../godmode/agentes/module_manager_editor_network.php:132 -#: ../../godmode/massive/massive_edit_modules.php:494 -#: ../../godmode/modules/manage_network_components_form_network.php:40 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:703 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:350 -msgid "SNMP version" -msgstr "Versión SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:731 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:369 -#: ../../godmode/agentes/module_manager_editor_network.php:216 -#: ../../godmode/massive/massive_edit_modules.php:497 -#: ../../godmode/modules/manage_network_components_form_network.php:57 -#: ../../include/functions_snmp_browser.php:530 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:716 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:363 -msgid "Auth user" -msgstr "Autenticación de usuario" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:733 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:371 -#: ../../godmode/agentes/module_manager_editor_network.php:219 -#: ../../godmode/massive/massive_edit_modules.php:500 -#: ../../godmode/modules/manage_network_components_form_network.php:59 -#: ../../include/functions_snmp_browser.php:532 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:718 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:365 -msgid "Auth password" -msgstr "Autenticación de contraseña" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:737 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:375 -#: ../../godmode/agentes/module_manager_editor_network.php:227 -#: ../../godmode/massive/massive_edit_modules.php:503 -#: ../../godmode/modules/manage_network_components_form_network.php:65 -#: ../../include/functions_snmp_browser.php:536 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:722 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:369 -msgid "Privacy method" -msgstr "Método de privacidad" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:738 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:376 -#: ../../godmode/agentes/module_manager_editor_network.php:228 -#: ../../godmode/massive/massive_edit_modules.php:504 -#: ../../godmode/modules/manage_network_components_form_network.php:66 -#: ../../include/functions_snmp_browser.php:537 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:723 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:370 -msgid "DES" -msgstr "DES" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:738 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:376 -#: ../../godmode/agentes/module_manager_editor_network.php:228 -#: ../../godmode/massive/massive_edit_modules.php:504 -#: ../../godmode/modules/manage_network_components_form_network.php:66 -#: ../../include/functions_snmp_browser.php:537 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:723 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:370 -msgid "AES" -msgstr "AES" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:739 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:377 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:724 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:371 -msgid "privacy pass" -msgstr "pase privado" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:742 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:380 -#: ../../godmode/agentes/module_manager_editor_network.php:237 -#: ../../godmode/massive/massive_edit_modules.php:507 -#: ../../godmode/modules/manage_network_components_form_network.php:72 -#: ../../include/functions_snmp_browser.php:541 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:727 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:374 -msgid "Auth method" -msgstr "método de autenticación" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:743 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:381 -#: ../../godmode/agentes/module_manager_editor_network.php:238 -#: ../../godmode/massive/massive_edit_modules.php:508 -#: ../../godmode/modules/manage_network_components_form_network.php:73 -#: ../../include/functions_snmp_browser.php:542 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:728 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:375 -msgid "MD5" -msgstr "MD5" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:743 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:381 -#: ../../godmode/agentes/module_manager_editor_network.php:238 -#: ../../godmode/massive/massive_edit_modules.php:508 -#: ../../godmode/modules/manage_network_components_form_network.php:73 -#: ../../include/functions_snmp_browser.php:542 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:728 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:375 -msgid "SHA" -msgstr "SHA" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:744 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:382 -#: ../../godmode/agentes/module_manager_editor_network.php:239 -#: ../../godmode/massive/massive_edit_modules.php:509 -#: ../../godmode/modules/manage_network_components_form_network.php:74 -#: ../../include/functions_snmp_browser.php:543 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:729 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:376 -msgid "Security level" -msgstr "Nivel de seguridad" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:745 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:383 -#: ../../godmode/agentes/module_manager_editor_network.php:240 -#: ../../godmode/massive/massive_edit_modules.php:510 -#: ../../godmode/modules/manage_network_components_form_network.php:75 -#: ../../include/functions_snmp_browser.php:544 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:730 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:377 -msgid "Not auth and not privacy method" -msgstr "método sin autenticación ni privacidad" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:746 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:384 -#: ../../godmode/agentes/module_manager_editor_network.php:241 -#: ../../godmode/massive/massive_edit_modules.php:511 -#: ../../godmode/modules/manage_network_components_form_network.php:76 -#: ../../include/functions_snmp_browser.php:545 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:731 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:378 -msgid "Auth and not privacy method" -msgstr "metodo con autenticacion y sin privacidad" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:746 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:384 -#: ../../godmode/agentes/module_manager_editor_network.php:241 -#: ../../godmode/massive/massive_edit_modules.php:511 -#: ../../godmode/modules/manage_network_components_form_network.php:76 -#: ../../include/functions_snmp_browser.php:545 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:731 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:378 -msgid "Auth and privacy method" -msgstr "metodo de autenticación y privacidad" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:759 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:397 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:744 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:391 -msgid "SNMP Walk" -msgstr "Exploración SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 -#: ../../operation/tree.php:264 -#: ../../enterprise/dashboard/widgets/tree_view.php:188 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:748 -#: ../../enterprise/include/functions_inventory.php:166 -msgid "No data found" -msgstr "No se encontraron datos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:748 -msgid "" -"If the device is a network device, try with the SNMP Interfaces wizard" -msgstr "" -"Si el dispositivo es un dispositivo de red, pruebe con el Wizard de interfaz " -"SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:792 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:776 -msgid "Devices" -msgstr "Dispositivos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:793 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:301 -#: ../../operation/agentes/ver_agente.php:1106 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:777 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:299 -msgid "Processes" -msgstr "Procesos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:794 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:302 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:778 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:300 -msgid "Free space on disk" -msgstr "Espacio libre en disco" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:795 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:779 -msgid "Temperature sensors" -msgstr "Sensores de temperatura" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:796 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:780 -msgid "Other SNMP data" -msgstr "Otros datos SNMP" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:305 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:782 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:303 -msgid "Wizard mode" -msgstr "Modo wizard" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:817 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:822 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:801 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:806 -msgid "SNMP remote plugin is necessary for this feature" -msgstr "Se necesita el plugin remoto SNMP para esta funcionalidad" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:854 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:856 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:858 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:860 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:863 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:348 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:350 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:352 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:354 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:838 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:840 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:842 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:844 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:847 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:346 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:348 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:350 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:352 -msgid "Add to modules list" -msgstr "Añadir a lista de módulos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:865 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:358 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:849 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:356 -msgid "Remove from modules list" -msgstr "Eliminar de la lista de módulos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:875 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:447 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:369 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:859 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:440 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:367 -msgid "Create modules" -msgstr "Crear módulos" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:932 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:916 -msgid "Device" -msgstr "Dispositivo" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:938 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:954 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:970 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:986 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1002 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:421 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:437 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:453 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:469 -#: ../../godmode/events/event_edit_filter.php:301 -#: ../../include/functions_events.php:2372 -#: ../../mobile/operation/events.php:485 -#: ../../operation/events/events_list.php:644 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:922 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:938 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:954 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:970 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:986 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:419 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:435 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:451 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:467 -#: ../../enterprise/include/functions_events.php:149 -msgid "Repeated" -msgstr "Repetido" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:948 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:431 -#: ../../godmode/reporting/visual_console_builder.wizard.php:193 -#: ../../include/functions_visual_map_editor.php:348 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:932 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:429 -msgid "Process" -msgstr "Procesar" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:980 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:964 -msgid "Temperature" -msgstr "Temperatura" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1027 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:491 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1011 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:489 -msgid "Modules list is empty" -msgstr "La lista de módulos está vacía." - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:174 -#: ../../godmode/massive/massive_add_action_alerts.php:116 -#: ../../godmode/massive/massive_add_tags.php:38 -#: ../../godmode/massive/massive_delete_action_alerts.php:119 -#: ../../godmode/massive/massive_delete_tags.php:102 -#: ../../godmode/massive/massive_edit_modules.php:1079 -#: ../../godmode/reporting/visual_console_builder.php:486 -#: ../../include/functions_visual_map.php:1751 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:562 -#: ../../enterprise/include/functions_massive.php:15 -msgid "No modules selected" -msgstr "No se han seleccionado módulos" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:286 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:283 -msgid "Successfully modules created" -msgstr "Módulos creados con éxito." - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:290 -#: ../../godmode/agentes/configurar_agente.php:265 -#: ../../godmode/agentes/configurar_agente.php:616 -#: ../../godmode/agentes/planned_downtime.editor.php:356 -#: ../../godmode/alerts/alert_actions.php:185 -#: ../../godmode/alerts/alert_commands.php:294 -#: ../../godmode/alerts/alert_list.php:104 -#: ../../godmode/alerts/alert_special_days.php:149 -#: ../../godmode/alerts/configure_alert_template.php:122 -#: ../../godmode/alerts/configure_alert_template.php:435 -#: ../../godmode/modules/manage_nc_groups.php:74 -#: ../../godmode/modules/manage_network_components.php:162 -#: ../../godmode/modules/manage_network_components.php:256 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2436 -#: ../../godmode/setup/gis.php:47 ../../godmode/setup/news.php:57 -#: ../../godmode/users/configure_user.php:257 -#: ../../include/functions_planned_downtimes.php:110 -#: ../../include/functions_planned_downtimes.php:727 -#: ../../operation/agentes/pandora_networkmap.php:153 -#: ../../enterprise/extensions/ipam/ipam_action.php:92 -#: ../../enterprise/extensions/ipam/ipam_action.php:100 -#: ../../enterprise/godmode/alerts/alert_events.php:350 -#: ../../enterprise/godmode/modules/local_components.php:107 -#: ../../enterprise/godmode/modules/local_components.php:247 -#: ../../enterprise/godmode/policies/policies.php:128 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:287 -#: ../../enterprise/godmode/policies/policy_alerts.php:148 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:74 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:36 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:87 -#: ../../enterprise/godmode/servers/manage_export.php:105 -#: ../../enterprise/godmode/servers/manage_export.php:114 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:108 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:216 -#: ../../enterprise/operation/agentes/transactional_map.php:87 -msgid "Could not be created" -msgstr "No se ha podido crear" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:296 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:293 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1855 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1955 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2428 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2544 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2633 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2844 -msgid "Another module already exists with the same name" -msgstr "Ya existe otro módulo con el mismo nombre" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:299 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:296 -msgid "Some required fields are missed" -msgstr "Faltan campos necesarios por rellenar" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:299 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:296 -msgid "name" -msgstr "nombre" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:304 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:301 -msgid "Processing error" -msgstr "Error de procesamiento" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:401 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:395 -msgid "Unable to do SNMP walk" -msgstr "No se pudo realizar el SNMP walk" - -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:435 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:428 -msgid "Interfaces" -msgstr "Interfaces" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:111 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:110 -#, php-format -msgid "Free space on %s" -msgstr "Espacio libre en %s" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:204 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:202 -#, php-format -msgid "%s service modules created succesfully" -msgstr "%s modulos de servicio creados correctamente" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:207 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:205 -#, php-format -msgid "Error creating %s service modules" -msgstr "Error creando %s modulos de servicio" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:212 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:210 -#, php-format -msgid "%s process modules created succesfully" -msgstr "%s módulos de proceso creados correctamente" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:215 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:213 -#, php-format -msgid "Error creating %s process modules" -msgstr "Error al crear %s módulos de proceso" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:220 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:218 -#, php-format -msgid "%s disk space modules created succesfully" -msgstr "%s módulos de espacio en disco creados correctamente" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:223 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:221 -#, php-format -msgid "Error creating %s disk space modules" -msgstr "Error creando %s modulos de espacio en disco" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:228 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:226 -#, php-format -msgid "%s modules created from components succesfully" -msgstr "%s módulos creados correctamente desde los componentes" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:231 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:229 -#, php-format -msgid "Error creating %s modules from components" -msgstr "Error al crear %s módulos desde los componentes" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:257 -#: ../../godmode/agentes/module_manager_editor_wmi.php:47 -#: ../../godmode/modules/manage_network_components_form_wmi.php:42 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:255 -msgid "Namespace" -msgstr "Espacio de nombres" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:261 -#: ../../godmode/agentes/module_manager_editor_wmi.php:54 -#: ../../godmode/massive/massive_edit_modules.php:526 -#: ../../godmode/modules/manage_network_components_form_wmi.php:48 -#: ../../enterprise/godmode/agentes/inventory_manager.php:188 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:259 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:201 -msgid "Username" -msgstr "Usuario" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:274 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:272 -msgid "WMI Explore" -msgstr "Explorador WMI" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:278 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:276 -msgid "Unable to do WMI explorer" -msgstr "Imposible lanzar el Explorador WMI" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:303 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:301 -msgid "WMI components" -msgstr "Componentes WMI" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:316 -#: ../../godmode/agentes/planned_downtime.editor.php:706 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:314 -msgid "Filter by group" -msgstr "Filtrar por grupo" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:336 -#: ../../godmode/agentes/module_manager_editor_common.php:81 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:60 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:334 -msgid "No component was found" -msgstr "No se encontró ningún componente" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:415 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1547 -#: ../../enterprise/dashboard/widgets/service_map.php:46 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:22 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:413 -#: ../../enterprise/godmode/services/services.elements.php:336 -#: ../../enterprise/godmode/services/services.elements.php:377 -#: ../../enterprise/include/functions_reporting.php:4808 -#: ../../enterprise/include/functions_reporting.php:5109 -#: ../../enterprise/include/functions_reporting_pdf.php:2039 -#: ../../enterprise/include/functions_services.php:1458 -#: ../../enterprise/include/functions_visual_map.php:496 -#: ../../enterprise/include/functions_visual_map_editor.php:17 -#: ../../enterprise/include/functions_visual_map_editor.php:24 -#: ../../enterprise/include/functions_visual_map_editor.php:47 -msgid "Service" -msgstr "Servicio" - -#: ../../godmode/agentes/configurar_agente.php:186 -#: ../../godmode/agentes/configurar_agente.php:731 -msgid "No agent alias specified" -msgstr "No se ha especificado el alias del agente" - -#: ../../godmode/agentes/configurar_agente.php:267 -msgid "Could not be created, because name already exists" -msgstr "No se pudo crear, el nombre ya existe" - -#: ../../godmode/agentes/configurar_agente.php:280 -#: ../../godmode/agentes/modificar_agente.php:52 -#: ../../godmode/agentes/modificar_agente.php:584 -#: ../../godmode/reporting/visual_console_builder.php:687 -#: ../../godmode/servers/manage_recontask.php:32 -#: ../../godmode/setup/setup_visuals.php:165 -#: ../../godmode/setup/setup_visuals.php:185 -#: ../../godmode/setup/setup_visuals.php:204 -#: ../../godmode/setup/setup_visuals.php:220 -#: ../../godmode/setup/setup_visuals.php:231 -#: ../../godmode/setup/setup_visuals.php:318 -#: ../../operation/agentes/estado_agente.php:578 -#: ../../operation/visual_console/pure_ajax.php:130 -#: ../../operation/visual_console/render_view.php:133 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:79 -#: ../../enterprise/meta/screens/screens.visualmap.php:149 -#: ../../enterprise/meta/screens/screens.visualmap.php:165 -#: ../../enterprise/operation/agentes/policy_view.php:51 -msgid "View" -msgstr "Vista" - -#: ../../godmode/agentes/configurar_agente.php:292 -#: ../../godmode/agentes/configurar_agente.php:519 ../../godmode/menu.php:231 -#: ../../godmode/menu.php:238 ../../operation/agentes/estado_agente.php:135 -#: ../../operation/gis_maps/render_view.php:119 -#: ../../enterprise/godmode/policies/configure_policy.php:38 -#: ../../enterprise/include/functions_policies.php:3203 -msgid "Setup" -msgstr "Configuración" - -#: ../../godmode/agentes/configurar_agente.php:321 ../../godmode/menu.php:101 -msgid "Module templates" -msgstr "Plantillas de módulos" - -#: ../../godmode/agentes/configurar_agente.php:373 -#: ../../operation/agentes/ver_agente.php:1008 -msgid "GIS data" -msgstr "Datos GIS" - -#: ../../godmode/agentes/configurar_agente.php:384 -#: ../../enterprise/godmode/policies/policy.php:58 -#: ../../enterprise/include/functions_policies.php:3221 -msgid "Agent wizard" -msgstr "Wizard de agente" - -#: ../../godmode/agentes/configurar_agente.php:391 -#: ../../godmode/agentes/configurar_agente.php:557 -#: ../../godmode/setup/snmp_wizard.php:30 -#: ../../enterprise/include/functions_policies.php:3228 -msgid "SNMP Wizard" -msgstr "Wizard SNMP" - -#: ../../godmode/agentes/configurar_agente.php:396 -#: ../../godmode/agentes/configurar_agente.php:560 -#: ../../enterprise/include/functions_policies.php:3233 -msgid "SNMP Interfaces wizard" -msgstr "Wizard de interfaces SNMP" - -#: ../../godmode/agentes/configurar_agente.php:401 -#: ../../godmode/agentes/configurar_agente.php:563 -#: ../../enterprise/include/functions_policies.php:3238 -msgid "WMI Wizard" -msgstr "Wizard WMI" - -#: ../../godmode/agentes/configurar_agente.php:522 -#: ../../enterprise/godmode/agentes/collections.php:229 -#: ../../enterprise/include/functions_groups.php:75 -#: ../../enterprise/operation/agentes/ver_agente.php:190 -msgid "Collection" -msgstr "Colección" - -#: ../../godmode/agentes/configurar_agente.php:526 -#: ../../include/functions_reporting.php:1590 -#: ../../include/functions_reports.php:628 -#: ../../include/functions_reports.php:629 -#: ../../include/functions_reports.php:631 -#: ../../enterprise/godmode/agentes/configurar_agente.php:33 -#: ../../enterprise/include/functions_reporting_csv.php:305 -#: ../../enterprise/operation/agentes/ver_agente.php:174 -#: ../../enterprise/operation/inventory/inventory.php:112 -#: ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:24 -msgid "Inventory" -msgstr "Inventario" - -#: ../../godmode/agentes/configurar_agente.php:530 -#: ../../enterprise/godmode/agentes/configurar_agente.php:49 -#: ../../enterprise/godmode/policies/policy.php:54 -#: ../../enterprise/include/functions_policies.php:3316 -msgid "Agent plugins" -msgstr "Plugins del agente" - -#: ../../godmode/agentes/configurar_agente.php:537 -#: ../../godmode/events/custom_events.php:95 -#: ../../godmode/events/custom_events.php:161 -#: ../../include/functions_events.php:43 -#: ../../include/functions_events.php:991 -#: ../../include/functions_events.php:3573 -#: ../../operation/agentes/estado_monitores.php:449 -#: ../../operation/events/events.build_table.php:204 -#: ../../operation/events/events_rss.php:185 -#: ../../operation/snmpconsole/snmp_view.php:382 -#: ../../operation/snmpconsole/snmp_view.php:627 -#: ../../operation/snmpconsole/snmp_view.php:921 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:169 -#: ../../enterprise/meta/include/functions_events_meta.php:82 -msgid "Alert" -msgstr "Alerta" - -#: ../../godmode/agentes/configurar_agente.php:541 ../../godmode/menu.php:151 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:140 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:251 -#: ../../enterprise/include/functions_reporting.php:82 -#: ../../enterprise/include/functions_reporting.php:6554 -#: ../../enterprise/include/functions_reporting.php:6578 -#: ../../enterprise/include/functions_reporting.php:6632 -#: ../../enterprise/meta/include/functions_alerts_meta.php:107 -#: ../../enterprise/meta/include/functions_alerts_meta.php:125 -msgid "Templates" -msgstr "Plantillas" - -#: ../../godmode/agentes/configurar_agente.php:545 -msgid "Gis" -msgstr "Gis" - -#: ../../godmode/agentes/configurar_agente.php:571 -msgid "SNMP explorer" -msgstr "Explorador SNMP" - -#: ../../godmode/agentes/configurar_agente.php:586 -msgid "Agent manager" -msgstr "Administrador de agente" - -#: ../../godmode/agentes/configurar_agente.php:609 -#: ../../godmode/servers/modificar_server.php:135 -msgid "Conf file deleted successfully" -msgstr "Archivo conf borrado con éxito" - -#: ../../godmode/agentes/configurar_agente.php:610 -#: ../../godmode/servers/modificar_server.php:136 -msgid "Could not delete conf file" -msgstr "No se puede borrar el archivo conf" - -#: ../../godmode/agentes/configurar_agente.php:620 -#: ../../godmode/agentes/planned_downtime.editor.php:365 -#: ../../godmode/alerts/alert_actions.php:184 -#: ../../godmode/alerts/alert_commands.php:293 -#: ../../godmode/alerts/alert_list.php:104 -#: ../../godmode/alerts/alert_special_days.php:148 -#: ../../godmode/alerts/configure_alert_template.php:434 -#: ../../godmode/modules/manage_nc_groups.php:73 -#: ../../godmode/setup/gis.php:45 ../../godmode/setup/links.php:41 -#: ../../godmode/setup/news.php:56 -#: ../../godmode/snmpconsole/snmp_alert.php:247 -#: ../../godmode/snmpconsole/snmp_filters.php:66 -#: ../../godmode/users/configure_user.php:256 -#: ../../godmode/users/profile_list.php:241 -#: ../../include/functions_planned_downtimes.php:113 -#: ../../include/functions_planned_downtimes.php:731 -#: ../../enterprise/extensions/cron/main.php:83 -#: ../../enterprise/extensions/cron/main.php:142 -#: ../../enterprise/extensions/ipam/ipam_action.php:96 -#: ../../enterprise/godmode/alerts/alert_events.php:350 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:35 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:86 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:129 -#: ../../enterprise/godmode/servers/manage_export.php:105 -#: ../../enterprise/godmode/servers/manage_export.php:114 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:107 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:215 -#: ../../enterprise/operation/agentes/transactional_map.php:86 -msgid "Successfully created" -msgstr "Creado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:646 -#: ../../godmode/agentes/configurar_agente.php:651 -msgid "No data to normalize" -msgstr "No hay datos para normalizar" - -#: ../../godmode/agentes/configurar_agente.php:655 -#, php-format -msgid "Deleted data above %f" -msgstr "Eliminar datos por encima de %f" - -#: ../../godmode/agentes/configurar_agente.php:656 -#, php-format -msgid "Error normalizing module %s" -msgstr "Error al normalizar el módulo %s" - -#: ../../godmode/agentes/configurar_agente.php:780 -msgid "There was a problem updating the agent" -msgstr "Hubo un problema al actualizar el agente" - -#: ../../godmode/agentes/configurar_agente.php:802 -#: ../../godmode/agentes/planned_downtime.editor.php:368 -#: ../../godmode/alerts/alert_actions.php:262 -#: ../../godmode/alerts/alert_list.php:196 -#: ../../godmode/alerts/alert_special_days.php:206 -#: ../../godmode/alerts/alert_templates.php:152 -#: ../../godmode/alerts/configure_alert_command.php:93 -#: ../../godmode/alerts/configure_alert_template.php:447 -#: ../../godmode/events/event_edit_filter.php:173 -#: ../../godmode/massive/massive_edit_modules.php:152 -#: ../../godmode/modules/manage_nc_groups.php:98 -#: ../../godmode/netflow/nf_edit_form.php:131 ../../godmode/setup/gis.php:39 -#: ../../godmode/setup/links.php:58 ../../godmode/setup/news.php:87 -#: ../../godmode/snmpconsole/snmp_alert.php:318 -#: ../../godmode/snmpconsole/snmp_filters.php:54 -#: ../../godmode/users/profile_list.php:223 -#: ../../include/functions_planned_downtimes.php:125 -#: ../../operation/incidents/incident.php:110 -#: ../../operation/snmpconsole/snmp_view.php:114 -#: ../../enterprise/extensions/ipam/ipam_action.php:131 -#: ../../enterprise/extensions/ipam/ipam_massive.php:41 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:98 -#: ../../enterprise/godmode/alerts/alert_events.php:374 -#: ../../enterprise/godmode/alerts/alert_events_list.php:94 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:158 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:104 -#: ../../enterprise/godmode/policies/policy_modules.php:1038 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:66 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:51 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:120 -#: ../../enterprise/operation/agentes/transactional_map.php:117 -msgid "Successfully updated" -msgstr "Actualizado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:824 -msgid "There was a problem loading the agent" -msgstr "Hubo un problema al cargar el agente" - -#: ../../godmode/agentes/configurar_agente.php:1225 -msgid "" -"There was a problem updating module. Another module already exists with the " -"same name." -msgstr "" -"Hubo un problema al actualizar el módulo. Existe ya otro módulo con el mismo " -"nombre." - -#: ../../godmode/agentes/configurar_agente.php:1228 -msgid "" -"There was a problem updating module. Some required fields are missed: (name)" -msgstr "" -"Hubo un problema actualizando el módulo. Faltan algunos campos " -"requeridos:(nombre)" - -#: ../../godmode/agentes/configurar_agente.php:1231 -msgid "There was a problem updating module. \"No change\"" -msgstr "Hubo un problema al actualizar el módulo. \"Sin cambio\"" - -#: ../../godmode/agentes/configurar_agente.php:1236 -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:1256 -msgid "Module successfully updated" -msgstr "Módulo actualizado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:1365 -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. Existe ya otro módulo con el mismo " -"nombre." - -#: ../../godmode/agentes/configurar_agente.php:1368 -msgid "" -"There was a problem adding module. Some required fields are missed : (name)" -msgstr "" -"Hubo un problema al añadir el módulo.Algunos campos requeridos faltan " -":(nombre)" - -#: ../../godmode/agentes/configurar_agente.php:1373 -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:1391 -#: ../../godmode/reporting/graph_builder.php:258 -msgid "Module added successfully" -msgstr "Módulo añadido correctamente" - -#: ../../godmode/agentes/configurar_agente.php:1509 -msgid "There was a problem deleting the module" -msgstr "Hubo un problema al borrar el módulo" - -#: ../../godmode/agentes/configurar_agente.php:1512 -msgid "Module deleted succesfully" -msgstr "Módulo borrado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:1526 -#: ../../enterprise/godmode/policies/policy_modules.php:1143 -#, php-format -msgid "copy of %s" -msgstr "copia de %s" - -#: ../../godmode/agentes/configurar_agente.php:1536 -#: ../../enterprise/godmode/policies/policy_modules.php:1155 -#, php-format -msgid "copy of %s (%d)" -msgstr "copia de %s (%d)" - -#: ../../godmode/agentes/configurar_agente.php:1569 -#: ../../godmode/agentes/modificar_agente.php:117 -#: ../../godmode/alerts/alert_list.php:230 -#: ../../godmode/massive/massive_enable_disable_alerts.php:78 -#: ../../godmode/users/user_list.php:208 -#: ../../include/ajax/alert_list.ajax.php:80 -#: ../../enterprise/godmode/alerts/alert_events_list.php:221 -#: ../../enterprise/godmode/policies/policy_alerts.php:88 -#: ../../enterprise/godmode/policies/policy_modules.php:422 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:123 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:237 -msgid "Successfully enabled" -msgstr "Activado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:1569 -#: ../../godmode/agentes/modificar_agente.php:117 -#: ../../godmode/alerts/alert_list.php:230 -#: ../../godmode/massive/massive_enable_disable_alerts.php:78 -#: ../../include/ajax/alert_list.ajax.php:82 -#: ../../enterprise/godmode/alerts/alert_events_list.php:222 -#: ../../enterprise/godmode/policies/policy_alerts.php:88 -#: ../../enterprise/godmode/policies/policy_modules.php:422 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:124 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:238 -msgid "Could not be enabled" -msgstr "No se pudo activar" - -#: ../../godmode/agentes/configurar_agente.php:1584 -#: ../../godmode/agentes/modificar_agente.php:137 -#: ../../godmode/alerts/alert_list.php:247 -#: ../../godmode/massive/massive_enable_disable_alerts.php:96 -#: ../../godmode/users/user_list.php:203 -#: ../../include/ajax/alert_list.ajax.php:91 -#: ../../enterprise/godmode/alerts/alert_events_list.php:238 -#: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../enterprise/godmode/policies/policy_modules.php:436 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:129 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:248 -msgid "Successfully disabled" -msgstr "Desactivado correctamente" - -#: ../../godmode/agentes/configurar_agente.php:1584 -#: ../../godmode/agentes/modificar_agente.php:137 -#: ../../godmode/alerts/alert_list.php:247 -#: ../../godmode/massive/massive_enable_disable_alerts.php:96 -#: ../../include/ajax/alert_list.ajax.php:93 -#: ../../enterprise/godmode/alerts/alert_events_list.php:239 -#: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../enterprise/godmode/policies/policy_modules.php:436 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:130 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:249 -msgid "Could not be disabled" -msgstr "No se pudo desactivar" - -#: ../../godmode/agentes/configurar_agente.php:1612 -#: ../../include/functions_api.php:7659 -msgid "Save by Pandora Console" -msgstr "Guardado por la consola de Pandora" - -#: ../../godmode/agentes/configurar_agente.php:1627 -#: ../../include/functions_api.php:7660 -msgid "Update by Pandora Console" -msgstr "Actualizado por la consola de Pandora" - -#: ../../godmode/agentes/configurar_agente.php:1640 -#: ../../include/functions_api.php:7661 -msgid "Insert by Pandora Console" -msgstr "Insertado por la consola de Pandora" - -#: ../../godmode/agentes/configurar_agente.php:1694 -#: ../../godmode/agentes/configurar_agente.php:1704 -msgid "Invalid tab specified" -msgstr "La solapa no es válida" - -#: ../../godmode/agentes/configure_field.php:36 -msgid "Update agent custom field" -msgstr "Actualizar campo personalizado" - -#: ../../godmode/agentes/configure_field.php:39 -msgid "Create agent custom field" -msgstr "Crear campo personalizado" - -#: ../../godmode/agentes/configure_field.php:51 -#: ../../godmode/agentes/fields_manager.php:96 -#: ../../operation/agentes/custom_fields.php:61 -msgid "Display on front" -msgstr "Mostrar en la vista principal" - -#: ../../godmode/agentes/configure_field.php:51 -#: ../../godmode/agentes/fields_manager.php:96 -#: ../../operation/agentes/custom_fields.php:62 -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:31 -msgid "Agents custom fields manager" -msgstr "Gestor de campos personalizados del agente." - -#: ../../godmode/agentes/fields_manager.php:44 -msgid "The name must not be empty" -msgstr "El nombre no puede estar vacío" - -#: ../../godmode/agentes/fields_manager.php:47 -msgid "The name must be unique" -msgstr "El nombre debe ser único" - -#: ../../godmode/agentes/fields_manager.php:52 -msgid "Field successfully created" -msgstr "Se ha creado el campo" - -#: ../../godmode/agentes/fields_manager.php:69 -msgid "Field successfully updated" -msgstr "Se ha actualizado el campo" - -#: ../../godmode/agentes/fields_manager.php:72 -msgid "There was a problem modifying field" -msgstr "Ha habido un problema al modificar el campo" - -#: ../../godmode/agentes/fields_manager.php:82 -msgid "There was a problem deleting field" -msgstr "Ha habido un problema al borrar el campo" - -#: ../../godmode/agentes/fields_manager.php:84 -msgid "Field successfully deleted" -msgstr "El campo se ha borrado correctamente" - -#: ../../godmode/agentes/fields_manager.php:95 -#: ../../godmode/alerts/alert_view.php:441 -#: ../../godmode/alerts/alert_view.php:531 -#: ../../operation/agentes/custom_fields.php:59 -msgid "Field" -msgstr "Campo" - -#: ../../godmode/agentes/fields_manager.php:138 -msgid "Create field" -msgstr "Crear campo" - -#: ../../godmode/agentes/modificar_agente.php:62 -msgid "Agents defined in Pandora" -msgstr "Agentes definidos en Pandora" - -#: ../../godmode/agentes/modificar_agente.php:87 -msgid "Success deleted agent." -msgstr "Agente eliminado correctamente" - -#: ../../godmode/agentes/modificar_agente.php:87 -msgid "Could not be deleted." -msgstr "No pudo ser borrado." - -#: ../../godmode/agentes/modificar_agente.php:94 -msgid "Maybe the files conf or md5 could not be deleted" -msgstr "Los ficheros conf o md5 han podido no ser borrados" - -#: ../../godmode/agentes/modificar_agente.php:156 -msgid "Show Agents" -msgstr "Mostrar Agentes" - -#: ../../godmode/agentes/modificar_agente.php:158 -msgid "Everyone" -msgstr "Todos" - -#: ../../godmode/agentes/modificar_agente.php:159 -#: ../../operation/agentes/status_monitor.php:398 -msgid "Only disabled" -msgstr "Sólo deshabilitado" - -#: ../../godmode/agentes/modificar_agente.php:160 -#: ../../operation/agentes/status_monitor.php:398 -msgid "Only enabled" -msgstr "Sólo habilitado" - -#: ../../godmode/agentes/modificar_agente.php:167 -#: ../../godmode/agentes/planned_downtime.editor.php:704 -#: ../../operation/agentes/estado_agente.php:175 -#: ../../enterprise/godmode/policies/policies.php:233 -msgid "Recursion" -msgstr "Recursión" - -#: ../../godmode/agentes/modificar_agente.php:483 -msgid "Remote agent configuration" -msgstr "Configuración remota del agente" - -#: ../../godmode/agentes/modificar_agente.php:483 -msgid "R" -msgstr "R" - -#: ../../godmode/agentes/modificar_agente.php:599 -msgid "Edit remote config" -msgstr "Editar configuración remota" - -#: ../../godmode/agentes/modificar_agente.php:626 -msgid "Enable agent" -msgstr "Habilitar agente" - -#: ../../godmode/agentes/modificar_agente.php:631 -msgid "Disable agent" -msgstr "Deshabilitar agente" - -#: ../../godmode/agentes/modificar_agente.php:648 -#: ../../operation/agentes/estado_agente.php:643 -#: ../../operation/agentes/group_view.php:430 -msgid "There are no defined agents" -msgstr "No hay ningún agente definido" - -#: ../../godmode/agentes/modificar_agente.php:656 -#: ../../operation/agentes/estado_agente.php:627 -#: ../../operation/agentes/estado_agente.php:647 -#: ../../operation/snmpconsole/snmp_statistics.php:151 -#: ../../operation/snmpconsole/snmp_view.php:674 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:75 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:199 -msgid "Create agent" -msgstr "Crear agente" - -#: ../../godmode/agentes/module_manager.php:78 -msgid "Create a new data server module" -msgstr "Crear un nuevo módulo de servidor de datos" - -#: ../../godmode/agentes/module_manager.php:80 -msgid "Create a new network server module" -msgstr "Crear un nuevo módulo de servidor de red" - -#: ../../godmode/agentes/module_manager.php:82 -msgid "Create a new plugin server module" -msgstr "Crear un nuevo módulo de servidor de complementos" - -#: ../../godmode/agentes/module_manager.php:84 -msgid "Create a new WMI server module" -msgstr "Crear un nuevo módulo de servidor WMI" - -#: ../../godmode/agentes/module_manager.php:86 -msgid "Create a new prediction server module" -msgstr "Crear un nuevo módulo de servidor de predicción" - -#: ../../godmode/agentes/module_manager.php:120 -#: ../../operation/agentes/estado_monitores.php:472 -msgid "Show in hierachy mode" -msgstr "Mostrar en modo herencia" - -#: ../../godmode/agentes/module_manager.php:148 -msgid "Get more modules in Pandora FMS Library" -msgstr "Más módulos en la librería de Pandora FMS" - -#: ../../godmode/agentes/module_manager.php:175 -msgid "Nice try buddy" -msgstr "Buen intento amigo" - -#: ../../godmode/agentes/module_manager.php:272 -#, php-format -msgid "There was a problem deleting %s modules, none deleted." -msgstr "Ha habido un problema borrando %s módulos. No se ha borrado ninguno." - -#: ../../godmode/agentes/module_manager.php:277 -msgid "All Modules deleted succesfully" -msgstr "Todos los módulos han sido borrados correctamente." - -#: ../../godmode/agentes/module_manager.php:281 -#, php-format -msgid "There was a problem only deleted %s modules of %s total." -msgstr "Ha habido un problema borrando %s módulo(s) de %s" - -#: ../../godmode/agentes/module_manager.php:523 -#: ../../include/ajax/module.php:345 -#: ../../operation/agentes/datos_agente.php:286 -msgid "No available data to show" -msgstr "No hay datos disponibles para mostrar" - -#: ../../godmode/agentes/module_manager.php:551 -#: ../../godmode/alerts/alert_view.php:123 ../../include/ajax/module.php:735 -#: ../../operation/agentes/alerts_status.php:412 -#: ../../operation/agentes/alerts_status.php:459 -#: ../../operation/agentes/status_monitor.php:946 -#: ../../enterprise/extensions/resource_exportation/functions.php:17 -#: ../../enterprise/godmode/agentes/collection_manager.php:162 -#: ../../enterprise/godmode/agentes/inventory_manager.php:231 -#: ../../enterprise/godmode/agentes/plugins_manager.php:144 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:91 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:83 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:82 -#: ../../enterprise/godmode/policies/policy_queue.php:331 -#: ../../enterprise/godmode/policies/policy_queue.php:374 -#: ../../enterprise/include/functions_policies.php:3789 -#: ../../enterprise/meta/advanced/policymanager.queue.php:212 -#: ../../enterprise/meta/advanced/policymanager.queue.php:256 -#: ../../enterprise/meta/advanced/policymanager.sync.php:302 -#: ../../enterprise/operation/agentes/collection_view.php:62 -#: ../../enterprise/operation/agentes/policy_view.php:48 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:201 -msgid "Policy" -msgstr "Política" - -#: ../../godmode/agentes/module_manager.php:551 -#: ../../godmode/reporting/reporting_builder.list_items.php:288 -#: ../../godmode/snmpconsole/snmp_alert.php:1148 -#: ../../include/ajax/module.php:735 -#: ../../operation/agentes/alerts_status.php:413 -#: ../../operation/agentes/alerts_status.php:459 -#: ../../operation/agentes/status_monitor.php:946 -#: ../../enterprise/godmode/agentes/collection_manager.php:162 -#: ../../enterprise/godmode/agentes/inventory_manager.php:232 -#: ../../enterprise/operation/agentes/collection_view.php:62 -msgid "P." -msgstr "P." - -#: ../../godmode/agentes/module_manager.php:554 -#: ../../include/functions_events.php:898 -#: ../../mobile/operation/agents.php:322 -#: ../../operation/agentes/alerts_status.php:417 -#: ../../operation/agentes/alerts_status.php:462 -#: ../../operation/agentes/alerts_status.php:497 -#: ../../operation/agentes/alerts_status.php:532 -#: ../../enterprise/godmode/admin_access_logs.php:22 -#: ../../enterprise/godmode/policies/policy_agents.php:379 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:217 -#: ../../enterprise/operation/agentes/policy_view.php:47 -#: ../../enterprise/operation/agentes/policy_view.php:134 -#: ../../enterprise/operation/agentes/policy_view.php:193 -#: ../../enterprise/operation/agentes/policy_view.php:198 -msgid "S." -msgstr "S." - -#: ../../godmode/agentes/module_manager.php:565 -#: ../../include/ajax/module.php:748 -#: ../../operation/agentes/status_monitor.php:980 -msgid "Warn" -msgstr "Advertencia" - -#: ../../godmode/agentes/module_manager.php:569 -#: ../../enterprise/godmode/policies/policy_agents.php:383 -msgid "D." -msgstr "D." - -#: ../../godmode/agentes/module_manager.php:679 -#: ../../godmode/agentes/module_manager.php:689 -#: ../../include/ajax/module.php:836 ../../include/ajax/module.php:846 -msgid "Adopted" -msgstr "Adoptado" - -#: ../../godmode/agentes/module_manager.php:689 -#: ../../godmode/agentes/module_manager.php:693 -#: ../../godmode/massive/massive_edit_modules.php:578 -#: ../../include/ajax/module.php:846 ../../include/ajax/module.php:850 -msgid "Unlinked" -msgstr "Deslinkado" - -#: ../../godmode/agentes/module_manager.php:716 -#: ../../enterprise/operation/agentes/policy_view.php:355 -msgid "Non initialized module" -msgstr "Módulo no inicializado" - -#: ../../godmode/agentes/module_manager.php:733 -#: ../../godmode/agentes/module_manager_editor_common.php:397 -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 data solo actualizarán sus intervalos cuando " -"la política sea aplicada" - -#: ../../godmode/agentes/module_manager.php:749 -#: ../../enterprise/godmode/policies/policy_modules.php:1241 -#: ../../enterprise/godmode/policies/policy_modules.php:1242 -msgid "Enable module" -msgstr "Habilitar el módulo" - -#: ../../godmode/agentes/module_manager.php:754 -#: ../../enterprise/godmode/policies/policy_modules.php:1247 -#: ../../enterprise/godmode/policies/policy_modules.php:1248 -msgid "Disable module" -msgstr "Deshabilitar el módulo" - -#: ../../godmode/agentes/module_manager.php:761 -#: ../../godmode/alerts/alert_templates.php:339 -#: ../../godmode/modules/manage_network_components.php:613 -#: ../../godmode/snmpconsole/snmp_alert.php:1226 -#: ../../enterprise/godmode/modules/local_components.php:525 -#: ../../enterprise/godmode/policies/policy_modules.php:1255 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:365 -msgid "Duplicate" -msgstr "Duplicar" - -#: ../../godmode/agentes/module_manager.php:769 -msgid "Normalize" -msgstr "Normalizar" - -#: ../../godmode/agentes/module_manager.php:775 -msgid "Normalize (Disabled)" -msgstr "Normalizar (deshabilitado)" - -#: ../../godmode/agentes/module_manager.php:784 -#: ../../include/functions_snmp_browser.php:475 -msgid "Create network component" -msgstr "Crear componentes de red" - -#: ../../godmode/agentes/module_manager.php:789 -msgid "Create network component (Disabled)" -msgstr "Crear componentes de red (desactivado)" - -#: ../../godmode/agentes/module_manager_editor.php:390 -#: ../../enterprise/godmode/policies/policies.php:191 -#: ../../enterprise/godmode/policies/policy_agents.php:80 -#: ../../enterprise/godmode/policies/policy_alerts.php:60 -#: ../../enterprise/godmode/policies/policy_collections.php:37 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:52 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:53 -#: ../../enterprise/godmode/policies/policy_linking.php:32 -#: ../../enterprise/godmode/policies/policy_modules.php:486 -msgid "This policy is applying and cannot be modified" -msgstr "Esta política se está aplicando y no puede ser modificada" - -#: ../../godmode/agentes/module_manager_editor.php:394 -#: ../../enterprise/include/functions_policies.php:3050 -msgid "Module will be linked in the next application" -msgstr "El módulo será enlazado en la próxima aplicación" - -#: ../../godmode/agentes/module_manager_editor.php:402 -#: ../../enterprise/include/functions_policies.php:3055 -msgid "Module will be unlinked in the next application" -msgstr "El módulo será desenlazado en la próxima aplicación" - -#: ../../godmode/agentes/module_manager_editor.php:490 -#, php-format -msgid "DEBUG: Invalid module type specified in %s:%s" -msgstr "DEBUG: tipo de módulo inválido especificado en %s:%s" - -#: ../../godmode/agentes/module_manager_editor.php:491 -msgid "" -"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 "" -"Lo más probable es que haya actualizado recientemente una versión anterior " -"de Pandora FMS y, o bien
    \n" -"\n" -"\t \t \t \t 1) Se olvidó de utilizar el convertidor de la base de datos
    \n" -"\t \t \t \t 2) Ha usado una versión mala del convertidor de base de datos " -"(vea el informe de error # 2124706 para solucionarlo)
    \n" -"\t \t \t \t 3) Ha encontrado un nuevo error - por favor, indique una manera " -"de duplicar este error" - -#: ../../godmode/agentes/module_manager_editor.php:517 -#: ../../godmode/agentes/module_manager_editor_common.php:666 -msgid "Custom macros" -msgstr "Macros personalizadas" - -#: ../../godmode/agentes/module_manager_editor.php:519 -msgid "Module relations" -msgstr "Relaciones entre módulos" - -#: ../../godmode/agentes/module_manager_editor.php:565 -#: ../../enterprise/godmode/policies/policy_modules.php:1357 -msgid "No module name provided" -msgstr "No se proporcionó ningún nombre de módulo" - -#: ../../godmode/agentes/module_manager_editor.php:566 -#: ../../enterprise/godmode/policies/policy_modules.php:1358 -msgid "No target IP provided" -msgstr "No se proporcionó ninguna IP de destino" - -#: ../../godmode/agentes/module_manager_editor.php:567 -#: ../../enterprise/godmode/policies/policy_modules.php:1359 -msgid "No SNMP OID provided" -msgstr "No se proporcionó ningún OID de SMTP" - -#: ../../godmode/agentes/module_manager_editor.php:568 -msgid "No module to predict" -msgstr "No existe ningún módulo para predecir" - -#: ../../godmode/agentes/module_manager_editor.php:569 -msgid "No plug-in provided" -msgstr "Complemento no proporcionado" - -#: ../../godmode/agentes/module_manager_editor.php:592 -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_common.php:70 -msgid "Using module component" -msgstr "Utilizar módulo de librería" - -#: ../../godmode/agentes/module_manager_editor_common.php:76 -#: ../../godmode/agentes/module_manager_editor_common.php:85 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:54 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:64 -msgid "Manual setup" -msgstr "Configuración manual" - -#: ../../godmode/agentes/module_manager_editor_common.php:161 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1423 -msgid "Delete module" -msgstr "Eliminar Módulo" - -#: ../../godmode/agentes/module_manager_editor_common.php:176 -#: ../../godmode/agentes/module_manager_editor_common.php:182 -#: ../../godmode/massive/massive_edit_modules.php:521 -#: ../../include/functions_treeview.php:118 -#: ../../include/functions_graph.php:5327 -#: ../../operation/agentes/status_monitor.php:312 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1382 -msgid "Not assigned" -msgstr "Sin asignar" - -#: ../../godmode/agentes/module_manager_editor_common.php:180 -msgid "Module parent" -msgstr "Padre del módulo" - -#: ../../godmode/agentes/module_manager_editor_common.php:256 -msgid "Dynamic Threshold Interval" -msgstr "Intervalo de rango dinámico" - -#: ../../godmode/agentes/module_manager_editor_common.php:258 -#: ../../godmode/modules/manage_network_components_form_common.php:109 -#: ../../enterprise/godmode/modules/configure_local_component.php:228 -msgid "Advanced options Dynamic Threshold" -msgstr "Opciones avanzadas Rango Dinámico" - -#: ../../godmode/agentes/module_manager_editor_common.php:268 -msgid "Dynamic Threshold Min. " -msgstr "Rango dinámico mínimo " - -#: ../../godmode/agentes/module_manager_editor_common.php:271 -msgid "Dynamic Threshold Max. " -msgstr "Rango dinámico máximo " - -#: ../../godmode/agentes/module_manager_editor_common.php:274 -msgid "Dynamic Threshold Two Tailed: " -msgstr "Rango dinámico dos fallido " - -#: ../../godmode/agentes/module_manager_editor_common.php:277 -#: ../../godmode/massive/massive_edit_modules.php:368 -#: ../../godmode/modules/manage_network_components_form_common.php:118 -#: ../../include/functions_alerts.php:573 -#: ../../include/functions_treeview.php:98 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:237 -#: ../../enterprise/godmode/modules/configure_local_component.php:237 -msgid "Warning status" -msgstr "Umbral Warning" - -#: ../../godmode/agentes/module_manager_editor_common.php:279 -#: ../../godmode/agentes/module_manager_editor_common.php:300 -msgid "Min. " -msgstr "Min. " - -#: ../../godmode/agentes/module_manager_editor_common.php:282 -#: ../../godmode/agentes/module_manager_editor_common.php:303 -#: ../../godmode/alerts/configure_alert_template.php:628 -#: ../../godmode/massive/massive_edit_modules.php:381 -#: ../../godmode/massive/massive_edit_modules.php:427 -#: ../../godmode/massive/massive_edit_modules.php:516 -#: ../../godmode/modules/manage_network_components_form_common.php:122 -#: ../../godmode/modules/manage_network_components_form_common.php:139 -#: ../../include/functions_alerts.php:569 -#: ../../include/functions_treeview.php:94 -#: ../../include/functions_treeview.php:107 -#: ../../include/functions_graph.php:4333 -#: ../../include/functions_reporting_html.php:3141 -#: ../../enterprise/dashboard/widgets/top_n.php:78 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:250 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:279 -#: ../../enterprise/godmode/modules/configure_local_component.php:241 -#: ../../enterprise/godmode/modules/configure_local_component.php:258 -msgid "Max." -msgstr "Máx." - -#: ../../godmode/agentes/module_manager_editor_common.php:287 -#: ../../godmode/agentes/module_manager_editor_common.php:308 -#: ../../godmode/massive/massive_edit_modules.php:390 -#: ../../godmode/massive/massive_edit_modules.php:436 -#: ../../godmode/modules/manage_network_components_form_common.php:125 -#: ../../godmode/modules/manage_network_components_form_common.php:142 -#: ../../include/functions_treeview.php:91 -#: ../../include/functions_treeview.php:104 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:258 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:287 -#: ../../enterprise/godmode/modules/configure_local_component.php:244 -#: ../../enterprise/godmode/modules/configure_local_component.php:261 -msgid "Str." -msgstr "Str." - -#: ../../godmode/agentes/module_manager_editor_common.php:291 -#: ../../godmode/agentes/module_manager_editor_common.php:313 -#: ../../godmode/massive/massive_edit_modules.php:400 -#: ../../godmode/massive/massive_edit_modules.php:446 -#: ../../godmode/modules/manage_network_components_form_common.php:128 -#: ../../godmode/modules/manage_network_components_form_common.php:145 -#: ../../enterprise/godmode/modules/configure_local_component.php:247 -#: ../../enterprise/godmode/modules/configure_local_component.php:264 -#: ../../enterprise/meta/include/functions_wizard_meta.php:844 -#: ../../enterprise/meta/include/functions_wizard_meta.php:853 -#: ../../enterprise/meta/include/functions_wizard_meta.php:930 -#: ../../enterprise/meta/include/functions_wizard_meta.php:939 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1131 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1140 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1347 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1356 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1428 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1437 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1544 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1553 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1569 -msgid "Inverse interval" -msgstr "Intervalo inverso" - -#: ../../godmode/agentes/module_manager_editor_common.php:298 -#: ../../godmode/massive/massive_edit_modules.php:414 -#: ../../godmode/modules/manage_network_components_form_common.php:135 -#: ../../include/functions_alerts.php:574 -#: ../../include/functions_treeview.php:110 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../enterprise/godmode/modules/configure_local_component.php:254 -msgid "Critical status" -msgstr "Umbral crítico" - -#: ../../godmode/agentes/module_manager_editor_common.php:317 -#: ../../godmode/massive/massive_edit_modules.php:549 -#: ../../godmode/modules/manage_network_components_form_common.php:148 -#: ../../enterprise/godmode/modules/configure_local_component.php:267 -msgid "FF threshold" -msgstr "Umbral Flip-Flop" - -#: ../../godmode/agentes/module_manager_editor_common.php:320 -#: ../../godmode/massive/massive_edit_modules.php:551 -#: ../../godmode/massive/massive_edit_modules.php:552 -#: ../../godmode/modules/manage_network_components_form_common.php:150 -#: ../../enterprise/godmode/modules/configure_local_component.php:269 -msgid "All state changing" -msgstr "Todo cambio de estado" - -#: ../../godmode/agentes/module_manager_editor_common.php:323 -#: ../../godmode/massive/massive_edit_modules.php:551 -#: ../../godmode/massive/massive_edit_modules.php:553 -#: ../../godmode/modules/manage_network_components_form_common.php:153 -#: ../../enterprise/godmode/modules/configure_local_component.php:272 -msgid "Each state changing" -msgstr "Cada cambio de estado" - -#: ../../godmode/agentes/module_manager_editor_common.php:324 -#: ../../godmode/massive/massive_edit_modules.php:554 -#: ../../godmode/modules/manage_network_components_form_common.php:154 -#: ../../enterprise/godmode/modules/configure_local_component.php:273 -msgid "To normal" -msgstr "A normal" - -#: ../../godmode/agentes/module_manager_editor_common.php:327 -#: ../../godmode/massive/massive_edit_modules.php:555 -#: ../../godmode/modules/manage_network_components_form_common.php:156 -#: ../../enterprise/godmode/modules/configure_local_component.php:275 -msgid "To warning" -msgstr "A advertencia" - -#: ../../godmode/agentes/module_manager_editor_common.php:330 -#: ../../godmode/massive/massive_edit_modules.php:556 -#: ../../godmode/modules/manage_network_components_form_common.php:158 -#: ../../enterprise/godmode/modules/configure_local_component.php:277 -msgid "To critical" -msgstr "A crítico" - -#: ../../godmode/agentes/module_manager_editor_common.php:333 -#: ../../godmode/massive/massive_edit_modules.php:563 -#: ../../godmode/modules/manage_network_components_form_common.php:161 -#: ../../include/functions_reporting.php:2346 -#: ../../enterprise/godmode/modules/configure_local_component.php:281 -msgid "Historical data" -msgstr "Histórico de datos" - -#: ../../godmode/agentes/module_manager_editor_common.php:365 -#: ../../godmode/massive/massive_edit_modules.php:544 -#: ../../godmode/modules/manage_network_components_form_common.php:168 -#: ../../include/functions_netflow.php:1131 -#: ../../include/functions_netflow.php:1141 -#: ../../include/functions_netflow.php:1159 -#: ../../include/functions_netflow.php:1167 -#: ../../include/functions_netflow.php:1190 -#: ../../include/functions_netflow.php:1248 -#: ../../include/functions_netflow.php:1254 -#: ../../include/functions_netflow.php:1286 -#: ../../include/functions_reporting_html.php:2117 -#: ../../enterprise/godmode/modules/configure_local_component.php:296 -#: ../../enterprise/include/functions_reporting_pdf.php:2368 -#: ../../enterprise/meta/include/functions_wizard_meta.php:786 -#: ../../enterprise/meta/include/functions_wizard_meta.php:904 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1082 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1365 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1446 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 -msgid "Unit" -msgstr "Unidad" - -#: ../../godmode/agentes/module_manager_editor_common.php:384 -#: ../../godmode/agentes/module_manager_editor_common.php:387 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:113 -#, php-format -msgid "Agent interval x %s" -msgstr "Intervalo del agente x %s" - -#: ../../godmode/agentes/module_manager_editor_common.php:411 -#: ../../godmode/massive/massive_edit_modules.php:475 -#: ../../godmode/modules/manage_network_components_form_network.php:80 -#: ../../godmode/modules/manage_network_components_form_plugin.php:27 -#: ../../godmode/modules/manage_network_components_form_wmi.php:56 -#: ../../godmode/setup/snmp_wizard.php:42 -#: ../../enterprise/godmode/modules/configure_local_component.php:301 -msgid "Post process" -msgstr "Posprocesado" - -#: ../../godmode/agentes/module_manager_editor_common.php:418 -#: ../../godmode/modules/manage_network_components_form_common.php:164 -#: ../../include/functions_reporting.php:3705 -#: ../../include/functions_graph.php:711 -#: ../../include/functions_graph.php:3939 -#: ../../include/functions_reports.php:568 -#: ../../enterprise/godmode/modules/configure_local_component.php:289 -#: ../../enterprise/include/functions_reporting_csv.php:724 -#: ../../enterprise/include/functions_reporting_csv.php:740 -#: ../../enterprise/include/functions_reporting_csv.php:747 -msgid "Min. Value" -msgstr "Valor mínimo" - -#: ../../godmode/agentes/module_manager_editor_common.php:421 -msgid "Any value below this number is discarted." -msgstr "Cualquier valor por debajo de este número queda descartado" - -#: ../../godmode/agentes/module_manager_editor_common.php:422 -#: ../../godmode/modules/manage_network_components_form_common.php:166 -#: ../../include/functions_reporting.php:3702 -#: ../../include/functions_graph.php:709 -#: ../../include/functions_graph.php:3938 -#: ../../include/functions_reports.php:566 -#: ../../enterprise/godmode/modules/configure_local_component.php:294 -#: ../../enterprise/include/functions_reporting_csv.php:760 -#: ../../enterprise/include/functions_reporting_csv.php:776 -#: ../../enterprise/include/functions_reporting_csv.php:783 -msgid "Max. Value" -msgstr "Valor máximo" - -#: ../../godmode/agentes/module_manager_editor_common.php:423 -msgid "Any value over this number is discarted." -msgstr "Cualquier valor por encima de este número es descartado" - -#: ../../godmode/agentes/module_manager_editor_common.php:426 -#: ../../godmode/massive/massive_edit_modules.php:532 -msgid "Export target" -msgstr "Servidor de exportación" - -#: ../../godmode/agentes/module_manager_editor_common.php:432 -msgid "Not needed" -msgstr "No necesario" - -#: ../../godmode/agentes/module_manager_editor_common.php:436 -msgid "" -"In case you use an Export server you can link this module and export data to " -"one these." -msgstr "" -"En caso de que use un Export server, puede enlazar este modulo y exportar " -"los datos con el export server." - -#: ../../godmode/agentes/module_manager_editor_common.php:450 -#: ../../godmode/massive/massive_edit_modules.php:587 -#: ../../godmode/modules/manage_network_components_form_common.php:171 -msgid "Discard unknown events" -msgstr "Descartar eventos desconocidos" - -#: ../../godmode/agentes/module_manager_editor_common.php:455 -#: ../../godmode/massive/massive_edit_modules.php:558 -msgid "FF interval" -msgstr "Intervalo FF" - -#: ../../godmode/agentes/module_manager_editor_common.php:458 -#: ../../godmode/massive/massive_edit_modules.php:559 -msgid "Module execution flip flop time interval (in secs)." -msgstr "" -"Tiempo del intervalo de FlipFlip de ejecución del modulo (en segundos)" - -#: ../../godmode/agentes/module_manager_editor_common.php:461 -#: ../../godmode/massive/massive_edit_modules.php:560 -#: ../../enterprise/godmode/modules/configure_local_component.php:284 -msgid "FF timeout" -msgstr "FF tiempo de espera" - -#: ../../godmode/agentes/module_manager_editor_common.php:467 -#: ../../godmode/massive/massive_edit_modules.php:561 -#: ../../enterprise/godmode/modules/configure_local_component.php:286 -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" - -#: ../../godmode/agentes/module_manager_editor_common.php:470 -#: ../../enterprise/godmode/modules/configure_local_component.php:287 -msgid "This value can be set only in the async modules." -msgstr "Solo debe establecerse este valor en los módulos asíncronos" - -#: ../../godmode/agentes/module_manager_editor_common.php:477 -#: ../../godmode/modules/manage_network_components_form_common.php:212 -#: ../../enterprise/godmode/modules/configure_local_component.php:387 -msgid "Tags available" -msgstr "Etiquetas disponibles" - -#: ../../godmode/agentes/module_manager_editor_common.php:539 -#: ../../godmode/modules/manage_network_components_form_common.php:219 -#: ../../enterprise/godmode/modules/configure_local_component.php:394 -msgid "Add tags to module" -msgstr "Añadir etiquetas al módulo" - -#: ../../godmode/agentes/module_manager_editor_common.php:540 -#: ../../godmode/modules/manage_network_components_form_common.php:220 -#: ../../enterprise/godmode/modules/configure_local_component.php:396 -msgid "Delete tags to module" -msgstr "Eliminar etiquetas del módulo" - -#: ../../godmode/agentes/module_manager_editor_common.php:542 -#: ../../godmode/modules/manage_network_components_form_common.php:222 -#: ../../enterprise/godmode/modules/configure_local_component.php:398 -msgid "Tags selected" -msgstr "Etiquetas seleccionadas" - -#: ../../godmode/agentes/module_manager_editor_common.php:553 -msgid "Tags from policy" -msgstr "Etiquetas desde política" - -#: ../../godmode/agentes/module_manager_editor_common.php:566 -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" - -#: ../../godmode/agentes/module_manager_editor_common.php:571 -#: ../../godmode/massive/massive_edit_modules.php:595 -#: ../../godmode/modules/manage_network_components_form_common.php:175 -#: ../../enterprise/godmode/modules/configure_local_component.php:344 -msgid "Critical instructions" -msgstr "Intrucciónes de crítico" - -#: ../../godmode/agentes/module_manager_editor_common.php:572 -#: ../../godmode/massive/massive_edit_modules.php:595 -#: ../../godmode/modules/manage_network_components_form_common.php:175 -#: ../../enterprise/godmode/modules/configure_local_component.php:345 -msgid "Instructions when the status is critical" -msgstr "Instrucciones en caso de que esté en estado crítico" - -#: ../../godmode/agentes/module_manager_editor_common.php:577 -#: ../../godmode/massive/massive_edit_modules.php:599 -#: ../../godmode/modules/manage_network_components_form_common.php:179 -#: ../../enterprise/godmode/modules/configure_local_component.php:350 -msgid "Warning instructions" -msgstr "Instrucciones de advertencia" - -#: ../../godmode/agentes/module_manager_editor_common.php:578 -#: ../../godmode/massive/massive_edit_modules.php:599 -#: ../../godmode/modules/manage_network_components_form_common.php:179 -#: ../../enterprise/godmode/modules/configure_local_component.php:351 -msgid "Instructions when the status is warning" -msgstr "Instrucciones en caso de que el estado sea de advertencia" - -#: ../../godmode/agentes/module_manager_editor_common.php:582 -#: ../../godmode/massive/massive_edit_modules.php:603 -#: ../../godmode/modules/manage_network_components_form_common.php:183 -#: ../../enterprise/godmode/modules/configure_local_component.php:356 -msgid "Unknown instructions" -msgstr "Instrucciones de desconocido" - -#: ../../godmode/agentes/module_manager_editor_common.php:582 -#: ../../godmode/massive/massive_edit_modules.php:603 -#: ../../godmode/modules/manage_network_components_form_common.php:183 -#: ../../enterprise/godmode/modules/configure_local_component.php:357 -msgid "Instructions when the status is unknown" -msgstr "Instrucciones en caso de que el estado sea desconocido" - -#: ../../godmode/agentes/module_manager_editor_common.php:589 -#: ../../godmode/agentes/module_manager_editor_common.php:599 -#: ../../godmode/agentes/module_manager_editor_common.php:610 -msgid "Cron from" -msgstr "Formulario de cron" - -#: ../../godmode/agentes/module_manager_editor_common.php:590 -#: ../../godmode/agentes/module_manager_editor_common.php:600 -#: ../../godmode/agentes/module_manager_editor_common.php:611 -msgid "" -"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" - -#: ../../godmode/agentes/module_manager_editor_common.php:594 -#: ../../godmode/agentes/module_manager_editor_common.php:604 -#: ../../godmode/agentes/module_manager_editor_common.php:615 -msgid "Cron to" -msgstr "Cron desde" - -#: ../../godmode/agentes/module_manager_editor_common.php:620 -#: ../../godmode/massive/massive_edit_modules.php:612 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:68 -msgid "Timeout" -msgstr "Tiempo de expiración" - -#: ../../godmode/agentes/module_manager_editor_common.php:621 -#: ../../godmode/massive/massive_edit_modules.php:616 -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" - -#: ../../godmode/agentes/module_manager_editor_common.php:623 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:65 -msgid "Retries" -msgstr "Reintentos" - -#: ../../godmode/agentes/module_manager_editor_common.php:624 -msgid "Number of retries that the module will attempt to run." -msgstr "Número de intentos que el módulo intentara activar" - -#: ../../godmode/agentes/module_manager_editor_common.php:628 -#: ../../godmode/massive/massive_edit_modules.php:571 -#: ../../godmode/modules/manage_network_components_form_common.php:190 -#: ../../enterprise/godmode/modules/configure_local_component.php:366 -msgid "Category" -msgstr "Categoría" - -#: ../../godmode/agentes/module_manager_editor_common.php:656 -#: ../../godmode/alerts/configure_alert_template.php:605 -#: ../../godmode/massive/massive_edit_modules.php:513 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1317 -#: ../../godmode/reporting/visual_console_builder.wizard.php:237 -#: ../../godmode/setup/setup_visuals.php:703 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 -#: ../../include/functions_graph.php:5471 -#: ../../include/functions_reporting_html.php:732 -#: ../../include/functions_reporting_html.php:1488 -#: ../../include/functions_reporting_html.php:2594 -#: ../../include/functions_reporting_html.php:3107 #: ../../include/functions_snmp_browser.php:406 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:271 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1611 -#: ../../enterprise/include/functions_reporting_csv.php:524 -#: ../../enterprise/include/functions_reporting_csv.php:559 -#: ../../enterprise/include/functions_reporting_csv.php:595 -#: ../../enterprise/include/functions_reporting_csv.php:632 -#: ../../enterprise/include/functions_reporting_csv.php:700 -#: ../../enterprise/include/functions_reporting_csv.php:736 -#: ../../enterprise/include/functions_reporting_csv.php:772 -#: ../../enterprise/include/functions_reporting_csv.php:808 -#: ../../enterprise/include/functions_reporting_pdf.php:776 -#: ../../enterprise/include/functions_reporting_pdf.php:837 -#: ../../enterprise/include/functions_reporting_pdf.php:929 -#: ../../enterprise/operation/services/services.list.php:341 -#: ../../enterprise/operation/services/services.service.php:137 +#: ../../include/functions_graph.php:5452 +#: ../../include/functions_reporting_html.php:732 +#: ../../include/functions_reporting_html.php:1482 +#: ../../include/functions_reporting_html.php:2584 +#: ../../include/functions_reporting_html.php:3097 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 +#: ../../godmode/alerts/configure_alert_template.php:602 +#: ../../godmode/setup/setup_visuals.php:677 +#: ../../godmode/massive/massive_edit_modules.php:513 +#: ../../godmode/reporting/visual_console_builder.wizard.php:237 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1312 +#: ../../godmode/agentes/module_manager_editor_common.php:657 msgid "Value" msgstr "Valor" -#: ../../godmode/agentes/module_manager_editor_common.php:700 -msgid "Add relationship" -msgstr "Añadir relación" +#: ../../include/functions_snmp_browser.php:420 +msgid "Syntax" +msgstr "Sintáxis" -#: ../../godmode/agentes/module_manager_editor_common.php:718 -msgid "Changes" -msgstr "Cambios" +#: ../../include/functions_snmp_browser.php:425 +msgid "Display hint" +msgstr "Activar hint" -#: ../../godmode/agentes/module_manager_editor_common.php:718 -msgid "Activate this to prevent the relation from being updated or deleted" -msgstr "Activar esta opción para evitar que sea actualizado o borrado" +#: ../../include/functions_snmp_browser.php:430 +msgid "Max access" +msgstr "Acceso máximo" -#: ../../godmode/agentes/module_manager_editor_common.php:1251 -#: ../../godmode/modules/manage_network_components_form_common.php:379 -#: ../../enterprise/godmode/modules/configure_local_component.php:740 -msgid "Normal Status" -msgstr "Estado normal" +#: ../../include/functions_snmp_browser.php:445 +msgid "OID Information" +msgstr "Información OID" -#: ../../godmode/agentes/module_manager_editor_common.php:1252 -#: ../../godmode/modules/manage_network_components_form_common.php:380 -#: ../../enterprise/godmode/modules/configure_local_component.php:741 -msgid "Warning Status" -msgstr "Estado de aviso" +#: ../../include/functions_snmp_browser.php:475 +#: ../../godmode/agentes/module_manager.php:784 +msgid "Create network component" +msgstr "Crear componentes de red" -#: ../../godmode/agentes/module_manager_editor_common.php:1253 -#: ../../godmode/modules/manage_network_components_form_common.php:381 -#: ../../enterprise/godmode/modules/configure_local_component.php:742 -msgid "Critical Status" -msgstr "Estado crítico" +#: ../../include/functions_snmp_browser.php:510 +msgid "Starting OID" +msgstr "Iniciar OID" -#: ../../godmode/agentes/module_manager_editor_common.php:1474 -#: ../../godmode/modules/manage_network_components_form_common.php:602 -#: ../../enterprise/godmode/modules/configure_local_component.php:963 -msgid "Please introduce a maximum warning higher than the minimun warning" -msgstr "" -"Por favor introduzca un máximo de alerta mayor que el mínimo de alerta" +#: ../../include/functions_snmp_browser.php:521 +msgid "Browse" +msgstr "Examinar" -#: ../../godmode/agentes/module_manager_editor_common.php:1475 -#: ../../godmode/modules/manage_network_components_form_common.php:603 -#: ../../enterprise/godmode/modules/configure_local_component.php:964 -msgid "Please introduce a maximum critical higher than the minimun critical" -msgstr "" -"Por favor introduzca un máximo de crítico mayor que el mínimo de crítico" - -#: ../../godmode/agentes/module_manager_editor_data.php:17 -#: ../../operation/agentes/status_monitor.php:380 -msgid "Data server module" -msgstr "Módulo del servidor de datos" - -#: ../../godmode/agentes/module_manager_editor_network.php:27 -#: ../../include/functions_snmp_browser.php:603 -msgid "Search matches" -msgstr "Buscar coincidencias" - -#: ../../godmode/agentes/module_manager_editor_network.php:64 -#: ../../operation/agentes/status_monitor.php:382 -msgid "Network server module" -msgstr "Módulo del servidor de red" - -#: ../../godmode/agentes/module_manager_editor_network.php:85 -#: ../../godmode/massive/massive_edit_modules.php:484 -#: ../../include/ajax/events.php:481 -#: ../../enterprise/godmode/services/services.service.php:258 -#: ../../enterprise/meta/include/functions_wizard_meta.php:390 -#: ../../enterprise/operation/services/services.list.php:190 -#: ../../enterprise/operation/services/services.table_services.php:159 -msgid "Auto" -msgstr "Automático" - -#: ../../godmode/agentes/module_manager_editor_network.php:86 -#: ../../godmode/massive/massive_edit_modules.php:485 -#: ../../enterprise/meta/include/functions_wizard_meta.php:391 -msgid "Force primary key" -msgstr "Forzar clave primaria" - -#: ../../godmode/agentes/module_manager_editor_network.php:87 -#: ../../godmode/massive/massive_edit_modules.php:486 -#: ../../include/functions_html.php:647 ../../include/functions_html.php:648 -#: ../../include/functions_html.php:776 ../../include/functions_html.php:777 -#: ../../enterprise/extensions/cron/functions.php:227 -#: ../../enterprise/godmode/setup/setup_acl.php:146 -#: ../../enterprise/godmode/setup/setup_acl.php:390 -#: ../../enterprise/include/functions_backup.php:483 -#: ../../enterprise/include/functions_backup.php:484 -#: ../../enterprise/meta/include/functions_wizard_meta.php:392 -msgid "Custom" -msgstr "Personalizado" - -#: ../../godmode/agentes/module_manager_editor_network.php:152 -msgid "SNMP OID" -msgstr "SNMP OID" - -#: ../../godmode/agentes/module_manager_editor_network.php:171 -#: ../../godmode/modules/manage_network_components_form_network.php:90 -msgid "TCP send" -msgstr "Enviar TCP" - -#: ../../godmode/agentes/module_manager_editor_network.php:177 -#: ../../godmode/modules/manage_network_components_form_network.php:97 -msgid "TCP receive" -msgstr "Recibir TCP" +#: ../../include/functions_snmp_browser.php:530 +#: ../../godmode/massive/massive_edit_modules.php:497 +#: ../../godmode/modules/manage_network_components_form_network.php:57 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:369 +#: ../../godmode/agentes/module_manager_editor_network.php:216 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:731 +msgid "Auth user" +msgstr "Autenticación de usuario" +#: ../../include/functions_snmp_browser.php:532 +#: ../../godmode/massive/massive_edit_modules.php:500 +#: ../../godmode/modules/manage_network_components_form_network.php:59 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:371 #: ../../godmode/agentes/module_manager_editor_network.php:219 -#: ../../godmode/agentes/module_manager_editor_network.php:229 -#: ../../godmode/massive/massive_edit_modules.php:501 -#: ../../godmode/massive/massive_edit_modules.php:505 -msgid "The pass length must be eight character minimum." -msgstr "La longitud de la password debe ser mínimo de ocho caracteres" +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:733 +msgid "Auth password" +msgstr "Autenticación de contraseña" -#: ../../godmode/agentes/module_manager_editor_network.php:229 +#: ../../include/functions_snmp_browser.php:536 +#: ../../godmode/massive/massive_edit_modules.php:503 +#: ../../godmode/modules/manage_network_components_form_network.php:65 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:375 +#: ../../godmode/agentes/module_manager_editor_network.php:227 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:737 +msgid "Privacy method" +msgstr "Método de privacidad" + +#: ../../include/functions_snmp_browser.php:537 +#: ../../godmode/massive/massive_edit_modules.php:504 +#: ../../godmode/modules/manage_network_components_form_network.php:66 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:376 +#: ../../godmode/agentes/module_manager_editor_network.php:228 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:738 +msgid "DES" +msgstr "DES" + +#: ../../include/functions_snmp_browser.php:537 +#: ../../godmode/massive/massive_edit_modules.php:504 +#: ../../godmode/modules/manage_network_components_form_network.php:66 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:376 +#: ../../godmode/agentes/module_manager_editor_network.php:228 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:738 +msgid "AES" +msgstr "AES" + +#: ../../include/functions_snmp_browser.php:538 #: ../../godmode/massive/massive_edit_modules.php:505 #: ../../godmode/modules/manage_network_components_form_network.php:67 -#: ../../include/functions_snmp_browser.php:538 +#: ../../godmode/agentes/module_manager_editor_network.php:229 msgid "Privacy pass" msgstr "Privacy pass" -#: ../../godmode/agentes/module_manager_editor_plugin.php:47 -#: ../../operation/agentes/status_monitor.php:384 -msgid "Plugin server module" -msgstr "Módulo del servidor de complementos" +#: ../../include/functions_snmp_browser.php:541 +#: ../../godmode/massive/massive_edit_modules.php:507 +#: ../../godmode/modules/manage_network_components_form_network.php:72 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:380 +#: ../../godmode/agentes/module_manager_editor_network.php:237 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:742 +msgid "Auth method" +msgstr "método de autenticación" -#: ../../godmode/agentes/module_manager_editor_prediction.php:88 -#: ../../operation/agentes/status_monitor.php:388 -msgid "Prediction server module" -msgstr "Módulo del servidor de predicción" +#: ../../include/functions_snmp_browser.php:542 +#: ../../godmode/massive/massive_edit_modules.php:508 +#: ../../godmode/modules/manage_network_components_form_network.php:73 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:381 +#: ../../godmode/agentes/module_manager_editor_network.php:238 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:743 +msgid "MD5" +msgstr "MD5" -#: ../../godmode/agentes/module_manager_editor_prediction.php:91 -msgid "Source module" -msgstr "Módulo origen" +#: ../../include/functions_snmp_browser.php:542 +#: ../../godmode/massive/massive_edit_modules.php:508 +#: ../../godmode/modules/manage_network_components_form_network.php:73 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:381 +#: ../../godmode/agentes/module_manager_editor_network.php:238 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:743 +msgid "SHA" +msgstr "SHA" -#: ../../godmode/agentes/module_manager_editor_prediction.php:119 -#: ../../godmode/agentes/module_manager_editor_prediction.php:144 -msgid "Select Module" -msgstr "Seleccionar módulo" +#: ../../include/functions_snmp_browser.php:543 +#: ../../godmode/massive/massive_edit_modules.php:509 +#: ../../godmode/modules/manage_network_components_form_network.php:74 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:382 +#: ../../godmode/agentes/module_manager_editor_network.php:239 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:744 +msgid "Security level" +msgstr "Nivel de seguridad" -#: ../../godmode/agentes/module_manager_editor_prediction.php:150 -#: ../../godmode/reporting/graph_builder.main.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:748 -#: ../../godmode/reporting/visual_console_builder.elements.php:80 -#: ../../godmode/reporting/visual_console_builder.wizard.php:185 -#: ../../include/functions_visual_map_editor.php:438 -#: ../../enterprise/dashboard/widgets/custom_graph.php:36 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:70 -#: ../../enterprise/dashboard/widgets/single_graph.php:72 -#: ../../enterprise/dashboard/widgets/sla_percent.php:67 -#: ../../enterprise/dashboard/widgets/top_n.php:59 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:97 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1273 -#: ../../enterprise/include/functions_reporting_csv.php:258 -#: ../../enterprise/include/functions_reporting_csv.php:261 -#: ../../enterprise/include/functions_reporting_csv.php:377 -#: ../../enterprise/include/functions_reporting_csv.php:404 -#: ../../enterprise/include/functions_reporting_csv.php:430 -#: ../../enterprise/include/functions_reporting_csv.php:496 -#: ../../enterprise/include/functions_reporting_csv.php:524 -#: ../../enterprise/include/functions_reporting_csv.php:559 -#: ../../enterprise/include/functions_reporting_csv.php:595 -#: ../../enterprise/include/functions_reporting_csv.php:632 -#: ../../enterprise/include/functions_reporting_csv.php:700 -#: ../../enterprise/include/functions_reporting_csv.php:736 -#: ../../enterprise/include/functions_reporting_csv.php:772 -#: ../../enterprise/include/functions_reporting_csv.php:808 -#: ../../enterprise/include/functions_reporting_csv.php:844 -#: ../../enterprise/include/functions_reporting_csv.php:921 -msgid "Period" -msgstr "Periodo" +#: ../../include/functions_snmp_browser.php:544 +#: ../../godmode/massive/massive_edit_modules.php:510 +#: ../../godmode/modules/manage_network_components_form_network.php:75 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:383 +#: ../../godmode/agentes/module_manager_editor_network.php:240 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:745 +msgid "Not auth and not privacy method" +msgstr "método sin autenticación ni privacidad" -#: ../../godmode/agentes/module_manager_editor_prediction.php:152 -#: ../../godmode/agentes/planned_downtime.editor.php:533 -#: ../../enterprise/extensions/cron/functions.php:195 -#: ../../enterprise/extensions/vmware/functions.php:27 -msgid "Weekly" -msgstr "Semanalmente" +#: ../../include/functions_snmp_browser.php:545 +#: ../../godmode/massive/massive_edit_modules.php:511 +#: ../../godmode/modules/manage_network_components_form_network.php:76 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:384 +#: ../../godmode/agentes/module_manager_editor_network.php:241 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:746 +msgid "Auth and not privacy method" +msgstr "metodo con autenticacion y sin privacidad" -#: ../../godmode/agentes/module_manager_editor_prediction.php:153 -#: ../../godmode/agentes/planned_downtime.editor.php:534 -#: ../../enterprise/extensions/cron/functions.php:196 -#: ../../enterprise/extensions/vmware/functions.php:28 -msgid "Monthly" -msgstr "Mensualmente" +#: ../../include/functions_snmp_browser.php:545 +#: ../../godmode/massive/massive_edit_modules.php:511 +#: ../../godmode/modules/manage_network_components_form_network.php:76 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:384 +#: ../../godmode/agentes/module_manager_editor_network.php:241 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:746 +msgid "Auth and privacy method" +msgstr "metodo de autenticación y privacidad" -#: ../../godmode/agentes/module_manager_editor_prediction.php:154 -#: ../../enterprise/extensions/cron/functions.php:194 -#: ../../enterprise/extensions/vmware/functions.php:26 -msgid "Daily" -msgstr "Diariamente" +#: ../../include/functions_snmp_browser.php:558 +msgid "First match" +msgstr "Primera correspondencia" -#: ../../godmode/agentes/module_manager_editor_wmi.php:32 -#: ../../operation/agentes/status_monitor.php:386 -msgid "WMI server module" -msgstr "Módulo del servidor WMI" +#: ../../include/functions_snmp_browser.php:560 +msgid "Previous match" +msgstr "Coincidencia anterior" -#: ../../godmode/agentes/module_manager_editor_wmi.php:64 -#: ../../godmode/modules/manage_network_components_form_wmi.php:32 -msgid "WMI query" -msgstr "Consulta WMI" +#: ../../include/functions_snmp_browser.php:562 +msgid "Next match" +msgstr "Siguiente coincidencia" -#: ../../godmode/agentes/module_manager_editor_wmi.php:73 -#: ../../godmode/modules/manage_network_components_form_wmi.php:34 -msgid "Key string" -msgstr "Texto clave" +#: ../../include/functions_snmp_browser.php:564 +msgid "Last match" +msgstr "Última coincidencia" -#: ../../godmode/agentes/module_manager_editor_wmi.php:77 -#: ../../godmode/modules/manage_network_components_form_wmi.php:40 -msgid "Field number" -msgstr "Campo número" +#: ../../include/functions_snmp_browser.php:569 +msgid "Expand the tree (can be slow)" +msgstr "Expandir el árbol (puede ser lento)" -#: ../../godmode/agentes/planned_downtime.editor.php:38 -#: ../../godmode/alerts/alert_list.php:326 -#: ../../godmode/category/category.php:58 ../../include/functions_html.php:660 -#: ../../include/functions_html.php:661 ../../include/functions_html.php:791 -#: ../../include/functions_html.php:792 ../../operation/events/events.php:405 -#: ../../operation/snmpconsole/snmp_statistics.php:55 -#: ../../operation/snmpconsole/snmp_view.php:74 -#: ../../enterprise/include/functions_backup.php:496 -#: ../../enterprise/include/functions_backup.php:497 -msgid "List" -msgstr "Lista" +#: ../../include/functions_snmp_browser.php:571 +msgid "Collapse the tree" +msgstr "Contraer el árbol" -#: ../../godmode/agentes/planned_downtime.editor.php:115 -#: ../../godmode/agentes/planned_downtime.editor.php:187 -#: ../../godmode/agentes/planned_downtime.editor.php:941 -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" +#: ../../include/functions_snmp_browser.php:590 +msgid "SNMP v3 options" +msgstr "Opciones SNMP v3" -#: ../../godmode/agentes/planned_downtime.editor.php:212 -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:678 +#: ../../include/functions_snmp_browser.php:593 +msgid "Search options" +msgstr "Opciones de búsqueda" + +#: ../../include/functions_snmp_browser.php:603 +#: ../../godmode/agentes/module_manager_editor_network.php:27 +msgid "Search matches" +msgstr "Buscar coincidencias" + +#: ../../include/help/clippy/homepage.php:59 +msgid "Hi, can I help you?" +msgstr "Buenas. ¿Te puedo ayudar?" + +#: ../../include/help/clippy/homepage.php:60 msgid "" -"Not created. Error inserting data. Start time must be higher than the " -"current time" +"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 "" -"No ha sido creado. Error insertando datos. La fecha de comienzo debe ser " -"mayor que la fecha actual" +"Permiteme presentarme a mi mismo: Yo soy Pandorin, el molesto asistente de " +"Pandora FMS. Puedes seguir mis pasos para hacer tareas básicas en Pandora " +"FMS o puedes cerrarme y nunca volverme a ver." -#: ../../godmode/agentes/planned_downtime.editor.php:215 -#: ../../godmode/agentes/planned_downtime.editor.php:218 -#: ../../godmode/agentes/planned_downtime.editor.php:223 -#: ../../godmode/agentes/planned_downtime.editor.php:226 -#: ../../include/functions_planned_downtimes.php:45 -#: ../../include/functions_planned_downtimes.php:50 -#: ../../include/functions_planned_downtimes.php:53 -#: ../../include/functions_planned_downtimes.php:682 -#: ../../include/functions_planned_downtimes.php:687 -#: ../../include/functions_planned_downtimes.php:695 -#: ../../include/functions_planned_downtimes.php:702 -msgid "Not created. Error inserting data" -msgstr "No se pudo crear. Error al insertar los datos." +#: ../../include/help/clippy/homepage.php:67 +msgid "Close this wizard and don't open it again." +msgstr "Cierra el asistente y no vuelva a aparecer otra vez." -#: ../../godmode/agentes/planned_downtime.editor.php:215 -#: ../../include/functions_planned_downtimes.php:45 -#: ../../include/functions_planned_downtimes.php:683 -msgid "The end date must be higher than the start date" -msgstr "La fecha de fin debe ser mayor que la fecha de inicio" +#: ../../include/help/clippy/homepage.php:81 +msgid "Which task would you like to do first?" +msgstr "¿Qué tarea le gustaría hacer primero?" -#: ../../godmode/agentes/planned_downtime.editor.php:218 -#: ../../include/functions_planned_downtimes.php:688 -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:223 -#: ../../godmode/agentes/planned_downtime.editor.php:592 -#: ../../godmode/agentes/planned_downtime.editor.php:600 -#: ../../include/functions_planned_downtimes.php:50 -#: ../../include/functions_planned_downtimes.php:696 -msgid "The end time must be higher than the start time" -msgstr "La hora de fin debe ser mayor que la fecha de inicio" - -#: ../../godmode/agentes/planned_downtime.editor.php:226 -#: ../../godmode/agentes/planned_downtime.editor.php:581 -#: ../../include/functions_planned_downtimes.php:53 -#: ../../include/functions_planned_downtimes.php:703 -msgid "The end day must be higher than the start day" -msgstr "El día de fin debe ser mayor que el día de inicio" - -#: ../../godmode/agentes/planned_downtime.editor.php:275 -#: ../../include/functions_planned_downtimes.php:94 -#: ../../include/functions_planned_downtimes.php:717 -msgid "Each planned downtime must have a different name" -msgstr "Cada parada de servicio planeada debe tener un nombre diferente" - -#: ../../godmode/agentes/planned_downtime.editor.php:280 -#: ../../godmode/agentes/planned_downtime.editor.php:307 -#: ../../include/functions_planned_downtimes.php:100 -#: ../../include/functions_planned_downtimes.php:722 -msgid "Planned downtime must have a name" -msgstr "La parada de servicio planeada debe tener un nombre" - -#: ../../godmode/agentes/planned_downtime.editor.php:318 -msgid "Cannot be modified while the downtime is being executed" -msgstr "No pueden ser modificado mientras se está ejecutando la parada" - -#: ../../godmode/agentes/planned_downtime.editor.php:359 -#: ../../godmode/alerts/alert_actions.php:263 -#: ../../godmode/alerts/alert_list.php:196 -#: ../../godmode/alerts/alert_special_days.php:207 -#: ../../godmode/alerts/alert_templates.php:153 -#: ../../godmode/alerts/configure_alert_command.php:94 -#: ../../godmode/alerts/configure_alert_template.php:448 -#: ../../godmode/massive/massive_edit_modules.php:153 -#: ../../godmode/modules/manage_network_components.php:346 -#: ../../godmode/setup/gis.php:41 -#: ../../include/functions_planned_downtimes.php:122 -#: ../../operation/agentes/pandora_networkmap.php:247 -#: ../../operation/incidents/incident.php:111 -#: ../../operation/snmpconsole/snmp_view.php:115 -#: ../../enterprise/extensions/ipam/ipam_action.php:128 -#: ../../enterprise/extensions/ipam/ipam_massive.php:42 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:99 -#: ../../enterprise/godmode/alerts/alert_events.php:375 -#: ../../enterprise/godmode/alerts/alert_events_list.php:95 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:159 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:106 -#: ../../enterprise/godmode/modules/local_components.php:309 -#: ../../enterprise/godmode/policies/policies.php:159 -#: ../../enterprise/godmode/policies/policy_modules.php:1039 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:67 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:52 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:130 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:121 -#: ../../enterprise/operation/agentes/transactional_map.php:112 -msgid "Could not be updated" -msgstr "No se pudo actualizar" - -#: ../../godmode/agentes/planned_downtime.editor.php:485 -msgid "Quiet: Modules will not generate events or fire alerts." -msgstr "Tranquilo: Módulos no generarán eventos o lanzar alertas." - -#: ../../godmode/agentes/planned_downtime.editor.php:486 -msgid "Disable Agents: Disables the selected agents." -msgstr "Deshabilitar agentes: Deshabilita los agentes seleccionados" - -#: ../../godmode/agentes/planned_downtime.editor.php:487 -msgid "Disable Alerts: Disable alerts for the selected agents." +#: ../../include/help/clippy/homepage.php:85 +msgid "Ping to a Linux or Windows server with a Pandora FMS agent" msgstr "" -"Deshabilitar alertas: Deshabilita las alertas de los agentes seleccionados" +"Hacer un ping a un servidor Linux o Windows con un agente de Pandora FMS" -#: ../../godmode/agentes/planned_downtime.editor.php:489 -#: ../../godmode/agentes/planned_downtime.list.php:428 -msgid "Disabled Agents" -msgstr "Agentes desactivados" +#: ../../include/help/clippy/homepage.php:90 +msgid "Create a alert by email in a critical module." +msgstr "Crear una alerta que avise por email para un módulo crítico." -#: ../../godmode/agentes/planned_downtime.editor.php:490 -#: ../../godmode/agentes/planned_downtime.list.php:429 -msgid "Disabled only Alerts" -msgstr "Deshabilitar sólo alertas" - -#: ../../godmode/agentes/planned_downtime.editor.php:493 -#: ../../godmode/agentes/planned_downtime.list.php:395 -#: ../../include/functions_reporting_html.php:3821 -#: ../../enterprise/include/functions_reporting.php:4943 -#: ../../enterprise/include/functions_reporting_pdf.php:2422 -msgid "Execution" -msgstr "Ejecución" - -#: ../../godmode/agentes/planned_downtime.editor.php:494 -#: ../../godmode/agentes/planned_downtime.list.php:153 -msgid "Once" -msgstr "Una vez" - -#: ../../godmode/agentes/planned_downtime.editor.php:495 -#: ../../godmode/agentes/planned_downtime.list.php:153 -#: ../../godmode/agentes/planned_downtime.list.php:434 -msgid "Periodically" -msgstr "Periodicamente" - -#: ../../godmode/agentes/planned_downtime.editor.php:500 -msgid "Configure the time" -msgstr "Configurar el tiempo" - -#: ../../godmode/agentes/planned_downtime.editor.php:506 -#: ../../include/functions_reporting_html.php:63 -#: ../../include/functions_reporting_html.php:3394 -msgid "From:" -msgstr "Desde:" - -#: ../../godmode/agentes/planned_downtime.editor.php:510 -#: ../../godmode/agentes/planned_downtime.editor.php:521 -#: ../../operation/netflow/nf_live_view.php:240 -#: ../../enterprise/extensions/cron/main.php:332 -#: ../../enterprise/operation/log/log_viewer.php:218 -#: ../../enterprise/operation/log/log_viewer.php:226 -msgid "Date format in Pandora is year/month/day" -msgstr "El formato de fecha de Pandora es año/mes/día" - -#: ../../godmode/agentes/planned_downtime.editor.php:512 -#: ../../godmode/agentes/planned_downtime.editor.php:523 -#: ../../godmode/agentes/planned_downtime.editor.php:591 -#: ../../godmode/agentes/planned_downtime.editor.php:599 -#: ../../godmode/alerts/configure_alert_template.php:543 -#: ../../godmode/alerts/configure_alert_template.php:547 -#: ../../godmode/reporting/reporting_builder.item_editor.php:848 -#: ../../godmode/reporting/reporting_builder.item_editor.php:857 -#: ../../operation/netflow/nf_live_view.php:242 -#: ../../enterprise/extensions/cron/main.php:334 -#: ../../enterprise/operation/log/log_viewer.php:220 -#: ../../enterprise/operation/log/log_viewer.php:228 -msgid "Time format in Pandora is hours(24h):minutes:seconds" -msgstr "El formato de hora en Pandora es horas(24h):minutos:segundos" - -#: ../../godmode/agentes/planned_downtime.editor.php:517 -#: ../../include/functions_reporting_html.php:64 -#: ../../include/functions_reporting_html.php:3395 -msgid "To:" -msgstr "Hasta:" - -#: ../../godmode/agentes/planned_downtime.editor.php:531 -msgid "Type Periodicity:" -msgstr "Periodicidad del tipo" - -#: ../../godmode/agentes/planned_downtime.editor.php:544 -#: ../../godmode/alerts/alert_special_days.php:327 -#: ../../godmode/alerts/alert_view.php:208 -#: ../../godmode/alerts/configure_alert_template.php:524 -#: ../../include/functions.php:913 ../../include/functions_reporting.php:10006 -#: ../../enterprise/godmode/alerts/alert_events.php:431 -#: ../../enterprise/include/functions_reporting.php:4979 -msgid "Mon" -msgstr "Lun" - -#: ../../godmode/agentes/planned_downtime.editor.php:547 -#: ../../godmode/alerts/alert_special_days.php:328 -#: ../../godmode/alerts/alert_view.php:209 -#: ../../godmode/alerts/configure_alert_template.php:526 -#: ../../include/functions.php:915 ../../include/functions_reporting.php:10010 -#: ../../enterprise/godmode/alerts/alert_events.php:433 -#: ../../enterprise/include/functions_reporting.php:4983 -msgid "Tue" -msgstr "Mar" - -#: ../../godmode/agentes/planned_downtime.editor.php:550 -#: ../../godmode/alerts/alert_special_days.php:329 -#: ../../godmode/alerts/alert_view.php:210 -#: ../../godmode/alerts/configure_alert_template.php:528 -#: ../../include/functions.php:917 ../../include/functions_reporting.php:10014 -#: ../../enterprise/godmode/alerts/alert_events.php:435 -#: ../../enterprise/include/functions_reporting.php:4987 -msgid "Wed" -msgstr "Mié" - -#: ../../godmode/agentes/planned_downtime.editor.php:553 -#: ../../godmode/alerts/alert_special_days.php:330 -#: ../../godmode/alerts/alert_view.php:211 -#: ../../godmode/alerts/configure_alert_template.php:530 -#: ../../include/functions.php:919 ../../include/functions_reporting.php:10018 -#: ../../enterprise/godmode/alerts/alert_events.php:437 -#: ../../enterprise/include/functions_reporting.php:4991 -msgid "Thu" -msgstr "Jue" - -#: ../../godmode/agentes/planned_downtime.editor.php:556 -#: ../../godmode/alerts/alert_special_days.php:331 -#: ../../godmode/alerts/alert_view.php:212 -#: ../../godmode/alerts/configure_alert_template.php:532 -#: ../../include/functions.php:921 ../../include/functions_reporting.php:10022 -#: ../../enterprise/godmode/alerts/alert_events.php:439 -#: ../../enterprise/include/functions_reporting.php:4995 -msgid "Fri" -msgstr "Vie" - -#: ../../godmode/agentes/planned_downtime.editor.php:559 -#: ../../godmode/alerts/alert_special_days.php:332 -#: ../../godmode/alerts/alert_view.php:213 -#: ../../godmode/alerts/configure_alert_template.php:534 -#: ../../include/functions.php:923 ../../include/functions_reporting.php:10026 -#: ../../enterprise/godmode/alerts/alert_events.php:441 -#: ../../enterprise/include/functions_reporting.php:4999 -msgid "Sat" -msgstr "Sáb" - -#: ../../godmode/agentes/planned_downtime.editor.php:562 -#: ../../godmode/alerts/alert_special_days.php:326 -#: ../../godmode/alerts/alert_view.php:214 -#: ../../godmode/alerts/configure_alert_template.php:536 -#: ../../include/functions.php:925 ../../include/functions_reporting.php:10030 -#: ../../enterprise/godmode/alerts/alert_events.php:443 -#: ../../enterprise/include/functions_reporting.php:5003 -msgid "Sun" -msgstr "Dom" - -#: ../../godmode/agentes/planned_downtime.editor.php:569 -msgid "From day:" -msgstr "Desde el día:" - -#: ../../godmode/agentes/planned_downtime.editor.php:575 -msgid "To day:" -msgstr "Hasta el día:" - -#: ../../godmode/agentes/planned_downtime.editor.php:586 -msgid "From hour:" -msgstr "Desde la hora:" - -#: ../../godmode/agentes/planned_downtime.editor.php:594 -msgid "To hour:" -msgstr "Hasta la hora:" - -#: ../../godmode/agentes/planned_downtime.editor.php:709 -msgid "Available agents" -msgstr "Agentes disponibles" - -#: ../../godmode/agentes/planned_downtime.editor.php:713 -msgid "Available modules:" -msgstr "Módulos disponibles:" - -#: ../../godmode/agentes/planned_downtime.editor.php:714 -msgid "Only for type Quiet for downtimes." -msgstr "Sólo para tipo Quiet para paradas" - -#: ../../godmode/agentes/planned_downtime.editor.php:728 -msgid "Agents planned for this downtime" -msgstr "Agentes planificados para esta parada" - -#: ../../godmode/agentes/planned_downtime.editor.php:743 -msgid "There are no agents" -msgstr "No hay agentes" - -#: ../../godmode/agentes/planned_downtime.editor.php:755 -#: ../../godmode/users/user_list.php:272 ../../include/ajax/module.php:751 -#: ../../include/functions_treeview.php:602 -#: ../../include/functions_events.php:2038 -#: ../../mobile/operation/agent.php:161 ../../mobile/operation/agents.php:85 -#: ../../mobile/operation/agents.php:337 ../../mobile/operation/agents.php:339 -#: ../../mobile/operation/agents.php:341 ../../mobile/operation/agents.php:342 -#: ../../operation/agentes/estado_agente.php:531 -#: ../../operation/agentes/estado_generalagente.php:205 -#: ../../operation/agentes/ver_agente.php:696 -#: ../../operation/gis_maps/ajax.php:219 ../../operation/gis_maps/ajax.php:321 -#: ../../operation/search_agents.php:66 ../../operation/search_users.php:47 -#: ../../enterprise/meta/agentsearch.php:100 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1149 -#: ../../enterprise/operation/agentes/policy_view.php:309 -#: ../../enterprise/operation/agentes/ver_agente.php:75 -msgid "Last contact" -msgstr "Último contacto" - -#: ../../godmode/agentes/planned_downtime.editor.php:779 -msgid "All alerts" -msgstr "Todas las alertas" - -#: ../../godmode/agentes/planned_downtime.editor.php:782 -msgid "Entire agent" -msgstr "Agente completo" - -#: ../../godmode/agentes/planned_downtime.editor.php:786 -#: ../../godmode/agentes/planned_downtime.editor.php:891 -msgid "All modules" -msgstr "Todos los módulos" - -#: ../../godmode/agentes/planned_downtime.editor.php:789 -#: ../../godmode/agentes/planned_downtime.editor.php:883 -#: ../../godmode/agentes/planned_downtime.editor.php:887 -msgid "Some modules" -msgstr "Algunos módulos" - -#: ../../godmode/agentes/planned_downtime.editor.php:855 -msgid "Add Module:" -msgstr "Añadir módulo:" - -#: ../../godmode/agentes/planned_downtime.editor.php:1071 -msgid "Please select a module." -msgstr "Por favor, seleccione un módulo" - -#: ../../godmode/agentes/planned_downtime.editor.php:1203 +#: ../../include/help/clippy/homepage.php:209 msgid "" -"WARNING: If you edit this planned downtime, the data of future SLA reports " -"may be altered" +"The first thing you have to do is to setup the config email in the Pandora " +"FMS Server." msgstr "" -"ADVERTENCIA: Si se modifica esta parada planificada, los datos de los " -"futuros informes SLA pueden ser alterados" +"La primera cosa que tienes que hacer es configurar el email en el servidor " +"de Pandora FMS." -#: ../../godmode/agentes/planned_downtime.export_csv.php:199 -#: ../../godmode/agentes/planned_downtime.list.php:358 -msgid "No planned downtime" -msgstr "No hay ninguna parada planificada" +#: ../../include/help/clippy/homepage.php:213 +msgid "If you have it already configured you can go to the next step." +msgstr "Si ya lo tienes ya configurado, puedes ir al siguiente paso." -#: ../../godmode/agentes/planned_downtime.list.php:46 -msgid "An error occurred while migrating the malformed planned downtimes" -msgstr "" -"Ha ocurrido un error mientras se migraban paradas planificadas mal formadas" +#: ../../include/help/clippy/homepage.php:218 +msgid "Now, pull down the Manage alerts menu and click on Actions. " +msgstr "Ahora, abra el menú Administrar alertas y haga click en Acciones. " -#: ../../godmode/agentes/planned_downtime.list.php:47 -msgid "Please run the migration again or contact with the administrator" -msgstr "" -"Por favor, ejecute el script de migración de nuevo o contacte con el " -"administrador" - -#: ../../godmode/agentes/planned_downtime.list.php:79 -msgid "An error occurred stopping the planned downtime" -msgstr "Se produjo un error deteniendo la parada planificada" - -#: ../../godmode/agentes/planned_downtime.list.php:101 -msgid "This planned downtime is running" -msgstr "Esta parada planificada se está ejecutando" - -#: ../../godmode/agentes/planned_downtime.list.php:108 -#: ../../godmode/events/event_filter.php:57 -#: ../../godmode/events/event_filter.php:78 -#: ../../godmode/modules/manage_nc_groups.php:123 -#: ../../godmode/netflow/nf_edit.php:77 ../../godmode/netflow/nf_edit.php:101 -#: ../../godmode/netflow/nf_item_list.php:106 -#: ../../godmode/netflow/nf_item_list.php:127 -#: ../../godmode/reporting/graphs.php:91 -#: ../../godmode/reporting/graphs.php:101 -#: ../../godmode/reporting/graphs.php:140 -#: ../../godmode/reporting/map_builder.php:94 -#: ../../operation/reporting/graph_viewer.php:46 -#: ../../operation/reporting/graph_viewer.php:53 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:99 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:120 -#: ../../enterprise/godmode/reporting/graph_template_list.php:90 -#: ../../enterprise/godmode/reporting/graph_template_list.php:110 -msgid "Not deleted. Error deleting data" -msgstr "No se pudo borrar. Error al borrar los datos." - -#: ../../godmode/agentes/planned_downtime.list.php:143 -#: ../../godmode/alerts/alert_list.list.php:532 -#: ../../godmode/alerts/alert_list.list.php:536 -#: ../../godmode/alerts/alert_templates.php:94 -#: ../../operation/agentes/gis_view.php:181 -#: ../../operation/reporting/reporting_viewer.php:194 -#: ../../enterprise/godmode/alerts/alert_events_list.php:559 -#: ../../enterprise/godmode/policies/policy_alerts.php:336 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:222 -#: ../../enterprise/include/functions_reporting_pdf.php:2217 -#: ../../enterprise/include/functions_reporting_pdf.php:2253 -#: ../../enterprise/include/functions_reporting_pdf.php:2291 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:148 -msgid "From" -msgstr "De" - -#: ../../godmode/agentes/planned_downtime.list.php:145 -#: ../../operation/agentes/gis_view.php:182 -#: ../../enterprise/include/functions_reporting_pdf.php:2254 -#: ../../enterprise/include/functions_reporting_pdf.php:2292 -msgid "To" -msgstr "Para" - -#: ../../godmode/agentes/planned_downtime.list.php:154 -msgid "Execution type" -msgstr "Tipo de ejecución" - -#: ../../godmode/agentes/planned_downtime.list.php:156 -msgid "Show past downtimes" -msgstr "Mostrar paradas antiguas" - -#: ../../godmode/agentes/planned_downtime.list.php:391 -msgid "Name #Ag." -msgstr "Nombre (núm. ag.)" - -#: ../../godmode/agentes/planned_downtime.list.php:396 -#: ../../godmode/menu.php:131 ../../godmode/setup/setup.php:138 -#: ../../include/functions_reports.php:637 -#: ../../include/functions_reports.php:639 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:210 -#: ../../enterprise/godmode/modules/configure_local_component.php:311 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:166 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:83 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:101 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:71 -msgid "Configuration" -msgstr "Configuración" - -#: ../../godmode/agentes/planned_downtime.list.php:397 -#: ../../godmode/agentes/planned_downtime.list.php:446 -#: ../../enterprise/extensions/backup/main.php:136 -#: ../../enterprise/operation/agentes/transactional_map.php:197 -msgid "Running" -msgstr "Ejecutándose" - -#: ../../godmode/agentes/planned_downtime.list.php:400 -#: ../../godmode/agentes/planned_downtime.list.php:456 -msgid "Stop downtime" -msgstr "Detener parada planificada" - -#: ../../godmode/agentes/planned_downtime.list.php:433 -msgid "once" -msgstr "Una vez" - -#: ../../godmode/agentes/planned_downtime.list.php:442 -msgid "Not running" -msgstr "No está en ejecución" - -#: ../../godmode/agentes/planned_downtime.list.php:477 -#: ../../godmode/alerts/alert_view.php:113 ../../godmode/extensions.php:193 -#: ../../godmode/extensions.php:209 -#: ../../godmode/modules/manage_network_components.php:583 -#: ../../include/functions.php:946 ../../include/functions.php:952 -#: ../../include/functions.php:955 ../../include/functions_treeview.php:158 -#: ../../include/functions_treeview.php:392 -#: ../../include/functions_ui.php:2001 ../../include/functions_ui.php:2011 -#: ../../include/functions_db.php:156 ../../include/functions_events.php:1778 -#: ../../include/functions_events.php:1946 -#: ../../include/functions_events.php:2013 -#: ../../include/functions_events.php:2029 -#: ../../include/functions_events.php:2039 -#: ../../include/functions_events.php:2044 -#: ../../include/functions_events.php:2062 -#: ../../include/functions_events.php:2141 -#: ../../include/functions_events.php:2195 -#: ../../include/functions_events.php:2207 -#: ../../include/functions_events.php:2219 -#: ../../include/functions_events.php:2241 -#: ../../include/functions_events.php:2256 -#: ../../include/functions_events.php:2266 -#: ../../include/functions_events.php:2355 -#: ../../include/functions_events.php:2432 -#: ../../include/functions_events.php:2454 -#: ../../include/functions_events.php:2464 -#: ../../include/functions_reporting_html.php:488 -#: ../../include/functions_reporting_html.php:567 -#: ../../include/functions_reporting_html.php:3173 -#: ../../include/functions_reporting_html.php:3211 -#: ../../mobile/operation/agent.php:153 ../../mobile/operation/agent.php:167 -#: ../../mobile/operation/events.php:148 ../../mobile/operation/events.php:159 -#: ../../mobile/operation/events.php:167 ../../mobile/operation/events.php:240 -#: ../../mobile/operation/events.php:267 ../../mobile/operation/events.php:275 -#: ../../operation/agentes/estado_generalagente.php:151 -#: ../../operation/agentes/estado_generalagente.php:163 -#: ../../operation/agentes/estado_generalagente.php:176 -#: ../../operation/agentes/estado_generalagente.php:280 -#: ../../operation/agentes/estado_generalagente.php:359 -#: ../../operation/snmpconsole/snmp_view.php:691 -#: ../../operation/snmpconsole/snmp_view.php:710 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:159 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:181 -#: ../../enterprise/extensions/ipam/ipam_network.php:559 -#: ../../enterprise/extensions/ipam/ipam_network.php:594 -#: ../../enterprise/include/functions_reporting.php:4827 -#: ../../enterprise/include/functions_reporting.php:5159 -#: ../../enterprise/include/functions_reporting_pdf.php:1314 -#: ../../enterprise/include/functions_reporting_pdf.php:1395 -#: ../../enterprise/include/functions_reporting_pdf.php:2060 -#: ../../enterprise/include/functions_servicemap.php:265 -#: ../../enterprise/include/functions_services.php:1012 -#: ../../enterprise/include/functions_services.php:1219 -#: ../../enterprise/include/functions_services.php:1697 -#: ../../enterprise/include/functions_visual_map.php:277 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:437 -msgid "N/A" -msgstr "N/A" - -#: ../../godmode/agentes/planned_downtime.list.php:508 -#: ../../godmode/modules/manage_network_templates.php:216 -#: ../../include/graphs/functions_flot.php:266 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:350 -#: ../../enterprise/operation/log/log_viewer.php:239 -#: ../../enterprise/operation/reporting/custom_reporting.php:59 -msgid "Export to CSV" -msgstr "Exportar a CSV" - -#: ../../godmode/agentes/planned_downtime.list.php:535 +#: ../../include/help/clippy/modules_not_learning_mode.php:40 msgid "" -"WARNING: If you delete this planned downtime, it will not be taken into " -"account in future SLA reports" +"Please note that you have your agent setup to do not add new modules coming " +"from the data XML." msgstr "" -"ADVERTENCIA: Si se borra esta parada planificada, no se tendrá en cuenta en " -"futuros informes SLA" +"Por favor, tenga en cuenta que si no tiene activado el modo aprendizaje no " +"se añadirán nuevos módulos que vengan en el XML." -#: ../../godmode/agentes/planned_downtime.list.php:541 -msgid "WARNING: There are malformed planned downtimes" -msgstr "ADVERTENCIA: Hay paradas planificadas mal formadas" +#: ../../include/help/clippy/modules_not_learning_mode.php:41 +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 fichero de configuración, no se tendrá en" -#: ../../godmode/agentes/planned_downtime.list.php:541 -msgid "Do you want to migrate automatically the malformed items?" -msgstr "¿Quiere migrar automáticamente los elementos mal formados?" +#: ../../include/help/clippy/modules_not_learning_mode.php:42 +msgid "" +"You should use the \"normal\" mode (non learn) only when you don't intend to " +"add more modules to the agent." +msgstr "" +"Debería usar el modo \"normal\" (no aprendizaje) solo cuando no tenga " +"intención de añadir más módulos al agente." -#: ../../godmode/alerts/alert_actions.php:66 -#: ../../godmode/alerts/alert_actions.php:92 -#: ../../godmode/alerts/alert_actions.php:110 -#: ../../godmode/alerts/alert_actions.php:127 -#: ../../godmode/alerts/alert_actions.php:207 -#: ../../godmode/alerts/alert_actions.php:218 -#: ../../godmode/alerts/alert_actions.php:287 -#: ../../godmode/alerts/alert_actions.php:306 -#: ../../godmode/alerts/alert_actions.php:319 -msgid "Alert actions" -msgstr "Acciones de alerta" +#: ../../include/help/clippy/interval_agent_min.php:39 +msgid "Interval Agent." +msgstr "Intervalo de agente" -#: ../../godmode/alerts/alert_actions.php:140 -#: ../../godmode/reporting/map_builder.php:183 -#: ../../godmode/reporting/map_builder.php:192 -#: ../../include/functions_agents.php:684 -#: ../../enterprise/godmode/policies/policies.php:180 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:254 -msgid "Successfully copied" -msgstr "Copia realizada correctamente" +#: ../../include/help/clippy/interval_agent_min.php:44 +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, tenga en cuenta que no se recomienda que tengan los agentes con " +"un intervalo de monitorización por debajo de 300 segundos. Esto tendrá un " +"impacto serio en el rendimiento del servidor. Por ejemplo, tener 200 agentes " +"con un intervalo de un minuto, es lo mismo que tener 1.000 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." -#: ../../godmode/alerts/alert_actions.php:141 -#: ../../enterprise/godmode/policies/policies.php:181 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:255 -msgid "Could not be copied" -msgstr "No se ha podido copiar" +#: ../../include/help/clippy/agent_out_of_limits.php:39 +msgid "Agent contact date passed it's ETA!." +msgstr "¡La fecha de contacto del agente pasó su plazo estimado!" -#: ../../godmode/alerts/alert_actions.php:342 -#: ../../godmode/massive/massive_copy_modules.php:224 -#: ../../godmode/reporting/map_builder.php:214 -#: ../../operation/agentes/pandora_networkmap.php:406 -#: ../../operation/agentes/pandora_networkmap.php:483 -#: ../../enterprise/dashboard/dashboards.php:98 -#: ../../enterprise/dashboard/dashboards.php:137 -#: ../../enterprise/godmode/policies/policies.php:434 -#: ../../enterprise/godmode/policies/policy_modules.php:1333 -msgid "Copy" -msgstr "Copiar" +#: ../../include/help/clippy/agent_out_of_limits.php:44 +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 tu agente dejado de informar o el servidor tiene algún " +"problema (demasiado carga o simplemente se ha caido). Comprueba también la " +"conectividad entre el agente y el servidor." -#: ../../godmode/alerts/alert_actions.php:398 -msgid "No alert actions configured" -msgstr "Sin acciones de alertas configuradas" +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:36 +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 cómo crear una acción de correo electrónico: Haz click en " +"el botón Crear y rellena el formulario que aparecerá en la siguiente " +"pantalla." -#: ../../godmode/alerts/alert_commands.php:105 -#: ../../godmode/alerts/alert_commands.php:109 -#: ../../godmode/alerts/alert_commands.php:127 -#: ../../godmode/alerts/alert_commands.php:135 -#: ../../godmode/alerts/alert_view.php:471 -#: ../../godmode/alerts/alert_view.php:548 -#: ../../godmode/alerts/configure_alert_template.php:687 -#: ../../enterprise/godmode/alerts/alert_events.php:474 +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:51 +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 busca un módulo en estado " +"crítico para enlazarle la alerta." + +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:56 +msgid "" +"Click on the arrow to drop down the Monitoring submenu and select Monitor " +"Detail." +msgstr "" +"Haga click en la flecha para desplegar el submenú Monitorización y " +"seleccione Detalle Monitor." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:35 +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 " +"\"critico\" para enlazarle una alerta." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:39 +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 sólo una parte de ella." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:44 +msgid "Click on Show button to get the modules list filtered." +msgstr "Haz click en botón Mostrar para obtener la lista filtrada." + +#: ../../include/help/clippy/operation_agentes_status_monitor.php:60 +msgid "" +"Now, to edit the module, click on the wrench that appears in the type column." +msgstr "" +"Ahora, para editar el módulo, haz click en la llave fija que aparece en la " +"columna del tipo." + +#: ../../include/help/clippy/extension_cron_send_email.php:39 +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:" + +#: ../../include/help/clippy/extension_cron_send_email.php:41 +msgid "Please check if the email configuration is correct." +msgstr "Por favor, confirmar que la configuración de correo-e es correcta." + +#: ../../include/help/clippy/data_configuration_module.php:39 +msgid "Data Configuration Module." +msgstr "Módulos de datos de configuración" + +#: ../../include/help/clippy/data_configuration_module.php:44 +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, tenga en cuenta que la información aquí proporcionada afecta la " +"forma de cómo 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:50 +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 "" +"Información importada la PRIMERA vez desde el XML llenará la información " +"que se puede ver 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_modificar_agente.php:35 +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:39 +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:44 +msgid "If you have typed the name correctly you will see the agent." +msgstr "Si ha introducido el nombre correctamente, verá el agente." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:60 +msgid "Now, please choose the agent you searched." +msgstr "Ahora, por favor elige el agente que buscaste." + +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:65 +msgid "Choose the agent and click on the name." +msgstr "Elige el agente y haz click en el nombre" + +#: ../../include/help/clippy/topology_group.php:39 +msgid "Topology Group" +msgstr "Tipología de grupo" + +#: ../../include/help/clippy/topology_group.php:44 +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 "" +"Tenga en cuenta que el grupo mapas de topología no muestran la relación " +"padre entre los nodos , sólo muestra el grupo padre y el agente de " +"distribución dentro de ellos " + +#: ../../include/help/clippy/modules_not_init.php:39 +msgid "You have non initialized modules" +msgstr "Tienes módulos sin inicializar." + +#: ../../include/help/clippy/modules_not_init.php:44 +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 debe ser inicializado y seras capaz de 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 puede 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:35 +msgid "Fill the name of your action." +msgstr "Rellena con el nombre de la acción." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:39 +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 "" +"Seleccione el grupo en la lista desplegable y este es 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:43 +msgid "In the command field select \"email\"." +msgstr "En este campo de comando elige \"email\"." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:47 +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á mas ayuda." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:53 +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 separados por comas " +"(,) o espacios en blanco, en las que deseas recibir las alertas de email." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:58 +msgid "" +"In the \"Subject\" field you can use the macros _agent_ or _module_ for " +"each name." +msgstr "" +"El campo \"Subject\" puedes usar macros _agent_ o _module_ para el asunto " +"del email." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:63 +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 puede utilizar las macros. Hay mas información " +"acerca de las macros, haz click en el icono de ayuda." + +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:69 +msgid "Click on Create button to create the action." +msgstr "Haz click en el botón de crear, para crear la acción." + +#: ../../include/help/clippy/servers_down.php:39 +msgid "All servers down" +msgstr "Todo los servidores están caídos" + +#: ../../include/help/clippy/servers_down.php:44 +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 "" +"Usted puede activar todos los servidores. Tiene que ir al terminal de linux " +"y ejecutar el siguiente comando: \"sudo /etc/init.d/pandora_server " +"restart\". Es posible que necesite introducir la contraseña de root." + +#: ../../include/help/clippy/operation_agentes_ver_agente.php:36 +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 la alerta ha sido creada. Haz click 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:37 +msgid "" +"And restart your pandora server to read again general configuration tokens." +msgstr "" +"Y reinicia tu servidor de Pandora para leer otra vez lo tokens generales de " +"configuración." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:35 +msgid "Now you must go to Modules. Don't worry I'll lead you." +msgstr "" +"Ahora debes ir a los módulos. Pero no te preocupes, te guiare paso a paso." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:40 +msgid "Click in this tab.." +msgstr "Haz click en esta pestaña." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:56 +msgid "Now you must create the module. Don't worry, i'll teach you." +msgstr "Ahora debes crear el módulo, pero no te preocupes, te enseñaré." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:60 +msgid "Choose the network server module." +msgstr "Elige el módulo de servidor de red." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:64 +msgid "And click the button." +msgstr "Y pica el botón." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:80 +msgid "Now you must create the module. Don't worry, i'll teach you ." +msgstr "Ahora debes crear el módulo, pero no te preocupes, te enseñaré." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:84 +msgid "Now we are going to fill the form." +msgstr "Ahora nosotros vamos a rellenar el formulario." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:88 +msgid "Please choose Network Management." +msgstr "Por favor, selecciona \"Network Management\"." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:92 +msgid "Choose the component named \"Host alive\"." +msgstr "Selecciona el componente llamado \"Host alive\"." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:96 +msgid "You can change the name if you want." +msgstr "Puedes cambiar el nombre si quieres." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:100 +msgid "Check if the IP showed is the IP of your machine." +msgstr "Prueba si la IP mostrado es la IP de tu maquina." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:104 +msgid "And only to finish it is clicking this button." +msgstr "Y ya solamente para terminar pulsa en este botón." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:121 +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 problema, el color de estado pasara a " +"rojo o verde." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:137 +msgid "Click on alerts tab and then fill the form to add an alert." +msgstr "" +"Haz click en la pestaña de alertas para rellenar el formulario con la alerta " +"a añadir." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:152 +msgid "Select the critical module." +msgstr "Elige el módulo critico." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 +msgid "In template select \"Critical Condition\"." +msgstr "En las plantillas selecciona \"Critical Condition\"." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:160 +msgid "Now, select the action created before." +msgstr "Ahora, elige la acción creada antes." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:165 +msgid "Click on Add Alert button to create the alert." +msgstr "Haz click en el botón añadir alerta para crear la alerta." + +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:181 +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:39 +msgid "Excesive Queued." +msgstr "Encolamiento excesivo" + +#: ../../include/help/clippy/server_queued_modules.php:44 +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 "" +"Tiene demasiados ítems en cola. Esto puede pasar si su 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ía considerar la obtención de soporte sobre esto." + +#: ../../include/help/clippy/module_unknow.php:39 +msgid "You have unknown modules in this agent." +msgstr "Tienes módulos en estado desconocido en este agente." + +#: ../../include/help/clippy/module_unknow.php:44 +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/functions_pandora_networkmap.php:740 #, php-format -msgid "Field %s" -msgstr "Campo %s" +msgid "Edit node %s" +msgstr "Modificar nodo %s" + +#: ../../include/functions_pandora_networkmap.php:741 +msgid "Holding Area" +msgstr "Buffer de procesamiento" + +#: ../../include/functions_pandora_networkmap.php:742 +msgid "Show details and options" +msgstr "Mostrar los detalles y opciones" + +#: ../../include/functions_pandora_networkmap.php:743 +msgid "Add a interface link" +msgstr "Añadir enlace de interfaz" + +#: ../../include/functions_pandora_networkmap.php:744 +msgid "Set parent interface" +msgstr "Establecer padre en la relación de interfaz" + +#: ../../include/functions_pandora_networkmap.php:745 +msgid "Set as children" +msgstr "Establecer como hijo" + +#: ../../include/functions_pandora_networkmap.php:746 +msgid "Set parent" +msgstr "Establecer como padre" + +#: ../../include/functions_pandora_networkmap.php:747 +#: ../../include/functions_pandora_networkmap.php:754 +msgid "Abort the action of set relationship" +msgstr "Cancela la acción de relacionar por parentesco" + +#: ../../include/functions_pandora_networkmap.php:749 +#: ../../include/functions_pandora_networkmap.php:1525 +msgid "Add node" +msgstr "Añadir nodo" + +#: ../../include/functions_pandora_networkmap.php:750 +msgid "Set center" +msgstr "Fijar centro" + +#: ../../include/functions_pandora_networkmap.php:752 +msgid "Refresh Holding area" +msgstr "Actualizar buffer de procesamiento" + +#: ../../include/functions_pandora_networkmap.php:753 +msgid "Abort the action of set interface relationship" +msgstr "Cancelar enlace de interfaz" + +#: ../../include/functions_pandora_networkmap.php:939 +#: ../../include/functions_maps.php:62 +msgid "Copy of " +msgstr "Copiar de " + +#: ../../include/functions_pandora_networkmap.php:1262 +msgid "Open Minimap" +msgstr "Abrir Minimapa" + +#: ../../include/functions_pandora_networkmap.php:1269 +msgid "Hide Labels" +msgstr "Ocultar textos" + +#: ../../include/functions_pandora_networkmap.php:1360 +msgid "Edit node" +msgstr "Modificar nodo" + +#: ../../include/functions_pandora_networkmap.php:1371 +msgid "Adresses" +msgstr "Direcciones" + +#: ../../include/functions_pandora_networkmap.php:1373 +msgid "OS type" +msgstr "Tipo de SO" + +#: ../../include/functions_pandora_networkmap.php:1378 +#: ../../include/functions_pandora_networkmap.php:1379 +msgid "Node Details" +msgstr "Detalles de nodo" + +#: ../../include/functions_pandora_networkmap.php:1388 +msgid "Ip" +msgstr "IP" + +#: ../../include/functions_pandora_networkmap.php:1389 +msgid "MAC" +msgstr "MAC" + +#: ../../include/functions_pandora_networkmap.php:1398 +#: ../../include/functions_pandora_networkmap.php:1399 +msgid "Interface Information (SNMP)" +msgstr "Información de interfaces (SNMP)" + +#: ../../include/functions_pandora_networkmap.php:1406 +msgid "Shape" +msgstr "Forma" + +#: ../../include/functions_pandora_networkmap.php:1408 +msgid "Circle" +msgstr "Círculo" + +#: ../../include/functions_pandora_networkmap.php:1409 +msgid "Square" +msgstr "Cuadrado" + +#: ../../include/functions_pandora_networkmap.php:1410 +msgid "Rhombus" +msgstr "Rombo" + +#: ../../include/functions_pandora_networkmap.php:1420 +#: ../../include/functions_pandora_networkmap.php:1581 +msgid "name fictional node" +msgstr "Nombre de nodo ficticio" + +#: ../../include/functions_pandora_networkmap.php:1421 +#: ../../include/functions_pandora_networkmap.php:1582 +msgid "Networkmap to link" +msgstr "Enlace a mapa de red" + +#: ../../include/functions_pandora_networkmap.php:1427 +msgid "Update fictional node" +msgstr "Actualizar nodo ficticio" + +#: ../../include/functions_pandora_networkmap.php:1430 +#: ../../include/functions_pandora_networkmap.php:1431 +msgid "Node options" +msgstr "Opciones de nodo" + +#: ../../include/functions_pandora_networkmap.php:1438 +#: ../../include/functions_pandora_networkmap.php:1493 +msgid "Node source" +msgstr "Nodo origen" + +#: ../../include/functions_pandora_networkmap.php:1439 +#: ../../include/functions_pandora_networkmap.php:1494 +msgid "Interface source" +msgstr "Interfaz origen" + +#: ../../include/functions_pandora_networkmap.php:1440 +#: ../../include/functions_pandora_networkmap.php:1495 +msgid "Interface Target" +msgstr "Interfaz objetivo" + +#: ../../include/functions_pandora_networkmap.php:1442 +#: ../../include/functions_pandora_networkmap.php:1496 +msgid "Node target" +msgstr "Nodo objetivo" + +#: ../../include/functions_pandora_networkmap.php:1443 +msgid "E." +msgstr "E." + +#: ../../include/functions_pandora_networkmap.php:1474 +msgid "There are not relations" +msgstr "No hay relaciones" + +#: ../../include/functions_pandora_networkmap.php:1481 +#: ../../include/functions_pandora_networkmap.php:1482 +msgid "Relations" +msgstr "Relaciones" + +#: ../../include/functions_pandora_networkmap.php:1517 +msgid "Add interface link" +msgstr "Añadir enlace de interfaz" + +#: ../../include/functions_pandora_networkmap.php:1544 +#: ../../include/functions_pandora_networkmap.php:1548 +#: ../../include/functions_pandora_networkmap.php:1549 +#: ../../include/functions_pandora_networkmap.php:1569 +#: ../../include/functions_pandora_networkmap.php:1574 +#: ../../include/functions_pandora_networkmap.php:1592 +msgid "Add agent node" +msgstr "Añadir nodo de agente" + +#: ../../include/functions_pandora_networkmap.php:1573 +msgid "Add agent node (filter by group)" +msgstr "Añadir nodo de agente (filtro por grupo)" + +#: ../../include/functions_pandora_networkmap.php:1588 +msgid "Add fictional node" +msgstr "Añadir nodo ficticio" + +#: ../../include/functions_pandora_networkmap.php:1591 +msgid "Add fictional point" +msgstr "Añadir punto ficticio" + +#: ../../include/class/Tree.class.php:1492 +msgid "NO DATA" +msgstr "SIN DATOS" + +#: ../../include/class/Tree.class.php:1578 +msgid "Module alerts" +msgstr "Alertas de módulo" + +#: ../../include/functions_servers.php:363 +msgid "Data server" +msgstr "Servidor de datos" + +#: ../../include/functions_servers.php:368 +msgid "Network server" +msgstr "Servidor de red" + +#: ../../include/functions_servers.php:373 +msgid "SNMP Trap server" +msgstr "Servidor de traps SNMP" + +#: ../../include/functions_servers.php:383 +msgid "Plugin server" +msgstr "Servidor de complementos" + +#: ../../include/functions_servers.php:388 +msgid "Prediction server" +msgstr "Servidor de predicción" + +#: ../../include/functions_servers.php:393 +msgid "WMI server" +msgstr "Servidor WMI" + +#: ../../include/functions_servers.php:398 +msgid "Export server" +msgstr "Servidor de exportación" + +#: ../../include/functions_servers.php:403 +msgid "Inventory server" +msgstr "Servidor de inventario" + +#: ../../include/functions_servers.php:408 +msgid "Web server" +msgstr "Servidor web" + +#: ../../include/functions_servers.php:413 +msgid "Event server" +msgstr "Servidor de eventos" + +#: ../../include/functions_servers.php:418 +msgid "Enterprise ICMP server" +msgstr "Servidor ICMP Enterprise" + +#: ../../include/functions_servers.php:423 +msgid "Enterprise SNMP server" +msgstr "Servidor SNMP Enterprise" + +#: ../../include/functions_servers.php:428 +msgid "Enterprise Satellite server" +msgstr "Servidor enterprise satelite" + +#: ../../include/functions_servers.php:433 +msgid "Enterprise Transactional server" +msgstr "Servidor Transaccional Enterprise" + +#: ../../include/functions_servers.php:438 +msgid "Mainframe server" +msgstr "Servidor mainframe" + +#: ../../include/functions_servers.php:443 +msgid "Sync server" +msgstr "Servidor sync" -#: ../../godmode/alerts/alert_commands.php:149 -#: ../../godmode/alerts/alert_commands.php:159 -#: ../../godmode/alerts/configure_alert_template.php:692 -#: ../../godmode/alerts/configure_alert_template.php:706 -#: ../../godmode/alerts/configure_alert_template.php:778 -#: ../../godmode/modules/manage_network_components_form_common.php:59 -#: ../../godmode/users/configure_user.php:614 -#: ../../enterprise/godmode/modules/configure_local_component.php:157 -#: ../../enterprise/meta/advanced/metasetup.setup.php:107 -msgid "Basic" -msgstr "Básico" - -#: ../../godmode/alerts/alert_commands.php:149 -msgid "" -"For sending emails, text must be HTML format, if you want to use plain text, " -"type it between the following labels:
    "
    -msgstr ""
    -"Para enviar emails, el texto debe tener formato HTML, si desea usar texto "
    -"plano, póngalo entre las siguientes etiquetas: 
    "
    -
    -#: ../../godmode/alerts/alert_commands.php:152
    -#: ../../godmode/alerts/alert_commands.php:162
    -#: ../../godmode/alerts/configure_alert_template.php:696
    -#: ../../godmode/alerts/configure_alert_template.php:710
    -#: ../../godmode/alerts/configure_alert_template.php:779
    -#: ../../godmode/modules/manage_network_components_form_common.php:60
    -#: ../../godmode/netflow/nf_edit_form.php:208
    -#: ../../godmode/users/configure_user.php:615
    -#: ../../operation/netflow/nf_live_view.php:323
    -#: ../../enterprise/godmode/modules/configure_local_component.php:158
    -#: ../../enterprise/meta/general/logon_ok.php:64
    -#: ../../enterprise/meta/general/main_header.php:232
    -#: ../../enterprise/meta/general/main_header.php:303
    -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245
    -msgid "Advanced"
    -msgstr "Avanzado"
    -
    -#: ../../godmode/alerts/alert_commands.php:249
    -msgid "Alert commands"
    -msgstr "Comandos de alerta"
    -
    -#: ../../godmode/alerts/alert_commands.php:372
    -msgid "No alert commands configured"
    -msgstr "Comandos de alertas no configurados"
    -
    -#: ../../godmode/alerts/alert_list.builder.php:78
    -msgid "Latest value"
    -msgstr "Último valor"
    -
    -#: ../../godmode/alerts/alert_list.builder.php:94
    -#: ../../godmode/alerts/configure_alert_template.php:567
    -msgid "Default action"
    -msgstr "Acción predeterminada"
    -
    -#: ../../godmode/alerts/alert_list.builder.php:97
    -#: ../../godmode/alerts/alert_list.list.php:616
    -#: ../../godmode/massive/massive_add_action_alerts.php:183
    -#: ../../include/ajax/alert_list.ajax.php:155
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:599
    -#: ../../enterprise/godmode/policies/policy_alerts.php:465
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:278
    -msgid "Number of alerts match from"
    -msgstr "Número de alertas coincidentes de"
    -
    -#: ../../godmode/alerts/alert_list.builder.php:99
    -#: ../../godmode/alerts/alert_list.list.php:533
    -#: ../../godmode/alerts/alert_list.list.php:620
    -#: ../../godmode/alerts/alert_templates.php:96
    -#: ../../godmode/massive/massive_add_action_alerts.php:185
    -#: ../../include/ajax/alert_list.ajax.php:159
    -#: ../../include/functions_reporting.php:9994
    -#: ../../operation/reporting/reporting_viewer.php:198
    -#: ../../enterprise/godmode/agentes/manage_config_remote.php:107
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:560
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:601
    -#: ../../enterprise/godmode/policies/policy_alerts.php:337
    -#: ../../enterprise/godmode/policies/policy_alerts.php:469
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:223
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:280
    -#: ../../enterprise/include/functions_reporting.php:4970
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:150
    -msgid "to"
    -msgstr "a"
    -
    -#: ../../godmode/alerts/alert_list.builder.php:109
    -#: ../../godmode/alerts/configure_alert_action.php:101
    -#: ../../enterprise/godmode/alerts/alert_events.php:517
    -msgid "Create Action"
    -msgstr "Crear Acción"
    -
    -#: ../../godmode/alerts/alert_list.builder.php:131
    -#: ../../godmode/alerts/configure_alert_template.php:502
    -msgid "Create Template"
    -msgstr "Crear Plantilla"
    -
    -#: ../../godmode/alerts/alert_list.builder.php:134
    -#: ../../godmode/alerts/alert_list.list.php:539
    -#: ../../godmode/alerts/alert_list.list.php:626
    -#: ../../godmode/alerts/alert_view.php:391
    -#: ../../godmode/alerts/configure_alert_action.php:142
    -#: ../../include/ajax/alert_list.ajax.php:165
    -#: ../../include/functions_reporting_html.php:2113
    -#: ../../include/functions_reporting_html.php:3108
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:563
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:604
    -#: ../../enterprise/include/functions_reporting_pdf.php:2364
    -msgid "Threshold"
    -msgstr "Umbral"
    -
    -#: ../../godmode/alerts/alert_list.builder.php:144
    -msgid "Add alert"
    -msgstr "Añadir alerta"
    -
    -#: ../../godmode/alerts/alert_list.builder.php:209
    -#: ../../godmode/massive/massive_copy_modules.php:80
    -#: ../../godmode/massive/massive_copy_modules.php:193
    -#: ../../godmode/massive/massive_delete_agents.php:116
    -#: ../../godmode/massive/massive_delete_modules.php:456
    -#: ../../godmode/massive/massive_delete_modules.php:470
    -#: ../../godmode/massive/massive_edit_agents.php:219
    -#: ../../godmode/massive/massive_edit_modules.php:299
    -#: ../../godmode/massive/massive_edit_modules.php:330
    -#: ../../include/ajax/module.php:824 ../../include/functions.php:1032
    -#: ../../include/functions_reporting.php:3441
    -#: ../../include/functions_alerts.php:593 ../../include/functions_ui.php:449
    -#: ../../include/functions_ui.php:450 ../../include/functions_events.php:1392
    -#: ../../include/functions_events.php:2855
    -#: ../../include/functions_visual_map.php:1582
    -#: ../../include/functions_visual_map.php:1603
    -#: ../../include/functions_visual_map.php:1619
    -#: ../../include/functions_visual_map.php:1635
    -#: ../../include/functions_filemanager.php:706
    -#: ../../include/functions_graph.php:779
    -#: ../../include/functions_graph.php:2189
    -#: ../../include/functions_graph.php:3964
    -#: ../../include/functions_groups.php:803
    -#: ../../include/functions_groups.php:805
    -#: ../../include/functions_groups.php:807
    -#: ../../include/functions_groups.php:808
    -#: ../../include/functions_groups.php:809 ../../include/functions_maps.php:46
    -#: ../../include/functions_reporting_html.php:490
    -#: ../../include/functions_reporting_html.php:569
    -#: ../../include/functions_reporting_html.php:1558
    -#: ../../include/functions_reporting_html.php:1579
    -#: ../../include/functions_reporting_html.php:2042
    -#: ../../include/functions_reporting_html.php:2204
    -#: ../../include/functions_reports.php:426
    -#: ../../include/graphs/functions_flot.php:490
    -#: ../../mobile/operation/agents.php:36 ../../mobile/operation/modules.php:42
    -#: ../../operation/agentes/estado_agente.php:189
    -#: ../../operation/agentes/estado_monitores.php:453
    -#: ../../operation/agentes/group_view.php:166
    -#: ../../operation/agentes/group_view.php:169
    -#: ../../operation/agentes/pandora_networkmap.view.php:245
    -#: ../../operation/agentes/status_monitor.php:302
    -#: ../../operation/agentes/tactical.php:153 ../../operation/tree.php:134
    -#: ../../operation/tree.php:159 ../../operation/tree.php:293
    -#: ../../enterprise/dashboard/widgets/events_list.php:185
    -#: ../../enterprise/dashboard/widgets/service_map.php:87
    -#: ../../enterprise/dashboard/widgets/tree_view.php:56
    -#: ../../enterprise/dashboard/widgets/tree_view.php:69
    -#: ../../enterprise/dashboard/widgets/tree_view.php:217
    -#: ../../enterprise/extensions/cron/functions.php:229
    -#: ../../enterprise/include/functions_reporting.php:1671
    -#: ../../enterprise/include/functions_reporting.php:2463
    -#: ../../enterprise/include/functions_reporting.php:3240
    -#: ../../enterprise/include/functions_reporting.php:4142
    -#: ../../enterprise/include/functions_reporting.php:4829
    -#: ../../enterprise/include/functions_reporting.php:5160
    -#: ../../enterprise/include/functions_reporting_pdf.php:331
    -#: ../../enterprise/include/functions_reporting_pdf.php:692
    -#: ../../enterprise/include/functions_reporting_pdf.php:710
    -#: ../../enterprise/include/functions_reporting_pdf.php:1316
    -#: ../../enterprise/include/functions_reporting_pdf.php:1397
    -#: ../../enterprise/include/functions_reporting_pdf.php:1641
    -#: ../../enterprise/include/functions_reporting_pdf.php:2062
    -#: ../../enterprise/include/functions_reporting_pdf.php:2097
    -#: ../../enterprise/meta/monitoring/group_view.php:146
    -#: ../../enterprise/meta/monitoring/group_view.php:150
    -#: ../../enterprise/meta/monitoring/tactical.php:281
    -#: ../../enterprise/operation/agentes/transactional_map.php:270
    -#: ../../enterprise/operation/agentes/transactional_map.php:287
    -#: ../../enterprise/operation/services/services.list.php:173
    -#: ../../enterprise/operation/services/services.list.php:415
    -#: ../../enterprise/operation/services/services.service.php:193
    -#: ../../enterprise/operation/services/services.service_map.php:129
    -#: ../../enterprise/operation/services/services.table_services.php:142
    -msgid "Unknown"
    -msgstr "Desconocido"
    -
    -#: ../../godmode/alerts/alert_list.builder.php:212
    -#: ../../godmode/alerts/configure_alert_template.php:918
    -#: ../../godmode/modules/manage_network_components_form_network.php:82
    -#: ../../godmode/modules/manage_network_components_form_plugin.php:29
    -#: ../../godmode/modules/manage_network_components_form_wmi.php:58
    -#: ../../include/functions.php:2059
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:464
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:744
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:951
    -#: ../../enterprise/meta/monitoring/wizard/wizard.php:96
    -#: ../../enterprise/operation/agentes/policy_view.php:146
    -#: ../../enterprise/operation/agentes/policy_view.php:210
    -#: ../../enterprise/operation/agentes/policy_view.php:442
    -msgid "Empty"
    -msgstr "Vacío"
    -
    -#: ../../godmode/alerts/alert_list.list.php:58
    -#: ../../enterprise/godmode/reporting/graph_template_list.php:127
    -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1484
    -msgid "Template name"
    -msgstr "Nombre de la plantilla"
    -
    -#: ../../godmode/alerts/alert_list.list.php:124
    -msgid "Field content"
    -msgstr "Contenido del campo"
    -
    -#: ../../godmode/alerts/alert_list.list.php:133
    -msgid "Enabled / Disabled"
    -msgstr "Habilitado / Deshabilitado"
    -
    -#: ../../godmode/alerts/alert_list.list.php:135
    -#: ../../godmode/alerts/alert_list.list.php:794
    -#: ../../godmode/extensions.php:273 ../../godmode/users/user_list.php:466
    -#: ../../enterprise/godmode/agentes/plugins_manager.php:146
    -#: ../../enterprise/godmode/agentes/plugins_manager.php:193
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:715
    -#: ../../enterprise/godmode/policies/policy_alerts.php:564
    -msgid "Enable"
    -msgstr "Activar"
    -
    -#: ../../godmode/alerts/alert_list.list.php:136
    -#: ../../godmode/alerts/alert_list.list.php:785
    -#: ../../godmode/extensions.php:277 ../../godmode/users/user_list.php:463
    -#: ../../include/functions.php:2605
    -#: ../../enterprise/godmode/agentes/plugins_manager.php:146
    -#: ../../enterprise/godmode/agentes/plugins_manager.php:206
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:707
    -#: ../../enterprise/godmode/policies/policy_alerts.php:556
    -msgid "Disable"
    -msgstr "Desactivar"
    -
    -#: ../../godmode/alerts/alert_list.list.php:138
    -#: ../../operation/agentes/alerts_status.functions.php:103
    -#: ../../operation/agentes/alerts_status.php:416
    -#: ../../operation/agentes/alerts_status.php:462
    -#: ../../operation/agentes/alerts_status.php:497
    -#: ../../operation/agentes/alerts_status.php:532
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1487
    -#: ../../enterprise/operation/agentes/policy_view.php:193
    -msgid "Standby"
    -msgstr "Standby"
    -
    -#: ../../godmode/alerts/alert_list.list.php:140
    -#: ../../include/functions_ui.php:826 ../../mobile/operation/alerts.php:44
    -#: ../../operation/agentes/alerts_status.functions.php:80
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:898
    -#: ../../enterprise/operation/agentes/policy_view.php:221
    -msgid "Standby on"
    -msgstr "Modo standby activado"
    -
    -#: ../../godmode/alerts/alert_list.list.php:141
    -#: ../../mobile/operation/alerts.php:45
    -#: ../../operation/agentes/alerts_status.functions.php:81
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:900
    -msgid "Standby off"
    -msgstr "Modo standby desactivado"
    -
    -#: ../../godmode/alerts/alert_list.list.php:163
    -#: ../../operation/agentes/alerts_status.php:396
    -msgid "Alert control filter"
    -msgstr "Filtro de control de alertas"
    -
    -#: ../../godmode/alerts/alert_list.list.php:163
    -#: ../../godmode/snmpconsole/snmp_alert.php:1019
    -#: ../../godmode/users/user_list.php:249
    -#: ../../operation/agentes/alerts_status.php:396
    -#: ../../operation/agentes/graphs.php:163
    -#: ../../operation/snmpconsole/snmp_view.php:559
    -#: ../../enterprise/godmode/policies/policy_queue.php:277
    -#: ../../enterprise/godmode/policies/policy_queue.php:364
    -msgid "Toggle filter(s)"
    -msgstr "Conmutar filtro(s)"
    -
    -#: ../../godmode/alerts/alert_list.list.php:412
    -#: ../../godmode/massive/massive_copy_modules.php:133
    -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:427
    -#: ../../enterprise/godmode/alerts/alert_events_rules.php:412
    -#: ../../enterprise/godmode/policies/policy_alerts.php:242
    -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:308
    -msgid "Operations"
    -msgstr "Operaciones"
    -
    -#: ../../godmode/alerts/alert_list.list.php:412
    -#: ../../godmode/alerts/alert_templates.php:303
    -#: ../../godmode/reporting/graphs.php:166
    -#: ../../godmode/reporting/reporting_builder.list_items.php:308
    -#: ../../godmode/reporting/reporting_builder.php:567
    -#: ../../godmode/reporting/reporting_builder.php:687
    -#: ../../godmode/servers/plugin.php:739
    -#: ../../godmode/servers/servers.build_table.php:76
    -#: ../../godmode/users/profile_list.php:327
    -#: ../../godmode/users/user_list.php:278
    -#: ../../include/functions_container.php:140
    -#: ../../operation/gis_maps/gis_map.php:94
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:427
    -#: ../../enterprise/godmode/alerts/alert_events_rules.php:412
    -#: ../../enterprise/godmode/modules/local_components.php:484
    -#: ../../enterprise/godmode/policies/policies.php:261
    -#: ../../enterprise/godmode/policies/policy_alerts.php:242
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:255
    -#: ../../enterprise/meta/advanced/servers.build_table.php:71
    -msgid "Op."
    -msgstr "Op."
    -
    -#: ../../godmode/alerts/alert_list.list.php:505
    -#: ../../godmode/alerts/alert_view.php:356
    -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:524
    -#: ../../godmode/alerts/alert_view.php:195
    -#: ../../include/functions_alerts.php:577
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:551
    -#: ../../enterprise/godmode/policies/policy_alerts.php:328
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:214
    -msgid "Always"
    -msgstr "Siempre"
    -
    -#: ../../godmode/alerts/alert_list.list.php:526
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:553
    -#: ../../enterprise/godmode/policies/policy_alerts.php:330
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:216
    -msgid "On"
    -msgstr "Activado"
    -
    -#: ../../godmode/alerts/alert_list.list.php:530
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:557
    -#: ../../enterprise/godmode/policies/policy_alerts.php:334
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:220
    -msgid "Until"
    -msgstr "Hasta"
    -
    -#: ../../godmode/alerts/alert_list.list.php:552
    -msgid "Delete action"
    -msgstr "Eliminar acción"
    -
    -#: ../../godmode/alerts/alert_list.list.php:559
    -#: ../../godmode/alerts/alert_list.list.php:872
    -msgid "Update action"
    -msgstr "Actualizar acción"
    -
    -#: ../../godmode/alerts/alert_list.list.php:704
    -#: ../../godmode/alerts/alert_list.list.php:708
    -#: ../../godmode/alerts/alert_list.list.php:842
    -#: ../../godmode/snmpconsole/snmp_alert.php:1234
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:582
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:584
    -#: ../../enterprise/godmode/policies/policy_alerts.php:596
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:242
    -msgid "Add action"
    -msgstr "Añadir acción"
    -
    -#: ../../godmode/alerts/alert_list.list.php:719
    -msgid "View alert advanced details"
    -msgstr "Ver detalles avanzados de la alerta"
    -
    -#: ../../godmode/alerts/alert_list.list.php:730
    -msgid "No alerts defined"
    -msgstr "No hay alertas definidas"
    -
    -#: ../../godmode/alerts/alert_list.list.php:803
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:724
    -#: ../../enterprise/godmode/policies/policy_alerts.php:573
    -msgid "Set off standby"
    -msgstr "Desactivar standby"
    -
    -#: ../../godmode/alerts/alert_list.list.php:812
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:733
    -#: ../../enterprise/godmode/policies/policy_alerts.php:582
    -msgid "Set standby"
    -msgstr "Activar modo standby"
    -
    -#: ../../godmode/alerts/alert_list.php:80
    -msgid "Already added"
    -msgstr "Ya añadido"
    -
    -#: ../../godmode/alerts/alert_list.php:170
    -#: ../../godmode/massive/massive_add_action_alerts.php:112
    -#: ../../godmode/massive/massive_add_alerts.php:112
    -#: ../../godmode/massive/massive_add_tags.php:88
    -#: ../../operation/incidents/incident_detail.php:67
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:186
    -#: ../../enterprise/godmode/policies/policy_agents.php:144
    -msgid "Successfully added"
    -msgstr "Añadido correctamente"
    -
    -#: ../../godmode/alerts/alert_list.php:170
    -#: ../../godmode/massive/massive_add_action_alerts.php:59
    -#: ../../godmode/massive/massive_add_action_alerts.php:96
    -#: ../../godmode/massive/massive_add_action_alerts.php:112
    -#: ../../godmode/massive/massive_add_action_alerts.php:116
    -#: ../../godmode/massive/massive_add_action_alerts.php:120
    -#: ../../godmode/massive/massive_add_alerts.php:113
    -#: ../../godmode/massive/massive_add_tags.php:89
    -#: ../../godmode/massive/massive_delete_action_alerts.php:119
    -#: ../../operation/incidents/incident_detail.php:68
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:187
    -#: ../../enterprise/godmode/policies/policy_agents.php:145
    -#: ../../enterprise/godmode/policies/policy_alerts.php:188
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:121
    -msgid "Could not be added"
    -msgstr "No se pudo añadir"
    -
    -#: ../../godmode/alerts/alert_list.php:264
    -#: ../../godmode/massive/massive_standby_alerts.php:96
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:255
    -#: ../../enterprise/godmode/policies/policy_alerts.php:122
    -msgid "Successfully set standby"
    -msgstr "Modo standby activado"
    -
    -#: ../../godmode/alerts/alert_list.php:264
    -#: ../../godmode/massive/massive_standby_alerts.php:96
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:256
    -#: ../../enterprise/godmode/policies/policy_alerts.php:122
    -msgid "Could not be set standby"
    -msgstr "No se pudo establecer el modo standby"
    -
    -#: ../../godmode/alerts/alert_list.php:281
    -#: ../../godmode/massive/massive_standby_alerts.php:78
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:272
    -#: ../../enterprise/godmode/policies/policy_alerts.php:139
    -msgid "Successfully set off standby"
    -msgstr "Se ha desactivado el modo standby"
    -
    -#: ../../godmode/alerts/alert_list.php:281
    -#: ../../godmode/massive/massive_standby_alerts.php:78
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:273
    -#: ../../enterprise/godmode/policies/policy_alerts.php:139
    -msgid "Could not be set off standby"
    -msgstr "No se pudo desactivar el modo standby"
    -
    -#: ../../godmode/alerts/alert_list.php:313
    -#: ../../godmode/alerts/alert_view.php:61
    -#: ../../godmode/alerts/alert_view.php:62
    -#: ../../godmode/alerts/alert_view.php:63
    -msgid "List alerts"
    -msgstr "Lista de alertas"
    -
    -#: ../../godmode/alerts/alert_list.php:317
    -msgid "Builder alert"
    -msgstr "Creador de alerta"
    -
    -#: ../../godmode/alerts/alert_list.php:326
    -#: ../../godmode/alerts/alert_list.php:329
    -#: ../../godmode/users/configure_profile.php:268
    -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:456
    -msgid "Manage alerts"
    -msgstr "Gestionar alertas"
    -
    -#: ../../godmode/alerts/alert_special_days.php:44 ../../godmode/menu.php:164
    -#: ../../godmode/menu.php:165
    -msgid "Special days list"
    -msgstr "Lista de días especiales"
    -
    -#: ../../godmode/alerts/alert_special_days.php:86
    -msgid "Skipped dates: "
    -msgstr "Fechas omitidas: "
    -
    -#: ../../godmode/alerts/alert_special_days.php:106
    -msgid "Success to upload iCalendar"
    -msgstr "Éxito al cargar iCalendar"
    -
    -#: ../../godmode/alerts/alert_special_days.php:106
    -msgid "Fail to upload iCalendar"
    -msgstr "Error al cargar iCalendar"
    -
    -#: ../../godmode/alerts/alert_special_days.php:232
    -msgid "iCalendar(.ics) file"
    -msgstr "Fichero iCalendar (.ics)"
    -
    -#: ../../godmode/alerts/alert_special_days.php:235
    -#: ../../godmode/alerts/configure_alert_special_days.php:79
    -msgid "Same day of the week"
    -msgstr "Mismo día de la semana"
    -
    -#: ../../godmode/alerts/alert_special_days.php:237
    -#: ../../godmode/alerts/alert_special_days.php:425
    -#: ../../godmode/alerts/alert_templates.php:65
    -#: ../../godmode/alerts/configure_alert_special_days.php:81
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:803
    -#: ../../include/functions_html.php:854
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1336
    -#: ../../enterprise/include/functions_reporting.php:1558
    -#: ../../enterprise/include/functions_reporting.php:2049
    -#: ../../enterprise/include/functions_reporting.php:2352
    -#: ../../enterprise/include/functions_reporting.php:2774
    -#: ../../enterprise/include/functions_reporting.php:3556
    -#: ../../enterprise/include/functions_reporting_pdf.php:1525
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:120
    -msgid "Monday"
    -msgstr "Lunes"
    -
    -#: ../../godmode/alerts/alert_special_days.php:238
    -#: ../../godmode/alerts/alert_special_days.php:428
    -#: ../../godmode/alerts/alert_templates.php:66
    -#: ../../godmode/alerts/configure_alert_special_days.php:82
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:809
    -#: ../../include/functions_html.php:855
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1342
    -#: ../../enterprise/include/functions_reporting.php:1559
    -#: ../../enterprise/include/functions_reporting.php:2050
    -#: ../../enterprise/include/functions_reporting.php:2353
    -#: ../../enterprise/include/functions_reporting.php:2775
    -#: ../../enterprise/include/functions_reporting.php:3557
    -#: ../../enterprise/include/functions_reporting_pdf.php:1526
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:121
    -msgid "Tuesday"
    -msgstr "Martes"
    -
    -#: ../../godmode/alerts/alert_special_days.php:239
    -#: ../../godmode/alerts/alert_special_days.php:431
    -#: ../../godmode/alerts/alert_templates.php:67
    -#: ../../godmode/alerts/configure_alert_special_days.php:83
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:815
    -#: ../../include/functions_html.php:856
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1348
    -#: ../../enterprise/include/functions_reporting.php:1560
    -#: ../../enterprise/include/functions_reporting.php:2051
    -#: ../../enterprise/include/functions_reporting.php:2354
    -#: ../../enterprise/include/functions_reporting.php:2776
    -#: ../../enterprise/include/functions_reporting.php:3558
    -#: ../../enterprise/include/functions_reporting_pdf.php:1527
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122
    -msgid "Wednesday"
    -msgstr "Miércoles"
    -
    -#: ../../godmode/alerts/alert_special_days.php:240
    -#: ../../godmode/alerts/alert_special_days.php:434
    -#: ../../godmode/alerts/alert_templates.php:68
    -#: ../../godmode/alerts/configure_alert_special_days.php:84
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:821
    -#: ../../include/functions_html.php:857
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1354
    -#: ../../enterprise/include/functions_reporting.php:1561
    -#: ../../enterprise/include/functions_reporting.php:2052
    -#: ../../enterprise/include/functions_reporting.php:2355
    -#: ../../enterprise/include/functions_reporting.php:2777
    -#: ../../enterprise/include/functions_reporting.php:3559
    -#: ../../enterprise/include/functions_reporting_pdf.php:1528
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:123
    -msgid "Thursday"
    -msgstr "Jueves"
    -
    -#: ../../godmode/alerts/alert_special_days.php:241
    -#: ../../godmode/alerts/alert_special_days.php:437
    -#: ../../godmode/alerts/alert_templates.php:69
    -#: ../../godmode/alerts/configure_alert_special_days.php:85
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:827
    -#: ../../include/functions_html.php:858
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1360
    -#: ../../enterprise/include/functions_reporting.php:1562
    -#: ../../enterprise/include/functions_reporting.php:2053
    -#: ../../enterprise/include/functions_reporting.php:2356
    -#: ../../enterprise/include/functions_reporting.php:2778
    -#: ../../enterprise/include/functions_reporting.php:3560
    -#: ../../enterprise/include/functions_reporting_pdf.php:1529
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:124
    -msgid "Friday"
    -msgstr "Viernes"
    -
    -#: ../../godmode/alerts/alert_special_days.php:242
    -#: ../../godmode/alerts/alert_special_days.php:440
    -#: ../../godmode/alerts/alert_templates.php:70
    -#: ../../godmode/alerts/configure_alert_special_days.php:86
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:833
    -#: ../../include/functions_html.php:859
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1366
    -#: ../../enterprise/include/functions_reporting.php:1563
    -#: ../../enterprise/include/functions_reporting.php:2054
    -#: ../../enterprise/include/functions_reporting.php:2357
    -#: ../../enterprise/include/functions_reporting.php:2779
    -#: ../../enterprise/include/functions_reporting.php:3561
    -#: ../../enterprise/include/functions_reporting_pdf.php:1530
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:125
    -msgid "Saturday"
    -msgstr "Sábado"
    -
    -#: ../../godmode/alerts/alert_special_days.php:243
    -#: ../../godmode/alerts/alert_special_days.php:443
    -#: ../../godmode/alerts/alert_templates.php:71
    -#: ../../godmode/alerts/configure_alert_special_days.php:87
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:839
    -#: ../../include/functions_html.php:853
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1372
    -#: ../../enterprise/include/functions_reporting.php:1564
    -#: ../../enterprise/include/functions_reporting.php:2055
    -#: ../../enterprise/include/functions_reporting.php:2358
    -#: ../../enterprise/include/functions_reporting.php:2780
    -#: ../../enterprise/include/functions_reporting.php:3562
    -#: ../../enterprise/include/functions_reporting_pdf.php:1531
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:126
    -msgid "Sunday"
    -msgstr "Domingo"
    -
    -#: ../../godmode/alerts/alert_special_days.php:254
    -msgid "Overwrite"
    -msgstr "Sobrescribir"
    -
    -#: ../../godmode/alerts/alert_special_days.php:255
    -msgid "Check this box, if you want to overwrite existing same days."
    -msgstr "Marque esta casilla, si desea sobrescribir los días existentes."
    -
    -#: ../../godmode/alerts/alert_special_days.php:273
    -msgid "Display range: "
    -msgstr "Mostrar rango "
    -
    -#: ../../godmode/alerts/alert_special_days.php:347
    -#: ../../enterprise/include/functions_reporting.php:1596
    -#: ../../enterprise/include/functions_reporting.php:2393
    -#: ../../enterprise/include/functions_reporting.php:3171
    -#: ../../enterprise/include/functions_reporting_pdf.php:1562
    -msgid "January"
    -msgstr "Enero"
    -
    -#: ../../godmode/alerts/alert_special_days.php:350
    -#: ../../enterprise/include/functions_reporting.php:1599
    -#: ../../enterprise/include/functions_reporting.php:2396
    -#: ../../enterprise/include/functions_reporting.php:3174
    -#: ../../enterprise/include/functions_reporting_pdf.php:1565
    -msgid "February"
    -msgstr "Febrero"
    -
    -#: ../../godmode/alerts/alert_special_days.php:353
    -#: ../../enterprise/include/functions_reporting.php:1602
    -#: ../../enterprise/include/functions_reporting.php:2399
    -#: ../../enterprise/include/functions_reporting.php:3177
    -#: ../../enterprise/include/functions_reporting_pdf.php:1568
    -msgid "March"
    -msgstr "Marzo"
    -
    -#: ../../godmode/alerts/alert_special_days.php:356
    -#: ../../enterprise/include/functions_reporting.php:1605
    -#: ../../enterprise/include/functions_reporting.php:2402
    -#: ../../enterprise/include/functions_reporting.php:3180
    -#: ../../enterprise/include/functions_reporting_pdf.php:1571
    -msgid "April"
    -msgstr "Abril"
    -
    -#: ../../godmode/alerts/alert_special_days.php:359
    -#: ../../enterprise/include/functions_reporting.php:1608
    -#: ../../enterprise/include/functions_reporting.php:2405
    -#: ../../enterprise/include/functions_reporting.php:3183
    -#: ../../enterprise/include/functions_reporting_pdf.php:1574
    -msgid "May"
    -msgstr "Mayo"
    -
    -#: ../../godmode/alerts/alert_special_days.php:362
    -#: ../../enterprise/include/functions_reporting.php:1611
    -#: ../../enterprise/include/functions_reporting.php:2408
    -#: ../../enterprise/include/functions_reporting.php:3186
    -#: ../../enterprise/include/functions_reporting_pdf.php:1577
    -msgid "June"
    -msgstr "Junio"
    -
    -#: ../../godmode/alerts/alert_special_days.php:365
    -#: ../../enterprise/include/functions_reporting.php:1614
    -#: ../../enterprise/include/functions_reporting.php:2411
    -#: ../../enterprise/include/functions_reporting.php:3189
    -#: ../../enterprise/include/functions_reporting_pdf.php:1580
    -msgid "July"
    -msgstr "Julio"
    -
    -#: ../../godmode/alerts/alert_special_days.php:368
    -#: ../../enterprise/include/functions_reporting.php:1617
    -#: ../../enterprise/include/functions_reporting.php:2414
    -#: ../../enterprise/include/functions_reporting.php:3192
    -#: ../../enterprise/include/functions_reporting_pdf.php:1583
    -msgid "August"
    -msgstr "Agosto"
    -
    -#: ../../godmode/alerts/alert_special_days.php:371
    -#: ../../enterprise/include/functions_reporting.php:1620
    -#: ../../enterprise/include/functions_reporting.php:2417
    -#: ../../enterprise/include/functions_reporting.php:3195
    -#: ../../enterprise/include/functions_reporting_pdf.php:1586
    -msgid "September"
    -msgstr "Septiembre"
    -
    -#: ../../godmode/alerts/alert_special_days.php:374
    -#: ../../enterprise/include/functions_reporting.php:1623
    -#: ../../enterprise/include/functions_reporting.php:2420
    -#: ../../enterprise/include/functions_reporting.php:3198
    -#: ../../enterprise/include/functions_reporting_pdf.php:1589
    -msgid "October"
    -msgstr "Octubre"
    -
    -#: ../../godmode/alerts/alert_special_days.php:377
    -#: ../../enterprise/include/functions_reporting.php:1626
    -#: ../../enterprise/include/functions_reporting.php:2423
    -#: ../../enterprise/include/functions_reporting.php:3201
    -#: ../../enterprise/include/functions_reporting_pdf.php:1592
    -msgid "November"
    -msgstr "Noviembre"
    -
    -#: ../../godmode/alerts/alert_special_days.php:380
    -#: ../../enterprise/include/functions_reporting.php:1629
    -#: ../../enterprise/include/functions_reporting.php:2426
    -#: ../../enterprise/include/functions_reporting.php:3204
    -#: ../../enterprise/include/functions_reporting_pdf.php:1595
    -msgid "December"
    -msgstr "Diciembre"
    -
    -#: ../../godmode/alerts/alert_special_days.php:422
    -msgid "Same as "
    -msgstr "Mismo que "
    -
    -#: ../../godmode/alerts/alert_special_days.php:452
    -#: ../../godmode/events/event_edit_filter.php:361
    -#: ../../godmode/events/event_edit_filter.php:376
    -#: ../../operation/events/events_list.php:403
    -#: ../../operation/events/events_list.php:430
    -#: ../../enterprise/godmode/agentes/collection_manager.php:167
    -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:115
    -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:113
    -#: ../../enterprise/godmode/policies/policy_collections.php:125
    -msgid "Remove"
    -msgstr "Eliminar"
    -
    -#: ../../godmode/alerts/alert_templates.php:62
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:117
    -msgid "Everyday"
    -msgstr "Cada día"
    -
    -#: ../../godmode/alerts/alert_templates.php:73
    -#: ../../include/functions_config.php:723
    -#: ../../enterprise/extensions/ipam/ipam_editor.php:95
    -#: ../../enterprise/godmode/setup/setup_history.php:68
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:128
    -msgid "Days"
    -msgstr "Días"
    -
    -#: ../../godmode/alerts/alert_templates.php:73
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:128
    -msgid "Every"
    -msgstr "Cada"
    -
    -#: ../../godmode/alerts/alert_templates.php:83
    -#: ../../enterprise/dashboard/widgets/tactical.php:32
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:138
    -msgid "and"
    -msgstr "y"
    -
    -#: ../../godmode/alerts/alert_templates.php:89
    -#: ../../godmode/alerts/alert_view.php:306
    -#: ../../godmode/alerts/configure_alert_template.php:552
    -#: ../../godmode/snmpconsole/snmp_alert.php:919
    -#: ../../enterprise/godmode/alerts/alert_events.php:453
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:143
    -msgid "Time threshold"
    -msgstr "Umbral de tiempo"
    -
    -#: ../../godmode/alerts/alert_templates.php:269
    -#: ../../godmode/modules/manage_network_components.php:532
    -#: ../../godmode/reporting/reporting_builder.list_items.php:209
    -#: ../../godmode/tag/tag.php:176 ../../godmode/tag/tag.php:281
    -#: ../../godmode/users/user_list.php:243
    -#: ../../operation/agentes/alerts_status.php:390
    -#: ../../operation/agentes/status_monitor.php:533
    -#: ../../operation/events/events_list.php:708 ../../operation/tree.php:184
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:382
    -#: ../../enterprise/godmode/modules/local_components.php:457
    -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:148
    -#: ../../enterprise/meta/advanced/policymanager.queue.php:244
    -#: ../../enterprise/meta/agentsearch.php:72
    -msgid "Show Options"
    -msgstr "Mostrar opciones"
    -
    -#: ../../godmode/alerts/alert_templates.php:360
    -msgid "No alert templates defined"
    -msgstr "No hay plantillas de alerta definidas"
    -
    -#: ../../godmode/alerts/alert_view.php:49
    -#: ../../godmode/alerts/alert_view.php:324
    -#: ../../include/functions_events.php:2140
    -msgid "Alert details"
    -msgstr "Detalles de alerta"
    -
    -#: ../../godmode/alerts/alert_view.php:106
    -#: ../../mobile/operation/alerts.php:96 ../../mobile/operation/alerts.php:97
    -#: ../../mobile/operation/alerts.php:203 ../../mobile/operation/alerts.php:204
    -msgid "Stand by"
    -msgstr "En espera"
    -
    -#: ../../godmode/alerts/alert_view.php:144
    -#: ../../godmode/alerts/configure_alert_template.php:847
    -#: ../../include/functions_ui.php:1012
    -msgid ""
    -"The alert would fire when the value matches "
    -msgstr ""
    -"La alerta se disparará cuando el valor coincida con "
    -
    -#: ../../godmode/alerts/alert_view.php:147 ../../include/functions_ui.php:1015
    -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:152
    -#: ../../godmode/alerts/configure_alert_template.php:849
    -#: ../../include/functions_ui.php:1003
    -msgid "The alert would fire when the value is "
    -msgstr ""
    -"La alerta se disparará cuando el valor sea "
    -
    -#: ../../godmode/alerts/alert_view.php:156
    -#: ../../godmode/alerts/configure_alert_template.php:850
    -#: ../../include/functions_ui.php:1007
    -msgid "The alert would fire when the value is not "
    -msgstr ""
    -"La alerta se disparará cuando el valor no sea "
    -
    -#: ../../godmode/alerts/alert_view.php:161
    -#: ../../godmode/alerts/configure_alert_template.php:851
    -#: ../../include/functions_ui.php:1021
    -msgid ""
    -"The alert would fire when the value is between  and "
    -""
    -msgstr ""
    -"La alerta se disparará cuando el valor esté entre  y "
    -""
    -
    -#: ../../godmode/alerts/alert_view.php:164 ../../include/functions_ui.php:1024
    -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:170
    -#: ../../godmode/alerts/configure_alert_template.php:853
    -msgid "The alert would fire when the value is below "
    -msgstr ""
    -"La alerta se lanzará cuando el valor sea inferior a  "
    -
    -#: ../../godmode/alerts/alert_view.php:174
    -#: ../../godmode/alerts/configure_alert_template.php:854
    -msgid "The alert would fire when the value is above "
    -msgstr ""
    -"La alerta se lanzará cuando el valor esté por encima de "
    -
    -#: ../../godmode/alerts/alert_view.php:179
    -#: ../../godmode/alerts/configure_alert_template.php:857
    -msgid "The alert would fire when the module value changes"
    -msgstr "La alerta se iniciara cuando los valores de los módulos cambien"
    -
    -#: ../../godmode/alerts/alert_view.php:182
    -#: ../../godmode/alerts/configure_alert_template.php:858
    -msgid "The alert would fire when the module value does not change"
    -msgstr "La alerta de iniciara cuando los valores de los módulos no cambien"
    -
    -#: ../../godmode/alerts/alert_view.php:186
    -#: ../../godmode/alerts/configure_alert_template.php:855
    -#: ../../include/functions_ui.php:1038
    -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/alert_view.php:189
    -#: ../../godmode/alerts/configure_alert_template.php:856
    -#: ../../include/functions_ui.php:1043
    -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/alert_view.php:192
    -#: ../../godmode/alerts/configure_alert_template.php:859
    -msgid "The alert would fire when the module is in unknown status"
    -msgstr "La alerta se lanzará cuando el módulo esté en estado desconocido"
    -
    -#: ../../godmode/alerts/alert_view.php:298
    -#: ../../godmode/alerts/configure_alert_template.php:539
    -msgid "Use special days list"
    -msgstr "Utilizar lista de días especiales"
    -
    -#: ../../godmode/alerts/alert_view.php:310
    -msgid "Number of alerts"
    -msgstr "Número de alertas"
    -
    -#: ../../godmode/alerts/alert_view.php:310
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:779
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:1291
    -#: ../../include/functions_reporting.php:956
    -#: ../../include/functions_ui.php:1995 ../../include/functions_graph.php:764
    -#: ../../include/functions_graph.php:765 ../../include/functions_graph.php:766
    -#: ../../include/functions_graph.php:769
    -#: ../../include/functions_graph.php:1445
    -#: ../../include/functions_graph.php:3954
    -#: ../../include/functions_graph.php:3959
    -#: ../../include/functions_graph.php:4686
    -#: ../../include/functions_graph.php:4689
    -#: ../../include/functions_graph.php:4692
    -#: ../../include/graphs/functions_pchart.php:198
    -#: ../../include/graphs/functions_pchart.php:1148
    -#: ../../enterprise/dashboard/widgets/top_n.php:477
    -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:199
    -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:261
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1314
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1592
    -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:465
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:840
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:849
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:926
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:935
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1127
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1136
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1343
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1352
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1424
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1433
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1540
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1549
    -msgid "Min"
    -msgstr "Mín"
    -
    -#: ../../godmode/alerts/alert_view.php:310
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:781
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:1289
    -#: ../../include/functions_reporting.php:953
    -#: ../../include/functions_ui.php:1995 ../../include/functions_graph.php:764
    -#: ../../include/functions_graph.php:765 ../../include/functions_graph.php:766
    -#: ../../include/functions_graph.php:769
    -#: ../../include/functions_graph.php:1443
    -#: ../../include/functions_graph.php:3954
    -#: ../../include/functions_graph.php:3959
    -#: ../../include/functions_graph.php:4686
    -#: ../../include/functions_graph.php:4689
    -#: ../../include/functions_graph.php:4692
    -#: ../../include/graphs/functions_pchart.php:192
    -#: ../../include/graphs/functions_pchart.php:1150
    -#: ../../enterprise/dashboard/widgets/top_n.php:474
    -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:204
    -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:258
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1312
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1590
    -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:467
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:842
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:851
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:928
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:937
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1129
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1138
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1345
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1354
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1426
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1435
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1542
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1551
    -msgid "Max"
    -msgstr "Máx"
    -
    -#: ../../godmode/alerts/alert_view.php:325
    -msgid "Firing conditions"
    -msgstr "Condiciones de disparo"
    -
    -#: ../../godmode/alerts/alert_view.php:348
    -#: ../../godmode/alerts/alert_view.php:370
    -msgid "Every time that the alert is fired"
    -msgstr "Cada vez que la alerta es disparada"
    -
    -#: ../../godmode/alerts/alert_view.php:414
    -msgid ""
    -"Select the desired action and mode to see the Firing/Recovery fields for "
    -"this action"
    -msgstr ""
    -"Seleccione la acción deseada y el modo para ver los campos de "
    -"Disparado/Recuperación para dicha acción"
    -
    -#: ../../godmode/alerts/alert_view.php:417
    -msgid "Select the action"
    -msgstr "Seleccione la acción"
    -
    -#: ../../godmode/alerts/alert_view.php:420
    -#: ../../godmode/alerts/configure_alert_action.php:148
    -msgid "Firing"
    -msgstr "Disparado"
    -
    -#: ../../godmode/alerts/alert_view.php:421
    -msgid "Recovering"
    -msgstr "Recuperado"
    -
    -#: ../../godmode/alerts/alert_view.php:423
    -#: ../../godmode/massive/massive_edit_modules.php:551
    -#: ../../godmode/servers/manage_recontask.php:296
    -#: ../../godmode/servers/manage_recontask_form.php:243
    -#: ../../enterprise/godmode/services/services.service.php:253
    -#: ../../enterprise/operation/services/services.list.php:192
    -#: ../../enterprise/operation/services/services.table_services.php:161
    -msgid "Mode"
    -msgstr "Modo"
    -
    -#: ../../godmode/alerts/alert_view.php:438
    -#: ../../godmode/alerts/alert_view.php:532
    -#: ../../godmode/alerts/configure_alert_template.php:673
    -msgid "Firing fields"
    -msgstr "Campos de disparado"
    -
    -#: ../../godmode/alerts/alert_view.php:439
    -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"
    -
    -#: ../../godmode/alerts/alert_view.php:442
    -#: ../../godmode/alerts/alert_view.php:531
    -msgid "Fields configured on the command associated to the action"
    -msgstr "Campos configurados en el comando asociado a la acción"
    -
    -#: ../../godmode/alerts/alert_view.php:443
    -msgid "Template fields"
    -msgstr "Campos de la plantilla"
    -
    -#: ../../godmode/alerts/alert_view.php:444
    -msgid "Triggering fields configured in template"
    -msgstr "Campos de disparado configurados en la plantilla"
    -
    -#: ../../godmode/alerts/alert_view.php:445
    -msgid "Action fields"
    -msgstr "Campos de la acción"
    -
    -#: ../../godmode/alerts/alert_view.php:446
    -msgid "Triggering fields configured in action"
    -msgstr "Campos de disparado configurados en la acción"
    -
    -#: ../../godmode/alerts/alert_view.php:448
    -msgid "Executed on firing"
    -msgstr "Ejecutado en disparado"
    -
    -#: ../../godmode/alerts/alert_view.php:449
    -#: ../../godmode/alerts/alert_view.php:532
    -msgid "Fields used on execution when the alert is fired"
    -msgstr "Campos usados en la ejecución cuando la alerta es disparada"
    -
    -#: ../../godmode/alerts/alert_view.php:508
    -#: ../../godmode/alerts/alert_view.php:595
    -#: ../../godmode/alerts/configure_alert_action.php:153
    -#: ../../godmode/servers/plugin.php:381
    -msgid "Command preview"
    -msgstr "Vista previa del comando"
    -
    -#: ../../godmode/alerts/alert_view.php:516
    -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:529
    -msgid "Recovering fields"
    -msgstr "Campos de recuperación"
    -
    -#: ../../godmode/alerts/alert_view.php:529
    -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:533
    -msgid "Template recovery fields"
    -msgstr "Campos de recuperación de la plantilla"
    -
    -#: ../../godmode/alerts/alert_view.php:533
    -msgid "Recovery fields configured in alert template"
    -msgstr "Campos de recuperación configurados en la plantilla de la alerta"
    -
    -#: ../../godmode/alerts/alert_view.php:534
    -msgid "Action recovery fields"
    -msgstr "Acción en campos de recuperación"
    -
    -#: ../../godmode/alerts/alert_view.php:534
    -msgid "Recovery fields configured in alert action"
    -msgstr "Campos de recuperación configurados en una acción de alerta"
    -
    -#: ../../godmode/alerts/alert_view.php:535
    -msgid "Executed on recovery"
    -msgstr "Ejecutado en recuperación"
    -
    -#: ../../godmode/alerts/alert_view.php:535
    -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:57
    -#: ../../godmode/alerts/configure_alert_action.php:66
    -msgid "Configure alert action"
    -msgstr "Configurar acción de alerta"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:98
    -msgid "Update Action"
    -msgstr "Actualizar Acción"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:128
    -#: ../../godmode/alerts/configure_alert_command.php:150
    -#: ../../godmode/events/event_responses.editor.php:114
    -#: ../../godmode/events/event_responses.editor.php:121
    -#: ../../godmode/events/event_responses.editor.php:124
    -#: ../../godmode/massive/massive_edit_plugins.php:437
    -#: ../../godmode/servers/plugin.php:388 ../../godmode/servers/plugin.php:394
    -#: ../../godmode/servers/plugin.php:737
    -#: ../../godmode/servers/recon_script.php:370
    -msgid "Command"
    -msgstr "Comando"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:136
    -#: ../../godmode/alerts/configure_alert_command.php:130
    -msgid "Create Command"
    -msgstr "Crear comando"
    -
    -#: ../../godmode/alerts/configure_alert_action.php:149
    -msgid "Recovery"
    -msgstr "Recuperación"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:42
    -msgid "Configure alert command"
    -msgstr "Configurar comando de alerta"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:127
    -msgid "Update Command"
    -msgstr "Actualizar comando"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:160
    -#, php-format
    -msgid "Field %s description"
    -msgstr "Campo de descripción %s"
    -
    -#: ../../godmode/alerts/configure_alert_command.php:175
    -#, php-format
    -msgid "Field %s values"
    -msgstr "Campos %s valores"
    -
    -#: ../../godmode/alerts/configure_alert_special_days.php:55
    -msgid "Configure special day"
    -msgstr "Configurar dia especial"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:66
    -#: ../../godmode/alerts/configure_alert_template.php:85
    -#: ../../godmode/alerts/configure_alert_template.php:103
    -#: ../../include/functions_menu.php:494
    -msgid "Configure alert template"
    -msgstr "Configurar plantilla de alerta"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:121
    -#: ../../godmode/modules/manage_network_components.php:160
    -#: ../../enterprise/godmode/modules/local_components.php:106
    -#, php-format
    -msgid "Successfully created from %s"
    -msgstr "Creado correctamente desde %s"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:150
    -#: ../../godmode/alerts/configure_alert_template.php:155
    -#: ../../godmode/alerts/configure_alert_template.php:170
    -#: ../../godmode/alerts/configure_alert_template.php:175
    -#: ../../godmode/alerts/configure_alert_template.php:190
    -#: ../../godmode/alerts/configure_alert_template.php:195
    -#: ../../include/functions_config.php:727
    -#: ../../enterprise/godmode/alerts/alert_events.php:96
    -#: ../../enterprise/godmode/alerts/alert_events.php:101
    -#: ../../enterprise/godmode/alerts/alert_events.php:116
    -#: ../../enterprise/godmode/alerts/alert_events.php:121
    -#: ../../enterprise/godmode/alerts/alert_events.php:136
    -#: ../../enterprise/godmode/alerts/alert_events.php:141
    -#: ../../enterprise/godmode/setup/setup_history.php:71
    -msgid "Step"
    -msgstr "Paso"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:151
    -#: ../../godmode/alerts/configure_alert_template.php:156
    -#: ../../godmode/servers/plugin.php:326 ../../godmode/servers/plugin.php:332
    -#: ../../godmode/setup/setup.php:74 ../../godmode/setup/setup.php:112
    -#: ../../include/ajax/events.php:299
    -#: ../../include/functions_reporting.php:5483
    -#: ../../include/functions_reports.php:581
    -#: ../../enterprise/godmode/alerts/alert_events.php:97
    -#: ../../enterprise/godmode/alerts/alert_events.php:102
    -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46
    -#: ../../enterprise/include/functions_reporting_csv.php:484
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:184
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:416
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:485
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1014
    -msgid "General"
    -msgstr "General"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:171
    -#: ../../godmode/alerts/configure_alert_template.php:176
    -#: ../../enterprise/godmode/alerts/alert_events.php:117
    -#: ../../enterprise/godmode/alerts/alert_events.php:122
    -msgid "Conditions"
    -msgstr "Condiciones"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:191
    -#: ../../godmode/alerts/configure_alert_template.php:196
    -#: ../../enterprise/godmode/alerts/alert_events.php:137
    -#: ../../enterprise/godmode/alerts/alert_events.php:142
    -msgid "Advanced fields"
    -msgstr "Campos avanzados"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:523
    -#: ../../enterprise/godmode/alerts/alert_events.php:430
    -msgid "Days of week"
    -msgstr "Días de la semana"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:542
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:847
    -#: ../../enterprise/godmode/alerts/alert_events.php:446
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1380
    -msgid "Time from"
    -msgstr "Hora desde"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:546
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:856
    -#: ../../enterprise/godmode/alerts/alert_events.php:449
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1388
    -msgid "Time to"
    -msgstr "Hora hasta"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:556
    -#: ../../godmode/snmpconsole/snmp_alert.php:911
    -#: ../../enterprise/godmode/alerts/alert_events.php:457
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:253
    -msgid "Min. number of alerts"
    -msgstr "Número mínimo de alertas"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:560
    -msgid "Reset counter for non-sustained alerts"
    -msgstr "Reiniciar el contador para las alertas no sostenidas"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:560
    -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 inicie de forma consecutiva, incluso si está dentro del umbral"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:563
    -#: ../../godmode/snmpconsole/snmp_alert.php:914
    -#: ../../enterprise/godmode/alerts/alert_events.php:460
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:255
    -msgid "Max. number of alerts"
    -msgstr "Número máximo de alertas"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:591
    -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:593
    -msgid "Condition type"
    -msgstr "Tipo de condición"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:600
    -msgid "Trigger when matches the value"
    -msgstr "Disparar cuando coincida con el valor"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:612
    -msgid "The regular expression is valid"
    -msgstr "La expresión regular es válida"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:617
    -msgid "The regular expression is not valid"
    -msgstr "La expresión regular no es válida"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:623
    -#: ../../godmode/massive/massive_edit_modules.php:372
    -#: ../../godmode/massive/massive_edit_modules.php:418
    -#: ../../godmode/massive/massive_edit_modules.php:514
    -#: ../../godmode/modules/manage_network_components_form_common.php:119
    -#: ../../godmode/modules/manage_network_components_form_common.php:136
    -#: ../../include/functions_alerts.php:570
    -#: ../../include/functions_treeview.php:94
    -#: ../../include/functions_treeview.php:107
    -#: ../../include/functions_graph.php:4333
    -#: ../../include/functions_reporting_html.php:3140
    -#: ../../enterprise/dashboard/widgets/top_n.php:79
    -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:241
    -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:270
    -#: ../../enterprise/godmode/modules/configure_local_component.php:238
    -#: ../../enterprise/godmode/modules/configure_local_component.php:255
    -msgid "Min."
    -msgstr "Mín."
    -
    -#: ../../godmode/alerts/configure_alert_template.php:665
    -msgid "Alert recovery"
    -msgstr "Recuperación de alerta"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:666
    -#: ../../include/functions_groups.php:2158
    -#: ../../include/functions_reporting_html.php:2092
    -#: ../../operation/agentes/estado_generalagente.php:297
    -#: ../../enterprise/extensions/ipam/ipam_ajax.php:196
    -#: ../../enterprise/extensions/ipam/ipam_massive.php:79
    -#: ../../enterprise/extensions/ipam/ipam_network.php:542
    -#: ../../enterprise/include/functions_reporting_pdf.php:2344
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:892
    -msgid "Enabled"
    -msgstr "Activado"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:674
    -msgid "Recovery fields"
    -msgstr "Campos de recuperación"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:775
    -#: ../../godmode/modules/manage_network_components_form_common.php:58
    -#: ../../enterprise/godmode/modules/configure_local_component.php:155
    -msgid "Wizard level"
    -msgstr "Nivel Wizard"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:777
    -msgid "No wizard"
    -msgstr "No hay Wizard"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:824
    -#: ../../godmode/alerts/configure_alert_template.php:828
    -#: ../../enterprise/dashboard/full_dashboard.php:210
    -#: ../../enterprise/dashboard/public_dashboard.php:226
    -#: ../../enterprise/godmode/alerts/alert_events.php:552
    -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:163
    -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:183
    -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:212
    -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:173
    -#: ../../enterprise/meta/monitoring/wizard/wizard.php:90
    -msgid "Next"
    -msgstr "Siguiente"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:848
    -#, php-format
    -msgid "The alert would fire when the value doesn\\'t match %s"
    -msgstr "La alerta se lanzará cuando el valor no coincida %s"
    -
    -#: ../../godmode/alerts/configure_alert_template.php:852
    -msgid ""
    -"The alert would fire when the value is not between  and "
    -msgstr ""
    -"La alerta se disparará cuando no esté entre  and "
    -""
    -
    -#: ../../godmode/alerts/configure_alert_template.php:860
    -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/category/category.php:44
    -#: ../../godmode/category/category.php:51
    -#: ../../godmode/category/edit_category.php:43
    -#: ../../godmode/category/edit_category.php:50
    -msgid "List categories"
    -msgstr "Lista de categorías"
    -
    -#: ../../godmode/category/category.php:58
    -#: ../../godmode/category/category.php:61
    -#: ../../godmode/category/edit_category.php:57
    -#: ../../godmode/category/edit_category.php:60
    -msgid "Categories configuration"
    -msgstr "Configuración de categorías"
    -
    -#: ../../godmode/category/category.php:72
    -msgid "Error deleting category"
    -msgstr "Error al eliminar categoría"
    -
    -#: ../../godmode/category/category.php:76
    -msgid "Successfully deleted category"
    -msgstr "Categoría eliminada con éxito"
    -
    -#: ../../godmode/category/category.php:110
    -msgid "Category name"
    -msgstr "Nombre de la categoría"
    -
    -#: ../../godmode/category/category.php:141
    -msgid "No categories found"
    -msgstr "Ninguna categoría encontrada"
    -
    -#: ../../godmode/category/category.php:150
    -#: ../../godmode/category/edit_category.php:146
    -msgid "Create category"
    -msgstr "Crear categoría"
    -
    -#: ../../godmode/category/edit_category.php:57
    -msgid "Editor"
    -msgstr "Editor"
    -
    -#: ../../godmode/category/edit_category.php:76
    -msgid "Error updating category"
    -msgstr "Error al actualizar categoría"
    -
    -#: ../../godmode/category/edit_category.php:80
    -msgid "Successfully updated category"
    -msgstr "Categoría actualizada con éxito"
    -
    -#: ../../godmode/category/edit_category.php:99
    -msgid "Error creating category"
    -msgstr "Error al crear categoría"
    -
    -#: ../../godmode/category/edit_category.php:105
    -msgid "Successfully created category"
    -msgstr "Categoría creada con éxito"
    -
    -#: ../../godmode/category/edit_category.php:137
    -msgid "Update category"
    -msgstr "Actualizar categoría"
    -
    -#: ../../godmode/db/db_audit.php:19 ../../godmode/db/db_event.php:21
    -#: ../../godmode/db/db_info.php:32 ../../godmode/db/db_purge.php:37
    -#: ../../godmode/db/db_refine.php:33
    -msgid "Database maintenance"
    -msgstr "Mantenimiento de la base de datos"
    -
    -#: ../../godmode/db/db_audit.php:19
    -msgid "Database audit purge"
    -msgstr "Depuración de la base de datos de auditoría"
    -
    -#: ../../godmode/db/db_audit.php:70
    -msgid "Success data deleted"
    -msgstr "Dato borrado correctamente"
    -
    -#: ../../godmode/db/db_audit.php:72
    -msgid "Error deleting data"
    -msgstr "Error borrando datos"
    -
    -#: ../../godmode/db/db_audit.php:80 ../../godmode/db/db_event.php:61
    -#: ../../include/functions_reporting_html.php:1556
    -#: ../../include/functions_reporting_html.php:1571
    -#: ../../operation/agentes/gis_view.php:194
    -#: ../../operation/agentes/group_view.php:165 ../../operation/tree.php:273
    -#: ../../enterprise/dashboard/widgets/tree_view.php:197
    -#: ../../enterprise/include/functions_inventory.php:323
    -#: ../../enterprise/include/functions_reporting_pdf.php:691
    -#: ../../enterprise/include/functions_reporting_pdf.php:706
    -#: ../../enterprise/meta/monitoring/group_view.php:145
    -#: ../../enterprise/operation/agentes/agent_inventory.php:230
    -msgid "Total"
    -msgstr "Total"
    -
    -#: ../../godmode/db/db_audit.php:81 ../../godmode/db/db_event.php:62
    -msgid "Records"
    -msgstr "Registros"
    -
    -#: ../../godmode/db/db_audit.php:84 ../../godmode/db/db_event.php:64
    -msgid "First date"
    -msgstr "Primera fecha"
    -
    -#: ../../godmode/db/db_audit.php:88
    -msgid "Latest date"
    -msgstr "Última fecha"
    -
    -#: ../../godmode/db/db_audit.php:92 ../../godmode/db/db_event.php:73
    -#: ../../godmode/db/db_purge.php:335
    -msgid "Purge data"
    -msgstr "Purgar datos"
    -
    -#: ../../godmode/db/db_audit.php:97
    -msgid "Purge audit data over 90 days"
    -msgstr "Borrar los datos de auditoría excepto el último trimestre"
    -
    -#: ../../godmode/db/db_audit.php:98
    -msgid "Purge audit data over 30 days"
    -msgstr "Borrar los datos de auditoría excepto los últimos 30 días"
    -
    -#: ../../godmode/db/db_audit.php:99
    -msgid "Purge audit data over 14 days"
    -msgstr "Borrar los datos de auditoría excepto las últimas dos semanas"
    -
    -#: ../../godmode/db/db_audit.php:100
    -msgid "Purge audit data over 7 days"
    -msgstr "Borrar los datos de auditoría excepto la última semana"
    -
    -#: ../../godmode/db/db_audit.php:101
    -msgid "Purge audit data over 3 days"
    -msgstr "Borrar los datos de auditoría excepto los últimos tres días"
    -
    -#: ../../godmode/db/db_audit.php:102
    -msgid "Purge audit data over 1 day"
    -msgstr "Borrar los datos de auditoría excepto el ultimo día"
    -
    -#: ../../godmode/db/db_audit.php:103
    -msgid "Purge all audit data"
    -msgstr "Borrar todos los datos de auditoría"
    -
    -#: ../../godmode/db/db_audit.php:107 ../../godmode/db/db_event.php:92
    -msgid "Do it!"
    -msgstr "¡Hazlo!"
    -
    -#: ../../godmode/db/db_event.php:22
    -msgid "Event database cleanup"
    -msgstr "Limpieza de la base de datos de eventos"
    -
    -#: ../../godmode/db/db_event.php:40
    -msgid "Successfully deleted old events"
    -msgstr "Eventos antiguos borrados correctamente"
    -
    -#: ../../godmode/db/db_event.php:43
    -msgid "Error deleting old events"
    -msgstr "Error al borrar los eventos antiguos"
    -
    -#: ../../godmode/db/db_event.php:67
    -msgid "Latest data"
    -msgstr "Últimos datos"
    -
    -#: ../../godmode/db/db_event.php:81
    -msgid "Purge event data over 90 days"
    -msgstr "Borrar los datos de eventos excepto el último trimestre"
    -
    -#: ../../godmode/db/db_event.php:82
    -msgid "Purge event data over 30 days"
    -msgstr "Borrar los datos de eventos excepto los últimos 30 días"
    -
    -#: ../../godmode/db/db_event.php:83
    -msgid "Purge event data over 14 days"
    -msgstr "Borrar los datos de eventos excepto las últimas dos semanas"
    -
    -#: ../../godmode/db/db_event.php:84
    -msgid "Purge event data over 7 days"
    -msgstr "Borrar los datos de eventos excepto la última semana"
    -
    -#: ../../godmode/db/db_event.php:85
    -msgid "Purge event data over 3 days"
    -msgstr "Borrar los datos de eventos excepto los últimos tres días"
    -
    -#: ../../godmode/db/db_event.php:86
    -msgid "Purge event data over 1 day"
    -msgstr "Borrar todos los datos de eventos, excepto las últimas 24 horas"
    -
    -#: ../../godmode/db/db_event.php:87
    -msgid "Purge all event data"
    -msgstr "Borrar todos los datos de eventos"
    -
    -#: ../../godmode/db/db_info.php:32
    -msgid "Database information"
    -msgstr "Información de la base de datos"
    -
    -#: ../../godmode/db/db_info.php:34
    -msgid "Module data received"
    -msgstr "Datos de módulo recibidos"
    -
    -#: ../../godmode/db/db_main.php:69
    -msgid "Current database maintenance setup"
    -msgstr "Configuración actual del mantenimiento de la BB. DD."
    -
    -#: ../../godmode/db/db_main.php:76
    -msgid "Database setup"
    -msgstr "Configuración de la base de datos"
    -
    -#: ../../godmode/db/db_main.php:80
    -msgid "Max. time before compact data"
    -msgstr "Máx. días antes de comprimir datos"
    -
    -#: ../../godmode/db/db_main.php:82 ../../godmode/db/db_main.php:88
    -#: ../../godmode/setup/setup_visuals.php:740 ../../include/functions.php:431
    -#: ../../include/functions.php:565 ../../include/functions_html.php:736
    -#: ../../enterprise/meta/advanced/metasetup.visual.php:143
    -msgid "days"
    -msgstr "días"
    -
    -#: ../../godmode/db/db_main.php:86
    -msgid "Max. time before purge"
    -msgstr "Máx. días antes de eliminar datos"
    -
    -#: ../../godmode/db/db_main.php:95
    -msgid "Database size stats"
    -msgstr "Tamaño de estadísticas de la base de datos"
    -
    -#: ../../godmode/db/db_main.php:99 ../../include/functions_reporting.php:7248
    -#: ../../include/functions_reporting_html.php:3469
    -#: ../../mobile/operation/groups.php:125 ../../operation/tree.php:271
    -#: ../../enterprise/dashboard/widgets/tree_view.php:195
    -#: ../../enterprise/include/functions_reporting_csv.php:457
    -msgid "Total agents"
    -msgstr "Agentes totales"
    -
    -#: ../../godmode/db/db_main.php:105 ../../include/functions_reporting.php:9898
    -msgid "Total events"
    -msgstr "Total de eventos"
    -
    -#: ../../godmode/db/db_main.php:111
    -msgid "Total data items (tagente_datos)"
    -msgstr "Total de items de datos (tagente_datos)"
    -
    -#: ../../godmode/db/db_main.php:123
    -msgid "Total log4x items (tagente_datos_log4x)"
    -msgstr "Total elementos Log4x (tagente_datos_log4x)"
    -
    -#: ../../godmode/db/db_main.php:135
    -msgid "Total data string items (tagente_datos_string)"
    -msgstr "total campos datos en cadena (tagente_datos_string)"
    -
    -#: ../../godmode/db/db_main.php:141
    -msgid "Total modules configured"
    -msgstr "Módulos totales configurados"
    -
    -#: ../../godmode/db/db_main.php:149
    -msgid "Total agent access records"
    -msgstr "total de registros de acceso del agente"
    -
    -#: ../../godmode/db/db_main.php:160
    -msgid "Database sanity"
    -msgstr "Estado de la BBDD"
    -
    -#: ../../godmode/db/db_main.php:164
    -msgid "Total uknown agents"
    -msgstr "total de agentes desconocidos"
    -
    -#: ../../godmode/db/db_main.php:170
    -msgid "Total non-init modules"
    -msgstr "total de módulos no iniciados"
    -
    -#: ../../godmode/db/db_main.php:179
    -msgid "Last time on DB maintance"
    -msgstr "Ultima vez en mantenimiento de base de datos"
    -
    -#: ../../godmode/db/db_main.php:183
    -#: ../../godmode/snmpconsole/snmp_alert.php:1217
    -#: ../../include/functions_treeview.php:595 ../../include/functions_ui.php:449
    -#: ../../operation/agentes/estado_generalagente.php:210
    -#: ../../operation/gis_maps/ajax.php:323 ../../operation/gis_maps/ajax.php:334
    -#: ../../enterprise/extensions/cron/main.php:291
    -#: ../../enterprise/extensions/ipam/ipam_ajax.php:229
    -#: ../../enterprise/extensions/ipam/ipam_list.php:223
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1155
    -msgid "Never"
    -msgstr "Nunca"
    -
    -#: ../../godmode/db/db_main.php:200
    -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"
    -msgstr ""
    -"Por favor, asegúrese 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 está "
    -"correctamente instalado y funcionando. Es muy importante para el correcto "
    -"funcionamiento y rendimiento de Pandora."
    -
    -#: ../../godmode/db/db_purge.php:38 ../../godmode/menu.php:316
    -msgid "Database purge"
    -msgstr "Purgar BBDD"
    -
    -#: ../../godmode/db/db_purge.php:43
    -msgid "Get data from agent"
    -msgstr "Obtener datos de un agente"
    -
    -#: ../../godmode/db/db_purge.php:75
    -#, php-format
    -msgid "Purge task launched for agent %s :: Data older than %s"
    -msgstr ""
    -"Tarea de purga lanzada por el agente% s :: Información anterior a % s"
    -
    -#: ../../godmode/db/db_purge.php:78
    -msgid ""
    -"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)"
    -
    -#: ../../godmode/db/db_purge.php:92
    -#, php-format
    -msgid "Deleting records for module %s"
    -msgstr "Eliminación de registros para el módulo% s"
    -
    -#: ../../godmode/db/db_purge.php:140
    -#, php-format
    -msgid "Total errors: %s"
    -msgstr "Errores Totales: %s"
    -
    -#: ../../godmode/db/db_purge.php:141 ../../godmode/db/db_purge.php:144
    -#, php-format
    -msgid "Total records deleted: %s"
    -msgstr "Total de registros eliminados: %s"
    -
    -#: ../../godmode/db/db_purge.php:149
    -msgid "Deleting records for all agents"
    -msgstr "Borrando registros para el módulo"
    -
    -#: ../../godmode/db/db_purge.php:166
    -msgid "Choose agent"
    -msgstr "Escoja agente"
    -
    -#: ../../godmode/db/db_purge.php:167
    -#: ../../operation/incidents/incident.php:279
    -msgid "All agents"
    -msgstr "Todos los agentes"
    -
    -#: ../../godmode/db/db_purge.php:172
    -msgid "Select the agent you want information about"
    -msgstr "Seleccione el agente del que quiera obtener información"
    -
    -#: ../../godmode/db/db_purge.php:174
    -msgid "Get data"
    -msgstr "Obtener datos"
    -
    -#: ../../godmode/db/db_purge.php:175
    -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"
    -
    -#: ../../godmode/db/db_purge.php:179
    -#, php-format
    -msgid "Information on agent %s in the database"
    -msgstr "Información acerca del agente %s en la base de datos"
    -
    -#: ../../godmode/db/db_purge.php:182
    -msgid "Information on all agents in the database"
    -msgstr "Información acerca de todos los agentes en la base de datos"
    -
    -#: ../../godmode/db/db_purge.php:317
    -msgid "Packets less than three months old"
    -msgstr "Paquetes con menos de tres meses"
    -
    -#: ../../godmode/db/db_purge.php:319
    -msgid "Packets less than one month old"
    -msgstr "Paquetes con menos de un mes"
    -
    -#: ../../godmode/db/db_purge.php:321
    -msgid "Packets less than two weeks old"
    -msgstr "Paquetes con menos de dos semanas"
    -
    -#: ../../godmode/db/db_purge.php:323
    -msgid "Packets less than one week old"
    -msgstr "Paquetes con menos de una semana"
    -
    -#: ../../godmode/db/db_purge.php:325
    -msgid "Packets less than three days old"
    -msgstr "Paquetes con menos de tres días"
    -
    -#: ../../godmode/db/db_purge.php:327
    -msgid "Packets less than one day old"
    -msgstr "Paquetes con menos de 24 horas"
    -
    -#: ../../godmode/db/db_purge.php:329
    -msgid "Total number of packets"
    -msgstr "Número máximo de paquetes"
    -
    -#: ../../godmode/db/db_purge.php:340
    -msgid "Purge data over 3 months"
    -msgstr "Purgar los datos con más de 3 meses"
    -
    -#: ../../godmode/db/db_purge.php:341
    -msgid "Purge data over 1 month"
    -msgstr "Purgar los datos con más de 1 mes"
    -
    -#: ../../godmode/db/db_purge.php:342
    -msgid "Purge data over 2 weeks"
    -msgstr "Purgar los datos con mas de 2 semanas"
    -
    -#: ../../godmode/db/db_purge.php:343
    -msgid "Purge data over 1 week"
    -msgstr "Purgar los datos con más de 1 semana"
    -
    -#: ../../godmode/db/db_purge.php:344
    -msgid "Purge data over 3 days"
    -msgstr "Purgar los datos con más de 3 días"
    -
    -#: ../../godmode/db/db_purge.php:345
    -msgid "Purge data over 1 day"
    -msgstr "Purgar los datos con más de 1 día"
    -
    -#: ../../godmode/db/db_purge.php:346
    -msgid "All data until now"
    -msgstr "Todos los datos hasta ahora"
    -
    -#: ../../godmode/db/db_purge.php:350
    -msgid "Purge"
    -msgstr "Purgar"
    -
    -#: ../../godmode/db/db_refine.php:33 ../../godmode/menu.php:317
    -#: ../../include/functions_db.php:1499
    -msgid "Database debug"
    -msgstr "Depurar BBDD"
    -
    -#: ../../godmode/db/db_refine.php:42
    -msgid "Maximum is equal to minimum"
    -msgstr "El máximo es igual al mínimo"
    -
    -#: ../../godmode/db/db_refine.php:47
    -#: ../../godmode/massive/massive_copy_modules.php:447
    -#: ../../include/functions_agents.php:565
    -msgid "No modules have been selected"
    -msgstr "No se ha seleccionado ningún módulo"
    -
    -#: ../../godmode/db/db_refine.php:56
    -msgid "Filtering data module"
    -msgstr "Filtrando módulo de datos"
    -
    -#: ../../godmode/db/db_refine.php:76
    -msgid "Filtering completed"
    -msgstr "Filtrado completado"
    -
    -#: ../../godmode/db/db_refine.php:83
    -#: ../../operation/agentes/exportdata.php:244
    -#: ../../enterprise/godmode/agentes/manage_config_remote.php:154
    -msgid "Source agent"
    -msgstr "Agente origen"
    -
    -#: ../../godmode/db/db_refine.php:88
    -msgid "No agent selected"
    -msgstr "No hay ningún agente seleccionado"
    -
    -#: ../../godmode/db/db_refine.php:92
    -msgid "Get Info"
    -msgstr "Obtener info."
    -
    -#: ../../godmode/db/db_refine.php:105
    -msgid "Purge data out of these limits"
    -msgstr "Purgar los datos fuera de esos límites"
    -
    -#: ../../godmode/db/db_refine.php:107 ../../godmode/db/db_refine.php:109
    -#: ../../include/functions_reporting.php:5704
    -msgid "Minimum"
    -msgstr "Mínimo"
    -
    -#: ../../godmode/db/db_refine.php:112 ../../godmode/db/db_refine.php:114
    -#: ../../include/functions_reporting.php:5707
    -msgid "Maximum"
    -msgstr "Máximo"
    -
    -#: ../../godmode/events/custom_events.php:68
    -#: ../../godmode/events/custom_events.php:152
    -#: ../../include/functions_events.php:34
    -#: ../../include/functions_events.php:1581
    -#: ../../enterprise/meta/include/functions_events_meta.php:55
    -msgid "Event id"
    -msgstr "Identificación del evento"
    -
    -#: ../../godmode/events/custom_events.php:71
    -#: ../../godmode/events/custom_events.php:153
    -#: ../../include/functions_events.php:35
    -#: ../../include/functions_events.php:905
    -#: ../../include/functions_events.php:2338
    -#: ../../include/functions_reporting_html.php:1022
    -#: ../../include/functions_reporting_html.php:1032
    -#: ../../include/functions_reporting_html.php:2825
    -#: ../../enterprise/meta/include/functions_events_meta.php:58
    -msgid "Event name"
    -msgstr "Nombre del evento"
    -
    -#: ../../godmode/events/custom_events.php:86
    -#: ../../godmode/events/custom_events.php:158 ../../godmode/setup/news.php:223
    -#: ../../include/ajax/events.php:466 ../../include/functions_events.php:40
    -#: ../../include/functions_events.php:912
    -#: ../../include/functions_events.php:2343
    -#: ../../include/functions_events.php:3542
    -#: ../../include/functions_netflow.php:287
    -#: ../../include/functions_reporting_html.php:813
    -#: ../../include/functions_reporting_html.php:822
    -#: ../../include/functions_reporting_html.php:1026
    -#: ../../include/functions_reporting_html.php:1035
    -#: ../../include/functions_reporting_html.php:1650
    -#: ../../include/functions_reporting_html.php:2827
    -#: ../../mobile/operation/events.php:473
    -#: ../../mobile/operation/modules.php:548
    -#: ../../mobile/operation/modules.php:756
    -#: ../../operation/agentes/estado_generalagente.php:402
    -#: ../../operation/agentes/exportdata.csv.php:77
    -#: ../../operation/agentes/exportdata.excel.php:76
    -#: ../../operation/agentes/exportdata.php:99
    -#: ../../operation/agentes/status_monitor.php:990
    -#: ../../operation/events/events.build_table.php:167
    -#: ../../operation/events/events.php:87
    -#: ../../operation/messages/message_list.php:127
    -#: ../../operation/search_modules.php:54
    -#: ../../operation/snmpconsole/snmp_view.php:623
    -#: ../../enterprise/include/functions_inventory.php:65
    -#: ../../enterprise/include/functions_inventory.php:241
    -#: ../../enterprise/include/functions_reporting_csv.php:350
    -#: ../../enterprise/include/functions_reporting_csv.php:880
    -#: ../../enterprise/meta/include/functions_events_meta.php:73
    -msgid "Timestamp"
    -msgstr "Fecha/Hora"
    -
    -#: ../../godmode/events/custom_events.php:89
    -#: ../../godmode/events/custom_events.php:159
    -#: ../../godmode/events/event_edit_filter.php:235
    -#: ../../godmode/events/event_filter.php:110
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:1413
    -#: ../../include/functions_events.php:41
    -#: ../../include/functions_events.php:3562
    -#: ../../operation/events/events.build_table.php:191
    -#: ../../operation/events/events_list.php:626
    -#: ../../enterprise/dashboard/widgets/events_list.php:36
    -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:210
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1683
    -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:403
    -#: ../../enterprise/include/functions_events.php:97
    -#: ../../enterprise/meta/include/functions_events_meta.php:76
    -msgid "Event type"
    -msgstr "Tipo de evento"
    -
    -#: ../../godmode/events/custom_events.php:92
    -#: ../../godmode/events/custom_events.php:160
    -#: ../../include/functions_events.php:42
    -#: ../../enterprise/meta/include/functions_events_meta.php:79
    -msgid "Agent module"
    -msgstr "Módulo de agente"
    -
    -#: ../../godmode/events/custom_events.php:98
    -#: ../../godmode/events/custom_events.php:162
    -#: ../../godmode/events/event_edit_filter.php:239
    -#: ../../godmode/events/event_filter.php:112
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:1401
    -#: ../../include/functions_events.php:44
    -#: ../../include/functions_events.php:898
    -#: ../../include/functions_events.php:2387
    -#: ../../include/functions_events.php:3579
    -#: ../../include/functions_reporting_html.php:811
    -#: ../../include/functions_reporting_html.php:820
    -#: ../../include/functions_reporting_html.php:1024
    -#: ../../include/functions_reporting_html.php:1034
    -#: ../../include/functions_reporting_html.php:1648
    -#: ../../mobile/operation/events.php:373 ../../mobile/operation/events.php:374
    -#: ../../mobile/operation/events.php:489 ../../mobile/operation/events.php:632
    -#: ../../mobile/operation/events.php:633
    -#: ../../operation/events/events.build_table.php:211
    -#: ../../operation/events/events_list.php:632
    -#: ../../operation/snmpconsole/snmp_view.php:399
    -#: ../../enterprise/dashboard/widgets/events_list.php:54
    -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1671
    -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:392
    -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:320
    -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74
    -#: ../../enterprise/include/functions_events.php:104
    -#: ../../enterprise/include/functions_reporting.php:1780
    -#: ../../enterprise/include/functions_reporting_pdf.php:1761
    -#: ../../enterprise/meta/include/functions_events_meta.php:85
    -msgid "Severity"
    -msgstr "Gravedad"
    -
    -#: ../../godmode/events/custom_events.php:101
    -#: ../../godmode/events/custom_events.php:163
    -#: ../../include/functions_events.php:45
    -#: ../../include/functions_events.php:1751
    -#: ../../include/functions_events.php:3584
    -#: ../../include/functions_events.php:3929
    -#: ../../operation/events/events.build_table.php:217
    -#: ../../operation/events/events.build_table.php:583
    -#: ../../enterprise/meta/include/functions_events_meta.php:88
    -msgid "Comment"
    -msgstr "Comentar"
    -
    -#: ../../godmode/events/custom_events.php:110
    -#: ../../godmode/events/custom_events.php:166
    -#: ../../include/functions_events.php:48
    -#: ../../include/functions_events.php:2251
    -#: ../../enterprise/meta/include/functions_events_meta.php:97
    -msgid "Extra id"
    -msgstr "ID extra"
    -
    -#: ../../godmode/events/custom_events.php:116
    -#: ../../godmode/events/custom_events.php:168
    -#: ../../include/functions_events.php:50
    -#: ../../include/functions_events.php:3604
    -#: ../../operation/events/events.build_table.php:241
    -#: ../../enterprise/meta/include/functions_events_meta.php:103
    -msgid "ACK Timestamp"
    -msgstr "ACK Timestamp"
    -
    -#: ../../godmode/events/custom_events.php:119
    -#: ../../godmode/events/custom_events.php:169
    -#: ../../include/functions_events.php:51
    -#: ../../include/functions_events.php:2190
    -#: ../../include/functions_events.php:2202
    -#: ../../include/functions_events.php:2214
    -#: ../../include/functions_events.php:2226
    -#: ../../include/functions_events.php:2231
    -#: ../../include/functions_events.php:2236
    -#: ../../include/functions_events.php:2240
    -#: ../../include/functions_events.php:3609
    -#: ../../operation/events/events.build_table.php:247
    -#: ../../enterprise/meta/include/functions_events_meta.php:106
    -msgid "Instructions"
    -msgstr "Instrucciones"
    -
    -#: ../../godmode/events/custom_events.php:122
    -#: ../../godmode/events/custom_events.php:170
    -#: ../../include/functions_events.php:52
    -#: ../../enterprise/godmode/setup/setup_metaconsole.php:171
    -#: ../../enterprise/godmode/setup/setup_metaconsole.php:247
    -#: ../../enterprise/meta/advanced/metasetup.consoles.php:307
    -#: ../../enterprise/meta/advanced/metasetup.consoles.php:387
    -#: ../../enterprise/meta/include/functions_events_meta.php:109
    -msgid "Server name"
    -msgstr "Nombre del servidor"
    -
    -#: ../../godmode/events/custom_events.php:131
    -#: ../../enterprise/meta/event/custom_events.php:191
    -msgid "Show event fields"
    -msgstr "Mostrar campos de eventos"
    -
    -#: ../../godmode/events/custom_events.php:133
    -msgid "Load default event fields"
    -msgstr "Cargar campos de evento por defecto"
    -
    -#: ../../godmode/events/custom_events.php:133
    -msgid "Default event fields will be loaded. Do you want to continue?"
    -msgstr "Se cargarán campos de evento por defecto. ¿Desea continuar?"
    -
    -#: ../../godmode/events/custom_events.php:181
    -#: ../../enterprise/meta/event/custom_events.php:169
    -msgid "Fields available"
    -msgstr "Campos disponibles"
    -
    -#: ../../godmode/events/custom_events.php:185
    -#: ../../enterprise/meta/event/custom_events.php:178
    -msgid "Add fields to select"
    -msgstr "Añadir campos para seleccionar"
    -
    -#: ../../godmode/events/custom_events.php:189
    -#: ../../enterprise/meta/event/custom_events.php:183
    -msgid "Delete fields to select"
    -msgstr "Eliminar campos para seleccionar"
    -
    -#: ../../godmode/events/custom_events.php:193
    -#: ../../enterprise/meta/event/custom_events.php:171
    -msgid "Fields selected"
    -msgstr "Campos seleccionados"
    -
    -#: ../../godmode/events/event_edit_filter.php:166
    -#: ../../godmode/modules/manage_nc_groups.php:83
    -#: ../../godmode/netflow/nf_edit_form.php:110
    -#: ../../enterprise/godmode/reporting/graph_template_editor.php:120
    -msgid "Not updated. Blank name"
    -msgstr "No actualizado. Nombre en blanco"
    -
    -#: ../../godmode/events/event_edit_filter.php:174
    -#: ../../godmode/modules/manage_nc_groups.php:99
    -#: ../../godmode/netflow/nf_edit_form.php:132 ../../godmode/setup/news.php:88
    -msgid "Not updated. Error updating data"
    -msgstr "No se ha podido actualizar. Error al actualizar los datos."
    -
    -#: ../../godmode/events/event_edit_filter.php:203
    -msgid "Update Filter"
    -msgstr "Actualizar Filtro"
    -
    -#: ../../godmode/events/event_edit_filter.php:206
    -msgid "Create Filter"
    -msgstr "Crear filtro"
    -
    -#: ../../godmode/events/event_edit_filter.php:215
    -#: ../../operation/events/events_list.php:290
    -msgid "Filter name"
    -msgstr "Nombre del filtro"
    -
    -#: ../../godmode/events/event_edit_filter.php:219
    -msgid "Save in group"
    -msgstr "Guardar en grupo"
    -
    -#: ../../godmode/events/event_edit_filter.php:220
    -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:233
    -#: ../../godmode/massive/massive_copy_modules.php:81
    -#: ../../godmode/massive/massive_copy_modules.php:194
    -#: ../../godmode/massive/massive_delete_agents.php:117
    -#: ../../godmode/massive/massive_delete_modules.php:457
    -#: ../../godmode/massive/massive_delete_modules.php:471
    -#: ../../godmode/massive/massive_edit_agents.php:220
    -#: ../../godmode/massive/massive_edit_modules.php:300
    -#: ../../godmode/massive/massive_edit_modules.php:331
    -#: ../../include/functions.php:1083 ../../include/functions_events.php:1428
    -#: ../../mobile/operation/modules.php:43
    -#: ../../operation/agentes/estado_agente.php:190
    -#: ../../operation/agentes/status_monitor.php:303
    -#: ../../operation/events/events_list.php:629
    -#: ../../enterprise/dashboard/widgets/events_list.php:34
    -msgid "Not normal"
    -msgstr "No normal"
    -
    -#: ../../godmode/events/event_edit_filter.php:245
    -#: ../../godmode/events/event_filter.php:111
    -#: ../../operation/events/events_list.php:639
    -#: ../../enterprise/dashboard/widgets/events_list.php:46
    -#: ../../enterprise/include/functions_events.php:83
    -msgid "Event status"
    -msgstr "Estado del evento"
    -
    -#: ../../godmode/events/event_edit_filter.php:249
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:1499
    -#: ../../godmode/snmpconsole/snmp_alert.php:999
    -#: ../../mobile/operation/agents.php:194 ../../mobile/operation/alerts.php:188
    -#: ../../mobile/operation/events.php:642
    -#: ../../mobile/operation/modules.php:254
    -#: ../../operation/events/events_list.php:473
    -#: ../../operation/snmpconsole/snmp_view.php:413
    -#: ../../enterprise/extensions/ipam/ipam_network.php:281
    -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:165
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1889
    -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:454
    -#: ../../enterprise/include/functions_events.php:90
    -msgid "Free search"
    -msgstr "Búsqueda libre"
    -
    -#: ../../godmode/events/event_edit_filter.php:253
    -#: ../../operation/events/events_list.php:475
    -#: ../../enterprise/meta/agentsearch.php:28
    -#: ../../enterprise/meta/agentsearch.php:32
    -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:242
    -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:331
    -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:401
    -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:509
    -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:590
    -msgid "Agent search"
    -msgstr "Búsqueda de agente"
    -
    -#: ../../godmode/events/event_edit_filter.php:276
    -#: ../../godmode/setup/setup_visuals.php:62
    -#: ../../godmode/users/configure_user.php:601
    -#: ../../include/functions_config.php:474
    -#: ../../operation/events/events_list.php:533
    -#: ../../operation/snmpconsole/snmp_view.php:388
    -#: ../../operation/users/user_edit.php:238
    -#: ../../enterprise/meta/advanced/metasetup.visual.php:117
    -#: ../../enterprise/meta/include/functions_meta.php:1061
    -msgid "Block size for pagination"
    -msgstr "Tamaño de bloque para la paginación"
    -
    -#: ../../godmode/events/event_edit_filter.php:285
    -#: ../../operation/events/events_list.php:495
    -#: ../../enterprise/include/functions_events.php:128
    -msgid "User ack."
    -msgstr "Validación del usuario"
    -
    -#: ../../godmode/events/event_edit_filter.php:286
    -msgid "Choose between the users who have validated an event. "
    -msgstr "Escoja entre los usuarios que tienen validado un evento "
    -
    -#: ../../godmode/events/event_edit_filter.php:299
    -#: ../../operation/events/events_list.php:645
    -#: ../../enterprise/godmode/setup/setup.php:90
    -msgid "All events"
    -msgstr "Todos los eventos"
    -
    -#: ../../godmode/events/event_edit_filter.php:300
    -#: ../../operation/events/events_list.php:646
    -msgid "Group events"
    -msgstr "Eventos agrupados"
    -
    -#: ../../godmode/events/event_edit_filter.php:305
    -#: ../../operation/events/events_list.php:544
    -#: ../../enterprise/include/functions_events.php:142
    -msgid "Date from"
    -msgstr "Fecha desde"
    -
    -#: ../../godmode/events/event_edit_filter.php:308
    -#: ../../operation/events/events_list.php:550
    -#: ../../enterprise/include/functions_events.php:135
    -msgid "Date to"
    -msgstr "Fecha hasta"
    -
    -#: ../../godmode/events/event_edit_filter.php:350
    -#: ../../operation/events/events_list.php:570
    -#: ../../operation/events/events_list.php:584
    -#: ../../enterprise/include/functions_events.php:180
    -msgid "Events with following tags"
    -msgstr "Eventos con las siguientes etiquetas"
    -
    -#: ../../godmode/events/event_edit_filter.php:365
    -#: ../../operation/events/events_list.php:576
    -#: ../../operation/events/events_list.php:590
    -#: ../../enterprise/include/functions_events.php:197
    -msgid "Events without following tags"
    -msgstr "Eventos sin las siguientes etiquetas"
    -
    -#: ../../godmode/events/event_edit_filter.php:379
    -#: ../../operation/events/events_list.php:526
    -#: ../../enterprise/include/functions_events.php:156
    -msgid "Alert events"
    -msgstr "Eventos de la alerta"
    -
    -#: ../../godmode/events/event_edit_filter.php:383
    -#: ../../operation/events/events_list.php:529
    -msgid "Filter alert events"
    -msgstr "Filtrar eventos de alertas"
    -
    -#: ../../godmode/events/event_edit_filter.php:384
    -#: ../../operation/events/events_list.php:530
    -msgid "Only alert events"
    -msgstr "Solo eventos de alertas"
    -
    -#: ../../godmode/events/event_edit_filter.php:388
    -#: ../../operation/events/events_list.php:507
    -msgid "Module search"
    -msgstr "Búsqueda por módulo"
    -
    -#: ../../godmode/events/event_filter.php:167
    -#: ../../godmode/netflow/nf_edit.php:162
    -msgid "There are no defined filters"
    -msgstr "No hay filtros definidos"
    -
    -#: ../../godmode/events/event_filter.php:175
    -#: ../../godmode/netflow/nf_edit.php:167
    -#: ../../godmode/netflow/nf_edit_form.php:182
    -#: ../../godmode/snmpconsole/snmp_filters.php:38
    -#: ../../enterprise/meta/event/custom_events.php:43
    -msgid "Create filter"
    -msgstr "Crear Filtro"
    -
    -#: ../../godmode/events/event_responses.editor.php:63
    -msgid "Edit event responses"
    -msgstr "Editar respuestas de eventos"
    -
    -#: ../../godmode/events/event_responses.editor.php:93
    -msgid "For Command type Modal Window mode is enforced"
    -msgstr "Para tipo comando , se aplica el modo Modal Window"
    -
    -#: ../../godmode/events/event_responses.editor.php:94
    -msgid "Modal window"
    -msgstr "Modal window"
    -
    -#: ../../godmode/events/event_responses.editor.php:94
    -msgid "New window"
    -msgstr "Nueva ventana"
    -
    -#: ../../godmode/events/event_responses.editor.php:104
    -#: ../../godmode/reporting/graph_builder.main.php:137
    -#: ../../godmode/reporting/visual_console_builder.wizard.php:134
    -#: ../../godmode/setup/gis_step_2.php:257
    -#: ../../include/functions_visual_map_editor.php:84
    -#: ../../include/functions_visual_map_editor.php:386
    -#: ../../enterprise/godmode/reporting/graph_template_editor.php:172
    -msgid "Width"
    -msgstr "Anchura"
    -
    -#: ../../godmode/events/event_responses.editor.php:106
    -#: ../../godmode/reporting/graph_builder.main.php:141
    -#: ../../godmode/reporting/visual_console_builder.wizard.php:137
    -#: ../../godmode/setup/gis_step_2.php:259
    -#: ../../enterprise/godmode/reporting/graph_template_editor.php:176
    -msgid "Height"
    -msgstr "Altura"
    -
    -#: ../../godmode/events/event_responses.editor.php:111
    -#: ../../include/functions_events.php:1817
    -#: ../../enterprise/extensions/cron/main.php:335
    -msgid "Parameters"
    -msgstr "Parámetros"
    -
    -#: ../../godmode/events/event_responses.list.php:38
    -msgid "No responses found"
    -msgstr "No se encontraron respuestas"
    -
    -#: ../../godmode/events/event_responses.list.php:76
    -msgid "Create response"
    -msgstr "Crear respuesta"
    -
    -#: ../../godmode/events/event_responses.php:52
    -msgid "Response added succesfully"
    -msgstr "Respuesta añadida con éxito"
    -
    -#: ../../godmode/events/event_responses.php:55
    -msgid "Response cannot be added"
    -msgstr "La respuesta no se puede añadir"
    -
    -#: ../../godmode/events/event_responses.php:81
    -msgid "Response updated succesfully"
    -msgstr "Repuesta actualizada con éxito"
    -
    -#: ../../godmode/events/event_responses.php:84
    -msgid "Response cannot be updated"
    -msgstr "La respuesta no se puede actualizar"
    -
    -#: ../../godmode/events/event_responses.php:93
    -msgid "Response deleted succesfully"
    -msgstr "Respuesta eliminada con éxito"
    -
    -#: ../../godmode/events/event_responses.php:96
    -msgid "Response cannot be deleted"
    -msgstr "La respuesta no se puede eliminar"
    -
    -#: ../../godmode/events/events.php:37
    -#: ../../godmode/users/configure_user.php:563
    -#: ../../operation/events/events.php:334
    -#: ../../operation/users/user_edit.php:278
    -msgid "Event list"
    -msgstr "Lista de eventos"
    -
    -#: ../../godmode/events/events.php:42
    -#: ../../godmode/netflow/nf_edit_form.php:55
    -msgid "Filter list"
    -msgstr "Lista de filtros"
    -
    -#: ../../godmode/events/events.php:48 ../../godmode/menu.php:187
    -#: ../../enterprise/meta/event/custom_events.php:48
    -msgid "Event responses"
    -msgstr "Respuestas de evento"
    -
    -#: ../../godmode/events/events.php:65 ../../godmode/events/events.php:80
    -#: ../../godmode/reporting/reporting_builder.list_items.php:182
    -#: ../../enterprise/meta/event/custom_events.php:65
    -#: ../../enterprise/meta/event/custom_events.php:80
    -#: ../../enterprise/meta/general/main_header.php:214
    -msgid "Filters"
    -msgstr "Filtros"
    -
    -#: ../../godmode/events/events.php:73 ../../include/ajax/events.php:306
    -#: ../../enterprise/meta/event/custom_events.php:73
    -msgid "Responses"
    -msgstr "Respuestas"
    -
    -#: ../../godmode/events/events.php:85 ../../godmode/events/events.php:88
    -#: ../../godmode/users/configure_profile.php:283
    -#: ../../operation/events/events.php:365
    -msgid "Manage events"
    -msgstr "Gestionar eventos"
    -
    -#: ../../godmode/extensions.php:27
    -#: ../../enterprise/meta/general/main_header.php:320
    -msgid "Extensions"
    -msgstr "Extensiones"
    -
    -#: ../../godmode/extensions.php:27
    -msgid "Defined extensions"
    -msgstr "Extensiones definidas"
    -
    -#: ../../godmode/extensions.php:32
    -msgid "There are no extensions defined"
    -msgstr "No hay extensiones definidas"
    -
    -#: ../../godmode/extensions.php:145 ../../enterprise/godmode/menu.php:162
    -#: ../../enterprise/include/functions_setup.php:27
    -#: ../../enterprise/include/functions_setup.php:55
    -msgid "Enterprise"
    -msgstr "Enterprise"
    -
    -#: ../../godmode/extensions.php:146
    -msgid "Godmode Function"
    -msgstr "Función Administrador"
    -
    -#: ../../godmode/extensions.php:147
    -msgid "Godmode Menu"
    -msgstr "Menú Administrador"
    -
    -#: ../../godmode/extensions.php:148
    -msgid "Operation Menu"
    -msgstr "Menú Operación"
    -
    -#: ../../godmode/extensions.php:149
    -msgid "Operation Function"
    -msgstr "Función Operación"
    -
    -#: ../../godmode/extensions.php:150
    -msgid "Login Function"
    -msgstr "Función Login"
    -
    -#: ../../godmode/extensions.php:151
    -msgid "Agent operation tab"
    -msgstr "Pestaña operaciones de agente"
    -
    -#: ../../godmode/extensions.php:152
    -msgid "Agent godmode tab"
    -msgstr "Pestaña administración de agente"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:111
    -msgid "Map successfully created"
    -msgstr "Mapa creado exitosamente"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:112
    -msgid "Map could not be created"
    -msgstr "El mapa no puso ser creado"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:201
    -msgid "Map successfully update"
    -msgstr "Mapa exitosamente actualizado"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:202
    -msgid "Map could not be updated"
    -msgstr "El mapa no ha podido ser actualizado"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:214
    -#: ../../operation/gis_maps/gis_map.php:29
    -msgid "GIS Maps list"
    -msgstr "Lista de mapas GIS"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:219
    -msgid "View GIS"
    -msgstr "Ver GIS"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:222
    -msgid "GIS Maps builder"
    -msgstr "Mapas GIS"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:329
    -msgid "Map Name"
    -msgstr "Nombre del mapa"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:329
    -msgid "Descriptive name for the map"
    -msgstr "nombre descriptivo para el mapa"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:348
    -msgid "Add Map connection"
    -msgstr "Añadir conexión a mapa"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:348
    -msgid ""
    -"At least one map connection must be defined, it will be possible to change "
    -"between the connections in the map"
    -msgstr ""
    -"Como mínimo una conexion de mapa debe definirse. Será posible intercambiar "
    -"las conexiones del mapa."
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:366
    -msgid "Group that owns the map"
    -msgstr "Grupo dueño del mapa"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:369
    -msgid "Default zoom"
    -msgstr "Zoom por defecto"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:369
    -msgid "Default zoom level when opening the map"
    -msgstr "Nivel de zoom por defecto al abrir el mapa"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:372
    -msgid "Center Latitude"
    -msgstr "Latitud central"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:375
    -msgid "Center Longitude"
    -msgstr "Longitud central"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:378
    -msgid "Center Altitude"
    -msgstr "Altitud central"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:381
    -msgid "Default Latitude"
    -msgstr "Latitud por defecto"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:384
    -msgid "Default Longitude"
    -msgstr "Longitud por defecto"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:387
    -msgid "Default Altitude"
    -msgstr "Altitud por defecto"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:392
    -msgid "Layers"
    -msgstr "Capas"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:392
    -msgid ""
    -"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"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:398
    -msgid "List of layers"
    -msgstr "Lista de capas"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:398
    -msgid "It is possible to edit, delete and reorder the layers."
    -msgstr "Es posible editar, borrar y reordenar las capas"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:399
    -msgid "New layer"
    -msgstr "Nueva capa"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:407
    -msgid "Layer name"
    -msgstr "Nombre capa"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:409
    -msgid "Visible"
    -msgstr "Visible"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:413
    -msgid "Show agents from group"
    -msgstr "Mostrar agentes del grupo"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:425
    -msgid "Add agent"
    -msgstr "Añadir agente"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:441
    -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:448
    -#: ../../godmode/gis_maps/configure_gis_map.php:624
    -#: ../../godmode/gis_maps/configure_gis_map.php:635
    -msgid "Save Layer"
    -msgstr "Guardar capa"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:464
    -#: ../../godmode/gis_maps/configure_gis_map.php:471
    -msgid "Save map"
    -msgstr "Guardar mapa"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:467
    -msgid "Update map"
    -msgstr "Actualizar mapa"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:668
    -#: ../../godmode/gis_maps/configure_gis_map.php:724
    -msgid "Update Layer"
    -msgstr "Actualizar capa"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:790
    -msgid "Do you want to use the default data from the connection?"
    -msgstr "¿Quiere usar los datos que vienen por defecto de la conexión ?"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:825
    -msgid "The connection"
    -msgstr "La conexión"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:825
    -msgid "just added previously."
    -msgstr "Ya añadido previamente"
    -
    -#: ../../godmode/groups/configure_group.php:70
    -#: ../../godmode/groups/configure_modu_group.php:51
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1256
    -msgid "There was a problem loading group"
    -msgstr "Hubo un error al cargar la configuración del grupo"
    -
    -#: ../../godmode/groups/configure_group.php:92
    -msgid "Update group"
    -msgstr "Actualizar grupo"
    -
    -#: ../../godmode/groups/configure_group.php:94
    -#: ../../godmode/groups/group_list.php:396
    -msgid "Create group"
    -msgstr "Crear grupo"
    -
    -#: ../../godmode/groups/configure_group.php:106
    -msgid "Update Group"
    -msgstr "Actualizar Grupo"
    -
    -#: ../../godmode/groups/configure_group.php:108
    -msgid "Create Group"
    -msgstr "Crear Grupo"
    -
    -#: ../../godmode/groups/configure_group.php:119
    -#: ../../godmode/groups/group_list.php:338
    -#: ../../godmode/modules/module_list.php:57
    -#: ../../godmode/reporting/visual_console_builder.elements.php:183
    -#: ../../godmode/setup/os.builder.php:39
    -#: ../../include/functions_visual_map.php:2767
    -#: ../../include/functions_visual_map_editor.php:60
    -#: ../../include/functions_visual_map_editor.php:655
    -#: ../../enterprise/dashboard/widgets/module_icon.php:84
    -#: ../../enterprise/dashboard/widgets/module_status.php:84
    -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:76
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1283
    -msgid "Icon"
    -msgstr "Icono"
    -
    -#: ../../godmode/groups/configure_group.php:144
    -msgid "You have not access to the parent."
    -msgstr "No tiene acceso al padre"
    -
    -#: ../../godmode/groups/configure_group.php:166
    -msgid "Group Password"
    -msgstr "Contraseña del grupo"
    -
    -#: ../../godmode/groups/configure_group.php:174
    -msgid "Propagate ACL"
    -msgstr "Propagar ACL"
    -
    -#: ../../godmode/groups/configure_group.php:174
    -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:186
    -msgid "Contact"
    -msgstr "Contacto"
    -
    -#: ../../godmode/groups/configure_group.php:186
    -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:190
    -msgid "Information accessible through the _group_other_ macro"
    -msgstr "Información accesible a través de  _group_other_ macro"
    -
    -#: ../../godmode/groups/configure_group.php:196
    -#: ../../godmode/users/configure_user.php:547
    -#: ../../operation/users/user_edit.php:323
    -msgid "Skin"
    -msgstr "Skin"
    -
    -#: ../../godmode/groups/configure_group.php:238
    -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. "
    -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. "
    -
    -#: ../../godmode/groups/configure_modu_group.php:32
    -msgid "Module group management"
    -msgstr "gestión del grupo de módulos"
    -
    -#: ../../godmode/groups/group_list.php:158
    -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:164
    -msgid "Groups defined in Pandora"
    -msgstr "Grupos definidos en Pandora FMS"
    -
    -#: ../../godmode/groups/group_list.php:210
    -#: ../../godmode/groups/modu_group_list.php:75
    -msgid "Group successfully created"
    -msgstr "Grupo creado correctamente"
    -
    -#: ../../godmode/groups/group_list.php:213
    -#: ../../godmode/groups/modu_group_list.php:78
    -msgid "There was a problem creating group"
    -msgstr "Ha habido un problema al crear el grupo"
    -
    -#: ../../godmode/groups/group_list.php:217
    -msgid "Each group must have a different name"
    -msgstr "Cada grupo debe tener un nombre diferente"
    -
    -#: ../../godmode/groups/group_list.php:222
    -msgid "Group must have a name"
    -msgstr "El grupo debe tener un nombre"
    -
    -#: ../../godmode/groups/group_list.php:266
    -#: ../../godmode/groups/modu_group_list.php:106
    -msgid "Group successfully updated"
    -msgstr "Grupo actualizado correctamente"
    -
    -#: ../../godmode/groups/group_list.php:269
    -#: ../../godmode/groups/modu_group_list.php:109
    -msgid "There was a problem modifying group"
    -msgstr "Ha habido un problema al modificar el grupo"
    -
    -#: ../../godmode/groups/group_list.php:294
    -#, 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:298
    -#: ../../godmode/groups/modu_group_list.php:138
    -msgid "Group successfully deleted"
    -msgstr "Grupo eliminado correctamente"
    -
    -#: ../../godmode/groups/group_list.php:301
    -#: ../../godmode/groups/modu_group_list.php:136
    -msgid "There was a problem deleting group"
    -msgstr "Ha habido un problema al borrar el grupo"
    -
    -#: ../../godmode/groups/group_list.php:390
    -msgid "There are no defined groups"
    -msgstr "No hay grupos definidos"
    -
    -#: ../../godmode/groups/modu_group_list.php:55
    -msgid "Module groups defined in Pandora"
    -msgstr "Grupos de módulos definidos en Pandora"
    -
    -#: ../../godmode/groups/modu_group_list.php:82
    -#: ../../godmode/groups/modu_group_list.php:113
    -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:86
    -#: ../../godmode/groups/modu_group_list.php:117
    -msgid "Module group must have a name"
    -msgstr "El grupo de módulos debe tener un nombre"
    -
    -#: ../../godmode/groups/modu_group_list.php:208
    -msgid "There are no defined module groups"
    -msgstr "No hay grupos de módulos definidos"
    -
    -#: ../../godmode/groups/modu_group_list.php:213
    -msgid "Create module group"
    -msgstr "crear grupo de módulos"
    -
    -#: ../../godmode/massive/massive_add_action_alerts.php:59
    -#: ../../godmode/massive/massive_add_alerts.php:73
    -#: ../../godmode/massive/massive_add_tags.php:33
    -#: ../../godmode/massive/massive_delete_agents.php:33
    -#: ../../godmode/massive/massive_delete_alerts.php:83
    -#: ../../godmode/massive/massive_delete_modules.php:61
    -#: ../../godmode/massive/massive_delete_tags.php:97
    -#: ../../godmode/massive/massive_edit_agents.php:92
    -#: ../../include/functions_visual_map.php:1667
    -#: ../../include/functions_visual_map.php:1900
    -#: ../../enterprise/godmode/policies/policy_agents.php:520
    -msgid "No agents selected"
    -msgstr "No se selección ningún agente"
    -
    -#: ../../godmode/massive/massive_add_action_alerts.php:96
    -msgid "No alerts selected"
    -msgstr "No se seleccionó ninguna alerta"
    -
    -#: ../../godmode/massive/massive_add_action_alerts.php:120
    -msgid "No actions selected"
    -msgstr "No hay acciones seleccionadas"
    -
    -#: ../../godmode/massive/massive_add_action_alerts.php:154
    -#: ../../godmode/massive/massive_add_alerts.php:154
    -#: ../../godmode/massive/massive_copy_modules.php:74
    -#: ../../godmode/massive/massive_copy_modules.php:185
    -#: ../../godmode/massive/massive_delete_action_alerts.php:154
    -#: ../../godmode/massive/massive_delete_agents.php:108
    -#: ../../godmode/massive/massive_delete_alerts.php:215
    -#: ../../godmode/massive/massive_delete_modules.php:441
    -#: ../../godmode/massive/massive_edit_agents.php:210
    -#: ../../godmode/massive/massive_edit_modules.php:285
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:138
    -#: ../../godmode/massive/massive_standby_alerts.php:139
    -#: ../../enterprise/godmode/policies/policy_agents.php:243
    -#: ../../enterprise/godmode/policies/policy_agents.php:259
    -#: ../../enterprise/godmode/policies/policy_agents.php:363
    -msgid "Group recursion"
    -msgstr "Recursión de grupos"
    -
    -#: ../../godmode/massive/massive_add_action_alerts.php:157
    -#: ../../godmode/massive/massive_delete_action_alerts.php:158
    -msgid "Agents with templates"
    -msgstr "Agentes con plantillas"
    -
    -#: ../../godmode/massive/massive_add_action_alerts.php:168
    -#: ../../godmode/massive/massive_add_alerts.php:167
    -#: ../../godmode/massive/massive_delete_action_alerts.php:169
    -#: ../../godmode/massive/massive_delete_alerts.php:227
    -#: ../../godmode/massive/massive_delete_modules.php:499
    -#: ../../godmode/massive/massive_edit_modules.php:346
    -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:225
    -msgid "When select agents"
    -msgstr "Al seleccionar agentes"
    -
    -#: ../../godmode/massive/massive_add_action_alerts.php:172
    -#: ../../godmode/massive/massive_delete_action_alerts.php:173
    -#: ../../godmode/massive/massive_delete_modules.php:501
    -#: ../../godmode/massive/massive_edit_modules.php:350
    -msgid "Show unknown and not init modules"
    -msgstr "Mostrar módulos desconocidos y no inicializados"
    -
    -#: ../../godmode/massive/massive_add_action_alerts.php:228
    -#: ../../godmode/massive/massive_add_alerts.php:213
    -#: ../../godmode/massive/massive_copy_modules.php:424
    -#: ../../godmode/massive/massive_delete_agents.php:163
    -#: ../../godmode/massive/massive_delete_alerts.php:266
    -#: ../../godmode/massive/massive_delete_modules.php:727
    -#: ../../godmode/massive/massive_edit_agents.php:553
    -#: ../../godmode/massive/massive_edit_modules.php:659
    -msgid ""
    -"Unsucessful sending the data, please contact with your administrator or make "
    -"with less elements."
    -msgstr ""
    -"El envio de datos no ha tenido éxito, por favor contacte con su "
    -"administrador o hágalo con menos elementos"
    -
    -#: ../../godmode/massive/massive_add_alerts.php:78
    -#: ../../godmode/massive/massive_delete_alerts.php:78
    -msgid "No alert selected"
    -msgstr "No se seleccionó ninguna alerta"
    -
    -#: ../../godmode/massive/massive_add_profiles.php:72
    -msgid "Profiles added successfully"
    -msgstr "Perfiles agregados con éxito"
    -
    -#: ../../godmode/massive/massive_add_profiles.php:73
    -msgid "Profiles cannot be added"
    -msgstr "Los perfiles no se han podido agregar"
    -
    -#: ../../godmode/massive/massive_add_profiles.php:88
    -#: ../../godmode/massive/massive_delete_profiles.php:102
    -#: ../../godmode/users/configure_profile.php:242
    -#: ../../godmode/users/configure_user.php:715
    -#: ../../operation/users/user_edit.php:505
    -#: ../../enterprise/godmode/setup/setup_acl.php:223
    -msgid "Profile name"
    -msgstr "Nombre del perfil"
    -
    -#: ../../godmode/massive/massive_add_profiles.php:90
    -#: ../../godmode/massive/massive_delete_profiles.php:104
    -#: ../../include/functions_reporting.php:7312
    -#: ../../operation/search_results.php:84
    -#: ../../enterprise/meta/advanced/synchronizing.user.php:520
    -msgid "Users"
    -msgstr "Usuarios"
    -
    -#: ../../godmode/massive/massive_add_tags.php:43
    -msgid "No tags selected"
    -msgstr "Ninguna etiqueta seleccionada"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:77
    -#: ../../godmode/massive/massive_copy_modules.php:190
    -#: ../../godmode/massive/massive_delete_agents.php:113
    -#: ../../godmode/massive/massive_delete_modules.php:453
    -#: ../../godmode/massive/massive_delete_modules.php:467
    -#: ../../godmode/massive/massive_edit_agents.php:216
    -#: ../../godmode/massive/massive_edit_modules.php:296
    -#: ../../godmode/massive/massive_edit_modules.php:327
    -#: ../../godmode/netflow/nf_edit_form.php:207 ../../include/functions.php:873
    -#: ../../include/functions.php:1077 ../../include/functions.php:1084
    -#: ../../include/functions.php:1114 ../../include/functions_events.php:1465
    -#: ../../include/functions_graph.php:2188
    -#: ../../include/functions_graph.php:3285
    -#: ../../include/functions_graph.php:3286
    -#: ../../include/functions_graph.php:5250
    -#: ../../include/functions_groups.php:821
    -#: ../../include/functions_groups.php:823
    -#: ../../include/functions_groups.php:825
    -#: ../../include/functions_groups.php:826
    -#: ../../include/functions_groups.php:827
    -#: ../../include/functions_groups.php:835
    -#: ../../include/functions_reporting_html.php:1573
    -#: ../../mobile/operation/agents.php:34 ../../mobile/operation/modules.php:39
    -#: ../../operation/agentes/estado_agente.php:186
    -#: ../../operation/agentes/estado_monitores.php:450
    -#: ../../operation/agentes/group_view.php:171
    -#: ../../operation/agentes/status_monitor.php:299
    -#: ../../operation/agentes/tactical.php:152
    -#: ../../operation/netflow/nf_live_view.php:322 ../../operation/tree.php:131
    -#: ../../operation/tree.php:156 ../../operation/tree.php:303
    -#: ../../enterprise/dashboard/widgets/tree_view.php:53
    -#: ../../enterprise/dashboard/widgets/tree_view.php:66
    -#: ../../enterprise/dashboard/widgets/tree_view.php:227
    -#: ../../enterprise/include/functions_reporting_pdf.php:707
    -#: ../../enterprise/include/functions_services.php:1258
    -#: ../../enterprise/meta/monitoring/group_view.php:152
    -#: ../../enterprise/meta/monitoring/tactical.php:280
    -msgid "Normal"
    -msgstr "Normal"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:78
    -#: ../../godmode/massive/massive_copy_modules.php:191
    -#: ../../godmode/massive/massive_delete_agents.php:114
    -#: ../../godmode/massive/massive_delete_modules.php:454
    -#: ../../godmode/massive/massive_delete_modules.php:468
    -#: ../../godmode/massive/massive_edit_agents.php:217
    -#: ../../godmode/massive/massive_edit_agents.php:407
    -#: ../../godmode/massive/massive_edit_modules.php:297
    -#: ../../godmode/massive/massive_edit_modules.php:328
    -#: ../../godmode/servers/manage_recontask_form.php:193
    -#: ../../godmode/setup/setup_netflow.php:70 ../../include/functions.php:876
    -#: ../../include/functions.php:1079 ../../include/functions.php:1082
    -#: ../../include/functions.php:1117 ../../include/functions_ui.php:234
    -#: ../../include/functions_ui.php:1995 ../../include/functions_events.php:1468
    -#: ../../include/functions_graph.php:2187
    -#: ../../include/functions_graph.php:3293
    -#: ../../include/functions_graph.php:3294
    -#: ../../include/functions_graph.php:5253
    -#: ../../include/functions_groups.php:830
    -#: ../../include/functions_groups.php:832
    -#: ../../include/functions_groups.php:834
    -#: ../../include/functions_groups.php:835
    -#: ../../include/functions_groups.php:836
    -#: ../../include/functions_reporting_html.php:1577
    -#: ../../mobile/operation/agents.php:35 ../../mobile/operation/modules.php:40
    -#: ../../operation/agentes/estado_agente.php:187
    -#: ../../operation/agentes/estado_monitores.php:452
    -#: ../../operation/agentes/group_view.php:172
    -#: ../../operation/agentes/status_monitor.php:300
    -#: ../../operation/agentes/tactical.php:151
    -#: ../../operation/gis_maps/render_view.php:150
    -#: ../../operation/netflow/nf_live_view.php:273 ../../operation/tree.php:132
    -#: ../../operation/tree.php:157 ../../operation/tree.php:288
    -#: ../../enterprise/dashboard/widgets/service_map.php:85
    -#: ../../enterprise/dashboard/widgets/tree_view.php:54
    -#: ../../enterprise/dashboard/widgets/tree_view.php:67
    -#: ../../enterprise/dashboard/widgets/tree_view.php:212
    -#: ../../enterprise/godmode/services/services.service.php:274
    -#: ../../enterprise/include/functions_login.php:23
    -#: ../../enterprise/include/functions_reporting.php:4132
    -#: ../../enterprise/include/functions_reporting_pdf.php:709
    -#: ../../enterprise/include/functions_reporting_pdf.php:2363
    -#: ../../enterprise/include/functions_services.php:1267
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:839
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:925
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1126
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1146
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1342
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1423
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1539
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1559
    -#: ../../enterprise/meta/monitoring/group_view.php:153
    -#: ../../enterprise/meta/monitoring/tactical.php:279
    -#: ../../enterprise/operation/agentes/transactional_map.php:265
    -#: ../../enterprise/operation/services/services.list.php:171
    -#: ../../enterprise/operation/services/services.list.php:340
    -#: ../../enterprise/operation/services/services.list.php:409
    -#: ../../enterprise/operation/services/services.service.php:136
    -#: ../../enterprise/operation/services/services.service.php:188
    -#: ../../enterprise/operation/services/services.service_map.php:127
    -#: ../../enterprise/operation/services/services.table_services.php:140
    -msgid "Warning"
    -msgstr "Advertencia"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:79
    -#: ../../godmode/massive/massive_copy_modules.php:192
    -#: ../../godmode/massive/massive_delete_agents.php:115
    -#: ../../godmode/massive/massive_delete_modules.php:455
    -#: ../../godmode/massive/massive_delete_modules.php:469
    -#: ../../godmode/massive/massive_edit_agents.php:218
    -#: ../../godmode/massive/massive_edit_modules.php:298
    -#: ../../godmode/massive/massive_edit_modules.php:329
    -#: ../../include/functions.php:879 ../../include/functions.php:1081
    -#: ../../include/functions.php:1082 ../../include/functions.php:1084
    -#: ../../include/functions.php:1120 ../../include/functions_ui.php:1995
    -#: ../../include/functions_events.php:1471
    -#: ../../include/functions_graph.php:2186
    -#: ../../include/functions_graph.php:3301
    -#: ../../include/functions_graph.php:3302
    -#: ../../include/functions_graph.php:5256
    -#: ../../include/functions_groups.php:839
    -#: ../../include/functions_groups.php:841
    -#: ../../include/functions_groups.php:843
    -#: ../../include/functions_groups.php:844
    -#: ../../include/functions_groups.php:845
    -#: ../../include/functions_reporting_html.php:680
    -#: ../../include/functions_reporting_html.php:1575
    -#: ../../include/functions_reporting_html.php:2536
    -#: ../../mobile/operation/agents.php:33 ../../mobile/operation/modules.php:41
    -#: ../../operation/agentes/estado_agente.php:188
    -#: ../../operation/agentes/estado_monitores.php:448
    -#: ../../operation/agentes/group_view.php:168
    -#: ../../operation/agentes/group_view.php:173
    -#: ../../operation/agentes/status_monitor.php:301
    -#: ../../operation/agentes/tactical.php:150
    -#: ../../operation/gis_maps/render_view.php:149 ../../operation/tree.php:133
    -#: ../../operation/tree.php:158 ../../operation/tree.php:283
    -#: ../../enterprise/dashboard/widgets/service_map.php:84
    -#: ../../enterprise/dashboard/widgets/tree_view.php:55
    -#: ../../enterprise/dashboard/widgets/tree_view.php:68
    -#: ../../enterprise/dashboard/widgets/tree_view.php:207
    -#: ../../enterprise/godmode/services/services.elements.php:410
    -#: ../../enterprise/godmode/services/services.service.php:270
    -#: ../../enterprise/include/functions_reporting.php:2647
    -#: ../../enterprise/include/functions_reporting.php:3416
    -#: ../../enterprise/include/functions_reporting.php:4137
    -#: ../../enterprise/include/functions_reporting_pdf.php:708
    -#: ../../enterprise/include/functions_reporting_pdf.php:1504
    -#: ../../enterprise/include/functions_reporting_pdf.php:2363
    -#: ../../enterprise/include/functions_services.php:1264
    -#: ../../enterprise/include/functions_services.php:1423
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:848
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:934
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1135
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1152
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1351
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1432
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1548
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1566
    -#: ../../enterprise/meta/monitoring/group_view.php:154
    -#: ../../enterprise/meta/monitoring/tactical.php:278
    -#: ../../enterprise/operation/services/services.list.php:172
    -#: ../../enterprise/operation/services/services.list.php:339
    -#: ../../enterprise/operation/services/services.list.php:404
    -#: ../../enterprise/operation/services/services.service.php:135
    -#: ../../enterprise/operation/services/services.service.php:183
    -#: ../../enterprise/operation/services/services.service_map.php:126
    -#: ../../enterprise/operation/services/services.table_services.php:141
    -msgid "Critical"
    -msgstr "Crítico"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:82
    -#: ../../godmode/massive/massive_copy_modules.php:195
    -#: ../../godmode/massive/massive_delete_agents.php:118
    -#: ../../godmode/massive/massive_delete_modules.php:458
    -#: ../../godmode/massive/massive_delete_modules.php:472
    -#: ../../godmode/massive/massive_edit_agents.php:221
    -#: ../../godmode/massive/massive_edit_modules.php:301
    -#: ../../godmode/massive/massive_edit_modules.php:332
    -#: ../../include/functions_graph.php:2192
    -#: ../../include/functions_groups.php:812
    -#: ../../include/functions_groups.php:814
    -#: ../../include/functions_groups.php:816
    -#: ../../include/functions_groups.php:817
    -#: ../../include/functions_groups.php:818
    -#: ../../include/functions_reporting_html.php:1581
    -#: ../../mobile/operation/modules.php:44
    -#: ../../operation/agentes/estado_agente.php:191
    -#: ../../operation/agentes/group_view.php:167
    -#: ../../operation/agentes/status_monitor.php:304
    -#: ../../operation/agentes/tactical.php:154 ../../operation/tree.php:135
    -#: ../../operation/tree.php:160 ../../operation/tree.php:298
    -#: ../../enterprise/dashboard/widgets/tree_view.php:57
    -#: ../../enterprise/dashboard/widgets/tree_view.php:70
    -#: ../../enterprise/dashboard/widgets/tree_view.php:222
    -#: ../../enterprise/include/functions_reporting_pdf.php:711
    -#: ../../enterprise/meta/monitoring/group_view.php:147
    -#: ../../enterprise/meta/monitoring/group_view.php:151
    -#: ../../enterprise/meta/monitoring/tactical.php:282
    -#: ../../enterprise/operation/agentes/transactional_map.php:275
    -msgid "Not init"
    -msgstr "No inicializados"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:136
    -#: ../../enterprise/godmode/policies/policy_modules.php:1315
    -msgid "Copy modules"
    -msgstr "Copiar módulos"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:141
    -msgid "Copy alerts"
    -msgstr "Copiar alertas"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:150
    -msgid "No modules for this agent"
    -msgstr "No existen módulos para este agente"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:159
    -msgid "No alerts for this agent"
    -msgstr "Ninguna alerta para este agente"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:168
    -#: ../../enterprise/meta/advanced/policymanager.sync.php:304
    -#: ../../enterprise/meta/advanced/synchronizing.alert.php:344
    -#: ../../enterprise/meta/advanced/synchronizing.component.php:320
    -#: ../../enterprise/meta/advanced/synchronizing.group.php:157
    -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:85
    -#: ../../enterprise/meta/advanced/synchronizing.os.php:85
    -#: ../../enterprise/meta/advanced/synchronizing.tag.php:101
    -msgid "Targets"
    -msgstr "Destinos"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:217
    -msgid "To agent(s)"
    -msgstr "A los agentes"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:434
     #: ../../include/functions_agents.php:535
    +#: ../../godmode/massive/massive_copy_modules.php:434
     msgid "No source agent to copy"
     msgstr "No hay agente de origen del que copiar"
     
    -#: ../../godmode/massive/massive_copy_modules.php:442
    -msgid "No operation selected"
    -msgstr "No se seleccionó ninguna operación"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:452
     #: ../../include/functions_agents.php:540
    +#: ../../godmode/massive/massive_copy_modules.php:452
     msgid "No destiny agent(s) to copy"
     msgstr "No hay agentes destino a los que copiar"
     
    -#: ../../godmode/massive/massive_delete_action_alerts.php:56
    -msgid "Could not be deleted. No agents selected"
    -msgstr "No se puede borrar. Ningún agente seleccionado"
    +#: ../../include/functions_agents.php:565
    +#: ../../godmode/massive/massive_copy_modules.php:447
    +#: ../../godmode/db/db_refine.php:47
    +msgid "No modules have been selected"
    +msgstr "No se ha seleccionado ningún módulo"
     
    -#: ../../godmode/massive/massive_delete_action_alerts.php:81
    -msgid "Could not be deleted. No alerts selected"
    -msgstr "No se puede borrar. No hay alertas seleccionadas"
    -
    -#: ../../godmode/massive/massive_delete_action_alerts.php:124
    -msgid "Could not be deleted. No action selected"
    -msgstr "No se puede eliminar. No hay acciones seleccionadas"
    -
    -#: ../../godmode/massive/massive_delete_agents.php:57
    -#, php-format
    +#: ../../include/functions_agents.php:672
     msgid ""
    -"There was an error deleting the agent, the operation has been cancelled "
    -"Could not delete agent %s"
    +"There was an error copying the agent configuration, the copy has been "
    +"cancelled"
     msgstr ""
    -"Se produjo un error al eliminar el agente. La operación ha sido cancelada. "
    -"No se pudo eliminar el agente %s"
    +"Hubo un error al copiar la configuración del agente, se canceló la copia"
     
    -#: ../../godmode/massive/massive_delete_agents.php:63
    -#, php-format
    -msgid "Successfully deleted (%s)"
    -msgstr "Borrado correctamente (%s)"
    +#: ../../include/functions_agents.php:684
    +#: ../../godmode/alerts/alert_actions.php:140
    +#: ../../godmode/reporting/map_builder.php:183
    +#: ../../godmode/reporting/map_builder.php:192
    +msgid "Successfully copied"
    +msgstr "Copia realizada correctamente"
     
    -#: ../../godmode/massive/massive_delete_agents.php:123
    -#: ../../godmode/massive/massive_edit_agents.php:225
    -msgid "Show agents"
    -msgstr "Mostrar agentes"
    +#: ../../include/functions_agents.php:2185
    +#: ../../include/functions_agents.php:2210
    +#: ../../include/functions_agents.php:2235
    +msgid "No Monitors"
    +msgstr "No hay monitores"
     
    -#: ../../godmode/massive/massive_delete_modules.php:56
    -msgid "No module selected"
    -msgstr "No se seleccionó ningún módulo"
    +#: ../../include/functions_agents.php:2189
    +#: ../../include/functions_agents.php:2214
    +#: ../../include/functions_agents.php:2239
    +#: ../../include/functions_reporting.php:7947
    +msgid "At least one module in CRITICAL status"
    +msgstr "Al menos un módulo está en estado CRÍTICO"
     
    -#: ../../godmode/massive/massive_delete_modules.php:230
    -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"
    +#: ../../include/functions_agents.php:2193
    +#: ../../include/functions_agents.php:2218
    +#: ../../include/functions_agents.php:2243
    +#: ../../include/functions_reporting.php:7951
    +msgid "At least one module in WARNING status"
    +msgstr "Al menos un módulo está en estado ADVERTENCIA"
     
    -#: ../../godmode/massive/massive_delete_modules.php:396
    -#: ../../godmode/massive/massive_edit_modules.php:239
    -msgid "Selection mode"
    -msgstr "Modo de seleccion"
    +#: ../../include/functions_agents.php:2197
    +#: ../../include/functions_agents.php:2222
    +#: ../../include/functions_agents.php:2247
    +#: ../../include/functions_reporting.php:7955
    +msgid "At least one module is in UKNOWN status"
    +msgstr "Al menos un módulo está en estado DESCONOCIDO"
     
    -#: ../../godmode/massive/massive_delete_modules.php:397
    -#: ../../godmode/massive/massive_edit_modules.php:240
    -msgid "Select modules first "
    -msgstr "Seleccionar primero los módulos "
    +#: ../../include/functions_agents.php:2201
    +#: ../../include/functions_agents.php:2226
    +#: ../../include/functions_agents.php:2251
    +#: ../../include/functions_reporting.php:7959
    +msgid "All Monitors OK"
    +msgstr "Todos los monitores BIEN"
     
    -#: ../../godmode/massive/massive_delete_modules.php:399
    -#: ../../godmode/massive/massive_edit_modules.php:242
    -msgid "Select agents first "
    -msgstr "Seleccionar primero los agentes "
    +#: ../../include/ajax/update_manager.ajax.php:74
    +msgid "There was an error extracting the file '"
    +msgstr "Hay un error al extraer el fichero '"
     
    -#: ../../godmode/massive/massive_delete_modules.php:405
    -#: ../../godmode/massive/massive_edit_modules.php:249
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1387
    -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:144
    -msgid "Module type"
    -msgstr "Tipo módulo"
    +#: ../../include/ajax/update_manager.ajax.php:90
    +msgid "The package was not extracted."
    +msgstr "El paquete no se pudo extraer"
     
    -#: ../../godmode/massive/massive_delete_modules.php:414
    -#: ../../godmode/massive/massive_edit_modules.php:258
    -msgid "Select all modules of this type"
    -msgstr "Seleccionar todos los módulos de este tipo"
    +#: ../../include/ajax/update_manager.ajax.php:96
    +msgid "Invalid extension. The package must have the extension .oum."
    +msgstr "Extensión inválida. El paquete debe tener la extensión .oum"
     
    -#: ../../godmode/massive/massive_delete_modules.php:435
    -#: ../../godmode/massive/massive_edit_modules.php:279
    -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:202
    -msgid "Agent group"
    -msgstr "Grupo de agentes"
    +#: ../../include/ajax/update_manager.ajax.php:103
    +msgid "The file was not uploaded succesfully."
    +msgstr "El fichero no se pudo subir correctamente."
     
    -#: ../../godmode/massive/massive_delete_modules.php:443
    -#: ../../godmode/massive/massive_edit_modules.php:287
    -msgid "Select all modules of this group"
    -msgstr "Seleccionar todos los modulos de este grupo"
    -
    -#: ../../godmode/massive/massive_delete_modules.php:464
    -#: ../../godmode/massive/massive_edit_modules.php:293
    -msgid "Module Status"
    -msgstr "Estado de módulo"
    -
    -#: ../../godmode/massive/massive_delete_modules.php:483
    -#: ../../godmode/massive/massive_edit_modules.php:311
    -msgid "When select modules"
    -msgstr "Cuando se seleccionan módulos"
    -
    -#: ../../godmode/massive/massive_delete_modules.php:486
    -#: ../../godmode/massive/massive_edit_modules.php:314
    -msgid "Show common agents"
    -msgstr "Mostrar agentes comunes"
    -
    -#: ../../godmode/massive/massive_delete_modules.php:487
    -#: ../../godmode/massive/massive_edit_modules.php:315
    -msgid "Show all agents"
    -msgstr "Mostrar todos los agentes"
    -
    -#: ../../godmode/massive/massive_delete_profiles.php:61
    -msgid "Not deleted. You must select an existing user"
    -msgstr "No borrado. Debe seleccionar un usuario existente"
    -
    -#: ../../godmode/massive/massive_delete_profiles.php:87
    -msgid "Profiles deleted successfully"
    -msgstr "Perfiles borrados satisfactoriamente"
    -
    -#: ../../godmode/massive/massive_delete_profiles.php:88
    -msgid "Profiles cannot be deleted"
    -msgstr "No se pudieron borrar los perfiles"
    -
    -#: ../../godmode/massive/massive_delete_tags.php:107
    -msgid "No tag selected"
    -msgstr "Ninguna etiqueta seleccionada"
    -
    -#: ../../godmode/massive/massive_edit_agents.php:97
    -msgid "No values changed"
    -msgstr "No se han cambiado valores"
    -
    -#: ../../godmode/massive/massive_edit_agents.php:126
    -msgid "Configuration files deleted successfully"
    -msgstr "Los archivos de configuracion se borraron satisfactoriamente"
    -
    -#: ../../godmode/massive/massive_edit_agents.php:127
    -msgid "Configuration files cannot be deleted"
    -msgstr "Los archivos de configuración no se pudieron borrar"
    -
    -#: ../../godmode/massive/massive_edit_agents.php:185
    -msgid "Agents updated successfully"
    -msgstr "Los agentes se actualizaron correctamente"
    -
    -#: ../../godmode/massive/massive_edit_agents.php:186
    -msgid "Agents cannot be updated"
    -msgstr "Los agentes no se pudieron actualizar"
    -
    -#: ../../godmode/massive/massive_edit_agents.php:294
    -#: ../../godmode/massive/massive_edit_agents.php:299
    -#: ../../godmode/massive/massive_edit_agents.php:303
    -#: ../../godmode/massive/massive_edit_agents.php:307
    -#: ../../godmode/massive/massive_edit_agents.php:318
    -#: ../../godmode/massive/massive_edit_agents.php:357
    -#: ../../godmode/massive/massive_edit_agents.php:363
    -#: ../../godmode/massive/massive_edit_agents.php:402
    -#: ../../godmode/massive/massive_edit_agents.php:411
    -#: ../../godmode/massive/massive_edit_agents.php:418
    -#: ../../godmode/massive/massive_edit_modules.php:406
    -#: ../../godmode/massive/massive_edit_modules.php:451
    -#: ../../godmode/massive/massive_edit_modules.php:466
    -#: ../../godmode/massive/massive_edit_modules.php:470
    -#: ../../godmode/massive/massive_edit_modules.php:490
    -#: ../../godmode/massive/massive_edit_modules.php:496
    -#: ../../godmode/massive/massive_edit_modules.php:504
    -#: ../../godmode/massive/massive_edit_modules.php:508
    -#: ../../godmode/massive/massive_edit_modules.php:511
    -#: ../../godmode/massive/massive_edit_modules.php:524
    -#: ../../godmode/massive/massive_edit_modules.php:543
    -#: ../../godmode/massive/massive_edit_modules.php:551
    -#: ../../godmode/massive/massive_edit_modules.php:564
    -#: ../../godmode/massive/massive_edit_modules.php:572
    -#: ../../godmode/massive/massive_edit_modules.php:578
    -#: ../../godmode/massive/massive_edit_modules.php:590
    -#: ../../godmode/massive/massive_edit_modules.php:609
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:27
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:259
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:278
    -msgid "No change"
    -msgstr "Sin cambios"
    -
    -#: ../../godmode/massive/massive_edit_agents.php:371
    -msgid "Delete available remote configurations"
    -msgstr "Borrar las configuraciones remotas disponibles"
    -
    -#: ../../godmode/massive/massive_edit_agents.php:403
    -msgid "Without status"
    -msgstr "Sin estatus"
    -
    -#: ../../godmode/massive/massive_edit_agents.php:405
    -#: ../../godmode/update_manager/update_manager.offline.php:66
    -#: ../../include/functions_config.php:564
    -#: ../../include/functions_config.php:1652
    -#: ../../include/functions_update_manager.php:366
    -#: ../../operation/gis_maps/render_view.php:151
    -#: ../../enterprise/dashboard/widgets/service_map.php:86
    -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:355
    -#: ../../enterprise/include/functions_update_manager.php:198
    -#: ../../enterprise/load_enterprise.php:1
    -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:37
    -#: ../../enterprise/operation/agentes/transactional_map.php:255
    -#: ../../enterprise/operation/services/services.list.php:170
    -#: ../../enterprise/operation/services/services.list.php:399
    -#: ../../enterprise/operation/services/services.service.php:177
    -#: ../../enterprise/operation/services/services.service_map.php:128
    -#: ../../enterprise/operation/services/services.table_services.php:139
    -msgid "Ok"
    -msgstr "Bien"
    -
    -#: ../../godmode/massive/massive_edit_agents.php:406
    -#: ../../enterprise/dashboard/widgets/maps_status.php:77
    -msgid "Bad"
    -msgstr "Mal"
    -
    -#: ../../godmode/massive/massive_edit_modules.php:324
    -msgid "Agent Status"
    -msgstr "Estado de agente"
    -
    -#: ../../godmode/massive/massive_edit_modules.php:357
    -#: ../../godmode/modules/manage_network_components_form_common.php:107
    -#: ../../enterprise/godmode/modules/configure_local_component.php:226
    -msgid "Dynamic Interval"
    -msgstr "Intervalo dinámico"
    -
    -#: ../../godmode/massive/massive_edit_modules.php:359
    -msgid "Dynamic Min."
    -msgstr "Mínimo dinámico"
    -
    -#: ../../godmode/massive/massive_edit_modules.php:362
    -#: ../../godmode/modules/manage_network_components_form_common.php:113
    -#: ../../enterprise/godmode/modules/configure_local_component.php:232
    -msgid "Dynamic Max."
    -msgstr "Dinámico máximo."
    -
    -#: ../../godmode/massive/massive_edit_modules.php:365
    -#: ../../godmode/modules/manage_network_components_form_common.php:115
    -#: ../../enterprise/godmode/modules/configure_local_component.php:234
    -msgid "Dynamic Two Tailed: "
    -msgstr "El segundo rango dínámico falla: "
    -
    -#: ../../godmode/massive/massive_edit_modules.php:479
    -msgid "SMNP community"
    -msgstr "Comunidad SMNP"
    -
    -#: ../../godmode/massive/massive_edit_modules.php:577
    -msgid "Policy linking status"
    -msgstr "Estado de enlaces de la política"
    -
    -#: ../../godmode/massive/massive_edit_modules.php:577
    -msgid "This field only has sense in modules adopted by a policy."
    +#: ../../include/ajax/update_manager.ajax.php:172
    +#: ../../include/ajax/update_manager.ajax.php:176
    +#: ../../include/ajax/update_manager.ajax.php:203
    +#: ../../include/functions_update_manager.php:128
    +#: ../../include/functions_update_manager.php:132
    +#: ../../include/functions_update_manager.php:158
    +msgid "Some of your files might not be recovered."
     msgstr ""
    -"Este campo sólo tiene sentido en los módulos aprobados por una política."
    -
    -#: ../../godmode/massive/massive_edit_modules.php:578
    -msgid "Linked"
    -msgstr "Enlazado"
    -
    -#: ../../godmode/massive/massive_edit_modules.php:608
    -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"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:151
    -msgid "Error retrieving the plugin macros"
    -msgstr "Error al recuperar las macros de plugin"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:158
    -msgid "Error retrieving the modified macros"
    -msgstr "Error al recuperar las macros modificadas"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:172
    -msgid "Error retrieving the module plugin macros"
    -msgstr "Error al recuperar las macros del módulo de plugin"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:190
    -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:224
    -msgid "Error building the new macros"
    -msgstr "Error al construir las nuevas macros"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:253
    -#, php-format
    -msgid "%d modules updated"
    -msgstr "%d módulos actualizados"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:272
    -msgid "There are not registered plugins"
    -msgstr "No hay plugins registrados"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:421
    -msgid "Invalid plugin data"
    -msgstr "Dato de plugin inválido"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:528
    -msgid "Clear"
    -msgstr "Vaciar"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:556
    -msgid "Invalid macros array"
    -msgstr "Array de macros inválida"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:581
    -msgid "Multiple values"
    -msgstr "Valores múltiples"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:613
    -#: ../../godmode/massive/massive_edit_plugins.php:750
    -#: ../../godmode/massive/massive_edit_plugins.php:766
    -msgid "Invalid agents array"
    -msgstr "Array de agentes inválida"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:629
    -msgid "Invalid agent element"
    -msgstr "Elemento de agente inválido"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:640
    -msgid "Invalid modules array"
    -msgstr "Array de módulos inválido"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:668
    -msgid "Invalid module element"
    -msgstr "Elemento de módulo inválido"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:876
    -msgid "There are no modules using this plugin"
    -msgstr "No hay módulos usando este plugin"
    -
    -#: ../../godmode/massive/massive_edit_plugins.php:955
    -msgid "There was a problem loading the module plugin macros data"
    -msgstr ""
    -"Hubo un problema al cargar los datos de las macros del módulo de plugin"
    -
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:154
    -msgid "Enabled alerts"
    -msgstr "Alertas activadas"
    -
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:154
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:171
    -#: ../../godmode/massive/massive_standby_alerts.php:154
    -#: ../../godmode/massive/massive_standby_alerts.php:171
    -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:93
    -msgid "Format"
    -msgstr "Formato"
    -
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:165
    -msgid "Disable selected alerts"
    -msgstr "Desactivar alertas seleccionadas"
    -
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:169
    -msgid "Enable selected alerts"
    -msgstr "Activar alertas seleccionadas"
    -
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:171
    -msgid "Disabled alerts"
    -msgstr "Deshabilitar alertas"
    -
    -#: ../../godmode/massive/massive_operations.php:36
    -msgid "Bulk alert add"
    -msgstr "Añadir alerta masiva"
    -
    -#: ../../godmode/massive/massive_operations.php:37
    -msgid "Bulk alert delete"
    -msgstr "Eliminar alerta masiva"
    -
    -#: ../../godmode/massive/massive_operations.php:38
    -msgid "Bulk alert actions add"
    -msgstr "Añadir acciones de alerta masiva"
    -
    -#: ../../godmode/massive/massive_operations.php:39
    -msgid "Bulk alert actions delete"
    -msgstr "Eliminar acciones de alerta masiva"
    -
    -#: ../../godmode/massive/massive_operations.php:40
    -msgid "Bulk alert enable/disable"
    -msgstr "Habilitar/Deshabilitar alerta masiva"
    -
    -#: ../../godmode/massive/massive_operations.php:41
    -msgid "Bulk alert setting standby"
    -msgstr "Configuración de espera de alertas masiva"
    -
    -#: ../../godmode/massive/massive_operations.php:44
    -msgid "Bulk agent edit"
    -msgstr "Edición agentes masiva"
    -
    -#: ../../godmode/massive/massive_operations.php:45
    -msgid "Bulk agent delete"
    -msgstr "Eliminar agentes masivamente"
    -
    -#: ../../godmode/massive/massive_operations.php:49
    -msgid "Bulk profile add"
    -msgstr "Añadir perfiles masivamente"
    -
    -#: ../../godmode/massive/massive_operations.php:50
    -msgid "Bulk profile delete"
    -msgstr "Eliminar perfiles masivamente"
    -
    -#: ../../godmode/massive/massive_operations.php:57
    -msgid "Bulk module delete"
    -msgstr "Eliminar módulos masivamente"
    -
    -#: ../../godmode/massive/massive_operations.php:58
    -msgid "Bulk module edit"
    -msgstr "Editar módulos masivamente"
    -
    -#: ../../godmode/massive/massive_operations.php:59
    -msgid "Bulk module copy"
    -msgstr "Copiar módulos masivamente"
    -
    -#: ../../godmode/massive/massive_operations.php:62
    -msgid "Bulk plugin edit"
    -msgstr "Editar plugin masivamente"
    -
    -#: ../../godmode/massive/massive_operations.php:155 ../../godmode/menu.php:122
    -msgid "Alerts operations"
    -msgstr "Operaciones sobre alertas"
    -
    -#: ../../godmode/massive/massive_operations.php:160 ../../godmode/menu.php:120
    -msgid "Users operations"
    -msgstr "Operaciones sobre usuarios"
    -
    -#: ../../godmode/massive/massive_operations.php:165 ../../godmode/menu.php:116
    -msgid "Agents operations"
    -msgstr "Operaciones sobre agentes"
    -
    -#: ../../godmode/massive/massive_operations.php:170 ../../godmode/menu.php:117
    -msgid "Modules operations"
    -msgstr "Operaciones sobre módulos"
    -
    -#: ../../godmode/massive/massive_operations.php:175 ../../godmode/menu.php:118
    -msgid "Plugins operations"
    -msgstr "Operaciones de plugins"
    -
    -#: ../../godmode/massive/massive_operations.php:215
    -#: ../../enterprise/extensions/ipam.php:197
    -msgid "Massive operations"
    -msgstr "Operaciones masivas"
    -
    -#: ../../godmode/massive/massive_operations.php:223
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:202
    -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 necesita una correcta " -"configuración de los parámetros de timeout. Por favor, abra su archivo de " -"configuración PHP (php.ini) por ejemplo: sudo vi " -"/etc/php5/apache2/php.ini;
    Y fije sus parámetros de timeout en un " -"valor correcto:
    max_execution_time = 0 y max_input_time = -" -"1" - -#: ../../godmode/massive/massive_operations.php:239 -msgid "Please wait..." -msgstr "Por favor, espere..." - -#: ../../godmode/massive/massive_operations.php:276 -msgid "The blank fields will not be updated" -msgstr "Los campos en blanco no se actualizarán" - -#: ../../godmode/massive/massive_standby_alerts.php:154 -msgid "Not standby alerts" -msgstr "Alertas sin standby" - -#: ../../godmode/massive/massive_standby_alerts.php:165 -#: ../../godmode/massive/massive_standby_alerts.php:169 -msgid "Set standby selected alerts" -msgstr "Poner en standby las alertas seleccionadas" - -#: ../../godmode/massive/massive_standby_alerts.php:171 -msgid "Standby alerts" -msgstr "Alertas en standby" - -#: ../../godmode/menu.php:29 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:200 -msgid "Manage agents" -msgstr "Gestionar agentes" - -#: ../../godmode/menu.php:39 -#: ../../enterprise/meta/include/functions_components_meta.php:48 -#: ../../enterprise/meta/include/functions_components_meta.php:66 -msgid "Component groups" -msgstr "Grupos de componentes" - -#: ../../godmode/menu.php:42 -msgid "Module categories" -msgstr "Categorias de modulos" - -#: ../../godmode/menu.php:46 -msgid "Module types" -msgstr "Tipos de módulos" - -#: ../../godmode/menu.php:56 ../../godmode/netflow/nf_edit.php:48 -#: ../../godmode/netflow/nf_edit.php:52 -#: ../../godmode/netflow/nf_edit_form.php:66 -#: ../../godmode/netflow/nf_edit_form.php:71 -msgid "Netflow filters" -msgstr "Filtros Netflow" - -#: ../../godmode/menu.php:62 -msgid "Resources" -msgstr "Recursos" - -#: ../../godmode/menu.php:70 -msgid "Manage agents groups" -msgstr "Configuración de grupos de agentes" - -#: ../../godmode/menu.php:76 -#: ../../enterprise/extensions/disabled/check_acls.php:122 -msgid "Module tags" -msgstr "Etiquetas de modulos" - -#: ../../godmode/menu.php:83 ../../godmode/users/profile_list.php:312 -#: ../../enterprise/extensions/disabled/check_acls.php:51 -#: ../../enterprise/extensions/disabled/check_acls.php:131 -msgid "Users management" -msgstr "Gestión de usuarios" - -#: ../../godmode/menu.php:85 ../../godmode/users/configure_profile.php:45 -#: ../../godmode/users/configure_user.php:88 -#: ../../godmode/users/profile_list.php:49 -#: ../../godmode/users/user_list.php:117 -#: ../../enterprise/meta/include/functions_users_meta.php:172 -#: ../../enterprise/meta/include/functions_users_meta.php:193 -msgid "Profile management" -msgstr "Gestionar perfiles" - -#: ../../godmode/menu.php:91 ../../godmode/users/profile_list.php:302 -#: ../../enterprise/godmode/setup/setup_auth.php:427 -#: ../../enterprise/godmode/setup/setup_auth.php:468 -#: ../../enterprise/meta/advanced/synchronizing.user.php:564 -msgid "Profiles" -msgstr "Perfiles" - -#: ../../godmode/menu.php:98 -#: ../../enterprise/meta/include/functions_components_meta.php:56 -#: ../../enterprise/meta/include/functions_components_meta.php:72 -msgid "Network components" -msgstr "Componentes de red" - -#: ../../godmode/menu.php:111 -msgid "Bulk operations" -msgstr "Operaciones masivas" - -#: ../../godmode/menu.php:145 -msgid "List of Alerts" -msgstr "Lista de alertas" - -#: ../../godmode/menu.php:160 -#: ../../enterprise/meta/include/functions_alerts_meta.php:115 -#: ../../enterprise/meta/include/functions_alerts_meta.php:131 -msgid "Commands" -msgstr "Comandos" - -#: ../../godmode/menu.php:170 ../../include/functions_menu.php:523 -msgid "SNMP alerts" -msgstr "Alertas SNMP" - -#: ../../godmode/menu.php:180 -msgid "Event filters" -msgstr "Filtro de eventos" - -#: ../../godmode/menu.php:185 -msgid "Custom events" -msgstr "Eventos personalizados" - -#: ../../godmode/menu.php:192 ../../include/functions_graph.php:750 -#: ../../include/functions_graph.php:3943 -#: ../../include/functions_graph.php:4678 -#: ../../include/functions_reporting_html.php:1621 -#: ../../include/functions_reports.php:620 -#: ../../include/functions_reports.php:622 -#: ../../include/functions_reports.php:624 -#: ../../mobile/include/functions_web.php:24 -#: ../../mobile/operation/events.php:564 ../../mobile/operation/home.php:44 -#: ../../operation/events/events.php:420 ../../operation/events/events.php:429 -#: ../../operation/menu.php:268 -#: ../../enterprise/dashboard/widgets/events_list.php:26 -#: ../../enterprise/extensions/ipam/ipam_massive.php:76 -#: ../../enterprise/extensions/ipam/ipam_network.php:539 -#: ../../enterprise/include/functions_reporting_pdf.php:753 -#: ../../enterprise/meta/general/logon_ok.php:43 -#: ../../enterprise/meta/general/main_header.php:123 -#: ../../enterprise/meta/monitoring/tactical.php:312 -msgid "Events" -msgstr "Eventos" - -#: ../../godmode/menu.php:201 -#: ../../godmode/reporting/visual_console_builder.wizard.php:246 -#: ../../mobile/include/functions_web.php:27 -#: ../../enterprise/meta/advanced/policymanager.apply.php:202 -msgid "Servers" -msgstr "Servidores" - -#: ../../godmode/menu.php:207 -msgid "Manage servers" -msgstr "Gestionar servidores" - -#: ../../godmode/menu.php:212 ../../include/functions_groups.php:92 -#: ../../operation/agentes/pandora_networkmap.editor.php:197 -msgid "Recon task" -msgstr "Tarea de reconocimiento" - -#: ../../godmode/menu.php:215 -#: ../../enterprise/godmode/agentes/plugins_manager.php:143 -#: ../../enterprise/godmode/policies/policy_plugins.php:87 -msgid "Plugins" -msgstr "Plugins" - -#: ../../godmode/menu.php:218 -#: ../../godmode/servers/manage_recontask_form.php:281 -msgid "Recon script" -msgstr "Recon script" - -#: ../../godmode/menu.php:244 -msgid "General Setup" -msgstr "Configuracion general" - -#: ../../godmode/menu.php:253 ../../godmode/setup/setup.php:82 -#: ../../godmode/setup/setup.php:116 -#: ../../enterprise/meta/advanced/metasetup.php:70 -#: ../../enterprise/meta/advanced/metasetup.php:127 -msgid "Authentication" -msgstr "Autentificación" - -#: ../../godmode/menu.php:256 ../../godmode/setup/setup.php:86 -#: ../../godmode/setup/setup.php:120 -#: ../../enterprise/meta/advanced/metasetup.performance.php:73 -msgid "Performance" -msgstr "Rendimiento" - -#: ../../godmode/menu.php:259 ../../godmode/setup/setup.php:90 -#: ../../godmode/setup/setup.php:125 -msgid "Visual styles" -msgstr "Estilos visuales" - -#: ../../godmode/menu.php:264 ../../godmode/setup/setup.php:96 -#: ../../godmode/setup/setup.php:129 ../../include/functions_reports.php:641 -#: ../../include/functions_reports.php:643 -#: ../../include/functions_reports.php:645 -#: ../../include/functions_reports.php:647 -#: ../../include/functions_reports.php:649 -#: ../../enterprise/include/functions_enterprise.php:289 -#: ../../enterprise/meta/general/main_header.php:199 -msgid "Netflow" -msgstr "Netflow" - -#: ../../godmode/menu.php:269 ../../godmode/setup/setup.php:102 -#: ../../godmode/setup/setup.php:133 -#: ../../operation/agentes/ver_agente.php:1089 -msgid "eHorus" -msgstr "eHorus" - -#: ../../godmode/menu.php:273 ../../godmode/setup/gis.php:32 -msgid "Map conections GIS" -msgstr "Conexión de mapa GIS" - -#: ../../godmode/menu.php:277 ../../godmode/setup/os.php:143 -msgid "Edit OS" -msgstr "Editar SO" - -#: ../../godmode/menu.php:279 -#: ../../enterprise/meta/general/main_header.php:288 -msgid "License" -msgstr "Licencia" - -#: ../../godmode/menu.php:288 -msgid "Admin tools" -msgstr "Herramientas administrativas" - -#: ../../godmode/menu.php:296 -msgid "System audit log" -msgstr "Auditoría del sistema" - -#: ../../godmode/menu.php:300 -msgid "Diagnostic info" -msgstr "Información de diagnostico" - -#: ../../godmode/menu.php:302 -msgid "Site news" -msgstr "Noticias del sistema" - -#: ../../godmode/menu.php:304 ../../godmode/setup/file_manager.php:30 -#: ../../enterprise/meta/advanced/metasetup.php:85 -#: ../../enterprise/meta/advanced/metasetup.php:136 -msgid "File manager" -msgstr "Gestor de archivos" - -#: ../../godmode/menu.php:309 -msgid "DB maintenance" -msgstr "Gestión BBDD" - -#: ../../godmode/menu.php:315 -msgid "DB information" -msgstr "Información BBDD" - -#: ../../godmode/menu.php:318 -msgid "Database audit" -msgstr "Auditoría BBDD" - -#: ../../godmode/menu.php:319 -msgid "Database event" -msgstr "Evento de la base de datos" - -#: ../../godmode/menu.php:401 -msgid "Extension manager view" -msgstr "Vista del gestor de extensiones" - -#: ../../godmode/menu.php:405 -msgid "Extension manager" -msgstr "Gerente de extensión" - -#: ../../godmode/menu.php:435 -msgid "Update manager" -msgstr "Update manager" - -#: ../../godmode/menu.php:441 -msgid "Update Manager offline" -msgstr "Update Manager sin conexión" - -#: ../../godmode/menu.php:444 -msgid "Update Manager online" -msgstr "Update Manager con conexión" - -#: ../../godmode/menu.php:446 -msgid "Update Manager options" -msgstr "Opciones de Update Manager" - -#: ../../godmode/menu.php:459 ../../operation/menu.php:373 -#: ../../operation/messages/message_edit.php:46 -#: ../../operation/messages/message_list.php:43 -msgid "Messages" -msgstr "Mensajes" - -#: ../../godmode/modules/manage_nc_groups.php:40 -#: ../../godmode/modules/manage_network_components.php:50 -#: ../../godmode/modules/manage_network_templates.php:39 -#: ../../godmode/modules/manage_network_templates_form.php:32 -#: ../../godmode/modules/module_list.php:28 -#: ../../enterprise/godmode/modules/local_components.php:89 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:27 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:28 -#: ../../enterprise/meta/general/main_header.php:253 -msgid "Module management" -msgstr "Gestión de 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:58 -msgid "Could not be created. Blank name" -msgstr "No pudo ser creado. Nombre en blanco" - -#: ../../godmode/modules/manage_nc_groups.php:154 -#: ../../godmode/modules/manage_network_components.php:399 -#: ../../godmode/modules/manage_network_templates.php:85 -#: ../../enterprise/godmode/modules/local_components.php:355 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:136 -msgid "Successfully multiple deleted" -msgstr "Borrado múltiple satisfactorio" - -#: ../../godmode/modules/manage_nc_groups.php:155 -#: ../../godmode/modules/manage_network_components.php:400 -#: ../../godmode/modules/manage_network_templates.php:86 -#: ../../enterprise/godmode/modules/local_components.php:356 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:137 -msgid "Not deleted. Error deleting multiple data" -msgstr "No borrado. Error al borrar múltiples datos" - -#: ../../godmode/modules/manage_nc_groups.php:238 -msgid "There are no defined component groups" -msgstr "No hay grupos de componentes definidos" - -#: ../../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:57 -msgid "Create Group Component" -msgstr "Crear componentes de grupo" - -#: ../../godmode/modules/manage_network_components.php:51 -msgid "Network component management" -msgstr "Gestión de los componentes de red" - -#: ../../godmode/modules/manage_network_components.php:261 -#: ../../godmode/servers/recon_script.php:320 -#: ../../enterprise/godmode/modules/local_components.php:253 -msgid "Created successfully" -msgstr "Creado correctamente" - -#: ../../godmode/modules/manage_network_components.php:352 -#: ../../godmode/servers/recon_script.php:274 -#: ../../enterprise/godmode/modules/local_components.php:315 -msgid "Updated successfully" -msgstr "Actualizado correctamente" - -#: ../../godmode/modules/manage_network_components.php:516 -#: ../../enterprise/godmode/modules/local_components.php:440 -msgid "Free Search" -msgstr "Búsqueda libre" - -#: ../../godmode/modules/manage_network_components.php:517 -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 concidencias" - -#: ../../godmode/modules/manage_network_components.php:569 -msgid "Max/Min" -msgstr "Máx/Mín" - -#: ../../godmode/modules/manage_network_components.php:595 -msgid "Network module" -msgstr "Módulo de la red" - -#: ../../godmode/modules/manage_network_components.php:599 -msgid "WMI module" -msgstr "Módulo WMI" - -#: ../../godmode/modules/manage_network_components.php:603 -msgid "Plug-in module" -msgstr "Módulo de plugin" - -#: ../../godmode/modules/manage_network_components.php:634 -msgid "There are no defined network components" -msgstr "No hay componentes de red definidos" - -#: ../../godmode/modules/manage_network_components.php:641 -msgid "Create a new network component" -msgstr "Crear un componente de red nuevo" - -#: ../../godmode/modules/manage_network_components.php:642 -msgid "Create a new plugin component" -msgstr "Crear un componente de complemento nuevo" - -#: ../../godmode/modules/manage_network_components.php:643 -msgid "Create a new WMI component" -msgstr "Crear un componente WMI nuevo" - -#: ../../godmode/modules/manage_network_components_form.php:253 -msgid "Update Network Component" -msgstr "Actualización de componente de red" - -#: ../../godmode/modules/manage_network_components_form.php:256 -msgid "Create Network Component" -msgstr "Crear componente de red" - -#: ../../godmode/modules/manage_network_components_form_common.php:111 -#: ../../enterprise/godmode/modules/configure_local_component.php:230 -msgid "Dynamic Min. " -msgstr "Dinámico mínimo. " - -#: ../../godmode/modules/manage_network_components_form_common.php:165 -#: ../../enterprise/godmode/modules/configure_local_component.php:289 -msgid "Any value below this number is discarted" -msgstr "Cualquier valor por debajo de este número está descartado" - -#: ../../godmode/modules/manage_network_components_form_common.php:167 -#: ../../enterprise/godmode/modules/configure_local_component.php:294 -msgid "Any value over this number is discarted" -msgstr "Cualquier valor por encima de este número está descartado" - -#: ../../godmode/modules/manage_network_components_form_network.php:47 -msgid "SNMP Enterprise String" -msgstr "Cadena SNMP Enterprise" - -#: ../../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" - -#: ../../godmode/modules/manage_network_templates.php:61 -msgid "Template successfully deleted" -msgstr "Plantilla borrada correctamente" - -#: ../../godmode/modules/manage_network_templates.php:62 -msgid "Error deleting template" -msgstr "Error al borrar la plantilla" - -#: ../../godmode/modules/manage_network_templates.php:94 -msgid "This template does not exist" -msgstr "Esta plantilla no existe" - -#: ../../godmode/modules/manage_network_templates.php:232 -msgid "There are no defined network profiles" -msgstr "No hay ningún perfil de red definido" - -#: ../../godmode/modules/manage_network_templates_form.php:54 -msgid "Successfully deleted module from profile" -msgstr "Módulo borrado del perfil correctamente" - -#: ../../godmode/modules/manage_network_templates_form.php:55 -msgid "Error deleting module from profile" -msgstr "Error al borrar el módulo del perfil" - -#: ../../godmode/modules/manage_network_templates_form.php:70 -msgid "Successfully added module to profile" -msgstr "Módulo añadido correctamente al perfil" - -#: ../../godmode/modules/manage_network_templates_form.php:71 -msgid "Error adding module to profile" -msgstr "Error al añadir el módulo al perfil" - -#: ../../godmode/modules/manage_network_templates_form.php:96 -msgid "Successfully updated network profile" -msgstr "Perfil de red actualizado correctamente" - -#: ../../godmode/modules/manage_network_templates_form.php:97 -msgid "Error updating network profile" -msgstr "Error al actualizar el perfil de red" - -#: ../../godmode/modules/manage_network_templates_form.php:112 -msgid "Successfully added network profile" -msgstr "Perfil de red añadido correctamente" - -#: ../../godmode/modules/manage_network_templates_form.php:113 -msgid "Error adding network profile" -msgstr "Error al añadir el perfil de red" - -#: ../../godmode/modules/manage_network_templates_form.php:118 -msgid "Cannot create a template without name" -msgstr "No se puede crear una plantilla sin nombre" - -#: ../../godmode/modules/manage_network_templates_form.php:186 -msgid "No modules for this profile" -msgstr "No existen módulos para este perfil" - -#: ../../godmode/modules/manage_network_templates_form.php:226 -#: ../../enterprise/dashboard/widgets/top_n.php:346 -msgid "Add modules" -msgstr "Añadir módulos" - -#: ../../godmode/modules/manage_network_templates_form.php:304 -#: ../../enterprise/meta/include/functions_wizard_meta.php:239 -msgid "Components" -msgstr "Componentes" - -#: ../../godmode/modules/module_list.php:28 -msgid "Defined modules" -msgstr "Módulos definidos" - -#: ../../godmode/modules/module_list.php:50 -msgid "Problem modifying module" -msgstr "Problema al modificar los módulos" - -#: ../../godmode/modules/module_list.php:52 -msgid "Module updated successfully" -msgstr "Actualización de módulos correcta" - -#: ../../godmode/netflow/nf_edit.php:39 -msgid "Manage Netflow Filter" -msgstr "Filtro de gestión Netflow" - -#: ../../godmode/netflow/nf_edit.php:43 -#: ../../godmode/setup/setup_general.php:110 -#: ../../operation/netflow/nf_live_view.php:113 -#: ../../enterprise/extensions/backup/main.php:67 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:31 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:33 -#: ../../enterprise/operation/log/log_viewer.php:155 -msgid "Not supported in Windows systems" -msgstr "No soportado en sistemas Windows" - -#: ../../godmode/netflow/nf_edit.php:47 -#: ../../godmode/netflow/nf_edit_form.php:65 -#: ../../godmode/netflow/nf_item_list.php:57 -#: ../../operation/agentes/ver_agente.php:961 -#: ../../operation/netflow/nf_live_view.php:132 -#: ../../enterprise/meta/advanced/agents_setup.php:35 -#: ../../enterprise/meta/advanced/policymanager.php:35 -#: ../../enterprise/meta/advanced/synchronizing.php:33 -#: ../../enterprise/meta/agentsearch.php:26 -#: ../../enterprise/meta/general/logon_ok.php:15 -#: ../../enterprise/meta/index.php:629 -#: ../../enterprise/meta/monitoring/group_view.php:32 -#: ../../enterprise/meta/monitoring/tactical.php:35 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:37 -msgid "Main" -msgstr "Principal" - -#: ../../godmode/netflow/nf_edit_form.php:59 -#: ../../godmode/netflow/nf_edit_form.php:67 -msgid "Add filter" -msgstr "Añadir filtro" - -#: ../../godmode/netflow/nf_edit_form.php:62 -msgid "Netflow Filter" -msgstr "Filtro Netflow" - -#: ../../godmode/netflow/nf_edit_form.php:180 -#: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../operation/events/events_list.php:284 -#: ../../operation/events/events_list.php:315 -msgid "Update filter" -msgstr "Actualizar filtro" - -#: ../../godmode/netflow/nf_edit_form.php:206 -msgid "Filter:" -msgstr "Filtrar:" - -#: ../../godmode/netflow/nf_edit_form.php:210 -#: ../../operation/netflow/nf_live_view.php:349 -msgid "Dst Ip" -msgstr "Dst Ip" - -#: ../../godmode/netflow/nf_edit_form.php:210 -#: ../../operation/netflow/nf_live_view.php:349 -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:213 -#: ../../operation/netflow/nf_live_view.php:358 -msgid "Src Ip" -msgstr "IP Origen" - -#: ../../godmode/netflow/nf_edit_form.php:213 -#: ../../operation/netflow/nf_live_view.php:358 -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:216 -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../operation/netflow/nf_live_view.php:370 -#: ../../operation/netflow/nf_live_view.php:399 -msgid "Dst Port" -msgstr "Puerto destino" - -#: ../../godmode/netflow/nf_edit_form.php:216 -#: ../../operation/netflow/nf_live_view.php:370 -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:219 -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../operation/netflow/nf_live_view.php:379 -#: ../../operation/netflow/nf_live_view.php:399 -msgid "Src Port" -msgstr "Puerto origen" - -#: ../../godmode/netflow/nf_edit_form.php:219 -#: ../../operation/netflow/nf_live_view.php:379 -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:225 -#: ../../operation/netflow/nf_live_view.php:397 -msgid "Aggregate by" -msgstr "Agregado por" - -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../include/functions_netflow.php:1660 -#: ../../operation/netflow/nf_live_view.php:399 -msgid "Protocol" -msgstr "Protocolo" - -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../operation/netflow/nf_live_view.php:399 -msgid "Src Ip Address" -msgstr "Dirección IP origen" - -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../operation/netflow/nf_live_view.php:399 -msgid "Dst Ip Address" -msgstr "Dirección IP destino" - -#: ../../godmode/netflow/nf_edit_form.php:230 -#: ../../operation/netflow/nf_live_view.php:405 -msgid "Output format" -msgstr "Formato de Salida" - -#: ../../godmode/netflow/nf_edit_form.php:231 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Kilobytes" -msgstr "Kilobytes" - -#: ../../godmode/netflow/nf_edit_form.php:231 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Megabytes" -msgstr "Megabytes" - -#: ../../godmode/netflow/nf_edit_form.php:231 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Kilobytes per second" -msgstr "Kilobytes por segundo" - -#: ../../godmode/netflow/nf_edit_form.php:231 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Megabytes per second" -msgstr "Megabytes por segundo" - -#: ../../godmode/netflow/nf_item_list.php:39 -#: ../../operation/reporting/reporting_viewer.php:77 -msgid "Report list" -msgstr "Lista de informes" - -#: ../../godmode/netflow/nf_item_list.php:44 -#: ../../godmode/netflow/nf_item_list.php:54 -msgid "Report items" -msgstr "Elementos de informe" - -#: ../../godmode/netflow/nf_item_list.php:49 -msgid "Edit report" -msgstr "Editar informe" - -#: ../../godmode/netflow/nf_item_list.php:58 -msgid "Netflow reports" -msgstr "Informes Netflow" - -#: ../../godmode/netflow/nf_item_list.php:59 -msgid "Item list" -msgstr "Lista de items" - -#: ../../godmode/netflow/nf_item_list.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1259 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1473 -#: ../../enterprise/dashboard/widgets/top_n.php:69 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1565 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1744 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 -msgid "Order" -msgstr "Orden" - -#: ../../godmode/netflow/nf_item_list.php:150 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1281 -#: ../../operation/netflow/nf_live_view.php:258 -msgid "Max. values" -msgstr "Valores máximos" - -#: ../../godmode/netflow/nf_item_list.php:151 -msgid "Chart type" -msgstr "Tipo de gráfico" - -#: ../../godmode/netflow/nf_item_list.php:203 -#: ../../godmode/netflow/nf_item_list.php:210 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:300 -msgid "Move to down" -msgstr "Bajar" - -#: ../../godmode/netflow/nf_item_list.php:206 -#: ../../godmode/netflow/nf_item_list.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:290 -msgid "Move to up" -msgstr "Subir" - -#: ../../godmode/netflow/nf_item_list.php:255 -msgid "There are no defined items" -msgstr "No hay items definidos" - -#: ../../godmode/netflow/nf_item_list.php:260 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1514 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1910 -msgid "Create item" -msgstr "Crear item" - -#: ../../godmode/reporting/create_container.php:146 -#: ../../godmode/reporting/graph_container.php:66 -#: ../../godmode/reporting/graph_container.php:68 -#: ../../enterprise/godmode/reporting/graph_template_list.php:70 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:98 -msgid "Graph container" -msgstr "Contenedor de gráfica" - -#: ../../godmode/reporting/create_container.php:149 -#: ../../godmode/reporting/graph_container.php:77 -msgid "Create container" -msgstr "Crear contenedor" - -#: ../../godmode/reporting/create_container.php:152 -msgid "Container stored successfully" -msgstr "Contenedor almacenado correctamente" - -#: ../../godmode/reporting/create_container.php:152 -msgid "There was a problem storing container" -msgstr "Hubo un problema almacenando el contenedor" - -#: ../../godmode/reporting/create_container.php:156 -msgid "Update the container" -msgstr "Actualizar el contenedor" - -#: ../../godmode/reporting/create_container.php:156 -msgid "Bad update the container" -msgstr "Mala actualización del contenedor" - -#: ../../godmode/reporting/create_container.php:215 -msgid "Parent container" -msgstr "Contenedor padre" - -#: ../../godmode/reporting/create_container.php:218 -#: ../../godmode/reporting/create_container.php:221 -#: ../../include/ajax/graph.ajax.php:125 -#: ../../operation/events/events_list.php:1261 -#: ../../operation/events/events_list.php:1347 -msgid "none" -msgstr "Ninguno" - -#: ../../godmode/reporting/create_container.php:248 -#: ../../include/functions.php:2038 -msgid "custom" -msgstr "personalizado" - -#: ../../godmode/reporting/create_container.php:249 -#: ../../godmode/setup/performance.php:105 -#: ../../include/ajax/graph.ajax.php:126 ../../include/ajax/module.php:134 -#: ../../include/functions.php:2045 ../../include/functions.php:2615 -#: ../../include/functions_netflow.php:1052 -#: ../../include/functions_netflow.php:1085 -#: ../../operation/gis_maps/render_view.php:142 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:65 -#: ../../enterprise/dashboard/widgets/sla_percent.php:62 -#: ../../enterprise/dashboard/widgets/top_n.php:61 -#: ../../enterprise/godmode/agentes/inventory_manager.php:176 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:190 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:181 -msgid "1 hour" -msgstr "1 hora" - -#: ../../godmode/reporting/create_container.php:250 -#: ../../godmode/reporting/create_container.php:251 -#: ../../godmode/reporting/create_container.php:252 -#: ../../include/ajax/graph.ajax.php:127 ../../include/ajax/graph.ajax.php:128 -#: ../../include/ajax/graph.ajax.php:129 ../../include/functions.php:2046 -#: ../../include/functions.php:2047 -#, php-format -msgid "%s hours" -msgstr "%s horas" - -#: ../../godmode/reporting/create_container.php:253 -#: ../../include/ajax/graph.ajax.php:130 ../../include/ajax/module.php:137 -#: ../../include/functions.php:2048 ../../include/functions_netflow.php:1056 -#: ../../include/functions_netflow.php:1089 -#: ../../enterprise/dashboard/widgets/top_n.php:65 -#: ../../enterprise/godmode/agentes/inventory_manager.php:180 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:194 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:186 -msgid "1 day" -msgstr "1 día" - -#: ../../godmode/reporting/create_container.php:254 -#: ../../godmode/reporting/create_container.php:255 -#: ../../include/ajax/graph.ajax.php:131 ../../include/ajax/graph.ajax.php:132 -#, php-format -msgid "%s days" -msgstr "%s días" - -#: ../../godmode/reporting/create_container.php:256 -#: ../../include/ajax/graph.ajax.php:133 ../../include/ajax/module.php:138 -#: ../../include/functions.php:2049 ../../include/functions_netflow.php:1093 -msgid "1 week" -msgstr "1 semana" - -#: ../../godmode/reporting/create_container.php:257 -#: ../../include/ajax/graph.ajax.php:134 ../../include/ajax/module.php:139 -#: ../../include/functions.php:2050 ../../include/functions_netflow.php:1059 -#: ../../include/functions_netflow.php:1092 -#: ../../enterprise/godmode/agentes/inventory_manager.php:183 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:197 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:190 -msgid "15 days" -msgstr "15 días" - -#: ../../godmode/reporting/create_container.php:258 -#: ../../include/ajax/graph.ajax.php:135 ../../include/ajax/module.php:140 -#: ../../include/functions.php:2051 ../../include/functions_netflow.php:1094 -#: ../../enterprise/godmode/agentes/inventory_manager.php:184 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:198 -msgid "1 month" -msgstr "1 mes" - -#: ../../godmode/reporting/create_container.php:263 -#: ../../godmode/reporting/create_container.php:349 -#: ../../godmode/reporting/create_container.php:397 -#: ../../godmode/reporting/reporting_builder.item_editor.php:705 -#: ../../godmode/reporting/reporting_builder.list_items.php:305 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1244 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:251 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:106 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:106 -msgid "Time lapse" -msgstr "Intervalo de tiempo" - -#: ../../godmode/reporting/create_container.php:264 -#: ../../godmode/reporting/create_container.php:350 -#: ../../godmode/reporting/create_container.php:398 -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 periodo de tiempo en el que se obtendrán los datos de " -"la gráfica. Por ejemplo, una semana significa que mostrará datos desde hace " -"una semana hasta ahora. " - -#: ../../godmode/reporting/create_container.php:305 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1011 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1684 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1719 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1880 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1908 -#: ../../enterprise/dashboard/widgets/top_n.php:179 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2078 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2267 -msgid "Select an Agent first" -msgstr "Debe seleccionar primero un agente" - -#: ../../godmode/reporting/create_container.php:314 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1309 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1601 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:363 -msgid "Only average" -msgstr "Solo media" - -#: ../../godmode/reporting/create_container.php:324 -#: ../../godmode/reporting/create_container.php:371 -#: ../../godmode/reporting/create_container.php:439 -msgid "Add item" -msgstr "Añadir elemento" - -#: ../../godmode/reporting/create_container.php:356 -#: ../../godmode/reporting/create_container.php:465 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1139 -#: ../../godmode/reporting/visual_console_builder.elements.php:78 -#: ../../godmode/reporting/visual_console_builder.elements.php:380 -#: ../../include/functions_reporting.php:5780 -#: ../../include/functions_visual_map_editor.php:254 -#: ../../include/functions_visual_map_editor.php:264 -#: ../../include/functions_reports.php:429 -#: ../../include/functions_reports.php:505 -#: ../../include/functions_reports.php:507 -#: ../../enterprise/dashboard/widgets/custom_graph.php:25 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1498 -msgid "Custom graph" -msgstr "Gráfica personalizada" - -#: ../../godmode/reporting/create_container.php:430 -#: ../../godmode/reporting/create_container.php:470 -#: ../../mobile/operation/modules.php:151 -#: ../../mobile/operation/modules.php:152 -#: ../../mobile/operation/modules.php:244 -#: ../../mobile/operation/modules.php:245 -#: ../../operation/agentes/group_view.php:249 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:410 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:308 -msgid "Tag" -msgstr "Etiqueta" - -#: ../../godmode/reporting/create_container.php:455 -msgid "There are no defined item container" -msgstr "No hay ítems definidos en el contenedor" - -#: ../../godmode/reporting/create_container.php:464 -msgid "Agent/Module" -msgstr "Agente/Módulo" - -#: ../../godmode/reporting/create_container.php:467 -msgid "M.Group" -msgstr "M. Grupo" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:86 -#: ../../godmode/reporting/reporting_builder.item_editor.php:693 -#: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.elements.php:178 -#: ../../godmode/reporting/visual_console_builder.wizard.php:300 -#: ../../include/functions_visual_map.php:2759 -#: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:167 -#: ../../include/functions_visual_map_editor.php:654 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:40 -#: ../../enterprise/dashboard/widgets/module_icon.php:49 -#: ../../enterprise/dashboard/widgets/module_status.php:49 -#: ../../enterprise/dashboard/widgets/module_value.php:49 -#: ../../enterprise/dashboard/widgets/sla_percent.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1232 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:341 -msgid "Label" -msgstr "Etiqueta" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:87 -#: ../../godmode/reporting/graph_builder.graph_editor.php:156 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:147 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:205 -msgid "Weight" -msgstr "Peso" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:140 -#: ../../operation/events/events_list.php:295 -#: ../../enterprise/godmode/policies/policy_agents.php:233 -#: ../../enterprise/godmode/policies/policy_agents.php:250 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:155 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:93 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:436 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:313 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:341 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:110 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:102 -#: ../../enterprise/meta/event/custom_events.php:149 -msgid "Filter group" -msgstr "Filtrar grupo" - -#: ../../godmode/reporting/graph_builder.graph_editor.php:185 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:357 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:102 -msgid "Please, select a module" -msgstr "Por favor, seleccione un módulo" - -#: ../../godmode/reporting/graph_builder.main.php:151 -#: ../../include/functions_visual_map_editor.php:322 -msgid "Type of graph" -msgstr "Tipo de gráfica" - -#: ../../godmode/reporting/graph_builder.main.php:157 -#: ../../godmode/setup/setup_visuals.php:507 -#: ../../godmode/setup/setup_visuals.php:516 -#: ../../include/functions_visual_map_editor.php:325 -#: ../../operation/reporting/graph_viewer.php:227 -#: ../../enterprise/dashboard/widgets/custom_graph.php:39 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 -#: ../../enterprise/meta/advanced/metasetup.visual.php:129 -msgid "Area" -msgstr "Área" - -#: ../../godmode/reporting/graph_builder.main.php:158 -#: ../../operation/reporting/graph_viewer.php:228 -#: ../../enterprise/dashboard/widgets/custom_graph.php:40 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:209 -msgid "Stacked area" -msgstr "Área apilada" - -#: ../../godmode/reporting/graph_builder.main.php:159 -#: ../../godmode/reporting/visual_console_builder.elements.php:198 -#: ../../godmode/setup/setup_visuals.php:510 -#: ../../godmode/setup/setup_visuals.php:519 -#: ../../include/functions_visual_map_editor.php:63 -#: ../../include/functions_visual_map_editor.php:324 -#: ../../include/functions_visual_map_editor.php:658 -#: ../../operation/reporting/graph_viewer.php:229 -#: ../../enterprise/dashboard/widgets/custom_graph.php:41 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:210 -#: ../../enterprise/meta/advanced/metasetup.visual.php:132 -msgid "Line" -msgstr "Línea" - -#: ../../godmode/reporting/graph_builder.main.php:160 -#: ../../operation/reporting/graph_viewer.php:230 -#: ../../enterprise/dashboard/widgets/custom_graph.php:42 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:211 -msgid "Stacked line" -msgstr "Línea apilada" - -#: ../../godmode/reporting/graph_builder.main.php:161 -#: ../../operation/reporting/graph_viewer.php:231 -#: ../../enterprise/dashboard/widgets/custom_graph.php:43 -msgid "Bullet chart" -msgstr "gráfico bala" - -#: ../../godmode/reporting/graph_builder.main.php:162 -#: ../../operation/reporting/graph_viewer.php:232 -#: ../../enterprise/dashboard/widgets/custom_graph.php:44 -msgid "Gauge" -msgstr "Medidor" - -#: ../../godmode/reporting/graph_builder.main.php:163 -msgid "Horizontal bars" -msgstr "Barras horizontales" - -#: ../../godmode/reporting/graph_builder.main.php:164 -msgid "Vertical bars" -msgstr "Barras verticales" - -#: ../../godmode/reporting/graph_builder.main.php:165 -#: ../../operation/reporting/graph_viewer.php:235 -#: ../../enterprise/dashboard/widgets/custom_graph.php:47 -msgid "Pie" -msgstr "Gráfico Circular" - -#: ../../godmode/reporting/graph_builder.main.php:169 -#: ../../operation/reporting/graph_viewer.php:240 -msgid "Equalize maximum thresholds" -msgstr "Igualar umbrales máximos" - -#: ../../godmode/reporting/graph_builder.main.php:170 -#: ../../operation/reporting/graph_viewer.php:241 -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" - -#: ../../godmode/reporting/graph_builder.main.php:177 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1313 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1605 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:373 -msgid "Percentil" -msgstr "Percentil" - -#: ../../godmode/reporting/graph_builder.php:214 -#: ../../godmode/reporting/graph_container.php:50 -#: ../../godmode/reporting/graphs.php:43 ../../godmode/reporting/graphs.php:53 -#: ../../operation/reporting/graph_viewer.php:147 -#: ../../enterprise/godmode/reporting/graph_template_list.php:32 -#: ../../enterprise/godmode/reporting/graph_template_list.php:43 -#: ../../enterprise/godmode/reporting/graph_template_list.php:53 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:79 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:89 -msgid "Graph list" -msgstr "Lista de la gráfica" - -#: ../../godmode/reporting/graph_builder.php:217 -#: ../../godmode/reporting/reporting_builder.main.php:51 -#: ../../godmode/reporting/reporting_builder.php:1957 -#: ../../godmode/reporting/reporting_builder.php:1985 -#: ../../godmode/reporting/visual_console_builder.php:668 -#: ../../operation/reporting/graph_viewer.php:150 -#: ../../operation/reporting/reporting_viewer.php:82 -#: ../../operation/visual_console/pure_ajax.php:110 -#: ../../operation/visual_console/render_view.php:113 -#: ../../enterprise/meta/screens/screens.visualmap.php:181 -#: ../../enterprise/meta/screens/screens.visualmap.php:206 -msgid "Main data" -msgstr "Datos principales" - -#: ../../godmode/reporting/graph_builder.php:220 -#: ../../operation/reporting/graph_viewer.php:153 -msgid "Graph editor" -msgstr "Editor de Gráficas" - -#: ../../godmode/reporting/graph_builder.php:223 -#: ../../operation/reporting/graph_viewer.php:159 -msgid "View graph" -msgstr "Ver gráfica" - -#: ../../godmode/reporting/graph_builder.php:235 -msgid "Graph builder" -msgstr "Constructor de gráficos" - -#: ../../godmode/reporting/graph_builder.php:255 -msgid "Graph stored successfully" -msgstr "Gráfica almacenada correctamente" - -#: ../../godmode/reporting/graph_builder.php:255 -msgid "There was a problem storing Graph" -msgstr "Hubo un problema al almacenar la gráfica" - -#: ../../godmode/reporting/graph_builder.php:258 -msgid "There was a problem adding Module" -msgstr "Ha habido un problema al añadir el módulo" - -#: ../../godmode/reporting/graph_builder.php:261 -msgid "Update the graph" -msgstr "Actualizar la gráfica" - -#: ../../godmode/reporting/graph_builder.php:261 -msgid "Bad update the graph" -msgstr "No se pudo actualizar la gráfica" - -#: ../../godmode/reporting/graph_builder.php:264 -msgid "Graph deleted successfully" -msgstr "Gráfico borrado correctamente" - -#: ../../godmode/reporting/graph_builder.php:264 -msgid "There was a problem deleting Graph" -msgstr "Ha habido un problema al borrar el gráfico" - -#: ../../godmode/reporting/graphs.php:70 -msgid "Graphs containers" -msgstr "Contenedor de gráficas" - -#: ../../godmode/reporting/graphs.php:78 -#: ../../godmode/reporting/map_builder.php:39 -#: ../../godmode/reporting/reporting_builder.php:359 -#: ../../godmode/reporting/reporting_builder.php:364 -#: ../../godmode/reporting/reporting_builder.php:1924 -#: ../../godmode/reporting/reporting_builder.php:1929 -#: ../../godmode/reporting/reporting_builder.php:1995 -#: ../../godmode/reporting/reporting_builder.php:2000 -#: ../../operation/menu.php:235 -#: ../../operation/reporting/custom_reporting.php:27 -#: ../../operation/reporting/graph_viewer.php:327 -#: ../../operation/reporting/reporting_viewer.php:119 -#: ../../operation/reporting/reporting_viewer.php:124 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:180 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:183 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:195 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:210 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:213 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:226 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:229 -#: ../../enterprise/meta/general/logon_ok.php:48 -msgid "Reporting" -msgstr "Informes" - -#: ../../godmode/reporting/graphs.php:78 ../../operation/menu.php:249 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:294 -msgid "Custom graphs" -msgstr "Gráficas personalizadas" - -#: ../../godmode/reporting/graphs.php:155 -#: ../../include/functions_container.php:129 -#: ../../operation/reporting/graph_viewer.php:338 -#: ../../operation/search_graphs.php:33 -msgid "Graph name" -msgstr "Nombre gráfica" - -#: ../../godmode/reporting/graphs.php:157 -#: ../../include/functions_container.php:131 -msgid "Number of Graphs" -msgstr "Número de Gráficos" - -#: ../../godmode/reporting/graphs.php:216 -msgid "Create graph" -msgstr "Crear gráfica" - -#: ../../godmode/reporting/map_builder.php:187 -#: ../../godmode/reporting/map_builder.php:197 -msgid "Not copied. Error copying data" -msgstr "Se ha producido un error la copiar los datos" - -#: ../../godmode/reporting/map_builder.php:207 -msgid "Map name" -msgstr "Nombre de mapa" - -#: ../../godmode/reporting/map_builder.php:209 -#: ../../enterprise/dashboard/widgets/top_n.php:82 -msgid "Items" -msgstr "Elementos" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:35 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:49 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:164 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:42 -msgid "Only table" -msgstr "Solo tabla" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:36 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:50 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:165 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:43 -msgid "Table & Graph" -msgstr "Tabla y Gráfico" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:44 -msgid "Only graph" -msgstr "Solo gráfico" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:41 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1262 -#: ../../enterprise/dashboard/widgets/top_n.php:72 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:170 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1568 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:249 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:48 -msgid "Ascending" -msgstr "Ascendente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:42 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1265 -#: ../../enterprise/dashboard/widgets/top_n.php:71 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:171 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1571 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:251 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:49 -msgid "Descending" -msgstr "Descendente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:611 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1185 -msgid "Item Editor" -msgstr "Editor de ítem" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:639 -msgid "Not valid" -msgstr "No válida" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:644 -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:706 -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:720 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:149 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1258 -msgid "Last value" -msgstr "Último valor" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:721 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3203 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:151 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:606 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3108 -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: período 0 los informes no pueden ser usados para enseñar la " -"información devuelta en tiempo. La información contenida en este tipo de " -"informes va a mostrar siempre la información más reciente." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:735 -#: ../../include/functions_netflow.php:1134 -#: ../../include/functions_netflow.php:1144 -#: ../../include/functions_netflow.php:1161 -#: ../../include/functions_netflow.php:1169 -#: ../../include/functions_netflow.php:1193 -#: ../../operation/netflow/nf_live_view.php:248 -msgid "Resolution" -msgstr "Resolución" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:766 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1292 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:475 -msgid "Projection period" -msgstr "Periodo de proyección" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:776 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1306 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:462 -msgid "Data range" -msgstr "Rango de datos" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:787 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1320 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226 -msgid "Only display wrong SLAs" -msgstr "Mostrar solo aquellas SLA que no cumplen." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:796 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1329 -msgid "Working time" -msgstr "Tiempo de trabajo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1042 -msgid "Show modules" -msgstr "Mostrar módulos" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1132 -#: ../../include/functions_graph.php:760 -#: ../../include/functions_graph.php:3954 -#: ../../include/functions_graph.php:3959 -#: ../../include/functions_graph.php:4686 -#: ../../include/functions_graph.php:4689 -#: ../../include/functions_graph.php:4692 -#: ../../enterprise/operation/inventory/inventory.php:227 -msgid "Last" -msgstr "Último" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1180 -msgid "Target server" -msgstr "Servidor Target" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1201 -#: ../../godmode/setup/news.php:181 ../../godmode/setup/setup_visuals.php:705 -#: ../../include/functions_reporting.php:3878 -#: ../../include/functions_reports.php:603 -#: ../../enterprise/dashboard/widgets/post.php:25 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1524 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:321 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 -#: ../../enterprise/include/functions_netflow_pdf.php:208 -msgid "Text" -msgstr "Texto" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1208 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1539 -msgid "Custom SQL template" -msgstr "Plantilla SQL personalizada" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1213 -#: ../../include/functions_reports.php:592 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:317 -msgid "SQL query" -msgstr "Consulta SQL" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1229 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1405 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1407 -msgid "Select server" -msgstr "Seleccionar servidor" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1238 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1534 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:486 -msgid "Serialized header" -msgstr "Cabedera serializada" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1238 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1534 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:486 -msgid "The separator character is |" -msgstr "El carácter separador es |" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1247 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1553 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:490 -msgid "Field separator" -msgstr "Separador de campo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1247 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1553 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:490 -msgid "Separator for different fields in the serialized text chain" -msgstr "Separador para diferentes campos en la cadena de texto serializada" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1251 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1557 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:494 -msgid "Line separator" -msgstr "Separador de línea" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1251 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1557 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:494 -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" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1255 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1561 -msgid "Group by agent" -msgstr "Agrupar por agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1268 -#: ../../enterprise/dashboard/widgets/top_n.php:73 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:235 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1574 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:253 -msgid "By agent name" -msgstr "Por nombre de agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1276 -#: ../../enterprise/dashboard/widgets/top_n.php:67 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:241 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1582 -msgid "Quantity (n)" -msgstr "Cantidad (n)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1286 -#: ../../operation/agentes/ver_agente.php:1101 -#: ../../enterprise/dashboard/widgets/top_n.php:75 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:249 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1587 -msgid "Display" -msgstr "Mostrar" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1293 -#: ../../include/functions_reporting.php:961 -#: ../../include/functions_graph.php:761 ../../include/functions_graph.php:764 -#: ../../include/functions_graph.php:765 ../../include/functions_graph.php:766 -#: ../../include/functions_graph.php:769 -#: ../../include/functions_graph.php:1447 -#: ../../include/functions_graph.php:3954 -#: ../../include/functions_graph.php:3959 -#: ../../include/functions_graph.php:4686 -#: ../../include/functions_graph.php:4689 -#: ../../include/functions_graph.php:4692 -#: ../../enterprise/dashboard/widgets/top_n.php:482 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1594 -msgid "Avg" -msgstr "Media" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1300 -#: ../../mobile/operation/module_graph.php:418 -#: ../../operation/agentes/stat_win.php:383 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:353 -msgid "Time compare (Overlapped)" -msgstr "Comparación de tiempo (solapado)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1326 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:279 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1615 -msgid "Condition" -msgstr "Condición" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1331 -#: ../../include/functions_reporting.php:1746 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:282 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1618 -msgid "Everything" -msgstr "Todo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1332 -msgid "Greater or equal (>=)" -msgstr "Mayor o igual (>=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1333 -msgid "Less or equal (<=)" -msgstr "Menor o igual (<=)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1334 -msgid "Less (<)" -msgstr "Menor de (<)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1335 -msgid "Greater (>)" -msgstr "Mayor de (>)" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1336 -msgid "Equal (=)" -msgstr "Igual a" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1337 -msgid "Not equal (!=)" -msgstr "No igual a" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1338 -#: ../../include/functions_db.php:1529 -#: ../../include/functions_reporting_html.php:496 -#: ../../include/functions_reporting_html.php:575 -#: ../../include/functions_reporting_html.php:675 -#: ../../include/functions_reporting_html.php:2049 -#: ../../include/functions_reporting_html.php:2531 -#: ../../enterprise/dashboard/widgets/maps_status.php:74 -#: ../../enterprise/extensions/backup/main.php:163 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:288 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1624 -#: ../../enterprise/include/functions_reporting.php:1665 -#: ../../enterprise/include/functions_reporting.php:2457 -#: ../../enterprise/include/functions_reporting.php:2642 -#: ../../enterprise/include/functions_reporting.php:3234 -#: ../../enterprise/include/functions_reporting.php:3411 -#: ../../enterprise/include/functions_reporting.php:4127 -#: ../../enterprise/include/functions_reporting.php:4823 -#: ../../enterprise/include/functions_reporting.php:5165 -#: ../../enterprise/include/functions_reporting_csv.php:965 -#: ../../enterprise/include/functions_reporting_csv.php:1012 -#: ../../enterprise/include/functions_reporting_pdf.php:1322 -#: ../../enterprise/include/functions_reporting_pdf.php:1403 -#: ../../enterprise/include/functions_reporting_pdf.php:1502 -#: ../../enterprise/include/functions_reporting_pdf.php:1635 -#: ../../enterprise/include/functions_reporting_pdf.php:2056 -#: ../../enterprise/include/functions_reporting_pdf.php:2106 -#: ../../enterprise/include/functions_services.php:1700 -#: ../../enterprise/operation/agentes/ux_console_view.php:185 -#: ../../enterprise/operation/agentes/ux_console_view.php:348 -msgid "OK" -msgstr "Bien" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1339 -#: ../../include/functions_reporting_html.php:2055 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:290 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1626 -#: ../../enterprise/include/functions_reporting_pdf.php:2109 -msgid "Not OK" -msgstr "No está bien" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1361 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:296 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1633 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:232 -msgid "Show graph" -msgstr "Mostrar gráfico" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1369 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1640 -msgid "Show address instead module name." -msgstr "Mostrar la dirección en vez del nombre del módulo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1370 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1641 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:280 -msgid "Show the main address of agent." -msgstr "Muestra la dirección principal del agente." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1382 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:304 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1653 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:263 -msgid "Show resume" -msgstr "Mostrar resumen" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1382 -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:1392 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1662 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:384 -msgid "Show Summary group" -msgstr "Mostrar el sumario del grupo" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1696 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:414 -msgid "Event Status" -msgstr "Estado del evento" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1437 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1708 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:425 -msgid "Event graphs" -msgstr "Gráficas de eventos" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1441 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1712 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:429 -msgid "By agent" -msgstr "Por agente" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1447 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1718 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:435 -msgid "By user validator" -msgstr "Por usuario que validó" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1453 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1724 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:441 -msgid "By criticity" -msgstr "Por criticidad" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1459 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1730 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:447 -msgid "Validated vs unvalidated" -msgstr "Validados vs sin validar" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1467 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1738 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:498 -msgid "Show in two columns" -msgstr "Mostrar en dos columnas" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1473 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1744 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 -msgid "SLA items sorted by fulfillment value" -msgstr "Objetos de SLA ordenados por valor rellenado" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1478 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1749 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:503 -msgid "Show in landscape" -msgstr "Mostrar en landscape" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1489 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1760 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 -msgid "Hide not init agents" -msgstr "Ocultar agentes no inicializados" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1548 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1949 -msgid "SLA Min. (value)" -msgstr "Valor mínimo para el SLA" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1549 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1950 -msgid "SLA Max. (value)" -msgstr "Valor máximo para el SLA" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1550 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1951 -msgid "SLA Limit (%)" -msgstr "Límite (%) para el SLA" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1559 -msgid "Please save the SLA for start to add items in this list." -msgstr "" -"Por favor guarde primero el SLA antes de intentar añadir elementos a la " -"misma." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1731 -msgid "rate" -msgstr "tasa" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1732 -#: ../../enterprise/dashboard/widgets/top_n.php:115 -#: ../../enterprise/dashboard/widgets/top_n.php:298 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:74 -msgid "max" -msgstr "máx" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1733 -#: ../../enterprise/dashboard/widgets/top_n.php:116 -#: ../../enterprise/dashboard/widgets/top_n.php:299 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:75 -msgid "min" -msgstr "mín" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1734 -#: ../../enterprise/dashboard/widgets/top_n.php:117 -#: ../../enterprise/dashboard/widgets/top_n.php:300 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:76 -msgid "sum" -msgstr "suma" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1754 -msgid "" -"Please be careful, when the module have diferent intervals in their life, " -"the summatory maybe get bad result." -msgstr "" -"Por favor, tenga cuidado, cuando el modulo tiene diferentes intervalos a lo " -"largo de su historia, el sumatorio puede conseguir malos resultados" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1768 -msgid "Please save the report to start adding items into the list." -msgstr "" -"Por favor guarde el informe para empezar a añadir objetos en la lista." - -#: ../../godmode/reporting/reporting_builder.item_editor.php:2077 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2097 -msgid "Please select Agent" -msgstr "Pro favor seleccione el agente" - -#: ../../godmode/reporting/reporting_builder.list_items.php:288 -#: ../../godmode/reporting/visual_console_builder.elements.php:80 -#: ../../godmode/snmpconsole/snmp_alert.php:966 -#: ../../godmode/snmpconsole/snmp_alert.php:1148 -#: ../../include/functions_visual_map_editor.php:500 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:280 -msgid "Position" -msgstr "Posición" - -#: ../../godmode/reporting/reporting_builder.list_items.php:291 -#: ../../godmode/reporting/reporting_builder.list_items.php:296 -#: ../../godmode/reporting/reporting_builder.list_items.php:302 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:225 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:236 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:246 -msgid "Ascendent" -msgstr "Ascencente" - -#: ../../godmode/reporting/reporting_builder.list_items.php:292 -#: ../../godmode/reporting/reporting_builder.list_items.php:297 -#: ../../godmode/reporting/reporting_builder.list_items.php:303 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:229 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:249 -msgid "Descent" -msgstr "Descendente" - -#: ../../godmode/reporting/reporting_builder.list_items.php:314 -#: ../../godmode/reporting/reporting_builder.list_items.php:514 -#: ../../enterprise/extensions/ipam/ipam_network.php:269 -#: ../../enterprise/godmode/alerts/alert_events_list.php:420 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:406 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:217 -msgid "Sort" -msgstr "Ordenar" - -#: ../../godmode/reporting/reporting_builder.list_items.php:320 -#: ../../include/functions_custom_graphs.php:226 -msgid "No items." -msgstr "Sin artículos." - -#: ../../godmode/reporting/reporting_builder.list_items.php:500 -#: ../../godmode/reporting/reporting_builder.list_items.php:505 -msgid "Sort items" -msgstr "Ordenar elementos" - -#: ../../godmode/reporting/reporting_builder.list_items.php:507 -msgid "Sort selected items from position: " -msgstr "Ordenar elementos desde posición: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:509 -msgid "Move before to" -msgstr "Mover antes de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:509 -msgid "Move after to" -msgstr "Mover despues de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:531 -#: ../../godmode/reporting/reporting_builder.list_items.php:536 -msgid "Delete items" -msgstr "Borrar elementos" - -#: ../../godmode/reporting/reporting_builder.list_items.php:538 -msgid "Delete selected items from position: " -msgstr "Borrar los elementos seleccionados desde la posición: " - -#: ../../godmode/reporting/reporting_builder.list_items.php:540 -msgid "Delete above to" -msgstr "Borrar lo que está encima de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:540 -msgid "Delete below to" -msgstr "Borrar lo que está debajo de" - -#: ../../godmode/reporting/reporting_builder.list_items.php:578 -msgid "" -"Are you sure to sort the items into the report?\\nThis action change the " -"sorting of items into data base." -msgstr "" -"Esta seguro de ordenar los items en el informe?\\n Esta acción cambiará el " -"orden the los items en la base de datos" - -#: ../../godmode/reporting/reporting_builder.list_items.php:599 -msgid "Please select any item to order" -msgstr "Por favor, seleccione cualquier item para ordenar" - -#: ../../godmode/reporting/reporting_builder.list_items.php:629 -msgid "Are you sure to delete the items into the report?\\n" -msgstr "¿Está seguro de borrar los items en el informe \\n" - -#: ../../godmode/reporting/reporting_builder.list_items.php:651 -msgid "Please select any item to delete" -msgstr "Por favor, seleccione cualquier item para borrar" - -#: ../../godmode/reporting/reporting_builder.main.php:85 -msgid "Only the group can view the report" -msgstr "Sólo el grupo puede ver el informe" - -#: ../../godmode/reporting/reporting_builder.main.php:86 -msgid "The next group can edit the report" -msgstr "El siguiente grupo puede editar el informe" - -#: ../../godmode/reporting/reporting_builder.main.php:87 -msgid "Only the user and admin user can edit the report" -msgstr "Sólo el usuario y el usuario administrador pueden editar el informe" - -#: ../../godmode/reporting/reporting_builder.main.php:89 -msgid "Write Access" -msgstr "Permisos de escritura" - -#: ../../godmode/reporting/reporting_builder.main.php:90 -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, si usted quiere un informe donde la gente de \"Todos\" los " -"grupos puedan ver, pero quiere editarlo solo para usted o para su grupo" - -#: ../../godmode/reporting/reporting_builder.main.php:110 -msgid "Non interactive report" -msgstr "Informe no interactivo" - -#: ../../godmode/reporting/reporting_builder.php:80 -msgid "" -"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" - -#: ../../godmode/reporting/reporting_builder.php:81 -msgid "An error has ocurred" -msgstr "Ha ocurrido un error" - -#: ../../godmode/reporting/reporting_builder.php:335 -#: ../../godmode/reporting/reporting_builder.php:1902 -#: ../../godmode/reporting/reporting_builder.php:1954 -msgid "Reports list" -msgstr "Lista de informes" - -#: ../../godmode/reporting/reporting_builder.php:346 -#: ../../godmode/reporting/reporting_builder.php:368 -#: ../../godmode/reporting/reporting_builder.php:1911 -#: ../../operation/menu.php:242 -#: ../../operation/reporting/custom_reporting.php:27 -msgid "Custom reporting" -msgstr "Informes personalizados" - -#: ../../godmode/reporting/reporting_builder.php:435 -msgid "Free text for search: " -msgstr "Texto libre de búsqueda " - -#: ../../godmode/reporting/reporting_builder.php:436 -msgid "Search by report name or description, list matches." -msgstr "Búsqueda por nombre del informe o descripción, lista los resultados." - -#: ../../godmode/reporting/reporting_builder.php:446 -msgid "Show Option" -msgstr "Mostrar Opciones" - -#: ../../godmode/reporting/reporting_builder.php:532 -#: ../../operation/reporting/custom_reporting.php:38 -#: ../../operation/search_reports.php:38 -#: ../../enterprise/extensions/cron/functions.php:47 -#: ../../enterprise/extensions/cron/main.php:250 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:271 -#: ../../enterprise/include/functions_reporting_csv.php:1504 -#: ../../enterprise/include/functions_reporting_csv.php:1508 -msgid "Report name" -msgstr "Nombre de informe" - -#: ../../godmode/reporting/reporting_builder.php:534 -#: ../../operation/reporting/custom_reporting.php:40 -#: ../../operation/search_reports.php:40 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289 -msgid "HTML" -msgstr "HTML" - -#: ../../godmode/reporting/reporting_builder.php:535 -#: ../../operation/reporting/custom_reporting.php:41 -#: ../../operation/search_reports.php:41 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:290 -msgid "XML" -msgstr "XML" - -#: ../../godmode/reporting/reporting_builder.php:554 -#: ../../enterprise/dashboard/main_dashboard.php:306 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:287 -msgid "Private" -msgstr "Privado" - -#: ../../godmode/reporting/reporting_builder.php:610 -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:615 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:342 -msgid "HTML view" -msgstr "Vista HTML" - -#: ../../godmode/reporting/reporting_builder.php:616 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:344 -msgid "Export to XML" -msgstr "Exportar a XML" - -#: ../../godmode/reporting/reporting_builder.php:727 -#: ../../include/functions_reporting.php:1631 -#: ../../enterprise/operation/agentes/agent_inventory.php:242 -#: ../../enterprise/operation/inventory/inventory.php:253 -#: ../../enterprise/operation/log/log_viewer.php:428 -msgid "No data found." -msgstr "No se encontraron datos." - -#: ../../godmode/reporting/reporting_builder.php:735 -msgid "Create report" -msgstr "Crear informe" - -#: ../../godmode/reporting/reporting_builder.php:1960 -#: ../../operation/reporting/reporting_viewer.php:86 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:115 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:138 -msgid "List items" -msgstr "Listado de elementos" - -#: ../../godmode/reporting/reporting_builder.php:1963 -#: ../../operation/reporting/reporting_viewer.php:90 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:108 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:143 -#: ../../enterprise/include/functions_reporting.php:6590 -#: ../../enterprise/include/functions_reporting.php:6640 -msgid "Item editor" -msgstr "Editor de elementos" - -#: ../../godmode/reporting/reporting_builder.php:1972 -#: ../../operation/reporting/reporting_viewer.php:98 -msgid "View report" -msgstr "Ver informe" - -#: ../../godmode/reporting/reporting_builder.php:2020 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1164 -msgid "Successfull action" -msgstr "Acción completada" - -#: ../../godmode/reporting/reporting_builder.php:2020 -msgid "Unsuccessfull action

    " -msgstr "Acciones fallidas" - -#: ../../godmode/reporting/visual_console_builder.data.php:91 -msgid "Create visual console" -msgstr "Crear consola visual" - -#: ../../godmode/reporting/visual_console_builder.data.php:102 -#: ../../godmode/setup/os.builder.php:34 -#: ../../enterprise/godmode/agentes/collections.data.php:318 -msgid "Name:" -msgstr "Nombre:" - -#: ../../godmode/reporting/visual_console_builder.data.php:103 -msgid "" -"Use [ or ( as first character, for example '[*] Map name', to render this " -"map name in main menu" -msgstr "" -"Use [ 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:122 -#: ../../enterprise/godmode/agentes/collections.data.php:358 -msgid "Group:" -msgstr "Grupo:" - -#: ../../godmode/reporting/visual_console_builder.data.php:139 -#: ../../godmode/reporting/visual_console_builder.elements.php:111 -#: ../../include/functions_visual_map_editor.php:53 -#: ../../include/functions_visual_map_editor.php:359 -#: ../../enterprise/dashboard/widget.php:65 -msgid "Background" -msgstr "Imagen de fondo" - -#: ../../godmode/reporting/visual_console_builder.data.php:142 -msgid "Background image" -msgstr "Imagen de fondo" - -#: ../../godmode/reporting/visual_console_builder.data.php:144 -#: ../../include/functions_visual_map_editor.php:237 -msgid "Background color" -msgstr "Color de fondo" - -#: ../../godmode/reporting/visual_console_builder.data.php:164 -msgid "Layout size" -msgstr "Tamaño del diseño" - -#: ../../godmode/reporting/visual_console_builder.data.php:168 -msgid "Set custom size" -msgstr "Especificar tamaño personalizado" - -#: ../../godmode/reporting/visual_console_builder.data.php:177 -msgid "Get default image size" -msgstr "Establecer el tamaño de imagen por defecto" - -#: ../../godmode/reporting/visual_console_builder.editor.php:134 -msgid "Min allowed size is 1024x768" -msgstr "El tamaño mínimo permitido es 1024x768" - -#: ../../godmode/reporting/visual_console_builder.editor.php:138 -#: ../../godmode/reporting/visual_console_builder.editor.php:143 -#: ../../godmode/reporting/visual_console_builder.editor.php:148 -#: ../../enterprise/dashboard/main_dashboard.php:356 -msgid "Action in progress" -msgstr "Acción en curso" - -#: ../../godmode/reporting/visual_console_builder.editor.php:139 -#: ../../enterprise/dashboard/main_dashboard.php:357 -msgid "Loading in progress" -msgstr "Carga en curso" - -#: ../../godmode/reporting/visual_console_builder.editor.php:144 -msgid "Saving in progress" -msgstr "Guardando en curso" - -#: ../../godmode/reporting/visual_console_builder.editor.php:149 -msgid "Deletion in progress" -msgstr "Eliminando en curso" - -#: ../../godmode/reporting/visual_console_builder.elements.php:78 -#: ../../godmode/reporting/visual_console_builder.wizard.php:118 -#: ../../include/functions_visual_map_editor.php:198 -#: ../../include/functions_filemanager.php:682 -msgid "Image" -msgstr "Imagen" - -#: ../../godmode/reporting/visual_console_builder.elements.php:79 -msgid "Width x Height
    Max value" -msgstr "Ancho x Alto
    Valor máximo" - -#: ../../godmode/reporting/visual_console_builder.elements.php:81 -#: ../../include/functions_visual_map_editor.php:540 -msgid "Map linked" -msgstr "Mapa enlazado" - -#: ../../godmode/reporting/visual_console_builder.elements.php:86 -#: ../../mobile/operation/agents.php:324 -#: ../../enterprise/godmode/admin_access_logs.php:25 -#: ../../enterprise/godmode/policies/policy_agents.php:381 -msgid "A." -msgstr "A." - -#: ../../godmode/reporting/visual_console_builder.elements.php:138 -#: ../../godmode/reporting/visual_console_builder.wizard.php:104 -#: ../../include/functions_visual_map_editor.php:54 -#: ../../include/functions_visual_map_editor.php:650 -msgid "Static Graph" -msgstr "Icono" - -#: ../../godmode/reporting/visual_console_builder.elements.php:143 -msgid "Percentile Bar" -msgstr "Barra de progreso" - -#: ../../godmode/reporting/visual_console_builder.elements.php:148 -msgid "Percentile Bubble" -msgstr "Burbuja Porcentaje" - -#: ../../godmode/reporting/visual_console_builder.elements.php:153 -#: ../../include/functions_visual_map_editor.php:652 -#: ../../mobile/operation/events.php:506 -msgid "Module Graph" -msgstr "Gráfica de módulo" - -#: ../../godmode/reporting/visual_console_builder.elements.php:158 -#: ../../include/functions_visual_map.php:2755 -#: ../../include/functions_visual_map_editor.php:653 -msgid "Simple Value" -msgstr "Valor simple" - -#: ../../godmode/reporting/visual_console_builder.elements.php:163 -msgid "Simple Value (Process Max)" -msgstr "Valor simple (Maximo)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:168 -msgid "Simple Value (Process Min)" -msgstr "Valor simple (Minimo)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:173 -msgid "Simple Value (Process Avg)" -msgstr "Valor simple (Media)" - -#: ../../godmode/reporting/visual_console_builder.elements.php:188 -#: ../../include/functions_visual_map.php:2738 -#: ../../include/functions_visual_map_editor.php:62 -#: ../../include/functions_visual_map_editor.php:657 -msgid "Box" -msgstr "caja" - -#: ../../godmode/reporting/visual_console_builder.elements.php:226 -#: ../../godmode/reporting/visual_console_builder.elements.php:619 -msgid "Edit label" -msgstr "Editar etiqueta" - -#: ../../godmode/reporting/visual_console_builder.php:159 -msgid "This file isn't image" -msgstr "El fichero no es una imagen" - -#: ../../godmode/reporting/visual_console_builder.php:160 -msgid "This file isn't image." -msgstr "El archivo no es una imagen." - -#: ../../godmode/reporting/visual_console_builder.php:164 -#: ../../godmode/reporting/visual_console_builder.php:165 -msgid "File already are exists." -msgstr "El archivo ya existe." - -#: ../../godmode/reporting/visual_console_builder.php:171 -#: ../../godmode/reporting/visual_console_builder.php:172 -msgid "The file have not image extension." -msgstr "El archivo no tiene una extensión válida." - -#: ../../godmode/reporting/visual_console_builder.php:183 -#: ../../godmode/reporting/visual_console_builder.php:184 -#: ../../godmode/reporting/visual_console_builder.php:191 -#: ../../godmode/reporting/visual_console_builder.php:194 -msgid "Problems with move file to target." -msgstr "Problemas al mover el fichero al objetivo" - -#: ../../godmode/reporting/visual_console_builder.php:223 -msgid "Successfully update." -msgstr "Actualizado correctamente." - -#: ../../godmode/reporting/visual_console_builder.php:235 -msgid "Could not be update." -msgstr "No se puede actualizar" - -#: ../../godmode/reporting/visual_console_builder.php:250 -#: ../../enterprise/meta/screens/screens.visualmap.php:120 -msgid "Successfully created." -msgstr "Creado correctamente." - -#: ../../godmode/reporting/visual_console_builder.php:263 -#: ../../enterprise/meta/screens/screens.visualmap.php:123 -msgid "Could not be created." -msgstr "No se puede crear" - -#: ../../godmode/reporting/visual_console_builder.php:304 -msgid "Successfully multiple delete." -msgstr "Múltiple eliminación realizada con éxito" - -#: ../../godmode/reporting/visual_console_builder.php:305 -msgid "Unsuccessfull multiple delete." -msgstr "La eliminación múltiple no ha tenido éxito" - -#: ../../godmode/reporting/visual_console_builder.php:387 -msgid "Successfully delete." -msgstr "Borrado satisfactoriamente" - -#: ../../godmode/reporting/visual_console_builder.php:662 -#: ../../operation/visual_console/pure_ajax.php:96 -#: ../../operation/visual_console/render_view.php:96 -#: ../../enterprise/meta/screens/screens.visualmap.php:196 -msgid "Visual consoles list" -msgstr "Lista de consolas visuales" - -#: ../../godmode/reporting/visual_console_builder.php:665 -#: ../../operation/gis_maps/render_view.php:128 -#: ../../operation/visual_console/pure_ajax.php:105 -#: ../../operation/visual_console/render_view.php:108 -#: ../../enterprise/meta/screens/screens.visualmap.php:188 -msgid "Show link to public Visual Console" -msgstr "Mostrar enlace a la Consola Visual pública" - -#: ../../godmode/reporting/visual_console_builder.php:671 -#: ../../operation/visual_console/pure_ajax.php:113 -#: ../../operation/visual_console/render_view.php:116 -#: ../../enterprise/meta/screens/screens.visualmap.php:177 -msgid "List elements" -msgstr "Lista de elementos" - -#: ../../godmode/reporting/visual_console_builder.php:676 -#: ../../operation/visual_console/pure_ajax.php:118 -#: ../../operation/visual_console/render_view.php:121 -msgid "Services wizard" -msgstr "Asistente de servicios" - -#: ../../godmode/reporting/visual_console_builder.php:681 -#: ../../godmode/reporting/visual_console_builder.wizard.php:354 -#: ../../operation/visual_console/pure_ajax.php:123 -#: ../../operation/visual_console/render_view.php:126 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:89 -#: ../../enterprise/include/functions_reporting.php:33 -#: ../../enterprise/include/functions_reporting.php:6560 -#: ../../enterprise/include/functions_reporting.php:6582 -#: ../../enterprise/meta/general/logon_ok.php:38 -#: ../../enterprise/meta/general/main_header.php:114 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:42 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:82 -#: ../../enterprise/meta/screens/screens.visualmap.php:173 -msgid "Wizard" -msgstr "Asistente" - -#: ../../godmode/reporting/visual_console_builder.php:684 -#: ../../operation/visual_console/pure_ajax.php:126 -#: ../../operation/visual_console/render_view.php:129 -#: ../../enterprise/meta/screens/screens.visualmap.php:169 -msgid "Builder" -msgstr "Compilador" - -#: ../../godmode/reporting/visual_console_builder.php:693 -#: ../../enterprise/meta/screens/screens.visualmap.php:208 -msgid "New visual console" -msgstr "Nueva consola visual" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:105 -#: ../../include/functions_visual_map_editor.php:55 -#: ../../include/functions_visual_map_editor.php:651 -msgid "Percentile Item" -msgstr "Item percentual" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:106 -#: ../../include/functions_visual_map.php:2742 -#: ../../include/functions_visual_map_editor.php:251 -#: ../../mobile/operation/home.php:78 -msgid "Module graph" -msgstr "Gráfico de módulo" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:107 -#: ../../include/functions_visual_map_editor.php:57 -msgid "Simple value" -msgstr "Valor simple" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:125 -msgid "Range between elements (px)" -msgstr "Rango entre elementos (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:132 -msgid "Size (px)" -msgstr "Tamaño (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:170 -#: ../../enterprise/extensions/vmware/vmware_view.php:1333 -msgid "Font" -msgstr "Fuente" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:178 -#: ../../godmode/setup/setup_visuals.php:344 -#: ../../include/functions_config.php:484 -msgid "Font size" -msgstr "Tamaño de la tipografía" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:196 -#: ../../include/functions_visual_map_editor.php:350 -msgid "Min value" -msgstr "Valor mínimo" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:197 -#: ../../godmode/reporting/visual_console_builder.wizard.php:210 -#: ../../include/functions_visual_map_editor.php:351 -#: ../../include/functions_visual_map_editor.php:393 -msgid "Max value" -msgstr "Valor max." - -#: ../../godmode/reporting/visual_console_builder.wizard.php:198 -#: ../../include/functions_visual_map_editor.php:352 -msgid "Avg value" -msgstr "Valor medio" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:204 -msgid "Width (px)" -msgstr "Ancho (px)" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:218 -#: ../../godmode/setup/setup_visuals.php:532 -msgid "Percentile" -msgstr "Percentil" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:223 -msgid "Bubble" -msgstr "Burbuja" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:230 -#: ../../include/functions_visual_map_editor.php:409 -#: ../../include/functions_visual_map_editor.php:428 -msgid "Value to show" -msgstr "Valor a mostrar" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:232 -msgid "Percent" -msgstr "Porcentaje" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:267 -msgid "One item per agent" -msgstr "Un elemento por agente" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:301 -#: ../../godmode/reporting/visual_console_builder.wizard.php:604 -msgid "Agent - Module" -msgstr "Agente-Modulo" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:310 -msgid "Enable link agent" -msgstr "Habilitar el link del agente" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:322 -msgid "Set Parent" -msgstr "Establecer padre" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:324 -msgid "Item created in the visualmap" -msgstr "Elemento creado en visualmap" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:325 -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:328 -msgid "Item in the map" -msgstr "Elemento en el mapa" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:331 -msgid "The parent relationships in Pandora will be drawn in the map." -msgstr "Las relaciones de jerarquía en Pandora serán dibujadas en el mapa" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:344 -#: ../../godmode/reporting/visual_console_builder.wizard.php:349 -msgid "Are you sure to add many elements\\nin visual map?" -msgstr "Está seguro de añadir tantos elementos en la consola visual ?" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:377 -#: ../../mobile/operation/agent.php:305 ../../mobile/operation/agents.php:381 -#: ../../mobile/operation/events.php:797 -#: ../../mobile/operation/module_graph.php:467 -#: ../../mobile/operation/modules.php:706 -#: ../../mobile/operation/tactical.php:215 -#: ../../mobile/operation/visualmap.php:118 -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:74 -#: ../../enterprise/mobile/operation/dashboard.php:118 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:149 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:152 -msgid "Loading..." -msgstr "Cargando…" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:525 -msgid "Please select any module or modules." -msgstr "Por favor, seleccione cualquier módulo o módulos" - -#: ../../godmode/servers/manage_recontask.php:43 -#: ../../godmode/servers/manage_recontask_form.php:186 -#: ../../include/functions_menu.php:484 -msgid "Manage recontask" -msgstr "Gestionar tarea recon" - -#: ../../godmode/servers/manage_recontask.php:55 -msgid "Successfully deleted recon task" -msgstr "Tarea recon borrada correctamente" - -#: ../../godmode/servers/manage_recontask.php:58 -msgid "Error deleting recon task" -msgstr "Error al borrar tarea recon" - -#: ../../godmode/servers/manage_recontask.php:68 -#: ../../godmode/servers/manage_recontask.php:182 -msgid "Successfully updated recon task" -msgstr "Tarea de reconocimiento actualizada correctamente" - -#: ../../godmode/servers/manage_recontask.php:75 -#: ../../godmode/servers/manage_recontask.php:185 -msgid "Error updating recon task" -msgstr "Error al actualizar la tarea recon" - -#: ../../godmode/servers/manage_recontask.php:166 -#: ../../godmode/servers/manage_recontask.php:239 -msgid "Wrong format in Subnet field" -msgstr "Formato incorrecto en el campo subnet" - -#: ../../godmode/servers/manage_recontask.php:235 -msgid "Recon-task name already exists and incorrect format in Subnet field" -msgstr "" -"Nombre de tarea recon ya existe y formato incorrecto en el campo de subred" - -#: ../../godmode/servers/manage_recontask.php:243 -#: ../../godmode/servers/manage_recontask.php:252 -msgid "Recon-task name already exists" -msgstr "El nombre de la tarea de recon ya existe" - -#: ../../godmode/servers/manage_recontask.php:266 -msgid "Successfully created recon task" -msgstr "Tarea de reconocimiento creada correctamente" - -#: ../../godmode/servers/manage_recontask.php:269 -msgid "Error creating recon task" -msgstr "Error al crear la tarea de reconocimiento" - -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:248 -#: ../../operation/servers/recon_view.php:95 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:136 -#: ../../enterprise/extensions/ipam/ipam_editor.php:69 -#: ../../enterprise/extensions/ipam/ipam_list.php:148 -msgid "Network" -msgstr "Red" - -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:306 -msgid "Ports" -msgstr "Puertos" - -#: ../../godmode/servers/manage_recontask.php:319 -#: ../../operation/servers/recon_view.php:145 -msgid "Network recon task" -msgstr "Tarea de reconocimiento de red" - -#: ../../godmode/servers/manage_recontask.php:351 -#: ../../godmode/servers/manage_recontask_form.php:262 -#: ../../enterprise/extensions/ipam/ipam_list.php:217 -#: ../../enterprise/extensions/ipam/ipam_network.php:127 -#: ../../enterprise/godmode/services/services.service.php:255 -#: ../../enterprise/operation/services/services.list.php:189 -#: ../../enterprise/operation/services/services.table_services.php:158 -msgid "Manual" -msgstr "Manual" - -#: ../../godmode/servers/manage_recontask.php:392 -msgid "There are no recon task configured" -msgstr "No hay ninguna tarea de reconocimiento configurada" - -#: ../../godmode/servers/manage_recontask_form.php:193 -msgid "" -"By default, in Windows, Pandora FMS only support Standard network sweep, not " -"custom scripts" -msgstr "" -"Por defecto, en Windows, Pandora FMS sólo soporta Standard Network Sweep, no " -"scripts personalizados" - -#: ../../godmode/servers/manage_recontask_form.php:224 -#: ../../operation/servers/recon_view.php:89 -msgid "Task name" -msgstr "Nombre de la tarea" - -#: ../../godmode/servers/manage_recontask_form.php:230 -msgid "" -"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, de otra forma la tarea " -"Recon nunca se ejecutará" - -#: ../../godmode/servers/manage_recontask_form.php:238 -msgid "Network sweep" -msgstr "Barrido de red" - -#: ../../godmode/servers/manage_recontask_form.php:240 -#: ../../enterprise/extensions/cron/functions.php:69 -#: ../../enterprise/extensions/cron/main.php:255 -msgid "Custom script" -msgstr "Script personalizado" - -#: ../../godmode/servers/manage_recontask_form.php:249 -msgid "" -"You can specify several networks, separated by commas, for example: " -"192.168.50.0/24,192.168.60.0/24" -msgstr "" -"Puede especificar varias redes, separadas por coma, por ejemplo: " -"192.168.50.0/24,192.168.60.0/24" - -#: ../../godmode/servers/manage_recontask_form.php:260 -msgid "Manual interval means that it will be executed only On-demand" -msgstr "Intervalo manual significa que será ejecutado solo bajo demanda" - -#: ../../godmode/servers/manage_recontask_form.php:262 -#: ../../include/functions_reporting_html.php:1602 -#: ../../enterprise/include/functions_reporting_pdf.php:733 -msgid "Defined" -msgstr "Definido" - -#: ../../godmode/servers/manage_recontask_form.php:267 -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/servers/manage_recontask_form.php:272 -msgid "Module template" -msgstr "Plantilla de módulos" - -#: ../../godmode/servers/manage_recontask_form.php:309 -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 "" -"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 deteccion en " -"funcion de puertos TCP, dejarlo en blanco." - -#: ../../godmode/servers/manage_recontask_form.php:320 -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 por el " -"contrario, no se crea" - -#: ../../godmode/servers/manage_recontask_form.php:323 -msgid "SNMP enabled" -msgstr "SNMP activado" - -#: ../../godmode/servers/manage_recontask_form.php:327 -msgid "SNMP Default community" -msgstr "Comunidad SNMP por defecto" - -#: ../../godmode/servers/manage_recontask_form.php:328 -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/servers/manage_recontask_form.php:334 -msgid "Explanation" -msgstr "Explicacion" - -#: ../../godmode/servers/manage_recontask_form.php:375 -msgid "OS detection" -msgstr "Detección de SO" - -#: ../../godmode/servers/manage_recontask_form.php:379 -msgid "Name resolution" -msgstr "Resolución de nombres" - -#: ../../godmode/servers/manage_recontask_form.php:383 -msgid "Parent detection" -msgstr "Detección de padres" - -#: ../../godmode/servers/manage_recontask_form.php:387 -msgid "Parent recursion" -msgstr "Recursión del padre" - -#: ../../godmode/servers/manage_recontask_form.php:388 -msgid "" -"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)" - -#: ../../godmode/servers/manage_recontask_form.php:391 -msgid "Vlan enabled" -msgstr "Vlan activado" - -#: ../../godmode/servers/modificar_server.php:35 -msgid "Update Server" -msgstr "Actualizar servidor" - -#: ../../godmode/servers/modificar_server.php:61 -msgid "Remote Configuration" -msgstr "Configuración remota" - -#: ../../godmode/servers/modificar_server.php:66 -msgid "Pandora servers" -msgstr "Servidores" - -#: ../../godmode/servers/modificar_server.php:73 -#: ../../godmode/servers/modificar_server.php:85 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1164 -msgid "Unsuccessfull action" -msgstr "No se pudo completar la acción" - -#: ../../godmode/servers/modificar_server.php:76 -#: ../../godmode/servers/modificar_server.php:88 -#: ../../enterprise/godmode/alerts/alert_events_list.php:328 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:357 -msgid "Successfully action" -msgstr "Acción procesada satisfactoriamente" - -#: ../../godmode/servers/modificar_server.php:98 -#: ../../enterprise/meta/advanced/servers.php:39 -msgid "Server deleted successfully" -msgstr "Servidor eliminado correctamente" - -#: ../../godmode/servers/modificar_server.php:101 -#: ../../enterprise/meta/advanced/servers.php:42 -msgid "There was a problem deleting the server" -msgstr "Hubo un problema al eliminar el servidor" - -#: ../../godmode/servers/modificar_server.php:112 -msgid "Server updated successfully" -msgstr "Servidor actualizado correctamente" - -#: ../../godmode/servers/modificar_server.php:115 -msgid "There was a problem updating the server" -msgstr "Hubo un problema al actualizar el servidor" - -#: ../../godmode/servers/plugin.php:53 -msgid "Network Components" -msgstr "Componentes de red" - -#: ../../godmode/servers/plugin.php:151 -#: ../../include/functions_filemanager.php:759 -#: ../../enterprise/godmode/agentes/collections.editor.php:111 -#: ../../enterprise/godmode/agentes/collections.editor.php:172 -msgid "Edit file" -msgstr "Editar archivo" - -#: ../../godmode/servers/plugin.php:170 -#: ../../enterprise/godmode/agentes/collections.editor.php:193 -msgid "Compatibility mode" -msgstr "Modo de compatibilidad" - -#: ../../godmode/servers/plugin.php:224 -#: ../../godmode/setup/file_manager.php:63 -#: ../../include/functions_filemanager.php:561 -#, php-format -msgid "Index of %s" -msgstr "Índice de %s" - -#: ../../godmode/servers/plugin.php:266 -msgid "Plugin creation" -msgstr "Creación de complementos" - -#: ../../godmode/servers/plugin.php:269 -msgid "Plugin update" -msgstr "Actualización de complemento" - -#: ../../godmode/servers/plugin.php:299 -msgid "Plugin type" -msgstr "Tipo de complemento" - -#: ../../godmode/servers/plugin.php:300 ../../godmode/servers/plugin.php:759 -msgid "Standard" -msgstr "Estándar" - -#: ../../godmode/servers/plugin.php:301 ../../godmode/servers/plugin.php:761 -msgid "Nagios" -msgstr "Nagios" - -#: ../../godmode/servers/plugin.php:306 -msgid "Max. timeout" -msgstr "Máx. tiempo de expiración" - -#: ../../godmode/servers/plugin.php:306 -msgid "" -"This value only will be applied if is minor than the server general " -"configuration plugin timeout" -msgstr "" -"Este valor sólo se aplicará si es menor que el timeout del plugin de la " -"configuración general del servidor" - -#: ../../godmode/servers/plugin.php:306 -msgid "" -"If you set a 0 seconds timeout, the server plugin timeout will be used" -msgstr "" -"Si fija en 0 segundos el timeout, se utilizará el timeout del plugin del " -"servidor" - -#: ../../godmode/servers/plugin.php:362 -msgid "Plugin command" -msgstr "Comando del complemento" - -#: ../../godmode/servers/plugin.php:373 -msgid "Plug-in parameters" -msgstr "Parámetros del plugin" - -#: ../../godmode/servers/plugin.php:451 -#: ../../godmode/servers/recon_script.php:161 -#: ../../enterprise/godmode/modules/configure_local_component.php:446 -msgid "Default value" -msgstr "Valor por defecto" - -#: ../../godmode/servers/plugin.php:464 -#: ../../godmode/servers/recon_script.php:174 -msgid "Hide value" -msgstr "Ocultar valor" - -#: ../../godmode/servers/plugin.php:464 -#: ../../godmode/servers/recon_script.php:174 -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:473 -#: ../../godmode/servers/recon_script.php:183 -#: ../../include/functions_ui.php:1082 -#: ../../enterprise/godmode/modules/configure_local_component.php:452 -#: ../../enterprise/meta/general/login_page.php:50 -#: ../../enterprise/meta/include/process_reset_pass.php:48 -#: ../../enterprise/meta/include/reset_pass.php:48 -msgid "Help" -msgstr "Ayuda" - -#: ../../godmode/servers/plugin.php:491 -#: ../../godmode/servers/recon_script.php:199 -#: ../../enterprise/godmode/modules/configure_local_component.php:462 -msgid "Add macro" -msgstr "Añadir macro" - -#: ../../godmode/servers/plugin.php:506 -#: ../../godmode/servers/recon_script.php:206 -#: ../../enterprise/godmode/modules/configure_local_component.php:470 -msgid "Delete macro" -msgstr "Eliminar macro" - -#: ../../godmode/servers/plugin.php:524 ../../godmode/servers/plugin.php:531 -msgid "Parameters macros" -msgstr "Macros de los parámetros" - -#: ../../godmode/servers/plugin.php:564 -msgid "Plugins registered in Pandora FMS" -msgstr "Plugins registrados en Pandora FMS" - -#: ../../godmode/servers/plugin.php:569 -msgid "You need to create your own plugins with Windows compatibility" -msgstr "Necesitas crear tus propios plugins compatibles con Windows" - -#: ../../godmode/servers/plugin.php:629 -msgid "Problem updating plugin" -msgstr "Problema actualizando plugin" - -#: ../../godmode/servers/plugin.php:632 -msgid "Plugin updated successfully" -msgstr "Plugin actualizado correctamente" - -#: ../../godmode/servers/plugin.php:687 -msgid "Problem creating plugin" -msgstr "Problema al crear plugin" - -#: ../../godmode/servers/plugin.php:690 -msgid "Plugin created successfully" -msgstr "Plugin creado correctamente" - -#: ../../godmode/servers/plugin.php:700 -msgid "Problem deleting plugin" -msgstr "Error al borrar plugin" - -#: ../../godmode/servers/plugin.php:703 -msgid "Plugin deleted successfully" -msgstr "Plugin borrado correctamente" - -#: ../../godmode/servers/plugin.php:782 -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:789 -msgid "There are no plugins in the system" -msgstr "No hay plugins en el sistema" - -#: ../../godmode/servers/plugin.php:801 -#, 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:909 ../../godmode/servers/plugin.php:925 -msgid "Some modules or components are using the plugin" -msgstr "Algunos módulos o componentes están usando el plugin" - -#: ../../godmode/servers/plugin.php:910 -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:912 -msgid "Are you sure you want to perform this action?" -msgstr "¿Está seguro de querer realizar esta acción?" - -#: ../../godmode/servers/plugin.php:926 -msgid "Are you sure you want to unlock this item?" -msgstr "¿Está seguro de querer desbloquear este elemento?" - -#: ../../godmode/servers/plugin.php:946 -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:952 -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/recon_script.php:73 -msgid "Recon script creation" -msgstr "Creación del Recon script" - -#: ../../godmode/servers/recon_script.php:75 -msgid "Recon script update" -msgstr "Actualizar el Recon Script" - -#: ../../godmode/servers/recon_script.php:101 -msgid "Script fullpath" -msgstr "Ruta completa del script" - -#: ../../godmode/servers/recon_script.php:228 -msgid "Recon scripts registered in Pandora FMS" -msgstr "Recon scripts registrados en Pandora FMS" - -#: ../../godmode/servers/recon_script.php:271 -msgid "Problem updating" -msgstr "Problema actualizando" - -#: ../../godmode/servers/recon_script.php:317 -msgid "Problem creating" -msgstr "Problema creando" - -#: ../../godmode/servers/recon_script.php:331 -msgid "Problem deleting reconscript" -msgstr "Problemas al borrar el Recon script" - -#: ../../godmode/servers/recon_script.php:334 -msgid "reconscript deleted successfully" -msgstr "El Recon Script ha sido eliminado con exito" - -#: ../../godmode/servers/recon_script.php:378 -msgid "There are no recon scripts in the system" -msgstr "No existen Recon scripts en el sistema" - -#: ../../godmode/servers/servers.build_table.php:38 -#: ../../enterprise/meta/advanced/servers.build_table.php:33 -msgid "There are no servers configured into the database" -msgstr "No hay ningún servidor configurado en la base de datos" - -#: ../../godmode/servers/servers.build_table.php:69 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 -msgid "Lag" -msgstr "Retraso" - -#: ../../godmode/servers/servers.build_table.php:69 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 -msgid "Avg. Delay(sec)/Modules delayed" -msgstr "Media borra (sec)/ Modulos retrasado" - -#: ../../godmode/servers/servers.build_table.php:70 -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -msgid "T/Q" -msgstr "H/C" - -#: ../../godmode/servers/servers.build_table.php:70 -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -msgid "Threads / Queued modules currently" -msgstr "Hilos / Cola actual de módulos" - -#: ../../godmode/servers/servers.build_table.php:97 -#: ../../enterprise/meta/advanced/servers.build_table.php:92 -msgid "This is a master server" -msgstr "Este es un servidor maestro" - -#: ../../godmode/servers/servers.build_table.php:110 -#: ../../godmode/servers/servers.build_table.php:115 -#: ../../enterprise/meta/advanced/servers.build_table.php:104 -#: ../../enterprise/meta/advanced/servers.build_table.php:109 -msgid "of" -msgstr "de" - -#: ../../godmode/servers/servers.build_table.php:147 -msgid "Reset module status and fired alert counts" -msgstr "" -"Reiniciar estado de los módulos y el conteo de las alertas disparadas" - -#: ../../godmode/servers/servers.build_table.php:153 -msgid "Claim back SNMP modules" -msgstr "Re-ejecutar modulos SNMP" - -#: ../../godmode/servers/servers.build_table.php:173 -#: ../../enterprise/meta/advanced/servers.build_table.php:133 -msgid "" -"Modules run by this server will stop working. Do you want to continue?" -msgstr "" -"Los módulos ejecutados por este servidor pueden dejar de funcionar. ¿ Quiere " -"continuar ?" - -#: ../../godmode/servers/servers.build_table.php:194 -#: ../../enterprise/meta/advanced/servers.build_table.php:154 -msgid "Tactical server information" -msgstr "Vista táctica del servidor" - -#: ../../godmode/setup/gis.php:62 -msgid "Map connection name" -msgstr "Nombre de la conexión" - -#: ../../godmode/setup/gis.php:83 -msgid "Do you wan delete this connection?" -msgstr "Desea borrar esta conexión?" - -#: ../../godmode/setup/gis_step_2.php:39 -msgid "Create new map connection" -msgstr "Crear nueva conexión de mapas" - -#: ../../godmode/setup/gis_step_2.php:58 -msgid "Edit map connection" -msgstr "Editar la conexión de mapas" - -#: ../../godmode/setup/gis_step_2.php:150 -msgid "Connection Name" -msgstr "Nombre de conexión" - -#: ../../godmode/setup/gis_step_2.php:150 -msgid "Descriptive name for the connection" -msgstr "Descripción para la conexión" - -#: ../../godmode/setup/gis_step_2.php:153 -msgid "Group that owns the connection" -msgstr "Grupo asignado a la conexión" - -#: ../../godmode/setup/gis_step_2.php:156 -msgid "Number of zoom levels" -msgstr "Número de niveles de Zoom" - -#: ../../godmode/setup/gis_step_2.php:160 -msgid "Default zoom level" -msgstr "Nivel de zoom por defecto" - -#: ../../godmode/setup/gis_step_2.php:160 -msgid "Zoom level used when the map is opened" -msgstr "Nivel de zoom por defecto cuando se abre el mapa" - -#: ../../godmode/setup/gis_step_2.php:163 -msgid "Basic configuration" -msgstr "Configuración básica" - -#: ../../godmode/setup/gis_step_2.php:168 -msgid "Open Street Maps" -msgstr "Open Street Maps" - -#: ../../godmode/setup/gis_step_2.php:169 -msgid "Google Maps" -msgstr "Google Maps" - -#: ../../godmode/setup/gis_step_2.php:170 -msgid "Static Image" -msgstr "Imagen estática" - -#: ../../godmode/setup/gis_step_2.php:172 -msgid "Please select the connection type" -msgstr "Tipo de conexión" - -#: ../../godmode/setup/gis_step_2.php:174 -msgid "Map connection type" -msgstr "Tipo de conexión de mapa" - -#: ../../godmode/setup/gis_step_2.php:210 -msgid "Tile Server URL" -msgstr "URL del servidor de «tiles»" - -#: ../../godmode/setup/gis_step_2.php:216 -msgid "Google Physical" -msgstr "Google Physical" - -#: ../../godmode/setup/gis_step_2.php:217 -msgid "Google Hybrid" -msgstr "Google Hybrid" - -#: ../../godmode/setup/gis_step_2.php:218 -msgid "Google Satelite" -msgstr "Google Satelite" - -#: ../../godmode/setup/gis_step_2.php:222 -msgid "Google Map Type" -msgstr "Tipo de mapa de Google" - -#: ../../godmode/setup/gis_step_2.php:226 -msgid "Google Maps Key" -msgstr "Key de google maps" - -#: ../../godmode/setup/gis_step_2.php:235 -msgid "Image URL" -msgstr "URL de Imagen" - -#: ../../godmode/setup/gis_step_2.php:239 -msgid "Corners of the area of the image" -msgstr "Esquinas del área de la imagen" - -#: ../../godmode/setup/gis_step_2.php:242 -msgid "Left" -msgstr "Izquierda" - -#: ../../godmode/setup/gis_step_2.php:244 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:42 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:42 -msgid "Bottom" -msgstr "Inferior" - -#: ../../godmode/setup/gis_step_2.php:248 -msgid "Right" -msgstr "Derecha" - -#: ../../godmode/setup/gis_step_2.php:250 -msgid "Top" -msgstr "Superior" - -#: ../../godmode/setup/gis_step_2.php:254 -msgid "Image Size" -msgstr "Tamaño de imagen" - -#: ../../godmode/setup/gis_step_2.php:279 -msgid "" -"Preview to select the center of the map and the default position of an agent " -"without gis data" -msgstr "" -"Previsualización 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:280 -msgid "Load preview map" -msgstr "Previsualizar mapa" - -#: ../../godmode/setup/gis_step_2.php:289 -msgid "Map Center" -msgstr "Centro del mapa" - -#: ../../godmode/setup/gis_step_2.php:289 -msgid "Position to center the map when the map is opened" -msgstr "Posición para centrar el mapa cuando este es abierto" - -#: ../../godmode/setup/gis_step_2.php:290 -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:292 -msgid "Change in the map" -msgstr "Cambiar en el mapa" - -#: ../../godmode/setup/gis_step_2.php:292 -msgid "This selects what to change by clicking on the map" -msgstr "Seleccionar qué cambiar pinchando en el mapa" - -#: ../../godmode/setup/gis_step_2.php:296 -#: ../../operation/agentes/gis_view.php:179 -msgid "Latitude" -msgstr "Latitud" - -#: ../../godmode/setup/gis_step_2.php:300 -#: ../../operation/agentes/gis_view.php:178 -msgid "Longitude" -msgstr "Longitud" - -#: ../../godmode/setup/gis_step_2.php:304 -#: ../../operation/agentes/gis_view.php:180 -msgid "Altitude" -msgstr "Altitud" - -#: ../../godmode/setup/gis_step_2.php:353 -#: ../../godmode/setup/gis_step_2.php:446 -msgid "Center" -msgstr "Centro" - -#: ../../godmode/setup/gis_step_2.php:413 -msgid "Refresh preview map" -msgstr "Refrescar previsualización" - -#: ../../godmode/setup/license.php:27 -msgid "License management" -msgstr "Gestión de licencias" - -#: ../../godmode/setup/license.php:37 -msgid "License updated" -msgstr "Licencia actualizada" - -#: ../../godmode/setup/license.php:64 -#: ../../enterprise/meta/advanced/license_meta.php:79 -msgid "Customer key" -msgstr "Clave del cliente" - -#: ../../godmode/setup/license.php:67 -#: ../../enterprise/meta/advanced/license_meta.php:82 -msgid "Expires" -msgstr "Expira" - -#: ../../godmode/setup/license.php:70 -#: ../../enterprise/meta/advanced/license_meta.php:85 -msgid "Platform Limit" -msgstr "Límite de la plataforma" - -#: ../../godmode/setup/license.php:71 ../../godmode/setup/license.php:74 -#: ../../godmode/setup/license.php:77 ../../godmode/setup/license.php:80 -#: ../../enterprise/meta/advanced/license_meta.php:86 -#: ../../enterprise/meta/advanced/license_meta.php:89 -#: ../../enterprise/meta/advanced/license_meta.php:92 -#: ../../enterprise/meta/advanced/license_meta.php:95 -msgid "agents" -msgstr "Agentes" - -#: ../../godmode/setup/license.php:71 ../../godmode/setup/license.php:74 -#: ../../godmode/setup/license.php:77 ../../godmode/setup/license.php:80 -#: ../../operation/tree.php:103 -#: ../../enterprise/meta/advanced/license_meta.php:86 -#: ../../enterprise/meta/advanced/license_meta.php:89 -#: ../../enterprise/meta/advanced/license_meta.php:92 -#: ../../enterprise/meta/advanced/license_meta.php:95 -msgid "modules" -msgstr "Módulos" - -#: ../../godmode/setup/license.php:73 -#: ../../enterprise/meta/advanced/license_meta.php:88 -msgid "Current Platform Count" -msgstr "Cómputo de la plataforma actual" - -#: ../../godmode/setup/license.php:76 -#: ../../enterprise/meta/advanced/license_meta.php:91 -msgid "Current Platform Count (enabled: items)" -msgstr "Cuenta de la plataforma actual (activado: elementos)" - -#: ../../godmode/setup/license.php:79 -#: ../../enterprise/meta/advanced/license_meta.php:94 -msgid "Current Platform Count (disabled: items)" -msgstr "Cuenta de la plataforma actual (desactivado: elementos)" - -#: ../../godmode/setup/license.php:82 -#: ../../enterprise/meta/advanced/license_meta.php:97 -msgid "License Mode" -msgstr "Modalidad de licencia" - -#: ../../godmode/setup/license.php:85 -#: ../../enterprise/meta/advanced/license_meta.php:100 -msgid "NMS" -msgstr "NMS" - -#: ../../godmode/setup/license.php:86 ../../godmode/setup/license.php:89 -#: ../../enterprise/meta/advanced/license_meta.php:101 -#: ../../enterprise/meta/advanced/license_meta.php:104 -msgid "enabled" -msgstr "Habilitado" - -#: ../../godmode/setup/license.php:86 ../../godmode/setup/license.php:89 -#: ../../enterprise/meta/advanced/license_meta.php:101 -#: ../../enterprise/meta/advanced/license_meta.php:104 -msgid "disabled" -msgstr "desactivado" - -#: ../../godmode/setup/license.php:88 -#: ../../enterprise/meta/advanced/license_meta.php:103 -msgid "Satellite" -msgstr "Satélite" - -#: ../../godmode/setup/license.php:91 -#: ../../enterprise/meta/advanced/license_meta.php:106 -msgid "Licensed to" -msgstr "Con licencia para" - -#: ../../godmode/setup/license.php:98 ../../mobile/operation/events.php:528 -#: ../../operation/agentes/alerts_status.php:436 -#: ../../operation/agentes/alerts_status.php:477 -#: ../../operation/agentes/alerts_status.php:511 -#: ../../operation/agentes/alerts_status.php:545 -#: ../../operation/agentes/alerts_status.php:590 -#: ../../operation/snmpconsole/snmp_view.php:745 -#: ../../operation/snmpconsole/snmp_view.php:902 -#: ../../operation/snmpconsole/snmp_view.php:930 -#: ../../enterprise/extensions/vmware/main.php:196 -#: ../../enterprise/extensions/vmware/main.php:203 -#: ../../enterprise/godmode/alerts/alert_events_list.php:426 -#: ../../enterprise/godmode/alerts/alert_events_list.php:676 -#: ../../enterprise/load_enterprise.php:1 -msgid "Validate" -msgstr "Validar" - -#: ../../godmode/setup/license.php:100 ../../godmode/setup/license.php:104 -#: ../../enterprise/meta/advanced/license_meta.php:115 -#: ../../enterprise/meta/advanced/license_meta.php:119 -msgid "Request new license" -msgstr "Solicitar nueva licencia" - -#: ../../godmode/setup/license.php:108 -#: ../../enterprise/meta/advanced/license_meta.php:123 -msgid "To get your Pandora FMS Enterprise License:" -msgstr "Para obtener su Licencia de Pandora FMS Enteprise" - -#: ../../godmode/setup/license.php:111 -#: ../../enterprise/meta/advanced/license_meta.php:126 -#, php-format -msgid "Go to %s" -msgstr "Ir a %s" - -#: ../../godmode/setup/license.php:114 -#: ../../enterprise/meta/advanced/license_meta.php:129 -msgid "Enter the auth key and the following request key:" -msgstr "Introduce la auth key y la siguiente request key:" - -#: ../../godmode/setup/license.php:120 -#: ../../enterprise/meta/advanced/license_meta.php:135 -msgid "Enter your name (or a company name) and a contact email address." -msgstr "Introduzca su nombre (o empresa) y un email de contacto." - -#: ../../godmode/setup/license.php:123 -#: ../../enterprise/meta/advanced/license_meta.php:138 -msgid "Click on Generate." -msgstr "Haga click en Generar" - -#: ../../godmode/setup/license.php:126 -#: ../../enterprise/meta/advanced/license_meta.php:141 -msgid "" -"Click here, enter " -"the generated license key and click on Validate." -msgstr "" -"Haga click aquí, e " -"introduzca la licence key generada y pulse en Validar." - -#: ../../godmode/setup/links.php:27 -msgid "Link management" -msgstr "Gestionar enlaces" - -#: ../../godmode/setup/links.php:39 -msgid "There was a problem creating link" -msgstr "Ha habido un problema al crear el enlace" - -#: ../../godmode/setup/links.php:56 -msgid "There was a problem modifying link" -msgstr "Ha habido un problema al modificar el enlace" - -#: ../../godmode/setup/links.php:67 -msgid "There was a problem deleting link" -msgstr "Ha habido un problema al borrar el enlace" - -#: ../../godmode/setup/links.php:86 ../../godmode/setup/news.php:130 -msgid "Name error" -msgstr "Error de nombre" - -#: ../../godmode/setup/links.php:106 ../../godmode/setup/links.php:136 -msgid "Link name" -msgstr "Nombre enlace" - -#: ../../godmode/setup/links.php:109 -#: ../../enterprise/godmode/policies/policy_linking.php:137 -msgid "Link" -msgstr "Enlace" - -#: ../../godmode/setup/links.php:132 -msgid "There isn't links" -msgstr "No existen enlaces" - -#: ../../godmode/setup/news.php:28 -msgid "Site news management" -msgstr "Gestionar noticias" - -#: ../../godmode/setup/news.php:161 ../../godmode/setup/news.php:220 -#: ../../godmode/update_manager/update_manager.messages.php:136 -#: ../../operation/messages/message_edit.php:85 -#: ../../operation/messages/message_edit.php:207 -#: ../../operation/messages/message_list.php:126 -msgid "Subject" -msgstr "Asunto" - -#: ../../godmode/setup/news.php:167 -msgid "Modal screen" -msgstr "Pantalla modal" - -#: ../../godmode/setup/news.php:170 -msgid "Expire" -msgstr "Caduca" - -#: ../../godmode/setup/news.php:173 ../../godmode/setup/news.php:224 -msgid "Expiration" -msgstr "Vencimiento" - -#: ../../godmode/setup/news.php:215 -msgid "There are no defined news" -msgstr "No hay noticias definidas" - -#: ../../godmode/setup/news.php:222 -#: ../../operation/agentes/estado_generalagente.php:392 -#: ../../operation/incidents/incident_detail.php:419 -msgid "Author" -msgstr "Autor" - -#: ../../godmode/setup/news.php:242 -msgid "Modal" -msgstr "Modal" - -#: ../../godmode/setup/news.php:245 -msgid "Board" -msgstr "Tablero" - -#: ../../godmode/setup/news.php:256 -msgid "Expired" -msgstr "Caducado" - -#: ../../godmode/setup/os.list.php:75 -msgid "There are no defined operating systems" -msgstr "No hay sistemas operativos definidos" - -#: ../../godmode/setup/os.list.php:81 -msgid "Create OS" -msgstr "Crear SO" - -#: ../../godmode/setup/os.php:73 -msgid "Fail creating OS" -msgstr "Error al crear SO" - -#: ../../godmode/setup/os.php:80 -msgid "Success creating OS" -msgstr "Éxito al crear SO" - -#: ../../godmode/setup/os.php:100 -msgid "Success updatng OS" -msgstr "Éxito al actualizar SO" - -#: ../../godmode/setup/os.php:100 -msgid "Error updating OS" -msgstr "Error al actualizar SO" - -#: ../../godmode/setup/os.php:119 -msgid "There are agents with this OS." -msgstr "Existen agentes con este Sistema Operativo." - -#: ../../godmode/setup/os.php:124 -msgid "Success deleting" -msgstr "Éxito al borrar" - -#: ../../godmode/setup/os.php:124 -msgid "Error deleting" -msgstr "Error al borrar" - -#: ../../godmode/setup/os.php:133 -msgid "List OS" -msgstr "Listar SS. OO." - -#: ../../godmode/setup/os.php:137 -msgid "Builder OS" -msgstr "Creador de registros de sistema operativo." - -#: ../../godmode/setup/performance.php:49 -#: ../../include/functions_config.php:386 -#: ../../enterprise/meta/advanced/metasetup.performance.php:78 -#: ../../enterprise/meta/include/functions_meta.php:1271 -msgid "Max. days before delete events" -msgstr "Nº max. de días antes de borrar eventos" - -#: ../../godmode/setup/performance.php:49 -msgid "" -"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 purgado de datos es más frecuente que el borrado de " -"eventos, pueden aparecer anomalías en las gráficas de módulo" - -#: ../../godmode/setup/performance.php:52 -#: ../../include/functions_config.php:388 -msgid "Max. days before delete traps" -msgstr "Nº max. de días antes de borrar traps SNMP" - -#: ../../godmode/setup/performance.php:55 -#: ../../include/functions_config.php:392 -#: ../../enterprise/meta/advanced/metasetup.performance.php:87 -#: ../../enterprise/meta/include/functions_meta.php:1291 -msgid "Max. days before delete audit events" -msgstr "Nº max. de días antes de borrar eventos de auditoría interna" - -#: ../../godmode/setup/performance.php:58 -#: ../../include/functions_config.php:390 -msgid "Max. days before delete string data" -msgstr "Nº max. de días antes de borrar datos de tipo texto" - -#: ../../godmode/setup/performance.php:61 -#: ../../include/functions_config.php:394 -msgid "Max. days before delete GIS data" -msgstr "Nº max. de días antes de borrar información GIS" - -#: ../../godmode/setup/performance.php:64 -#: ../../include/functions_config.php:396 -msgid "Max. days before purge" -msgstr "Máx. días antes de eliminar datos" - -#: ../../godmode/setup/performance.php:64 -msgid "" -"Configure a purge period more frequent than a compact data period has no " -"sense" -msgstr "" -"Configurar un periodo de purgado con más frecuencia que el periodo de " -"compactación de datos no tiene sentido" - -#: ../../godmode/setup/performance.php:67 -#: ../../include/functions_config.php:400 -msgid "Max. days before compact data" -msgstr "Máx. días antes de comprimir datos" - -#: ../../godmode/setup/performance.php:70 -#: ../../include/functions_config.php:398 -msgid "Max. days before delete unknown modules" -msgstr "Máximo de días antes de borrar módulos desconocidos" - -#: ../../godmode/setup/performance.php:73 -msgid "Max. days before delete autodisabled agents" -msgstr "Días máximos antes de la eliminación de los agentes deshabilitados" - -#: ../../godmode/setup/performance.php:76 -#: ../../include/functions_config.php:424 -msgid "Retention period of past special days" -msgstr "Período de retención de días especiales pasados" - -#: ../../godmode/setup/performance.php:76 -msgid "This number is days to keep past special days. 0 means never remove." -msgstr "" -"Este número son los días para mantener los días especiales pasados. 0 " -"significa que no se borren nunca." - -#: ../../godmode/setup/performance.php:79 -#: ../../include/functions_config.php:426 -msgid "Max. macro data fields" -msgstr "Campo de macro para el máximo" - -#: ../../godmode/setup/performance.php:79 -msgid "Number of macro fields in alerts and templates between 1 and 15" -msgstr "" -"Número de campos de macro en alertas y plantillas, debe ser entre 1 y 15" - -#: ../../godmode/setup/performance.php:83 -#: ../../include/functions_config.php:429 -msgid "Max. days before delete inventory data" -msgstr "Días máximos antes del borrado de datos de inventario" - -#: ../../godmode/setup/performance.php:96 -msgid "Item limit for realtime reports" -msgstr "Límite del elemento para informes en tiempo real" - -#: ../../godmode/setup/performance.php:96 -msgid "" -"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 des aceleración en la consola y " -"una penalización de rendimiento en el sistema." - -#: ../../godmode/setup/performance.php:100 -#: ../../include/functions_config.php:406 -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:100 -msgid "Data will be compacted in intervals of the specified length." -msgstr "Los datos se compactarán en intervalos de la longitud especificada." - -#: ../../godmode/setup/performance.php:106 ../../include/ajax/module.php:136 -#: ../../include/functions_netflow.php:1055 +"Algunos de sus ficheros puede que no se hayan recuperado correctamente." + +#: ../../include/ajax/update_manager.ajax.php:180 +#: ../../include/ajax/update_manager.ajax.php:197 +#: ../../include/functions_update_manager.php:136 +#: ../../include/functions_update_manager.php:152 +msgid "Some of your old files might not be recovered." +msgstr "Algunos de sus ficheros antiguos no se han podido recuperar." + +#: ../../include/ajax/update_manager.ajax.php:218 +#: ../../include/functions_update_manager.php:173 +msgid "An error ocurred while reading a file." +msgstr "Se produjo un error al leer un fichero" + +#: ../../include/ajax/update_manager.ajax.php:225 +#: ../../include/functions_update_manager.php:180 +msgid "The package does not exist" +msgstr "El paquete no existe." + +#: ../../include/ajax/update_manager.ajax.php:239 +msgid "Package not accepted" +msgstr "Paquete no aceptado" + +#: ../../include/ajax/update_manager.ajax.php:411 +msgid "Fail to update to the last package." +msgstr "Fallo al actualizar al ultimo paquete" + +#: ../../include/ajax/update_manager.ajax.php:419 +msgid "Starting to update to the last package." +msgstr "Comenzando la actualización al último paquete" + +#: ../../include/ajax/update_manager.ajax.php:463 +msgid "Package not accepted." +msgstr "Paquete no aceptado" + +#: ../../include/ajax/update_manager.ajax.php:497 +msgid "progress" +msgstr "Progreso" + +#: ../../include/ajax/update_manager.ajax.php:525 +#: ../../include/functions_update_manager.php:189 +msgid "The package is installed." +msgstr "El paquete está instalado" + +#: ../../include/ajax/visual_console_builder.ajax.php:180 +#: ../../include/functions_graph.php:5207 +msgid "No data to show" +msgstr "No hay datos que mostrar" + +#: ../../include/ajax/alert_list.ajax.php:80 +#: ../../godmode/alerts/alert_list.php:230 +#: ../../godmode/massive/massive_enable_disable_alerts.php:78 +#: ../../godmode/users/user_list.php:208 +#: ../../godmode/agentes/configurar_agente.php:1571 +#: ../../godmode/agentes/modificar_agente.php:116 +msgid "Successfully enabled" +msgstr "Activado correctamente" + +#: ../../include/ajax/alert_list.ajax.php:82 +#: ../../godmode/alerts/alert_list.php:230 +#: ../../godmode/massive/massive_enable_disable_alerts.php:78 +#: ../../godmode/agentes/configurar_agente.php:1571 +#: ../../godmode/agentes/modificar_agente.php:116 +msgid "Could not be enabled" +msgstr "No se pudo activar" + +#: ../../include/ajax/alert_list.ajax.php:91 +#: ../../godmode/alerts/alert_list.php:247 +#: ../../godmode/massive/massive_enable_disable_alerts.php:96 +#: ../../godmode/users/user_list.php:203 +#: ../../godmode/agentes/configurar_agente.php:1586 +#: ../../godmode/agentes/modificar_agente.php:135 +msgid "Successfully disabled" +msgstr "Desactivado correctamente" + +#: ../../include/ajax/alert_list.ajax.php:93 +#: ../../godmode/alerts/alert_list.php:247 +#: ../../godmode/massive/massive_enable_disable_alerts.php:96 +#: ../../godmode/agentes/configurar_agente.php:1586 +#: ../../godmode/agentes/modificar_agente.php:135 +msgid "Could not be disabled" +msgstr "No se pudo desactivar" + +#: ../../include/ajax/alert_list.ajax.php:155 +#: ../../godmode/alerts/alert_list.list.php:615 +#: ../../godmode/alerts/alert_list.builder.php:97 +#: ../../godmode/massive/massive_add_action_alerts.php:183 +msgid "Number of alerts match from" +msgstr "Número de alertas coincidentes de" + +#: ../../include/ajax/alert_list.ajax.php:165 +#: ../../include/functions_reporting_html.php:2107 +#: ../../include/functions_reporting_html.php:3098 +#: ../../godmode/alerts/alert_view.php:391 +#: ../../godmode/alerts/configure_alert_action.php:142 +#: ../../godmode/alerts/alert_list.list.php:539 +#: ../../godmode/alerts/alert_list.list.php:625 +#: ../../godmode/alerts/alert_list.builder.php:134 +msgid "Threshold" +msgstr "Umbral" + +#: ../../include/ajax/module.php:133 ../../include/functions.php:2591 +msgid "30 minutes" +msgstr "30 minutos" + +#: ../../include/ajax/module.php:135 +msgid "6 hours" +msgstr "6 horas" + +#: ../../include/ajax/module.php:136 ../../include/functions_netflow.php:1055 #: ../../include/functions_netflow.php:1088 -#: ../../enterprise/dashboard/widgets/top_n.php:64 -#: ../../enterprise/godmode/agentes/inventory_manager.php:179 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:193 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:185 +#: ../../godmode/setup/performance.php:106 msgid "12 hours" msgstr "12 horas" -#: ../../godmode/setup/performance.php:107 -msgid "Last day" -msgstr "Último día" - -#: ../../godmode/setup/performance.php:108 -#: ../../include/functions_netflow.php:1057 -#: ../../include/functions_netflow.php:1090 -#: ../../enterprise/godmode/agentes/inventory_manager.php:181 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:195 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:187 -msgid "2 days" -msgstr "2 días" - -#: ../../godmode/setup/performance.php:109 -msgid "10 days" -msgstr "10 días" - -#: ../../godmode/setup/performance.php:110 -#: ../../include/functions_netflow.php:1060 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:189 -msgid "Last week" -msgstr "Última semana" - -#: ../../godmode/setup/performance.php:111 -msgid "2 weeks" -msgstr "semana" - -#: ../../godmode/setup/performance.php:112 -#: ../../include/functions_netflow.php:1061 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 -msgid "Last month" -msgstr "Último mes" - -#: ../../godmode/setup/performance.php:114 -#: ../../include/functions_config.php:408 -#: ../../enterprise/meta/advanced/metasetup.performance.php:92 -#: ../../enterprise/meta/include/functions_meta.php:1301 -msgid "Default hours for event view" -msgstr "Núm. de horas predeterminado para la visión de eventos" - -#: ../../godmode/setup/performance.php:117 -#: ../../include/functions_config.php:410 -msgid "Use realtime statistics" -msgstr "Usar estadísticas en tiempo real" - -#: ../../godmode/setup/performance.php:121 -#: ../../include/functions_config.php:412 -msgid "Batch statistics period (secs)" -msgstr "Período de las estadísticas programadas (En segundos)" - -#: ../../godmode/setup/performance.php:121 -msgid "" -"If realtime statistics are disabled, statistics interval resfresh will be " -"set here." -msgstr "" -"Si las estadísticas en tiempo real son deshabilitadas, el intervalo de " -"refresco de las estadísticas será definido aquí." - -#: ../../godmode/setup/performance.php:124 -#: ../../include/functions_config.php:414 -#: ../../enterprise/meta/include/functions_meta.php:1311 -msgid "Use agent access graph" -msgstr "Usar la gráfica de acceso del agente" - -#: ../../godmode/setup/performance.php:128 -#: ../../include/functions_config.php:416 -msgid "Max. recommended number of files in attachment directory" -msgstr "Max. número de archivos recomendado para el directorio attachment" - -#: ../../godmode/setup/performance.php:128 -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." -msgstr "" -"Número máximo de archivos en el directorio attachment. Si se alcanza el " -"número se mostrará un mensaje en el área de notificaciones de la cabecera." - -#: ../../godmode/setup/performance.php:131 -#: ../../include/functions_config.php:418 -msgid "Delete not init modules" -msgstr "Borrar módulos no inicializados" - -#: ../../godmode/setup/performance.php:135 -msgid "Big Operation Step to purge old data" -msgstr "Gran operación para la purga de datos antiguos" - -#: ../../godmode/setup/performance.php:135 -msgid "" -"The number of blocks that a time interval is split into. A bigger value " -"means bigger blocks, which is faster but heavier on the database. Default is " -"100." -msgstr "" -"El número de bloques en los que se divide un intervalo de tiempo. Un valor " -"mayor significa bloques más grandes, será más rápido pero más pesado en base " -"de datos. El valor predeterminado es 100." - -#: ../../godmode/setup/performance.php:138 -#: ../../include/functions_config.php:422 -msgid "Small Operation Step to purge old data" -msgstr "Operación menor para la purga de datos antiguos" - -#: ../../godmode/setup/performance.php:138 -msgid "" -"The number of rows that are processed in a single query in deletion. Default " -"is 1000. Increase to 3000-5000 in fast systems. Decrease to 500 or 250 on " -"systems with locks." -msgstr "" -"El número de filas que se procesan en una sola consulta en supresión. El " -"valor predeterminado es 1000. Aumente a 3000-5000 en sistemas rápidos. " -"Disminuir a 500 o 250 en sistemas con cerraduras." - -#: ../../godmode/setup/performance.php:141 -#: ../../include/functions_config.php:432 -msgid "Graph container - Max. Items" -msgstr "Contenedor de gráficas - Items máximos" - -#: ../../godmode/setup/performance.php:141 -msgid "" -"The number of graphs that are viewed in a container. Default is 10 " -".Increasing this number could lead to performance problems" -msgstr "" -"El número de gráficas que se verán en el contenedor. Por defecto son 10. " -"Incrementar este número podría conllevar problemas de rendimiento." - -#: ../../godmode/setup/performance.php:146 -msgid "Database maintenance options" -msgstr "Opciones de mantenimiento de la base de datos" - -#: ../../godmode/setup/performance.php:152 -#: ../../include/functions_graph.php:3235 -msgid "Others" -msgstr "Otros" - -#: ../../godmode/setup/setup.php:145 -msgid "Correct update the setup options" -msgstr "Actualización correccta de las opciones de configuración" - -#: ../../godmode/setup/setup_auth.php:49 -#: ../../include/functions_config.php:338 -#: ../../enterprise/meta/include/functions_meta.php:602 -msgid "Fallback to local authentication" -msgstr "Alternativa si falla autenticación" - -#: ../../godmode/setup/setup_auth.php:50 -msgid "" -"Enable this option if you want to fallback to local authentication when " -"remote (ldap etc...) authentication failed." -msgstr "" -"Activa esta opción si quieres autenticación local si falla la autenticación " -"remota (ldap, etc)" - -#: ../../godmode/setup/setup_auth.php:57 -#: ../../include/functions_config.php:302 -#: ../../enterprise/meta/include/functions_meta.php:612 -msgid "Autocreate remote users" -msgstr "Crear automáticamente los usuarios remotos" - -#: ../../godmode/setup/setup_auth.php:74 -#: ../../include/functions_config.php:326 -#: ../../enterprise/meta/include/functions_meta.php:756 -msgid "LDAP server" -msgstr "Servidor LDAP" - -#: ../../godmode/setup/setup_auth.php:80 -#: ../../include/functions_config.php:328 -#: ../../enterprise/meta/include/functions_meta.php:766 -msgid "LDAP port" -msgstr "Puerto LDAP" - -#: ../../godmode/setup/setup_auth.php:87 -#: ../../include/functions_config.php:330 -#: ../../enterprise/meta/include/functions_meta.php:776 -msgid "LDAP version" -msgstr "Versión LDAP" - -#: ../../godmode/setup/setup_auth.php:93 -#: ../../include/functions_config.php:317 -#: ../../include/functions_config.php:332 -#: ../../enterprise/godmode/setup/setup_auth.php:511 -#: ../../enterprise/meta/include/functions_meta.php:704 -#: ../../enterprise/meta/include/functions_meta.php:786 -msgid "Start TLS" -msgstr "Start TLS" - -#: ../../godmode/setup/setup_auth.php:100 -#: ../../include/functions_config.php:334 -#: ../../enterprise/meta/include/functions_meta.php:796 -msgid "Base DN" -msgstr "DN base" - -#: ../../godmode/setup/setup_auth.php:106 -#: ../../include/functions_config.php:336 -#: ../../enterprise/meta/include/functions_meta.php:806 -msgid "Login attribute" -msgstr "Atributo de acceso" - -#: ../../godmode/setup/setup_auth.php:128 -#: ../../include/functions_config.php:374 -#: ../../operation/users/user_edit.php:335 -#: ../../enterprise/meta/include/functions_meta.php:662 -msgid "Double authentication" -msgstr "Doble autenticación" - -#: ../../godmode/setup/setup_auth.php:129 -msgid "" -"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 " -"autenticación con sus cuentas." - -#: ../../godmode/setup/setup_auth.php:141 -msgid "Session timeout (mins)" -msgstr "Fin de la sesión" - -#: ../../godmode/setup/setup_auth.php:142 -#: ../../godmode/users/configure_user.php:630 -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 desea una sesión permanente ponga -1 en " -"este campo." - -#: ../../godmode/setup/setup_auth.php:177 -msgid "Local Pandora FMS" -msgstr "Pandora FMS local" - -#: ../../godmode/setup/setup_auth.php:177 -msgid "ldap" -msgstr "LDAP" - -#: ../../godmode/setup/setup_auth.php:183 -#: ../../include/functions_config.php:300 -#: ../../enterprise/meta/include/functions_meta.php:592 -msgid "Authentication method" -msgstr "Método de autenticación" - -#: ../../godmode/setup/setup_ehorus.php:54 -#: ../../include/functions_config.php:733 -msgid "Enable eHorus" -msgstr "Activar eHorus" - -#: ../../godmode/setup/setup_ehorus.php:85 -msgid "API Hostname" -msgstr "Nombre del propietario de la API" - -#: ../../godmode/setup/setup_ehorus.php:87 -msgid "Hostname of the eHorus API" -msgstr "Nombre del propietario de la API de eHorus" - -#: ../../godmode/setup/setup_ehorus.php:87 -msgid "Without protocol and port" -msgstr "Sin protocolo y puerto" - -#: ../../godmode/setup/setup_ehorus.php:87 -msgid "e.g., portal.ehorus.com" -msgstr "e.g., portal.ehorus.com" - -#: ../../godmode/setup/setup_ehorus.php:92 -msgid "API Port" -msgstr "Puerto de la API" - -#: ../../godmode/setup/setup_ehorus.php:94 -msgid "e.g., 18080" -msgstr "e.g., 18080" - -#: ../../godmode/setup/setup_ehorus.php:99 -msgid "Request timeout" -msgstr "Tiempo de espera excedido para la solicitud" - -#: ../../godmode/setup/setup_ehorus.php:101 -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" - -#: ../../godmode/setup/setup_ehorus.php:101 -msgid "0 to disable" -msgstr "0 para deshabilitar" - -#: ../../godmode/setup/setup_ehorus.php:106 -msgid "Test" -msgstr "Probar" - -#: ../../godmode/setup/setup_ehorus.php:107 -#: ../../enterprise/dashboard/full_dashboard.php:286 -#: ../../enterprise/dashboard/main_dashboard.php:468 -#: ../../enterprise/dashboard/public_dashboard.php:312 -#: ../../enterprise/operation/agentes/transactional_map.php:301 -msgid "Start" -msgstr "Inicio" - -#: ../../godmode/setup/setup_ehorus.php:122 -msgid "Remote Management System" -msgstr "Sistema de gestión remota" - -#: ../../godmode/setup/setup_ehorus.php:130 -msgid "Custom field eHorusID created" -msgstr "Campo personalizado eHorusID creado" - -#: ../../godmode/setup/setup_ehorus.php:130 -msgid "Error creating custom field" -msgstr "Error al crear campo personalizado" - -#: ../../godmode/setup/setup_ehorus.php:133 -msgid "eHorus has his own agent identifiers" -msgstr "eHorus tiene sus propios identificadores de agente" - -#: ../../godmode/setup/setup_ehorus.php:134 -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:135 -msgid "" -"Possibly the eHorus id will have to be filled in by hand for every agent" -msgstr "" -"Posiblemente el id de eHorus tendrá que ser rellenado a mano por cada agente" - -#: ../../godmode/setup/setup_ehorus.php:140 -msgid "The custom field does not exists already" -msgstr "El campo personalizado no existe aún" - -#: ../../godmode/setup/setup_ehorus.php:154 -msgid "eHorus API" -msgstr "eHorus API" - -#: ../../godmode/setup/setup_ehorus.php:186 -msgid "Connection timeout" -msgstr "La conexión ha expirado" - -#: ../../godmode/setup/setup_ehorus.php:187 -msgid "Empty user or password" -msgstr "Usuario o contraseña vacío" - -#: ../../godmode/setup/setup_ehorus.php:188 -msgid "User not found" -msgstr "Usuario no encontrado" - -#: ../../godmode/setup/setup_ehorus.php:189 -msgid "Invalid password" -msgstr "Contraseña incorrecta" - -#: ../../godmode/setup/setup_general.php:57 -#: ../../include/functions_config.php:131 -msgid "Remote config directory" -msgstr "Directorio remoto de configuración" - -#: ../../godmode/setup/setup_general.php:58 -msgid "Directory where agent remote configuration is stored." -msgstr "Directorio en el que se almacena la configuración remota del agente." - -#: ../../godmode/setup/setup_general.php:62 -#: ../../include/functions_config.php:133 -#: ../../enterprise/meta/advanced/metasetup.setup.php:125 -#: ../../enterprise/meta/include/functions_meta.php:347 -msgid "Auto login (hash) password" -msgstr "Contraseña («hash») de Inicio de sesión automático" - -#: ../../godmode/setup/setup_general.php:65 -#: ../../include/functions_config.php:136 -#: ../../enterprise/meta/advanced/metasetup.setup.php:129 -#: ../../enterprise/meta/include/functions_meta.php:357 -msgid "Time source" -msgstr "Hora de referencia" - -#: ../../godmode/setup/setup_general.php:66 ../../include/functions.php:1042 -#: ../../include/functions_reporting.php:6397 -#: ../../include/functions_events.php:988 -#: ../../include/functions_events.php:1419 -#: ../../include/functions_graph.php:2258 -#: ../../include/functions_graph.php:2923 -#: ../../include/functions_graph.php:3351 -#: ../../include/functions_graph.php:3354 -#: ../../include/functions_reporting_html.php:878 -#: ../../include/functions_reporting_html.php:1701 -#: ../../mobile/operation/events.php:111 ../../operation/events/events.php:77 -#: ../../operation/events/events_rss.php:178 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:130 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:135 -#: ../../enterprise/meta/advanced/metasetup.setup.php:130 -msgid "System" -msgstr "Sistema" - -#: ../../godmode/setup/setup_general.php:67 -#: ../../enterprise/meta/advanced/metasetup.setup.php:131 -msgid "Database" -msgstr "Base de datos" - -#: ../../godmode/setup/setup_general.php:70 -#: ../../include/functions_config.php:138 -msgid "Automatic check for updates" -msgstr "Chequeo automático de actualizaciones" - -#: ../../godmode/setup/setup_general.php:74 -#: ../../include/functions_config.php:142 -#: ../../enterprise/meta/advanced/metasetup.setup.php:136 -#: ../../enterprise/meta/include/functions_meta.php:367 -msgid "Enforce https" -msgstr "Forzar https" - -#: ../../godmode/setup/setup_general.php:75 -#: ../../enterprise/meta/advanced/metasetup.setup.php:137 -msgid "" -"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 SSL correctamente, puede perder el acceso a la " -"consola de Pandora FMS. ¿Desea continuar?" - -#: ../../godmode/setup/setup_general.php:78 -msgid "Use cert of SSL" -msgstr "Usar el certificado SSL" - -#: ../../godmode/setup/setup_general.php:83 -msgid "Path of SSL Cert." -msgstr "Ruta del certificado SSL" - -#: ../../godmode/setup/setup_general.php:83 -msgid "" -"Path where you put your cert and name of this cert. Remember your cert only " -"in .pem extension." -msgstr "" -"Ruta donde se ubica su certificado y el nombre del mismo. Recuerde que su " -"certificado debe ir únicamente con la extensión .pem" - -#: ../../godmode/setup/setup_general.php:86 -#: ../../include/functions_config.php:146 -#: ../../enterprise/meta/advanced/metasetup.setup.php:142 -#: ../../enterprise/meta/include/functions_meta.php:377 -msgid "Attachment store" -msgstr "Almacenamiento de adjuntos" - -#: ../../godmode/setup/setup_general.php:86 -#: ../../enterprise/meta/advanced/metasetup.setup.php:142 -msgid "Directory where temporary data is stored." -msgstr "Directorio donde los datos temporales son almacenados." - -#: ../../godmode/setup/setup_general.php:89 -#: ../../include/functions_config.php:148 -#: ../../enterprise/meta/advanced/metasetup.setup.php:241 -#: ../../enterprise/meta/include/functions_meta.php:438 -msgid "IP list with API access" -msgstr "Lista de IPs con acceso a la API" - -#: ../../godmode/setup/setup_general.php:98 -#: ../../include/functions_config.php:150 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:183 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:318 -#: ../../enterprise/meta/advanced/metasetup.setup.php:237 -#: ../../enterprise/meta/include/functions_meta.php:417 -#: ../../enterprise/meta/include/functions_meta.php:427 -msgid "API password" -msgstr "Password de la API" - -#: ../../godmode/setup/setup_general.php:99 -#: ../../enterprise/meta/advanced/metasetup.setup.php:238 -msgid "Please be careful if you put a password put https access." -msgstr "" -"Por favor, tenga cuidado. Si tiene que introducir una contraseña ponga " -"acceso https." - -#: ../../godmode/setup/setup_general.php:102 -#: ../../include/functions_config.php:152 -msgid "Enable GIS features in Pandora Console" -msgstr "Activar funcionalidades GIS en Pandora FMS" - -#: ../../godmode/setup/setup_general.php:106 -#: ../../include/functions_config.php:162 -msgid "Enable Netflow" -msgstr "Activar Netflow" - -#: ../../godmode/setup/setup_general.php:140 -#: ../../enterprise/meta/advanced/metasetup.setup.php:179 -msgid "Change timezone" -msgstr "Cambiar zona horaria" - -#: ../../godmode/setup/setup_general.php:146 -#: ../../include/functions_config.php:169 -msgid "Sound for Alert fired" -msgstr "Sonido para alertas" - -#: ../../godmode/setup/setup_general.php:148 -#: ../../godmode/setup/setup_general.php:153 -#: ../../godmode/setup/setup_general.php:158 -msgid "Play sound" -msgstr "Reproducir sonido" - -#: ../../godmode/setup/setup_general.php:151 -#: ../../include/functions_config.php:171 -msgid "Sound for Monitor critical" -msgstr "Sonido para monitores Críticos" - -#: ../../godmode/setup/setup_general.php:156 -#: ../../include/functions_config.php:173 -msgid "Sound for Monitor warning" -msgstr "Sonido para monitores Warning" - -#: ../../godmode/setup/setup_general.php:161 -#: ../../include/functions_config.php:188 -#: ../../enterprise/meta/advanced/metasetup.setup.php:183 -#: ../../enterprise/meta/include/functions_meta.php:397 -msgid "Public URL" -msgstr "URL pública" - -#: ../../godmode/setup/setup_general.php:162 -#: ../../enterprise/meta/advanced/metasetup.setup.php:184 -msgid "" -"Set this value when your PandoraFMS across inverse proxy or for example with " -"mod_proxy of Apache." -msgstr "" -"Fije este valor cuando su Pandora llegue al proxy inverso o por ejemplo con " -"mod_proxy de Apache." - -#: ../../godmode/setup/setup_general.php:165 -#: ../../include/functions_config.php:190 -msgid "Referer security" -msgstr "Seguridad de Referer" - -#: ../../godmode/setup/setup_general.php:166 -msgid "" -"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" - -#: ../../godmode/setup/setup_general.php:173 -#: ../../include/functions_config.php:192 -msgid "Event storm protection" -msgstr "Protección de tormenta de eventos" - -#: ../../godmode/setup/setup_general.php:174 -msgid "" -"If set to yes no events or alerts will be generated, but agents will " -"continue receiving data." -msgstr "" -"Si se configura afirmativo ningún evento o alerta se generará, pero los " -"agentes continuarán recibiendo datos." - -#: ../../godmode/setup/setup_general.php:182 -#: ../../include/functions_config.php:194 -msgid "Command Snapshot" -msgstr "Salida de comandos como capturas" - -#: ../../godmode/setup/setup_general.php:183 -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" - -#: ../../godmode/setup/setup_general.php:187 -#: ../../include/functions_config.php:196 -msgid "Server logs directory" -msgstr "Directorio de logs del servidor" - -#: ../../godmode/setup/setup_general.php:187 -msgid "Directory where the server logs are stored." -msgstr "Directorio donde se guardan los logs del servidor" - -#: ../../godmode/setup/setup_general.php:192 -msgid "Full mode" -msgstr "Modo total" - -#: ../../godmode/setup/setup_general.php:193 -msgid "On demand" -msgstr "Por demanda" - -#: ../../godmode/setup/setup_general.php:194 -msgid "Expert" -msgstr "Experta/o" - -#: ../../godmode/setup/setup_general.php:196 -#: ../../include/functions_config.php:198 -msgid "Tutorial mode" -msgstr "Modo Tutorial" - -#: ../../godmode/setup/setup_general.php:197 -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." -msgstr "" -"La configuración del asistente, 'modo total' muestra el icono en la cabecera " -"y en las ayudas contextual ademas sera proactivo, 'bajo demanda' es igual " -"que el modo total pero no sera proactivo, y 'experto' no se mostrara los " -"iconos ni en la cabecera ni como ayuda contextual." - -#: ../../godmode/setup/setup_general.php:203 -#: ../../include/functions_config.php:200 -msgid "Allow create planned downtimes in the past" -msgstr "" -"Permitir la creación de paradas planificadas con fecha anterior a la actual" - -#: ../../godmode/setup/setup_general.php:204 -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" - -#: ../../godmode/setup/setup_general.php:208 -#: ../../include/functions_config.php:202 -msgid "Limit parameters massive" -msgstr "Límites de los parámetros masivos" - -#: ../../godmode/setup/setup_general.php:209 +#: ../../include/ajax/module.php:137 ../../include/functions_netflow.php:1056 +#: ../../include/functions_netflow.php:1089 ../../include/functions.php:2025 +msgid "1 day" +msgstr "1 día" + +#: ../../include/ajax/module.php:138 ../../include/functions_netflow.php:1093 +#: ../../include/functions.php:2026 +msgid "1 week" +msgstr "1 semana" + +#: ../../include/ajax/module.php:139 ../../include/functions_netflow.php:1059 +#: ../../include/functions_netflow.php:1092 ../../include/functions.php:2027 +msgid "15 days" +msgstr "15 días" + +#: ../../include/ajax/module.php:140 ../../include/functions_netflow.php:1094 +#: ../../include/functions.php:2028 +msgid "1 month" +msgstr "1 mes" + +#: ../../include/ajax/module.php:141 ../../include/functions_netflow.php:1063 +msgid "3 months" +msgstr "3 meses" + +#: ../../include/ajax/module.php:142 ../../include/functions_netflow.php:1064 +msgid "6 months" +msgstr "6 meses" + +#: ../../include/ajax/module.php:143 ../../include/functions.php:2031 +msgid "1 year" +msgstr "1 año" + +#: ../../include/ajax/module.php:144 ../../include/functions_netflow.php:1066 +msgid "2 years" +msgstr "2 años" + +#: ../../include/ajax/module.php:145 +msgid "3 years" +msgstr "3 años" + +#: ../../include/ajax/module.php:836 ../../include/ajax/module.php:846 +#: ../../godmode/agentes/module_manager.php:679 +#: ../../godmode/agentes/module_manager.php:689 +msgid "Adopted" +msgstr "Adoptado" + +#: ../../include/ajax/module.php:846 ../../include/ajax/module.php:850 +#: ../../godmode/massive/massive_edit_modules.php:572 +#: ../../godmode/agentes/module_manager.php:689 +#: ../../godmode/agentes/module_manager.php:693 +msgid "Unlinked" +msgstr "Deslinkado" + +#: ../../include/ajax/module.php:1093 +msgid "Any monitors aren't with this filter." +msgstr "No todos los monitores llevan este filtro" + +#: ../../include/ajax/module.php:1096 +msgid "This agent doesn't have any active monitors." +msgstr "Este agente no tiene ningún monitor activo" + +#: ../../include/ajax/events.php:158 #, php-format -msgid "" -"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." - -#: ../../godmode/setup/setup_general.php:213 -msgid "Include agents manually disabled" -msgstr "Incluir agentes deshabilitados manualmente" - -#: ../../godmode/setup/setup_general.php:217 -msgid "audit log directory" -msgstr "Directorio de log" - -#: ../../godmode/setup/setup_general.php:218 -msgid "Directory where audit log is stored." -msgstr "Directorio donde se guarda el log." - -#: ../../godmode/setup/setup_general.php:224 -msgid "General options" -msgstr "Opciones generales" - -#: ../../godmode/setup/setup_general.php:283 -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 el sistema ACL Enterprise es activado sin reglas, perderá el acceso a la " -"consola de Pandora FMS (incluso siendo administrador). ¿Desea continuar?" - -#: ../../godmode/setup/setup_netflow.php:41 -#: ../../include/functions_config.php:683 -msgid "Data storage path" -msgstr "Ruta de almacenamiento de datos" - -#: ../../godmode/setup/setup_netflow.php:42 -msgid "Directory where netflow data will be stored." -msgstr "Directorio donde los datos netflow se almacenarán" - -#: ../../godmode/setup/setup_netflow.php:45 -#: ../../include/functions_config.php:685 -msgid "Daemon interval" -msgstr "Intervalo del demonio" - -#: ../../godmode/setup/setup_netflow.php:46 -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" - -#: ../../godmode/setup/setup_netflow.php:49 -#: ../../include/functions_config.php:687 -msgid "Daemon binary path" -msgstr "Ruta de demonio binario" - -#: ../../godmode/setup/setup_netflow.php:52 -#: ../../include/functions_config.php:689 -msgid "Nfdump binary path" -msgstr "Ruta binaria Nfdump" - -#: ../../godmode/setup/setup_netflow.php:55 -#: ../../include/functions_config.php:691 -msgid "Nfexpire binary path" -msgstr "Ruta binaria Nfexpire" - -#: ../../godmode/setup/setup_netflow.php:58 -#: ../../include/functions_config.php:693 -msgid "Maximum chart resolution" -msgstr "Máxima resolución de gráfica" - -#: ../../godmode/setup/setup_netflow.php:58 -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." -msgstr "" -"Máximo número de puntos que una tabla de area netflow puede mostrar. Cuanto " -"más alta la resolución mejor la ejecución. Se recomiendan los valores entre " -"50 y 100" - -#: ../../godmode/setup/setup_netflow.php:61 -#: ../../include/functions_config.php:695 -#: ../../enterprise/meta/advanced/metasetup.setup.php:187 -msgid "Disable custom live view filters" -msgstr "Desactive los filtros de vista activa personalizados" - -#: ../../godmode/setup/setup_netflow.php:62 -#: ../../enterprise/meta/advanced/metasetup.setup.php:187 -msgid "" -"Disable the definition of custom filters in the live view. Only existing " -"filters can be used." -msgstr "" -"Desactive la definición de filtros personalizados en la vista activa. Sólo " -"los filtros existentes pueden usarse." - -#: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:697 -#: ../../include/functions_config.php:703 -msgid "Netflow max lifetime" -msgstr "Tiempo máximo del Netflow" - -#: ../../godmode/setup/setup_netflow.php:65 -msgid "Sets the maximum lifetime for netflow data in days." -msgstr "Fijar el tiempo máximo para los datos netflow en dias" - -#: ../../godmode/setup/setup_netflow.php:68 -#: ../../include/functions_config.php:699 -msgid "Name resolution for IP address" -msgstr "Resolver direcciones IP para obtener sus nombres de máquina" - -#: ../../godmode/setup/setup_netflow.php:69 -#: ../../operation/netflow/nf_live_view.php:284 -msgid "Resolve the IP addresses to get their hostnames." -msgstr "Resolver direcciones IP para obtener sus hostnames" - -#: ../../godmode/setup/setup_netflow.php:70 -#: ../../operation/netflow/nf_live_view.php:274 -msgid "IP address resolution can take a lot of time" -msgstr "La resolución de direcciones IP puede tardar mucho tiempo" - -#: ../../godmode/setup/setup_visuals.php:75 -#: ../../include/functions_config.php:515 -msgid "Default interval for refresh on Visual Console" -msgstr "Intervalo de refresco en la consola visual por defecto" - -#: ../../godmode/setup/setup_visuals.php:76 -msgid "This interval will affect to Visual Console pages" -msgstr "Este intervalo afectará a todas las páginas de la consola visual" - -#: ../../godmode/setup/setup_visuals.php:80 -msgid "Paginated module view" -msgstr "Vista del módulo paginada" - -#: ../../godmode/setup/setup_visuals.php:85 -#: ../../include/functions_config.php:563 -#: ../../enterprise/meta/advanced/metasetup.visual.php:174 -#: ../../enterprise/meta/include/functions_meta.php:1247 -msgid "Display data of proc modules in other format" -msgstr "Mostrar los datos de los módulos proc de otra forma" - -#: ../../godmode/setup/setup_visuals.php:95 -#: ../../include/functions_config.php:565 -#: ../../enterprise/meta/advanced/metasetup.visual.php:183 -#: ../../enterprise/meta/include/functions_meta.php:1252 -msgid "Display text proc modules have state is ok" -msgstr "Texto a mostrar cuando el estado del módulo proc es OK" - -#: ../../godmode/setup/setup_visuals.php:99 -#: ../../include/functions_config.php:567 -#: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../enterprise/meta/include/functions_meta.php:1257 -msgid "Display text when proc modules have state critical" -msgstr "Texto a mostrar cuando el estado del módulo proc es Critico" - -#: ../../godmode/setup/setup_visuals.php:104 -msgid "Click to display lateral menus" -msgstr "Haz clic para mostrar el menú lateral" - -#: ../../godmode/setup/setup_visuals.php:105 -msgid "" -"When enabled, the lateral menus are shown when left clicking them, instead " -"of hovering over them" -msgstr "" -"Cuando está activo, el menú lateral se mostrará al hacer clic, en lugar de " -"mostrarse de forma automática al pasar por encima" - -#: ../../godmode/setup/setup_visuals.php:117 -#: ../../include/functions_config.php:574 -msgid "Service label font size" -msgstr "Tamaño de fuente para el mapa de servicios" - -#: ../../godmode/setup/setup_visuals.php:121 -msgid "Space between items in Service maps" -msgstr "Espacio entre nodos para el mapa de servicios" - -#: ../../godmode/setup/setup_visuals.php:126 -#: ../../include/functions_config.php:581 -msgid "Classic menu mode" -msgstr "Menú clásico" - -#: ../../godmode/setup/setup_visuals.php:127 -msgid "Text menu options always visible, don't hide" -msgstr "Menú siempre visible" - -#: ../../godmode/setup/setup_visuals.php:138 -msgid "Behaviour configuration" -msgstr "Configuración del comportamiento" - -#: ../../godmode/setup/setup_visuals.php:153 -#: ../../include/functions_config.php:472 -msgid "Style template" -msgstr "Plantilla de estilo" - -#: ../../godmode/setup/setup_visuals.php:158 -#: ../../include/functions_config.php:480 -msgid "Status icon set" -msgstr "Icono de estado en" - -#: ../../godmode/setup/setup_visuals.php:159 -msgid "Colors" -msgstr "Colores" - -#: ../../godmode/setup/setup_visuals.php:160 -msgid "Faces" -msgstr "Caras" - -#: ../../godmode/setup/setup_visuals.php:161 -msgid "Colors and text" -msgstr "Colores y texto" - -#: ../../godmode/setup/setup_visuals.php:168 -#: ../../include/functions_config.php:499 -#: ../../enterprise/meta/advanced/metasetup.visual.php:207 -msgid "Login background" -msgstr "Imagen de fondo de la pantalla de login" - -#: ../../godmode/setup/setup_visuals.php:169 -#: ../../enterprise/meta/advanced/metasetup.visual.php:208 -msgid "You can place your custom images into the folder images/backgrounds/" -msgstr "" -"Puedes poner tus propias imágenes en el directorio images/backgrounds/" - -#: ../../godmode/setup/setup_visuals.php:188 -#: ../../enterprise/meta/advanced/metasetup.visual.php:218 -msgid "Custom logo (header)" -msgstr "Logo personalizado (cabecera)" - -#: ../../godmode/setup/setup_visuals.php:207 -#: ../../enterprise/meta/advanced/metasetup.visual.php:225 -msgid "Custom logo (login)" -msgstr "Logo personalizado (login)" - -#: ../../godmode/setup/setup_visuals.php:225 -#: ../../enterprise/meta/advanced/metasetup.visual.php:232 -msgid "Custom Splash (login)" -msgstr "Imagen personalizada (login)" - -#: ../../godmode/setup/setup_visuals.php:238 -#: ../../enterprise/meta/advanced/metasetup.visual.php:239 -msgid "Title 1 (login)" -msgstr "Título 1 (login)" - -#: ../../godmode/setup/setup_visuals.php:245 -#: ../../enterprise/meta/advanced/metasetup.visual.php:243 -msgid "Title 2 (login)" -msgstr "Título 2 (login)" - -#: ../../godmode/setup/setup_visuals.php:250 -msgid "Disable logo in graphs" -msgstr "Deshabilitar el logo en las gráficas" - -#: ../../godmode/setup/setup_visuals.php:264 -#: ../../include/functions_config.php:541 -msgid "Fixed header" -msgstr "Cabecera fija" - -#: ../../godmode/setup/setup_visuals.php:272 -#: ../../include/functions_config.php:543 -msgid "Fixed menu" -msgstr "Menú fijo" - -#: ../../godmode/setup/setup_visuals.php:280 -#: ../../include/functions_config.php:537 -msgid "Autohidden menu" -msgstr "Ocultar menú" - -#: ../../godmode/setup/setup_visuals.php:285 -msgid "Style configuration" -msgstr "Configuración de estilo" - -#: ../../godmode/setup/setup_visuals.php:300 -#: ../../include/functions_config.php:531 -msgid "GIS Labels" -msgstr "Etiquetas GIS" - -#: ../../godmode/setup/setup_visuals.php:301 -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." -msgstr "" -"Habilitando esto obtinen una etiqueta con el nombre del agente en los mapas " -"GIS. Si tiene muchos agentes en el mapa puede ser ilegible. Deshabilitado " -"por defecto." - -#: ../../godmode/setup/setup_visuals.php:312 -#: ../../include/functions_config.php:535 -msgid "Default icon in GIS" -msgstr "Icono GIS por defecto" - -#: ../../godmode/setup/setup_visuals.php:313 -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" - -#: ../../godmode/setup/setup_visuals.php:322 -msgid "GIS configuration" -msgstr "Configuración GIS" - -#: ../../godmode/setup/setup_visuals.php:337 -#: ../../include/functions_config.php:482 -msgid "Font path" -msgstr "Ruta de la tipografía" - -#: ../../godmode/setup/setup_visuals.php:367 -#: ../../include/functions_config.php:519 -#: ../../include/functions_config.php:521 -msgid "Agent size text" -msgstr "Tamaño del texto del agente" - -#: ../../godmode/setup/setup_visuals.php:368 -msgid "" -"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." - -#: ../../godmode/setup/setup_visuals.php:369 -#: ../../godmode/setup/setup_visuals.php:377 -msgid "Small:" -msgstr "Pequeño:" - -#: ../../godmode/setup/setup_visuals.php:371 -#: ../../godmode/setup/setup_visuals.php:379 -msgid "Normal:" -msgstr "Normal:" - -#: ../../godmode/setup/setup_visuals.php:375 -#: ../../include/functions_config.php:523 -msgid "Module size text" -msgstr "Tamaño del nombre del modulo" - -#: ../../godmode/setup/setup_visuals.php:376 -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 modulo sea muy largo, en algunos lugares de la consola, " -"será necesario truncar su longitud a N caracteres." - -#: ../../godmode/setup/setup_visuals.php:383 -#: ../../include/functions_config.php:525 -#: ../../include/functions_config.php:527 -msgid "Description size text" -msgstr "Tamaño del texto de la descripción" - -#: ../../godmode/setup/setup_visuals.php:383 -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." - -#: ../../godmode/setup/setup_visuals.php:387 -#: ../../include/functions_config.php:529 -msgid "Item title size text" -msgstr "Tamaño del texto de los títulos" - -#: ../../godmode/setup/setup_visuals.php:388 -msgid "" -"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." - -#: ../../godmode/setup/setup_visuals.php:393 -msgid "Show unit along with value in reports" -msgstr "Mostrar la unidad junto con el valor en los informes" - -#: ../../godmode/setup/setup_visuals.php:394 -msgid "This enabling this, max, min and avg values will be shown with units." -msgstr "" -"Si activas esta opción, el máximo, mínimo y la media aparecerá con unidades" - -#: ../../godmode/setup/setup_visuals.php:402 -msgid "Font and Text configuration" -msgstr "Configuración Fuente y Texto" - -#: ../../godmode/setup/setup_visuals.php:417 -#: ../../include/functions_config.php:443 -#: ../../enterprise/meta/advanced/metasetup.visual.php:99 -#: ../../enterprise/meta/include/functions_meta.php:998 -msgid "Graph color (min)" -msgstr "Color de la gráfica (mín.)" - -#: ../../godmode/setup/setup_visuals.php:421 -#: ../../include/functions_config.php:445 -#: ../../enterprise/meta/advanced/metasetup.visual.php:102 -#: ../../enterprise/meta/include/functions_meta.php:1008 -msgid "Graph color (avg)" -msgstr "Color de la gráfica (med.)" - -#: ../../godmode/setup/setup_visuals.php:425 -#: ../../include/functions_config.php:447 -#: ../../enterprise/meta/advanced/metasetup.visual.php:105 -#: ../../enterprise/meta/include/functions_meta.php:1018 -msgid "Graph color (max)" -msgstr "Color de la gráfica (máx.)" - -#: ../../godmode/setup/setup_visuals.php:429 -#: ../../include/functions_config.php:449 -msgid "Graph color #4" -msgstr "Color de la gráfica #4" - -#: ../../godmode/setup/setup_visuals.php:433 -#: ../../include/functions_config.php:451 -msgid "Graph color #5" -msgstr "Color de la gráfica #5" - -#: ../../godmode/setup/setup_visuals.php:437 -#: ../../include/functions_config.php:453 -msgid "Graph color #6" -msgstr "Color de la gráfica #6" - -#: ../../godmode/setup/setup_visuals.php:441 -#: ../../include/functions_config.php:455 -msgid "Graph color #7" -msgstr "Color de la gráfica #7" - -#: ../../godmode/setup/setup_visuals.php:445 -#: ../../include/functions_config.php:457 -msgid "Graph color #8" -msgstr "Color de la gráfica #8" - -#: ../../godmode/setup/setup_visuals.php:449 -#: ../../include/functions_config.php:459 -msgid "Graph color #9" -msgstr "Color de la gráfica #9" - -#: ../../godmode/setup/setup_visuals.php:453 -#: ../../include/functions_config.php:461 -msgid "Graph color #10" -msgstr "Color de la gráfica #10" - -#: ../../godmode/setup/setup_visuals.php:457 -msgid "Graph resolution (1-low, 5-high)" -msgstr "Resolución gráfica (1-baja, 5-alta)" - -#: ../../godmode/setup/setup_visuals.php:461 -#: ../../include/functions_config.php:465 -#: ../../enterprise/meta/advanced/metasetup.visual.php:114 -#: ../../enterprise/meta/include/functions_meta.php:1048 -msgid "Value to interface graphics" -msgstr "Valor para la interfaz gráfica" - -#: ../../godmode/setup/setup_visuals.php:470 -#: ../../include/functions_config.php:467 -#: ../../enterprise/meta/advanced/metasetup.visual.php:108 -#: ../../enterprise/meta/include/functions_meta.php:1028 -msgid "Data precision for reports" -msgstr "Precisión de los datos en los informes" - -#: ../../godmode/setup/setup_visuals.php:471 -msgid "" -"Number of decimals shown in reports. It must be a number between 0 and 5" -msgstr "" -"Número de decimales a mostrar en los informes. Debe ser un entero entre 0 y 5" - -#: ../../godmode/setup/setup_visuals.php:475 -#: ../../include/functions_config.php:555 -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:480 -#: ../../include/functions_config.php:476 -#: ../../enterprise/meta/advanced/metasetup.visual.php:120 -#: ../../enterprise/meta/include/functions_meta.php:1071 -msgid "Use round corners" -msgstr "Usar bordes redondeados" - -#: ../../godmode/setup/setup_visuals.php:485 -#: ../../godmode/users/configure_user.php:553 -#: ../../include/functions_config.php:486 -#: ../../operation/users/user_edit.php:251 -#: ../../enterprise/meta/advanced/metasetup.visual.php:124 -#: ../../enterprise/meta/include/functions_meta.php:1081 -msgid "Interactive charts" -msgstr "Gráficas interactivas" - -#: ../../godmode/setup/setup_visuals.php:486 -#: ../../godmode/users/configure_user.php:553 -#: ../../operation/users/user_edit.php:251 -#: ../../enterprise/meta/advanced/metasetup.visual.php:124 -msgid "Whether to use Javascript or static PNG graphs" -msgstr "Si usar Javascript or graficas estáticas PNG" - -#: ../../godmode/setup/setup_visuals.php:495 -#: ../../include/functions_config.php:551 -msgid "Shortened module graph data" -msgstr "Gráfica de modulo de datos ordenado" - -#: ../../godmode/setup/setup_visuals.php:496 -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á" - -#: ../../godmode/setup/setup_visuals.php:506 -#: ../../enterprise/meta/advanced/metasetup.visual.php:128 -msgid "Type of module charts" -msgstr "Tipo de gráficas de módulos" - -#: ../../godmode/setup/setup_visuals.php:515 -msgid "Type of interface charts" -msgstr "Tipo de las gráficas de interfaces" - -#: ../../godmode/setup/setup_visuals.php:524 -msgid "Show only average" -msgstr "Mostrar solo la media" - -#: ../../godmode/setup/setup_visuals.php:525 -msgid "Hide Max and Min values in graphs" -msgstr "Ocultar el máximo y el mínimo en las gráficas" - -#: ../../godmode/setup/setup_visuals.php:533 -msgid "Show percentile 95 in graphs" -msgstr "Mostrar el percentil 95 en las gráficas" - -#: ../../godmode/setup/setup_visuals.php:538 -msgid "Charts configuration" -msgstr "Configuración de gráficas" - -#: ../../godmode/setup/setup_visuals.php:554 -#: ../../include/functions_config.php:517 -msgid "Default line thickness for the Visual Console" -msgstr "Grosor de línea por defecto en las Consolas Visuales" - -#: ../../godmode/setup/setup_visuals.php:554 -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" - -#: ../../godmode/setup/setup_visuals.php:559 -msgid "Show report info with description" -msgstr "Mostrar la información del informe con la descripción" - -#: ../../godmode/setup/setup_visuals.php:561 -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." - -#: ../../godmode/setup/setup_visuals.php:569 -#: ../../enterprise/meta/advanced/metasetup.visual.php:247 -msgid "Custom report front page" -msgstr "Portada de informe personalizado" - -#: ../../godmode/setup/setup_visuals.php:571 -#: ../../enterprise/meta/advanced/metasetup.visual.php:247 -msgid "" -"Custom report front page. It will be applied to all reports and templates by " -"default." -msgstr "" -"Portada de informe personalizado. Será aplicada por defecto a todos los " -"informes y plantillas" - -#: ../../godmode/setup/setup_visuals.php:593 -#: ../../godmode/setup/setup_visuals.php:599 -#: ../../godmode/setup/setup_visuals.php:612 -#: ../../godmode/setup/setup_visuals.php:620 -#: ../../godmode/setup/setup_visuals.php:625 -#: ../../godmode/setup/setup_visuals.php:633 -#: ../../include/functions_config.php:660 -#: ../../include/functions_config.php:663 -#: ../../include/functions_config.php:666 -#: ../../include/functions_config.php:669 -#: ../../include/functions_config.php:672 -#: ../../include/functions_config.php:675 -#: ../../enterprise/meta/advanced/metasetup.visual.php:250 -#: ../../enterprise/meta/advanced/metasetup.visual.php:253 -#: ../../enterprise/meta/advanced/metasetup.visual.php:257 -#: ../../enterprise/meta/advanced/metasetup.visual.php:263 -#: ../../enterprise/meta/advanced/metasetup.visual.php:267 -#: ../../enterprise/meta/advanced/metasetup.visual.php:274 -#: ../../enterprise/meta/include/functions_meta.php:1217 -#: ../../enterprise/meta/include/functions_meta.php:1222 -#: ../../enterprise/meta/include/functions_meta.php:1227 -#: ../../enterprise/meta/include/functions_meta.php:1232 -#: ../../enterprise/meta/include/functions_meta.php:1237 -#: ../../enterprise/meta/include/functions_meta.php:1242 -msgid "Custom report front" -msgstr "Portada de informe personalizado" - -#: ../../godmode/setup/setup_visuals.php:593 -#: ../../include/functions_config.php:663 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:82 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:116 -#: ../../enterprise/meta/advanced/metasetup.visual.php:250 -#: ../../enterprise/meta/include/functions_meta.php:1222 -msgid "Font family" -msgstr "Tipo de letra" - -#: ../../godmode/setup/setup_visuals.php:600 -#: ../../include/functions_config.php:489 -#: ../../include/functions_config.php:666 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:85 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:119 -#: ../../enterprise/meta/advanced/metasetup.visual.php:253 -#: ../../enterprise/meta/include/functions_meta.php:1121 -#: ../../enterprise/meta/include/functions_meta.php:1227 -msgid "Custom logo" -msgstr "Logotipo personalizado" - -#: ../../godmode/setup/setup_visuals.php:602 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:87 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:121 -#: ../../enterprise/meta/advanced/metasetup.visual.php:255 -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." -msgstr "" -"El directorio de logotipos personalizados está en tu www Pandora consola en " -"\"images / custom_logo\". Puede cargar más archivos (sólo JPEG) en la " -"herramienta de carga de la consola." - -#: ../../godmode/setup/setup_visuals.php:620 -#: ../../include/functions_config.php:669 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 -#: ../../enterprise/meta/advanced/metasetup.visual.php:263 -#: ../../enterprise/meta/include/functions_meta.php:1232 -msgid "Header" -msgstr "Encabezado" - -#: ../../godmode/setup/setup_visuals.php:625 -#: ../../include/functions_config.php:672 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:133 -#: ../../enterprise/meta/advanced/metasetup.visual.php:267 -#: ../../enterprise/meta/include/functions_meta.php:1237 -msgid "First page" -msgstr "Primera página" - -#: ../../godmode/setup/setup_visuals.php:633 -#: ../../include/functions_config.php:675 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137 -#: ../../enterprise/meta/advanced/metasetup.visual.php:274 -#: ../../enterprise/meta/include/functions_meta.php:1242 -msgid "Footer" -msgstr "Pie de página" - -#: ../../godmode/setup/setup_visuals.php:640 -msgid "Show QR Code icon in the header" -msgstr "Mostrar icono código QR en la cabecera" - -#: ../../godmode/setup/setup_visuals.php:651 -#: ../../include/functions_config.php:547 -msgid "Custom graphviz directory" -msgstr "Directorio personalizado graphviz" - -#: ../../godmode/setup/setup_visuals.php:652 -msgid "Custom directory where the graphviz binaries are stored." -msgstr "" -"Directorio personalizado donde se almacenan los ficheros binarios de graphviz" - -#: ../../godmode/setup/setup_visuals.php:658 -#: ../../include/functions_config.php:549 -msgid "Networkmap max width" -msgstr "Máximo ancho de Networkmap" - -#: ../../godmode/setup/setup_visuals.php:665 -#: ../../enterprise/meta/advanced/metasetup.visual.php:163 -#: ../../enterprise/meta/include/functions_meta.php:1111 -msgid "Show only the group name" -msgstr "Mostrar solo el nombre del grupo" - -#: ../../godmode/setup/setup_visuals.php:667 -#: ../../include/functions_config.php:553 -#: ../../enterprise/meta/advanced/metasetup.visual.php:165 -msgid "Show the group name instead the group icon." -msgstr "Mostrar el nombre del grupo en lugar de icono del grupo" - -#: ../../godmode/setup/setup_visuals.php:677 -#: ../../include/functions_config.php:439 -#: ../../enterprise/meta/advanced/metasetup.visual.php:81 -#: ../../enterprise/meta/include/functions_meta.php:978 -msgid "Date format string" -msgstr "Formato de fecha a mostrar" - -#: ../../godmode/setup/setup_visuals.php:678 -#: ../../enterprise/meta/advanced/metasetup.visual.php:82 -msgid "Example" -msgstr "Ejemplo" - -#: ../../godmode/setup/setup_visuals.php:690 -#: ../../include/functions_config.php:441 -#: ../../enterprise/meta/advanced/metasetup.visual.php:93 -#: ../../enterprise/meta/include/functions_meta.php:988 -msgid "Timestamp or time comparation" -msgstr "Marca de tiempo o comparación de hora" - -#: ../../godmode/setup/setup_visuals.php:691 -#: ../../enterprise/meta/advanced/metasetup.visual.php:94 -msgid "Comparation in rollover" -msgstr "Fecha en comparación" - -#: ../../godmode/setup/setup_visuals.php:693 -#: ../../enterprise/meta/advanced/metasetup.visual.php:96 -msgid "Timestamp in rollover" -msgstr "Fecha literal" - -#: ../../godmode/setup/setup_visuals.php:701 -msgid "Custom values post process" -msgstr "Valores personalizados para postprocesado" - -#: ../../godmode/setup/setup_visuals.php:715 -msgid "Delete custom values" -msgstr "Eliminar valores personalizados" - -#: ../../godmode/setup/setup_visuals.php:735 -msgid "Interval values" -msgstr "Valores del intervalo" - -#: ../../godmode/setup/setup_visuals.php:738 ../../include/functions.php:434 -#: ../../include/functions.php:568 ../../include/functions_html.php:734 -#: ../../enterprise/extensions/vmware/functions.php:21 -#: ../../enterprise/extensions/vmware/functions.php:22 -#: ../../enterprise/extensions/vmware/functions.php:23 -#: ../../enterprise/extensions/vmware/functions.php:24 -#: ../../enterprise/meta/advanced/metasetup.visual.php:141 -msgid "minutes" -msgstr "minutos" - -#: ../../godmode/setup/setup_visuals.php:739 ../../include/functions.php:435 -#: ../../include/functions.php:569 ../../include/functions_html.php:735 -#: ../../enterprise/meta/advanced/metasetup.visual.php:142 -msgid "hours" -msgstr "horas" - -#: ../../godmode/setup/setup_visuals.php:741 ../../include/functions.php:432 -#: ../../include/functions.php:566 ../../include/functions_html.php:738 -#: ../../enterprise/meta/advanced/metasetup.visual.php:144 -msgid "months" -msgstr "meses" - -#: ../../godmode/setup/setup_visuals.php:742 ../../include/functions.php:433 -#: ../../include/functions.php:567 ../../include/functions_html.php:739 -#: ../../enterprise/meta/advanced/metasetup.visual.php:145 -msgid "years" -msgstr "años" - -#: ../../godmode/setup/setup_visuals.php:743 -#: ../../enterprise/meta/advanced/metasetup.visual.php:146 -msgid "Add new custom value to intervals" -msgstr "Añadir nuevo valor personalizado para intervalos" - -#: ../../godmode/setup/setup_visuals.php:749 -#: ../../include/functions_config.php:651 -#: ../../enterprise/meta/advanced/metasetup.visual.php:152 -#: ../../enterprise/meta/include/functions_meta.php:1211 -msgid "Delete interval" -msgstr "Borrar intervalo" - -#: ../../godmode/setup/setup_visuals.php:763 -#: ../../include/functions_config.php:678 -msgid "CSV divider" -msgstr "Divisor CSV" - -#: ../../godmode/setup/setup_visuals.php:780 -msgid "Other configuration" -msgstr "Otra configuración" - -#: ../../godmode/setup/setup_visuals.php:989 -#: ../../godmode/setup/setup_visuals.php:1029 -#: ../../enterprise/meta/advanced/metasetup.visual.php:399 -#: ../../enterprise/meta/advanced/metasetup.visual.php:439 -msgid "Logo preview" -msgstr "Logo de previsualización" - -#: ../../godmode/setup/setup_visuals.php:1069 -#: ../../enterprise/meta/advanced/metasetup.visual.php:479 -msgid "Splash Preview" -msgstr "Previsualización de la imagen" - -#: ../../godmode/setup/setup_visuals.php:1110 -#: ../../enterprise/meta/advanced/metasetup.visual.php:519 -msgid "Background preview" -msgstr "Vista previa del fondo" - -#: ../../godmode/setup/setup_visuals.php:1154 -msgid "Gis icons preview" -msgstr "Vista previa de los iconos GIS" - -#: ../../godmode/setup/setup_visuals.php:1209 -msgid "Status set preview" -msgstr "Fijar el estado de la vista previa." - -#: ../../godmode/setup/snmp_wizard.php:43 -#: ../../enterprise/godmode/setup/setup_auth.php:427 -#: ../../enterprise/godmode/setup/setup_auth.php:468 -msgid "OP" -msgstr "OP" - -#: ../../godmode/setup/snmp_wizard.php:166 -msgid "Unsucessful update the snmp translation" -msgstr "No se pudo actualizar la traducción snmp" - -#: ../../godmode/setup/snmp_wizard.php:173 -msgid "Unsucessful update the snmp translation." -msgstr "No se pudo actualizar la traducción SNMP" - -#: ../../godmode/setup/snmp_wizard.php:221 -msgid "Unsucessful delete the snmp translation" -msgstr "No se pudo borrar la traducción de SNMP" - -#: ../../godmode/setup/snmp_wizard.php:228 -msgid "Unsucessful delete the snmp translation." -msgstr "No se pudo borrar la traducción de SNMP" - -#: ../../godmode/setup/snmp_wizard.php:289 -msgid "Unsucessful save the snmp translation" -msgstr "No se pudo guardar la traducción de SNMP" - -#: ../../godmode/setup/snmp_wizard.php:298 -msgid "Unsucessful save the snmp translation." -msgstr "No se pudo guardar la traducción de SNMP" - -#: ../../godmode/snmpconsole/snmp_alert.php:28 -#: ../../operation/snmpconsole/snmp_view.php:424 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:817 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 -msgid "Cold start (0)" -msgstr "Inicio cero (0)" - -#: ../../godmode/snmpconsole/snmp_alert.php:29 -#: ../../operation/snmpconsole/snmp_view.php:425 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:820 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 -msgid "Warm start (1)" -msgstr "Comienzo de inicio (1)" - -#: ../../godmode/snmpconsole/snmp_alert.php:30 -#: ../../operation/snmpconsole/snmp_view.php:426 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:823 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 -msgid "Link down (2)" -msgstr "Enlace interrumpido (2)" - -#: ../../godmode/snmpconsole/snmp_alert.php:31 -#: ../../operation/snmpconsole/snmp_view.php:427 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:826 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 -msgid "Link up (3)" -msgstr "Enlace activo (3)" - -#: ../../godmode/snmpconsole/snmp_alert.php:32 -#: ../../operation/snmpconsole/snmp_view.php:428 -#: ../../operation/snmpconsole/snmp_view.php:810 -#: ../../operation/snmpconsole/snmp_view.php:829 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 -msgid "Authentication failure (4)" -msgstr "Fallo de autenticación (4)" - -#: ../../godmode/snmpconsole/snmp_alert.php:78 -#: ../../godmode/snmpconsole/snmp_alert.php:82 -#: ../../godmode/snmpconsole/snmp_alert.php:86 -#: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../godmode/snmpconsole/snmp_filters.php:38 -#: ../../godmode/snmpconsole/snmp_filters.php:42 -#: ../../operation/snmpconsole/snmp_statistics.php:64 -#: ../../operation/snmpconsole/snmp_view.php:466 -#: ../../operation/snmpconsole/snmp_view.php:553 -msgid "SNMP Console" -msgstr "Consola SNMP" - -#: ../../godmode/snmpconsole/snmp_alert.php:78 -msgid "Update alert" -msgstr "Actualizar alerta" - -#: ../../godmode/snmpconsole/snmp_alert.php:82 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:455 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:533 -msgid "Create alert" -msgstr "Crear alerta" - -#: ../../godmode/snmpconsole/snmp_alert.php:86 -msgid "Alert overview" -msgstr "Vista general de alertas" - -#: ../../godmode/snmpconsole/snmp_alert.php:243 -msgid "There was a problem creating the alert" -msgstr "Hubo un problema al crear la alerta" - -#: ../../godmode/snmpconsole/snmp_alert.php:314 -msgid "There was a problem updating the alert" -msgstr "Hubo un problema al actualizar la alerta" - -#: ../../godmode/snmpconsole/snmp_alert.php:536 -msgid "There was a problem duplicating the alert" -msgstr "Hubo un problema al duplicar la alerta" - -#: ../../godmode/snmpconsole/snmp_alert.php:540 -msgid "Successfully Duplicate" -msgstr "Duplicado con éxito" - -#: ../../godmode/snmpconsole/snmp_alert.php:556 -msgid "There was a problem deleting the alert" -msgstr "Hubo un problema al borrar la alerta" - -#: ../../godmode/snmpconsole/snmp_alert.php:585 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:137 -#, php-format -msgid "Successfully deleted alerts (%s / %s)" -msgstr "Alertas eliminadas correctamente (%s / %s)" - -#: ../../godmode/snmpconsole/snmp_alert.php:589 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:141 -#, php-format -msgid "Unsuccessfully deleted alerts (%s / %s)" -msgstr "Alertas que no han podido ser eliminadas correctamente (%s / %s)" - -#: ../../godmode/snmpconsole/snmp_alert.php:637 -#: ../../godmode/snmpconsole/snmp_alert.php:1157 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:72 -#: ../../operation/snmpconsole/snmp_view.php:605 -msgid "Enterprise String" -msgstr "Cadena Enterprise" - -#: ../../godmode/snmpconsole/snmp_alert.php:643 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:245 -msgid "Custom Value/OID" -msgstr "Valor/OID personalizado" - -#: ../../godmode/snmpconsole/snmp_alert.php:652 -#: ../../godmode/snmpconsole/snmp_alert.php:1153 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:78 -#: ../../operation/snmpconsole/snmp_view.php:601 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:247 -msgid "SNMP Agent" -msgstr "Agente SNMP" - -#: ../../godmode/snmpconsole/snmp_alert.php:664 -#: ../../godmode/snmpconsole/snmp_alert.php:1003 -#: ../../operation/snmpconsole/snmp_view.php:420 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:169 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:220 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:249 -msgid "Trap type" -msgstr "Clase de trap" - -#: ../../godmode/snmpconsole/snmp_alert.php:669 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:251 -msgid "Single value" -msgstr "Valor único" - -#: ../../godmode/snmpconsole/snmp_alert.php:676 -#: ../../godmode/snmpconsole/snmp_alert.php:686 -#: ../../godmode/snmpconsole/snmp_alert.php:696 -#: ../../godmode/snmpconsole/snmp_alert.php:708 -#: ../../godmode/snmpconsole/snmp_alert.php:720 -#: ../../godmode/snmpconsole/snmp_alert.php:732 -#: ../../godmode/snmpconsole/snmp_alert.php:744 -#: ../../godmode/snmpconsole/snmp_alert.php:754 -#: ../../godmode/snmpconsole/snmp_alert.php:764 -#: ../../godmode/snmpconsole/snmp_alert.php:774 -#: ../../godmode/snmpconsole/snmp_alert.php:784 -#: ../../godmode/snmpconsole/snmp_alert.php:793 -#: ../../godmode/snmpconsole/snmp_alert.php:802 -#: ../../godmode/snmpconsole/snmp_alert.php:811 -#: ../../godmode/snmpconsole/snmp_alert.php:820 -#: ../../godmode/snmpconsole/snmp_alert.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:838 -#: ../../godmode/snmpconsole/snmp_alert.php:846 -#: ../../godmode/snmpconsole/snmp_alert.php:854 -#: ../../godmode/snmpconsole/snmp_alert.php:862 -msgid "Variable bindings/Data" -msgstr "Variables enlaces/ Datos" - -#: ../../godmode/snmpconsole/snmp_alert.php:933 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270 -msgid "Other value" -msgstr "Otros valores" - -#: ../../godmode/snmpconsole/snmp_alert.php:946 -#: ../../godmode/snmpconsole/snmp_alert.php:1151 -msgid "Alert action" -msgstr "Acción de alerta" - -#: ../../godmode/snmpconsole/snmp_alert.php:1000 -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 ) , el valor individual , cada uno de enlaces Variables / " -"Datos ." - -#: ../../godmode/snmpconsole/snmp_alert.php:1019 -msgid "Alert SNMP control filter" -msgstr "Filtro de control de alerta SNMP" - -#: ../../godmode/snmpconsole/snmp_alert.php:1112 -msgid "There are no SNMP alerts" -msgstr "No hay definida ninguna alerta SNMP" - -#: ../../godmode/snmpconsole/snmp_alert.php:1160 -msgid "Custom Value/Enterprise String" -msgstr "Valor personalizado / Cadena Enterprise" - -#: ../../godmode/snmpconsole/snmp_alert.php:1165 -#: ../../include/functions_treeview.php:423 -#: ../../include/functions_reporting_html.php:2882 -#: ../../include/functions_reporting_html.php:3110 -msgid "Times fired" -msgstr "Veces disparada" - -#: ../../godmode/snmpconsole/snmp_alert.php:1165 -msgid "TF." -msgstr "TF." - -#: ../../godmode/snmpconsole/snmp_alert.php:1256 -msgid "ID Alert SNMP" -msgstr "ID alerta SNMP" - -#: ../../godmode/snmpconsole/snmp_alert.php:1484 -msgid "Add action " -msgstr "Añadir acción " - -#: ../../godmode/snmpconsole/snmp_filters.php:42 -msgid "Filter overview" -msgstr "Revisión del filtro" - -#: ../../godmode/snmpconsole/snmp_filters.php:51 -msgid "There was a problem updating the filter" -msgstr "Ha habido un problema al actualizar el filtro" - -#: ../../godmode/snmpconsole/snmp_filters.php:63 -msgid "There was a problem creating the filter" -msgstr "Ha habido un problema al crear el filtro" - -#: ../../godmode/snmpconsole/snmp_filters.php:73 -msgid "There was a problem deleting the filter" -msgstr "Ha habido un problema al borrar el filtro" - -#: ../../godmode/snmpconsole/snmp_filters.php:98 -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_trap_generator.php:37 -msgid "SNMP Trap generator" -msgstr "Generador de Traps SNMP" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 -msgid "Empty parameters" -msgstr "Parámetros vacíos" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:56 -msgid "Successfully generated" -msgstr "Generado satisfactoriamente" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:57 -#, php-format -msgid "Could not be generated: %s" -msgstr "No se pudo generar: %s" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:81 -msgid "SNMP Type" -msgstr "Tipo de SNMP" - -#: ../../godmode/snmpconsole/snmp_trap_generator.php:89 -msgid "Generate trap" -msgstr "Generar trap" - -#: ../../godmode/tag/edit_tag.php:53 ../../godmode/tag/edit_tag.php:64 -#: ../../godmode/tag/tag.php:100 -msgid "List tags" -msgstr "Listar etiquetas" - -#: ../../godmode/tag/edit_tag.php:68 ../../godmode/tag/tag.php:110 -msgid "Tags configuration" -msgstr "Configuración de etiquetas" - -#: ../../godmode/tag/edit_tag.php:92 -msgid "Error updating tag" -msgstr "Error actualizando etiqueta" - -#: ../../godmode/tag/edit_tag.php:96 -msgid "Successfully updated tag" -msgstr "Etiqueta actualizada satisfactoriamente" - -#: ../../godmode/tag/edit_tag.php:122 -msgid "Error creating tag" -msgstr "Error creando etiqueta" - -#: ../../godmode/tag/edit_tag.php:128 -msgid "Successfully created tag" -msgstr "Etiqueta creada satisfactoriamente" - -#: ../../godmode/tag/edit_tag.php:161 -msgid "Update Tag" -msgstr "Actualizar Etiqueta" - -#: ../../godmode/tag/edit_tag.php:164 -msgid "Create Tag" -msgstr "Crear etiqueta" - -#: ../../godmode/tag/edit_tag.php:185 -#: ../../include/functions_reporting.php:3843 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1666 -#: ../../enterprise/meta/include/functions_wizard_meta.php:521 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:108 -msgid "Url" -msgstr "Url" - -#: ../../godmode/tag/edit_tag.php:187 -msgid "Hyperlink to help information that has to exist previously." -msgstr "Hiperenlace a la información de ayuda que debe existir previamente." - -#: ../../godmode/tag/edit_tag.php:197 -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 " -"Tags" - -#: ../../godmode/tag/edit_tag.php:205 ../../godmode/tag/tag.php:204 -#: ../../godmode/users/user_list.php:406 -msgid "Phone" -msgstr "Teléfono" - -#: ../../godmode/tag/edit_tag.php:207 -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 " -"Tags" - -#: ../../godmode/tag/tag.php:80 -msgid "Number of modules" -msgstr "Número de módulos" - -#: ../../godmode/tag/tag.php:82 -msgid "Number of policy modules" -msgstr "Número de módulos de política" - -#: ../../godmode/tag/tag.php:121 -msgid "Error deleting tag" -msgstr "Error eliminando la etiqueta" - -#: ../../godmode/tag/tag.php:125 -msgid "Successfully deleted tag" -msgstr "Etiqueta eliminada satisfactoriamente" - -#: ../../godmode/tag/tag.php:199 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1651 -msgid "Tag name" -msgstr "Nombre de etiqueta" - -#: ../../godmode/tag/tag.php:201 -msgid "Detail information" -msgstr "Información de los detalles" - -#: ../../godmode/tag/tag.php:202 -msgid "Number of modules affected" -msgstr "Número de módulos afectados" - -#: ../../godmode/tag/tag.php:222 -msgid "Tag details" -msgstr "Detalles de tag" - -#: ../../godmode/tag/tag.php:249 -#, php-format -msgid "Emails for the tag: %s" -msgstr "Correos para el tag: %s" - -#: ../../godmode/tag/tag.php:264 -#, php-format -msgid "Phones for the tag: %s" -msgstr "Teléfonos par el taf: %s" - -#: ../../godmode/tag/tag.php:282 -msgid "No tags defined" -msgstr "Tags no definidos" - -#: ../../godmode/tag/tag.php:298 -msgid "Create tag" -msgstr "Crear etiqueta" - -#: ../../godmode/update_manager/update_manager.messages.php:96 -#: ../../godmode/update_manager/update_manager.messages.php:170 -msgid "Mark as not read" -msgstr "Marcar como no leído" - -#: ../../godmode/update_manager/update_manager.messages.php:101 -#: ../../godmode/update_manager/update_manager.messages.php:175 -msgid "Mark as read" -msgstr "Marcar como leído" - -#: ../../godmode/update_manager/update_manager.messages.php:186 -msgid "There is not any update manager messages." -msgstr "No hay ningún mensaje del administrador de actualizaciones." - -#: ../../godmode/update_manager/update_manager.offline.php:37 -msgid "Drop the package here or" -msgstr "Arrastre el paquete hasta aquí o" - -#: ../../godmode/update_manager/update_manager.offline.php:38 -msgid "browse it" -msgstr "Navegue hasta él" - -#: ../../godmode/update_manager/update_manager.offline.php:39 -msgid "The package has been uploaded successfully." -msgstr "Se ha subido correctamente el paquete." - -#: ../../godmode/update_manager/update_manager.offline.php:40 -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." -msgstr "" -"Recuerda que este paquete sobreescribirá los ficheros actuales de Pandora " -"FMS. Se recomienda hacer un backup antes de continuar el proceso" - -#: ../../godmode/update_manager/update_manager.offline.php:41 -msgid "Click on the file below to begin." -msgstr "Click en el fichero de abajo para comenzar" - -#: ../../godmode/update_manager/update_manager.offline.php:42 -msgid "Updating" -msgstr "Actualizando" - -#: ../../godmode/update_manager/update_manager.offline.php:43 -msgid "Package updated successfully." -msgstr "Paquete actualizado correctamente." - -#: ../../godmode/update_manager/update_manager.offline.php:44 -msgid "If there are any database change, it will be applied." -msgstr "Si hay algún cambio en base de datos, será aplicado." - -#: ../../godmode/update_manager/update_manager.offline.php:45 -#: ../../include/functions_update_manager.php:345 -#: ../../enterprise/include/functions_update_manager.php:177 -msgid "Minor release available" -msgstr "Minor release disponible" - -#: ../../godmode/update_manager/update_manager.offline.php:46 -#: ../../include/functions_update_manager.php:346 -#: ../../enterprise/include/functions_update_manager.php:178 -msgid "New package available" -msgstr "Nuevo paquete disponible" - -#: ../../godmode/update_manager/update_manager.offline.php:47 -#: ../../godmode/update_manager/update_manager.offline.php:49 -#: ../../include/functions_update_manager.php:347 -#: ../../include/functions_update_manager.php:349 -#: ../../enterprise/include/functions_update_manager.php:179 -#: ../../enterprise/include/functions_update_manager.php:181 -msgid "Minor release rejected. Changes will not apply." -msgstr "Minor release rechazada. Los cambios no se aplicarán." - -#: ../../godmode/update_manager/update_manager.offline.php:48 -#: ../../include/functions_update_manager.php:348 -#: ../../enterprise/include/functions_update_manager.php:180 -msgid "" -"Minor release rejected. The database will not be updated and the package " -"will apply." -msgstr "" -"Minor release rechazada. La base de datos no será actualizada y el paquete " -"se aplicará." - -#: ../../godmode/update_manager/update_manager.offline.php:50 -#: ../../include/functions_update_manager.php:350 -#: ../../enterprise/include/functions_update_manager.php:182 -msgid "These package changes will not apply." -msgstr "Los cambios del paquete no se aplicarán" - -#: ../../godmode/update_manager/update_manager.offline.php:51 -#: ../../include/functions_update_manager.php:351 -#: ../../enterprise/include/functions_update_manager.php:183 -msgid "Package rejected. These package changes will not apply." -msgstr "Paquete rechazado. Los cambios de este paquete no se aplicarán." - -#: ../../godmode/update_manager/update_manager.offline.php:52 -#: ../../include/functions_update_manager.php:352 -#: ../../enterprise/include/functions_update_manager.php:184 -msgid "Database successfully updated" -msgstr "Base de datos correctamente actualizada" - -#: ../../godmode/update_manager/update_manager.offline.php:53 -#: ../../include/functions_update_manager.php:353 -#: ../../enterprise/include/functions_update_manager.php:185 -msgid "Error in MR file" -msgstr "Error en el fichero MR" - -#: ../../godmode/update_manager/update_manager.offline.php:54 -#: ../../include/functions_update_manager.php:354 -#: ../../enterprise/include/functions_update_manager.php:186 -msgid "Package updated successfully" -msgstr "Paquete aplicado con éxito" - -#: ../../godmode/update_manager/update_manager.offline.php:55 -#: ../../include/functions_update_manager.php:355 -#: ../../enterprise/include/functions_update_manager.php:187 -msgid "Error in package updated" -msgstr "Error al aplicar el paquete" - -#: ../../godmode/update_manager/update_manager.offline.php:56 -#: ../../include/functions_update_manager.php:356 -#: ../../enterprise/include/functions_update_manager.php:188 -msgid "" -"Database MR version is inconsistent, do you want to apply the package?" -msgstr "" -"La versión de MR en base de datos es inconsistente. ¿Desea aplicar el " -"paquete?" - -#: ../../godmode/update_manager/update_manager.offline.php:57 -#: ../../include/functions_update_manager.php:357 -#: ../../enterprise/include/functions_update_manager.php:189 -msgid "There are db changes" -msgstr "Este paquete contiene cambios en la base de datos" - -#: ../../godmode/update_manager/update_manager.offline.php:58 -#: ../../include/functions_update_manager.php:358 -#: ../../enterprise/include/functions_update_manager.php:190 -msgid "" -"There are new database changes available to apply. Do you want to start the " -"DB update process?" -msgstr "" -"Hay nuevos cambios en la base de datos disponibles para ser aplicados. " -"¿Quiere comenzar el proceso de actualización de la base de datos?" - -#: ../../godmode/update_manager/update_manager.offline.php:59 -#: ../../include/functions_update_manager.php:359 -#: ../../enterprise/include/functions_update_manager.php:191 -msgid "We recommend launching " -msgstr "Nosotros recomendamos lanzar " - -#: ../../godmode/update_manager/update_manager.offline.php:60 -#: ../../include/functions_update_manager.php:360 -#: ../../enterprise/include/functions_update_manager.php:192 -msgid "planned downtime" -msgstr "parada planificada" - -#: ../../godmode/update_manager/update_manager.offline.php:61 -#: ../../include/functions_update_manager.php:361 -#: ../../enterprise/include/functions_update_manager.php:193 -msgid " to this process" -msgstr " para este proceso" - -#: ../../godmode/update_manager/update_manager.offline.php:62 -#: ../../include/functions_update_manager.php:362 -#: ../../enterprise/include/functions_update_manager.php:194 -msgid "There is a new update available" -msgstr "Hay una actualización disponible" - -#: ../../godmode/update_manager/update_manager.offline.php:63 -#: ../../include/functions_update_manager.php:363 -#: ../../enterprise/include/functions_update_manager.php:195 -msgid "" -"There is a new update available to apply. Do you want to start the update " -"process?" -msgstr "" -"Hay una nueva actualización disponible. ¿Desea comenzar el proceso de " -"actualización?" - -#: ../../godmode/update_manager/update_manager.offline.php:64 -#: ../../include/functions_update_manager.php:364 -#: ../../enterprise/include/functions_update_manager.php:196 -msgid "Applying DB MR" -msgstr "Aplicando DB MR" - -#: ../../godmode/update_manager/update_manager.offline.php:67 -#: ../../include/functions_update_manager.php:367 -#: ../../enterprise/include/functions_update_manager.php:199 -msgid "Apply MR" -msgstr "Aplicar MR" - -#: ../../godmode/update_manager/update_manager.offline.php:68 -#: ../../include/functions_update_manager.php:368 -#: ../../include/functions_visual_map_editor.php:367 -#: ../../enterprise/godmode/policies/policy_agents.php:381 -#: ../../enterprise/godmode/policies/policy_queue.php:415 -#: ../../enterprise/include/functions_update_manager.php:200 -#: ../../enterprise/meta/advanced/policymanager.apply.php:215 -#: ../../enterprise/meta/advanced/policymanager.queue.php:306 -msgid "Apply" -msgstr "Aplicar" - -#: ../../godmode/update_manager/update_manager.online.php:48 -#, php-format -msgid "" -"Your PHP has set memory limit in %s. For avoid problems with big updates " -"please set to 500M" -msgstr "" -"Tu PHP tiene configurado set memory limit a %s. Para evitar problemas con " -"actualizaciones de gran tamaño, por favor configuralo a 500M" - -#: ../../godmode/update_manager/update_manager.online.php:55 -#, php-format -msgid "" -"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 corrija a 100M" - -#: ../../godmode/update_manager/update_manager.online.php:62 -#, 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" -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 corrija a 100 M" - -#: ../../godmode/update_manager/update_manager.online.php:85 -msgid "The latest version of package installed is:" -msgstr "La última versión del paquete instalado es:" - -#: ../../godmode/update_manager/update_manager.online.php:89 -msgid "Checking for the newest package." -msgstr "Comprobando el paquete más reciente" - -#: ../../godmode/update_manager/update_manager.online.php:93 -msgid "Downloading for the newest package." -msgstr "Descargando nuevos paquetes" - -#: ../../godmode/update_manager/update_manager.php:39 -msgid "Offline update manager" -msgstr "Gestor de actualizaciones offline" - -#: ../../godmode/update_manager/update_manager.php:43 -msgid "Online update manager" -msgstr "Gestor de actualizaciones online" - -#: ../../godmode/update_manager/update_manager.php:50 -msgid "Update manager messages" -msgstr "Mensajes del administrador de actualizaciones" - -#: ../../godmode/update_manager/update_manager.php:55 -msgid "Update manager » Setup" -msgstr "Configuración gestor de actualizaciones" - -#: ../../godmode/update_manager/update_manager.php:58 -msgid "Update manager » Offline" -msgstr "Gestor de actualizaciones offline" - -#: ../../godmode/update_manager/update_manager.php:61 -msgid "Update manager » Online" -msgstr "Gestor de actualizaciones online" - -#: ../../godmode/update_manager/update_manager.php:64 -msgid "Update manager » Messages" -msgstr "Administrador de actualizaciones » Mensajes" - -#: ../../godmode/update_manager/update_manager.setup.php:58 -#: ../../godmode/update_manager/update_manager.setup.php:87 -#: ../../enterprise/meta/advanced/metasetup.mail.php:63 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:58 -msgid "Succesful Update the url config vars." -msgstr "Actualizadas con éxito las variables de configuración de la url" - -#: ../../godmode/update_manager/update_manager.setup.php:59 -#: ../../godmode/update_manager/update_manager.setup.php:88 -#: ../../enterprise/meta/advanced/metasetup.mail.php:64 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:59 -msgid "Unsuccesful Update the url config vars." -msgstr "Error al actualizar las variables de configuración de la url" - -#: ../../godmode/update_manager/update_manager.setup.php:100 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:70 -msgid "URL update manager:" -msgstr "URL gestor de actualizaciones" - -#: ../../godmode/update_manager/update_manager.setup.php:102 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:72 -msgid "URL update manager" -msgstr "URL update manager" - -#: ../../godmode/update_manager/update_manager.setup.php:104 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:74 -msgid "Proxy server:" -msgstr "Servidor Proxy:" - -#: ../../godmode/update_manager/update_manager.setup.php:106 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:76 -msgid "Proxy server" -msgstr "Servidor proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:108 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:78 -msgid "Proxy port:" -msgstr "Puerto Proxy:" - -#: ../../godmode/update_manager/update_manager.setup.php:110 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:80 -msgid "Proxy port" -msgstr "Puerto del proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:112 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:82 -msgid "Proxy user:" -msgstr "Usuario del Proxy:" - -#: ../../godmode/update_manager/update_manager.setup.php:114 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:84 -msgid "Proxy user" -msgstr "Usuario del proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:116 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:86 -msgid "Proxy password:" -msgstr "Contraseña del Proxy:" - -#: ../../godmode/update_manager/update_manager.setup.php:118 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:88 -msgid "Proxy password" -msgstr "Contraseña del proxy" - -#: ../../godmode/update_manager/update_manager.setup.php:122 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:92 -msgid "Pandora FMS community reminder" -msgstr "Recordatorio de la comunidad de Pandora FMS" - -#: ../../godmode/update_manager/update_manager.setup.php:123 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:93 -msgid "" -"Every 8 days, a message is displayed to admin users to remember to register " -"this Pandora instance" -msgstr "" -"Cada 8 días, un mensaje será mostrado al administrador para que recuerde " -"registrar esta instancia de Pandora" - -#: ../../godmode/users/configure_profile.php:41 -#: ../../godmode/users/configure_profile.php:49 -#: ../../godmode/users/configure_user.php:84 -#: ../../godmode/users/profile_list.php:45 -#: ../../godmode/users/profile_list.php:53 -#: ../../godmode/users/user_list.php:113 ../../godmode/users/user_list.php:121 -#: ../../enterprise/meta/general/main_header.php:243 -#: ../../enterprise/meta/general/main_header.php:309 -#: ../../enterprise/meta/include/functions_users_meta.php:168 -#: ../../enterprise/meta/include/functions_users_meta.php:187 -msgid "User management" -msgstr "Gestión de usuarios" - -#: ../../godmode/users/configure_profile.php:49 -#: ../../godmode/users/profile_list.php:53 -msgid "Profiles defined in Pandora" -msgstr "Perfiles definidos en Pandora" - -#: ../../godmode/users/configure_profile.php:113 -msgid "Create profile" -msgstr "Crear perfil" - -#: ../../godmode/users/configure_profile.php:119 -msgid "There was a problem loading profile" -msgstr "Hubo un problema al cargar el perfil" - -#: ../../godmode/users/configure_profile.php:219 -msgid "Update profile" -msgstr "Actualizar perfil" - -#: ../../godmode/users/configure_profile.php:229 -msgid "Update Profile" -msgstr "Actualizar Perfil" - -#: ../../godmode/users/configure_profile.php:231 -msgid "Create Profile" -msgstr "Crear Perfil" - -#: ../../godmode/users/configure_profile.php:249 -msgid "View agents" -msgstr "Ver agentes" - -#: ../../godmode/users/configure_profile.php:253 -msgid "Disable agents" -msgstr "Desactivar agentes" - -#: ../../godmode/users/configure_profile.php:257 -msgid "Edit agents" -msgstr "Editar agentes" - -#: ../../godmode/users/configure_profile.php:264 -msgid "Edit alerts" -msgstr "Editar alertas" - -#: ../../godmode/users/configure_profile.php:275 ../../operation/menu.php:274 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:217 -#: ../../enterprise/meta/event/custom_events.php:38 -msgid "View events" -msgstr "Ver eventos" - -#: ../../godmode/users/configure_profile.php:279 -msgid "Edit events" -msgstr "Editar eventos" - -#: ../../godmode/users/configure_profile.php:290 -msgid "View reports" -msgstr "Ver informes" - -#: ../../godmode/users/configure_profile.php:294 -msgid "Edit reports" -msgstr "Editar informes" - -#: ../../godmode/users/configure_profile.php:298 -msgid "Manage reports" -msgstr "Gestionar informes" - -#: ../../godmode/users/configure_profile.php:305 -msgid "View network maps" -msgstr "Ver mapas de red" - -#: ../../godmode/users/configure_profile.php:309 -msgid "Edit network maps" -msgstr "Editar mapas de red" - -#: ../../godmode/users/configure_profile.php:313 -msgid "Manage network maps" -msgstr "Gestionar mapas de red" - -#: ../../godmode/users/configure_profile.php:320 -#: ../../include/functions_menu.php:497 -msgid "View visual console" -msgstr "Ver consola visual" - -#: ../../godmode/users/configure_profile.php:324 -msgid "Edit visual console" -msgstr "Editar consola visual" - -#: ../../godmode/users/configure_profile.php:328 -#: ../../include/functions_menu.php:532 -msgid "Manage visual console" -msgstr "Gestionar consolas visuales" - -#: ../../godmode/users/configure_profile.php:335 -msgid "View incidents" -msgstr "Ver incidentes" - -#: ../../godmode/users/configure_profile.php:339 -msgid "Edit incidents" -msgstr "Editar incidentes" - -#: ../../godmode/users/configure_profile.php:343 -msgid "Manage incidents" -msgstr "Gestionar incidentes" - -#: ../../godmode/users/configure_profile.php:350 -msgid "Manage users" -msgstr "Gestionar usuarios" - -#: ../../godmode/users/configure_profile.php:357 -msgid "Manage database" -msgstr "Gestión de la base de datos" - -#: ../../godmode/users/configure_profile.php:364 -msgid "Pandora management" -msgstr "Gestionar Pandora FMS" - -#: ../../godmode/users/configure_user.php:92 -#: ../../operation/users/user_edit.php:62 -msgid "User detail editor" -msgstr "Editor de detalles de usuario" - -#: ../../godmode/users/configure_user.php:150 -#: ../../godmode/users/user_list.php:492 -msgid "" -"The current authentication scheme doesn't support creating users from " -"Pandora FMS" -msgstr "" -"El esquema actual de autenticación no soporta la creación de usuarios desde " -"Pandora FMS." - -#: ../../godmode/users/configure_user.php:202 -msgid "User ID cannot be empty" -msgstr "El ID de usuario no puede estar vacío." - -#: ../../godmode/users/configure_user.php:209 -msgid "Passwords cannot be empty" -msgstr "Las contraseñas no pueden estar vacías" - -#: ../../godmode/users/configure_user.php:216 -msgid "Passwords didn't match" -msgstr "Las contraseñas no coinciden" - -#: ../../godmode/users/configure_user.php:265 -msgid "" -"Strict ACL is not recommended for admin users because performance could be " -"affected." -msgstr "" -"ACL Estricto no está recomendado para usuarios admin porque el rendimiento " -"podría verse afectado." - -#: ../../godmode/users/configure_user.php:340 -#: ../../godmode/users/configure_user.php:350 -#: ../../godmode/users/configure_user.php:379 -#: ../../godmode/users/configure_user.php:385 -#: ../../godmode/users/configure_user.php:413 -#: ../../operation/users/user_edit.php:154 -#: ../../operation/users/user_edit.php:164 -msgid "User info successfully updated" -msgstr "Información del usuario actualizada correctamente" - -#: ../../godmode/users/configure_user.php:341 -#: ../../godmode/users/configure_user.php:351 -#: ../../godmode/users/configure_user.php:380 -#: ../../godmode/users/configure_user.php:386 -#: ../../godmode/users/configure_user.php:414 -msgid "Error updating user info (no change?)" -msgstr "Error al actualizar la información del usuario (¿no hubo cambios?)" - -#: ../../godmode/users/configure_user.php:355 -msgid "Passwords does not match" -msgstr "Las contraseñas no coinciden" - -#: ../../godmode/users/configure_user.php:404 -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:436 -msgid "Profile added successfully" -msgstr "Perfil añadído con éxito" - -#: ../../godmode/users/configure_user.php:437 -msgid "Profile cannot be added" -msgstr "El perfil no se puede añadir" - -#: ../../godmode/users/configure_user.php:463 -msgid "Update User" -msgstr "Actualizar Usuario" - -#: ../../godmode/users/configure_user.php:466 -msgid "Create User" -msgstr "Crear Usuario" - -#: ../../godmode/users/configure_user.php:479 -#: ../../godmode/users/user_list.php:266 -#: ../../include/functions_reporting_html.php:2826 -#: ../../operation/search_users.php:38 -#: ../../operation/snmpconsole/snmp_view.php:619 -#: ../../operation/users/user_edit.php:184 -msgid "User ID" -msgstr "ID usuario" - -#: ../../godmode/users/configure_user.php:483 -#: ../../operation/users/user_edit.php:186 -msgid "Full (display) name" -msgstr "Nombre completo" - -#: ../../godmode/users/configure_user.php:487 -#: ../../operation/users/user_edit.php:255 -#: ../../enterprise/extensions/translate_string.php:250 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:132 -msgid "Language" -msgstr "Idioma" - -#: ../../godmode/users/configure_user.php:495 -#: ../../operation/users/user_edit.php:221 -msgid "Password confirmation" -msgstr "Confirmar contraseña" - -#: ../../godmode/users/configure_user.php:502 -msgid "Global Profile" -msgstr "Perfil global" - -#: ../../godmode/users/configure_user.php:506 -#: ../../godmode/users/user_list.php:414 ../../operation/search_users.php:64 -msgid "Administrator" -msgstr "Administrador" - -#: ../../godmode/users/configure_user.php:507 -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:511 -#: ../../operation/search_users.php:69 -msgid "Standard User" -msgstr "Usuario estándar" - -#: ../../godmode/users/configure_user.php:512 -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:515 -#: ../../godmode/users/user_list.php:407 -#: ../../operation/users/user_edit.php:208 -msgid "E-mail" -msgstr "Correo-e" - -#: ../../godmode/users/configure_user.php:519 -#: ../../operation/users/user_edit.php:210 -msgid "Phone number" -msgstr "Número de teléfono" - -#: ../../godmode/users/configure_user.php:554 -msgid "Use global conf" -msgstr "Usar configuración global" - -#: ../../godmode/users/configure_user.php:558 -#: ../../operation/users/user_edit.php:274 -msgid "Home screen" -msgstr "Pantalla de inicio" - -#: ../../godmode/users/configure_user.php:559 -#: ../../operation/users/user_edit.php:274 -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" -msgstr "" -"El usuario puede personalizar la página principal . Por defecto, desplegará " -"'Detalle del Agente'. Ejemplo: Seleccione 'Otro' y type " -"sec=estado&sec2=operation/agentes/estado_agente para mostrarla vista " -"detallada del agente." - -#: ../../godmode/users/configure_user.php:564 -#: ../../operation/agentes/group_view.php:70 ../../operation/menu.php:48 -#: ../../operation/users/user_edit.php:279 -#: ../../enterprise/meta/monitoring/group_view.php:46 -msgid "Group view" -msgstr "Vista de grupo" - -#: ../../godmode/users/configure_user.php:565 -#: ../../mobile/operation/home.php:38 ../../mobile/operation/tactical.php:84 -#: ../../operation/agentes/tactical.php:55 ../../operation/menu.php:45 -#: ../../operation/users/user_edit.php:280 -#: ../../enterprise/dashboard/widgets/tactical.php:27 -#: ../../enterprise/dashboard/widgets/tactical.php:29 -#: ../../enterprise/meta/general/main_header.php:93 -#: ../../enterprise/meta/monitoring/tactical.php:60 -msgid "Tactical view" -msgstr "Vista táctica" - -#: ../../godmode/users/configure_user.php:566 -#: ../../operation/agentes/alerts_status.php:132 ../../operation/menu.php:62 -#: ../../operation/users/user_edit.php:281 -msgid "Alert detail" -msgstr "Detalle de alertas" - -#: ../../godmode/users/configure_user.php:569 -#: ../../mobile/include/functions_web.php:21 -#: ../../operation/users/user_edit.php:284 -#: ../../enterprise/extensions/vmware/vmware_view.php:1109 -#: ../../enterprise/extensions/vmware/vmware_view.php:1128 -#: ../../enterprise/mobile/operation/dashboard.php:221 -#: ../../enterprise/operation/menu.php:89 -msgid "Dashboard" -msgstr "Dashboard" - -#: ../../godmode/users/configure_user.php:613 -msgid "Metaconsole access" -msgstr "Acceso a la metaconsola" - -#: ../../godmode/users/configure_user.php:621 -msgid "Not Login" -msgstr "No se logea" - -#: ../../godmode/users/configure_user.php:622 -msgid "The user with not login set only can access to API." -msgstr "El usuario sin permiso de acceso solo puede tener acceso al API" - -#: ../../godmode/users/configure_user.php:625 -msgid "Strict ACL" -msgstr "ACL Estricto" - -#: ../../godmode/users/configure_user.php:626 -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" -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" - -#: ../../godmode/users/configure_user.php:629 -msgid "Session Time" -msgstr "TIempo de sesión" - -#: ../../godmode/users/configure_user.php:639 -msgid "Default event filter" -msgstr "Filtro de eventos por defecto" - -#: ../../godmode/users/configure_user.php:646 -msgid "Enable agents managment" -msgstr "Habilitar gestión de agentes" - -#: ../../godmode/users/configure_user.php:653 -msgid "Assigned node" -msgstr "Nodo asignado" - -#: ../../godmode/users/configure_user.php:653 -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:665 -msgid "Enable node access" -msgstr "Habilitar el acceso al nodo" - -#: ../../godmode/users/configure_user.php:665 -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:696 -#: ../../godmode/users/configure_user.php:705 -#: ../../operation/users/user_edit.php:480 -#: ../../operation/users/user_edit.php:488 -msgid "Profiles/Groups assigned to this user" -msgstr "Perfiles/Grupos asignados a este usuario" - -#: ../../godmode/users/profile_list.php:80 -msgid "" -"Unsucessful delete profile. Because the profile is used by some admin users." -msgstr "" -"La eliminación del perfil no ha tenido éxito. Porque el perfil está siendo " -"usado por algunos usuarios administradores." - -#: ../../godmode/users/profile_list.php:88 -#: ../../godmode/users/user_list.php:189 -msgid "There was a problem deleting the profile" -msgstr "Hubo un problema al borrar el perfil" - -#: ../../godmode/users/profile_list.php:226 -msgid "There was a problem updating this profile" -msgstr "Hubo un problema al borrar el perfil" - -#: ../../godmode/users/profile_list.php:230 -msgid "Profile name cannot be empty" -msgstr "El nombre de perfil no puede estar vacío" - -#: ../../godmode/users/profile_list.php:282 -#: ../../godmode/users/profile_list.php:286 -msgid "There was a problem creating this profile" -msgstr "Hubo un problema al crear el perfil" - -#: ../../godmode/users/profile_list.php:304 -#: ../../enterprise/extensions/disabled/check_acls.php:44 -#: ../../enterprise/extensions/disabled/check_acls.php:124 -msgid "System incidents reading" -msgstr "Lectura de incidentes del sistema" - -#: ../../godmode/users/profile_list.php:305 -#: ../../enterprise/extensions/disabled/check_acls.php:45 -#: ../../enterprise/extensions/disabled/check_acls.php:125 -msgid "System incidents writing" -msgstr "Escritura de incidentes del sistema" - -#: ../../godmode/users/profile_list.php:306 -#: ../../enterprise/extensions/disabled/check_acls.php:46 -#: ../../enterprise/extensions/disabled/check_acls.php:126 -msgid "System incidents management" -msgstr "Gestión de incidentes del sistema" - -#: ../../godmode/users/profile_list.php:307 -#: ../../enterprise/extensions/disabled/check_acls.php:47 -#: ../../enterprise/extensions/disabled/check_acls.php:127 -msgid "Agents reading" -msgstr "Lectura de agentes" - -#: ../../godmode/users/profile_list.php:308 -#: ../../include/functions_menu.php:490 -#: ../../enterprise/extensions/disabled/check_acls.php:48 -#: ../../enterprise/extensions/disabled/check_acls.php:128 -msgid "Agents management" -msgstr "Gestión de agentes" - -#: ../../godmode/users/profile_list.php:309 -#: ../../enterprise/extensions/disabled/check_acls.php:49 -#: ../../enterprise/extensions/disabled/check_acls.php:129 -msgid "Agents disable" -msgstr "Deshabilitar agentes" - -#: ../../godmode/users/profile_list.php:310 -#: ../../enterprise/extensions/disabled/check_acls.php:50 -#: ../../enterprise/extensions/disabled/check_acls.php:130 -msgid "Alerts editing" -msgstr "Edición de alertas" - -#: ../../godmode/users/profile_list.php:311 -#: ../../enterprise/extensions/disabled/check_acls.php:53 -#: ../../enterprise/extensions/disabled/check_acls.php:133 -msgid "Alerts management" -msgstr "Gestión de alertas" - -#: ../../godmode/users/profile_list.php:313 -#: ../../enterprise/extensions/disabled/check_acls.php:52 -#: ../../enterprise/extensions/disabled/check_acls.php:132 -msgid "Database management" -msgstr "Gestión de la BB. DD." - -#: ../../godmode/users/profile_list.php:314 -#: ../../enterprise/extensions/disabled/check_acls.php:57 -#: ../../enterprise/extensions/disabled/check_acls.php:137 -msgid "Events reading" -msgstr "Lectura de eventos" - -#: ../../godmode/users/profile_list.php:315 -#: ../../enterprise/extensions/disabled/check_acls.php:58 -#: ../../enterprise/extensions/disabled/check_acls.php:138 -msgid "Events writing" -msgstr "Escritura de eventos" - -#: ../../godmode/users/profile_list.php:316 -#: ../../enterprise/extensions/disabled/check_acls.php:59 -#: ../../enterprise/extensions/disabled/check_acls.php:139 -msgid "Events management" -msgstr "Gestión de eventos" - -#: ../../godmode/users/profile_list.php:317 -#: ../../enterprise/extensions/disabled/check_acls.php:54 -#: ../../enterprise/extensions/disabled/check_acls.php:134 -msgid "Reports reading" -msgstr "Lectura de informes" - -#: ../../godmode/users/profile_list.php:318 -#: ../../enterprise/extensions/disabled/check_acls.php:55 -#: ../../enterprise/extensions/disabled/check_acls.php:135 -msgid "Reports writing" -msgstr "Escritura de informes" - -#: ../../godmode/users/profile_list.php:319 -#: ../../enterprise/extensions/disabled/check_acls.php:56 -#: ../../enterprise/extensions/disabled/check_acls.php:136 -msgid "Reports management" -msgstr "Gestión de informes" - -#: ../../godmode/users/profile_list.php:320 -msgid "Network maps reading" -msgstr "Lectura de mapas de red" - -#: ../../godmode/users/profile_list.php:321 -msgid "Network maps writing" -msgstr "Escritura de mapas de red" - -#: ../../godmode/users/profile_list.php:322 -msgid "Network maps management" -msgstr "Gestión de mapas de red" - -#: ../../godmode/users/profile_list.php:323 -msgid "Visual console reading" -msgstr "Lectura de consola visual" - -#: ../../godmode/users/profile_list.php:324 -msgid "Visual console writing" -msgstr "Escritura de consola visual" - -#: ../../godmode/users/profile_list.php:325 -msgid "Visual console management" -msgstr "Gestión de consola visual" - -#: ../../godmode/users/profile_list.php:326 -#: ../../enterprise/extensions/disabled/check_acls.php:60 -#: ../../enterprise/extensions/disabled/check_acls.php:140 -msgid "Systems management" -msgstr "Gestión de sistemas" - -#: ../../godmode/users/profile_list.php:398 -msgid "There are no defined profiles" -msgstr "No hay perfiles definidos" - -#: ../../godmode/users/user_list.php:121 -msgid "Users defined in Pandora" -msgstr "Usuarios definidos en Pandora" - -#: ../../godmode/users/user_list.php:143 -#, php-format -msgid "Deleted user %s" -msgstr "Usuario eliminado %s" - -#: ../../godmode/users/user_list.php:148 ../../godmode/users/user_list.php:181 -msgid "There was a problem deleting the user" -msgstr "Hubo un problema al borrar el usuario" - -#: ../../godmode/users/user_list.php:163 -#, php-format -msgid "Deleted user %s from metaconsole" -msgstr "Usuario eliminado %s de la metaconsola" - -#: ../../godmode/users/user_list.php:172 -#, php-format -msgid "Deleted user %s from %s" -msgstr "Uuario eliminado %s de %s" - -#: ../../godmode/users/user_list.php:175 -#, php-format -msgid "Successfully deleted from %s" -msgstr "Eliminado correctamente de %s" - -#: ../../godmode/users/user_list.php:176 -#, php-format -msgid "There was a problem deleting the user from %s" -msgstr "Se produjo un problema al eliminar al usuario de %s" - -#: ../../godmode/users/user_list.php:204 -msgid "There was a problem disabling user" -msgstr "Hubo un problema al deshabilitar el usuario" - -#: ../../godmode/users/user_list.php:209 -msgid "There was a problem enabling user" -msgstr "Hubo un problema al habilitar el usuario" - -#: ../../godmode/users/user_list.php:231 ../../godmode/users/user_list.php:233 -msgid "Search by username, fullname or email" -msgstr "Buscar por nombre de usuario, nombre completo o email" - -#: ../../godmode/users/user_list.php:249 -msgid "Users control filter" -msgstr "Filtro de usuarios" - -#: ../../godmode/users/user_list.php:275 ../../godmode/users/user_list.php:413 -#: ../../operation/search_users.php:63 -#: ../../enterprise/extensions/disabled/check_acls.php:61 -#: ../../enterprise/extensions/disabled/check_acls.php:141 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:250 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:391 -msgid "Admin" -msgstr "Admin" - -#: ../../godmode/users/user_list.php:276 -msgid "Profile / Group" -msgstr "Perfil / Grupo" - -#: ../../godmode/users/user_list.php:457 ../../operation/search_users.php:82 -msgid "The user doesn't have any assigned profile/group" -msgstr "El usuario no tiene ningún perfil asignado" - -#: ../../godmode/users/user_list.php:470 -msgid "Deleting User" -msgstr "Borrando usuario." - -#: ../../godmode/users/user_list.php:472 -msgid "Delete from all consoles" -msgstr "Eliminar de todas las consolas" - -#: ../../godmode/users/user_list.php:472 -#, php-format -msgid "Deleting User %s from all consoles" -msgstr "Eliminando usuario %s de todas las consolas" - -#: ../../godmode/users/user_list.php:488 -msgid "Create user" -msgstr "Crear usuario" +msgid "Executing command: %s" +msgstr "Ejecutar comando:%s" + +#: ../../include/ajax/events.php:165 +msgid "Execute again" +msgstr "Ejecutar de nuevo" + +#: ../../include/ajax/events.php:299 ../../include/functions_reports.php:581 +#: ../../include/functions_reporting.php:5451 +#: ../../godmode/alerts/configure_alert_template.php:148 +#: ../../godmode/alerts/configure_alert_template.php:153 +#: ../../godmode/setup/setup.php:74 ../../godmode/setup/setup.php:112 +#: ../../godmode/servers/plugin.php:326 ../../godmode/servers/plugin.php:332 +msgid "General" +msgstr "General" + +#: ../../include/ajax/events.php:300 +msgid "Details" +msgstr "Detalles" + +#: ../../include/ajax/events.php:301 +msgid "Agent fields" +msgstr "Campos de agente" + +#: ../../include/ajax/events.php:306 ../../godmode/events/events.php:73 +msgid "Responses" +msgstr "Respuestas" + +#: ../../include/ajax/events.php:309 +msgid "Custom data" +msgstr "Datos personalizado" + +#: ../../include/ajax/events.php:377 +msgid "Error adding comment" +msgstr "Error al añadir comentario" + +#: ../../include/ajax/events.php:378 +msgid "Comment added successfully" +msgstr "Comentario añadido con éxito" + +#: ../../include/ajax/events.php:379 +msgid "Error changing event status" +msgstr "Error al cambiar el estado del evento" + +#: ../../include/ajax/events.php:380 +msgid "Event status changed successfully" +msgstr "Estado del evento cambiado con éxito" + +#: ../../include/ajax/events.php:381 +msgid "Error changing event owner" +msgstr "Error al cambiar propietario del evento" + +#: ../../include/ajax/events.php:382 +msgid "Event owner changed successfully" +msgstr "Propietario del evento cambiado con éxito" + +#: ../../include/ajax/events.php:481 +#: ../../godmode/massive/massive_edit_modules.php:484 +#: ../../godmode/agentes/module_manager_editor_network.php:85 +msgid "Auto" +msgstr "Automático" #: ../../include/ajax/double_auth.ajax.php:146 msgid "" @@ -19514,7 +10712,6 @@ msgstr "" #: ../../include/ajax/double_auth.ajax.php:151 #: ../../include/ajax/double_auth.ajax.php:287 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:97 msgid "Code" msgstr "Código" @@ -19556,15 +10753,6 @@ msgstr "Continuar" msgid "Are you installed the app yet?" msgstr "¿Ya ha instalado la aplicación?" -#: ../../include/ajax/double_auth.ajax.php:254 -#: ../../include/ajax/double_auth.ajax.php:351 -#: ../../include/ajax/double_auth.ajax.php:396 -#: ../../include/ajax/double_auth.ajax.php:511 -#: ../../operation/users/user_edit.php:701 -#: ../../operation/users/user_edit.php:766 -msgid "There was an error loading the data" -msgstr "Se ha producido un error al cargar los datos" - #: ../../include/ajax/double_auth.ajax.php:277 msgid "A private code has been generated" msgstr "Un código privado ha sido generado" @@ -19580,346 +10768,2413 @@ msgstr "" msgid "Refresh code" msgstr "Refrescar el código" -#: ../../include/ajax/double_auth.ajax.php:360 +#: ../../include/ajax/double_auth.ajax.php:358 msgid "Are you introduced the code in the authenticator app yet?" msgstr "¿ Ya ha introducido el código en la aplicación de autenticación?" -#: ../../include/ajax/double_auth.ajax.php:422 +#: ../../include/ajax/double_auth.ajax.php:420 msgid "Introduce a code generated by the app" msgstr "Introduce el código generado por la aplicación" -#: ../../include/ajax/double_auth.ajax.php:423 +#: ../../include/ajax/double_auth.ajax.php:421 msgid "If the code is valid, the double authentication will be activated" msgstr "Si el código es válido, la doble autenticación se activará" -#: ../../include/ajax/double_auth.ajax.php:432 +#: ../../include/ajax/double_auth.ajax.php:430 msgid "Validate code" msgstr "Validar código" -#: ../../include/ajax/double_auth.ajax.php:483 +#: ../../include/ajax/double_auth.ajax.php:481 msgid "The code is valid, you can exit now" msgstr "El código es válido, puede salir ahora" -#: ../../include/ajax/double_auth.ajax.php:491 -#: ../../mobile/include/user.class.php:171 ../../enterprise/meta/index.php:239 -#: ../../index.php:253 -msgid "Invalid code" -msgstr "Código inválido" - -#: ../../include/ajax/double_auth.ajax.php:499 +#: ../../include/ajax/double_auth.ajax.php:497 msgid "The code is valid, but it was an error saving the data" msgstr "El código es válido, pero hubo un error guardando los datos" -#: ../../include/ajax/events.php:158 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:269 -#, php-format -msgid "Executing command: %s" -msgstr "Ejecutar comando:%s" +#: ../../include/functions_update_manager.php:202 +msgid "There is a unknown error." +msgstr "Hay un error desconocido." -#: ../../include/ajax/events.php:165 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:276 -msgid "Execute again" -msgstr "Ejecutar de nuevo" +#: ../../include/functions_update_manager.php:316 +#: ../../include/functions_update_manager.php:319 +#: ../../include/functions_update_manager.php:409 +#: ../../include/functions_update_manager.php:413 +msgid "Could not connect to internet" +msgstr "No se puede conectar con internet" -#: ../../include/ajax/events.php:300 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:210 -msgid "Details" -msgstr "Detalles" +#: ../../include/functions_update_manager.php:324 +#: ../../include/functions_update_manager.php:327 +#: ../../include/functions_update_manager.php:420 +#: ../../include/functions_update_manager.php:424 +msgid "Server not found." +msgstr "Servidor no encontrado" -#: ../../include/ajax/events.php:301 -msgid "Agent fields" -msgstr "Campos de agente" +#: ../../include/functions_update_manager.php:346 +msgid "Update to the next version" +msgstr "Actualizar a la siguiente versión" -#: ../../include/ajax/events.php:309 -msgid "Custom data" -msgstr "Datos personalizado" +#: ../../include/functions_update_manager.php:349 +msgid "There is no update available." +msgstr "No hay actualizaciones disponibles" -#: ../../include/ajax/events.php:377 -msgid "Error adding comment" -msgstr "Error al añadir comentario" +#: ../../include/functions_update_manager.php:458 +#: ../../include/functions_update_manager.php:488 +msgid "Remote server error on newsletter request" +msgstr "Error de servidor remoto en la solicitud de boletín informativo" -#: ../../include/ajax/events.php:378 -msgid "Comment added successfully" -msgstr "Comentario añadido con éxito" +#: ../../include/functions_update_manager.php:466 +msgid "E-mail successfully subscribed to newsletter." +msgstr "E-mail suscrito correctamente al boletín informativo" -#: ../../include/ajax/events.php:379 -msgid "Error changing event status" -msgstr "Error al cambiar el estado del evento" +#: ../../include/functions_update_manager.php:468 +msgid "E-mail has already subscribed to newsletter." +msgstr "El E-mail ya está suscrito al boletín informativo" -#: ../../include/ajax/events.php:380 -msgid "Event status changed successfully" -msgstr "Estado del evento cambiado con éxito" +#: ../../include/functions_update_manager.php:470 +#: ../../include/functions_update_manager.php:510 +msgid "Update manager returns error code: " +msgstr "El administrador de actualizaciones devolvió un error: " -#: ../../include/ajax/events.php:381 -msgid "Error changing event owner" -msgstr "Error al cambiar propietario del evento" +#: ../../include/functions_update_manager.php:505 +msgid "Pandora successfully subscribed with UID: " +msgstr "Pandora se suscribió correctamente con UID: " -#: ../../include/ajax/events.php:382 -msgid "Event owner changed successfully" -msgstr "Propietario del evento cambiado con éxito" +#: ../../include/functions_update_manager.php:507 +msgid "Unsuccessful subscription." +msgstr "No se pudo suscribir" -#: ../../include/ajax/events.php:447 -#: ../../include/functions_reporting.php:6371 -#: ../../include/functions_events.php:928 -#: ../../include/functions_events.php:2402 -#: ../../include/functions_events.php:3657 -#: ../../include/functions_reporting_html.php:845 -#: ../../include/functions_reporting_html.php:1061 -#: ../../include/functions_reporting_html.php:1673 -#: ../../mobile/operation/events.php:247 -#: ../../operation/events/events.build_table.php:304 -msgid "New event" -msgstr "Nuevo evento" +#: ../../include/functions_update_manager.php:635 +msgid "Failed extracting the package to temp directory." +msgstr "Fallo al extraer el paquete al directorio temporal" -#: ../../include/ajax/events.php:451 -#: ../../include/functions_reporting.php:6375 -#: ../../include/functions_events.php:932 -#: ../../include/functions_events.php:2406 -#: ../../include/functions_events.php:3661 -#: ../../include/functions_reporting_html.php:849 -#: ../../include/functions_reporting_html.php:1065 -#: ../../include/functions_reporting_html.php:1677 -#: ../../mobile/operation/events.php:251 -#: ../../operation/events/events.build_table.php:308 -#: ../../operation/events/events.php:689 ../../operation/events/events.php:718 -#: ../../operation/events/events.php:719 ../../operation/events/events.php:939 -#: ../../operation/events/events.php:944 ../../operation/events/events.php:945 -msgid "Event validated" -msgstr "Evento validado" +#: ../../include/functions_update_manager.php:664 +msgid "Failed the copying of the files." +msgstr "Fallo copiando los ficheros" -#: ../../include/ajax/events.php:455 -#: ../../include/functions_reporting.php:6379 -#: ../../include/functions_events.php:936 -#: ../../include/functions_events.php:2410 -#: ../../include/functions_events.php:3665 -#: ../../include/functions_reporting_html.php:853 -#: ../../include/functions_reporting_html.php:1069 -#: ../../include/functions_reporting_html.php:1681 -#: ../../mobile/operation/events.php:255 -#: ../../operation/events/events.build_table.php:312 -#: ../../operation/events/events.php:751 ../../operation/events/events.php:789 -#: ../../operation/events/events.php:790 ../../operation/events/events.php:949 -#: ../../operation/events/events.php:963 ../../operation/events/events.php:964 -msgid "Event in process" -msgstr "Evento en proceso" +#: ../../include/functions_update_manager.php:680 +msgid "Package extracted successfully." +msgstr "Paquete extraído correctamente" -#: ../../include/ajax/graph.ajax.php:141 -msgid "Time container lapse" -msgstr "Intervalo de tiempo del contenedor" +#: ../../include/functions_visual_map.php:1150 +msgid "Last value: " +msgstr "Ultimo valor: " -#: ../../include/ajax/module.php:133 ../../include/functions.php:2614 -msgid "30 minutes" -msgstr "30 minutos" +#: ../../include/functions_visual_map.php:1665 +#: ../../include/functions_visual_map.php:1898 +#: ../../godmode/massive/massive_add_action_alerts.php:59 +#: ../../godmode/massive/massive_add_alerts.php:73 +#: ../../godmode/massive/massive_edit_agents.php:92 +#: ../../godmode/massive/massive_delete_agents.php:33 +#: ../../godmode/massive/massive_delete_modules.php:61 +#: ../../godmode/massive/massive_delete_tags.php:97 +#: ../../godmode/massive/massive_add_tags.php:33 +#: ../../godmode/massive/massive_delete_alerts.php:83 +msgid "No agents selected" +msgstr "No se selección ningún agente" -#: ../../include/ajax/module.php:135 -#: ../../enterprise/godmode/agentes/inventory_manager.php:178 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:192 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:184 -msgid "6 hours" -msgstr "6 horas" +#: ../../include/functions_visual_map.php:1723 +msgid "Agent successfully added to layout" +msgstr "Agente añadido correctamente a la distribución" -#: ../../include/ajax/module.php:141 ../../include/functions_netflow.php:1063 -msgid "3 months" -msgstr "3 meses" +#: ../../include/functions_visual_map.php:1749 +#: ../../godmode/massive/massive_add_action_alerts.php:116 +#: ../../godmode/massive/massive_delete_action_alerts.php:119 +#: ../../godmode/massive/massive_edit_modules.php:1073 +#: ../../godmode/massive/massive_delete_tags.php:102 +#: ../../godmode/massive/massive_add_tags.php:38 +#: ../../godmode/reporting/visual_console_builder.php:486 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:174 +msgid "No modules selected" +msgstr "No se han seleccionado módulos" -#: ../../include/ajax/module.php:142 ../../include/functions_netflow.php:1064 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:193 -msgid "6 months" -msgstr "6 meses" +#: ../../include/functions_visual_map.php:1870 +msgid "Modules successfully added to layout" +msgstr "Módulos añadidos correctamente a la distribución" -#: ../../include/ajax/module.php:143 ../../include/functions.php:2054 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:194 -msgid "1 year" -msgstr "1 año" +#: ../../include/functions_visual_map.php:2067 +msgid "Agents successfully added to layout" +msgstr "Agentes añadidos con éxito a la plantilla" -#: ../../include/ajax/module.php:144 ../../include/functions_netflow.php:1066 -msgid "2 years" -msgstr "2 años" +#: ../../include/functions_visual_map.php:2408 +msgid "Cannot load the visualmap" +msgstr "No se puede cargar el mapa visual" -#: ../../include/ajax/module.php:145 -msgid "3 years" -msgstr "3 años" +#: ../../include/functions_visual_map.php:2740 +#: ../../include/functions_visual_map_editor.php:62 +#: ../../include/functions_visual_map_editor.php:611 +#: ../../godmode/reporting/visual_console_builder.elements.php:188 +msgid "Box" +msgstr "caja" -#: ../../include/ajax/module.php:149 -#: ../../operation/agentes/datos_agente.php:185 -msgid "Choose a time from now" -msgstr "Elija un tiempo a partir de ahora" +#: ../../include/functions_visual_map.php:2748 +msgid "Percentile bar" +msgstr "Barra de porcentaje" -#: ../../include/ajax/module.php:161 -#: ../../operation/agentes/datos_agente.php:188 -msgid "Specify time range" -msgstr "Especificar rango de tiempo" +#: ../../include/functions_visual_map.php:2752 +msgid "Static graph" +msgstr "Imagen estática" -#: ../../include/ajax/module.php:162 -#: ../../operation/agentes/datos_agente.php:189 -#: ../../operation/events/events_list.php:556 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:450 -msgid "Timestamp from:" -msgstr "Timestamp desde:" +#: ../../include/functions_visual_map.php:2757 +#: ../../include/functions_visual_map_editor.php:607 +#: ../../godmode/reporting/visual_console_builder.elements.php:158 +msgid "Simple Value" +msgstr "Valor simple" -#: ../../include/ajax/module.php:170 -#: ../../operation/agentes/datos_agente.php:195 -#: ../../operation/events/events_list.php:559 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 -msgid "Timestamp to:" -msgstr "Timestamp hasta:" +#: ../../include/functions_visual_map.php:2761 +#: ../../include/functions_visual_map_editor.php:59 +#: ../../include/functions_visual_map_editor.php:167 +#: ../../include/functions_visual_map_editor.php:608 +#: ../../godmode/reporting/graph_builder.graph_editor.php:86 +#: ../../godmode/reporting/visual_console_builder.wizard.php:300 +#: ../../godmode/reporting/visual_console_builder.elements.php:77 +#: ../../godmode/reporting/visual_console_builder.elements.php:178 +#: ../../godmode/reporting/reporting_builder.item_editor.php:693 +msgid "Label" +msgstr "Etiqueta" -#: ../../include/ajax/module.php:732 -#: ../../operation/agentes/alerts_status.php:422 -#: ../../operation/agentes/alerts_status.php:466 -#: ../../operation/agentes/alerts_status.php:500 -#: ../../operation/agentes/alerts_status.php:535 -msgid "Force execution" -msgstr "Forzar ejecución" +#: ../../include/functions_visual_map.php:2769 +#: ../../include/functions_visual_map_editor.php:60 +#: ../../include/functions_visual_map_editor.php:609 +#: ../../godmode/setup/os.builder.php:39 +#: ../../godmode/reporting/visual_console_builder.elements.php:183 +#: ../../godmode/groups/group_list.php:338 +#: ../../godmode/groups/configure_group.php:119 +#: ../../godmode/modules/module_list.php:57 +msgid "Icon" +msgstr "Icono" -#: ../../include/ajax/module.php:732 -#: ../../operation/agentes/alerts_status.php:423 -#: ../../operation/agentes/alerts_status.php:466 -#: ../../operation/agentes/alerts_status.php:500 -#: ../../operation/agentes/alerts_status.php:535 -msgid "F." -msgstr "F." +#: ../../include/functions_snmp.php:67 +msgid "Load Average (Last minute)" +msgstr "Carga media (Última hora)" -#: ../../include/ajax/module.php:804 ../../include/functions_ui.php:834 -#: ../../include/functions_groups.php:771 -#: ../../include/functions_groups.php:964 -#: ../../operation/agentes/group_view.php:163 -#: ../../operation/agentes/group_view.php:216 -#: ../../operation/servers/recon_view.php:86 -#: ../../operation/servers/recon_view.php:118 -#: ../../enterprise/extensions/ipam/ipam_network.php:154 -#: ../../enterprise/godmode/agentes/inventory_manager.php:272 -#: ../../enterprise/operation/services/services.list.php:469 -msgid "Force" -msgstr "Forzar" +#: ../../include/functions_snmp.php:71 +msgid "Load Average (Last 5 minutes)" +msgstr "Carga media (últimos 5 minutos)" -#: ../../include/ajax/module.php:1093 -msgid "Any monitors aren't with this filter." -msgstr "No todos los monitores llevan este filtro" +#: ../../include/functions_snmp.php:75 +msgid "Load Average (Last 15 minutes)" +msgstr "Carga media (últimos 15 minutos)" -#: ../../include/ajax/module.php:1096 -msgid "This agent doesn't have any active monitors." -msgstr "Este agente no tiene ningún monitor activo" +#: ../../include/functions_snmp.php:79 +msgid "Total Swap Size configured for the host" +msgstr "Tamaño de intercambio total configurado para el host" -#: ../../include/ajax/rolling_release.ajax.php:56 -msgid "The sql file contains a dangerous query" -msgstr "El fichero sql contiene una query peligrosa" +#: ../../include/functions_snmp.php:83 +msgid "Available Swap Space on the host" +msgstr "Espacio de intercambio disponible en el host" -#: ../../include/ajax/rolling_release.ajax.php:103 +#: ../../include/functions_snmp.php:87 +msgid "Total Real/Physical Memory Size on the host" +msgstr "Tamaño de memoria real/física en el servidor" + +#: ../../include/functions_snmp.php:91 +msgid "Available Real/Physical Memory Space on the host" +msgstr "Memoria real/física disponible en el servidor" + +#: ../../include/functions_snmp.php:95 +msgid "Total Available Memory on the host" +msgstr "Memoria total disponible" + +#: ../../include/functions_snmp.php:99 +msgid "Total Cached Memory" +msgstr "Memoria caché total" + +#: ../../include/functions_snmp.php:103 +msgid "Total Buffered Memory" +msgstr "Memoria total de búfer" + +#: ../../include/functions_snmp.php:107 +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:111 +msgid "Amount of memory swapped to disk (kB/s)" +msgstr "La cantidad de memoria intercambiada con el disco (kB / s)" + +#: ../../include/functions_snmp.php:115 +msgid "Number of blocks sent to a block device" +msgstr "Número de bloques enviado al dispositivo de bloques" + +#: ../../include/functions_snmp.php:119 +msgid "Number of blocks received from a block device" +msgstr "Número de bloques recibidos del dispositivo de bloques" + +#: ../../include/functions_snmp.php:123 +msgid "Number of interrupts processed" +msgstr "Número de interrupciones procesadas" + +#: ../../include/functions_snmp.php:127 +msgid "Number of context switches" +msgstr "Número de cambios de contexto" + +#: ../../include/functions_snmp.php:131 +msgid "user CPU time" +msgstr "tiempo de CPU de usuario" + +#: ../../include/functions_snmp.php:135 +msgid "system CPU time" +msgstr "tiempo de CPU del sistema" + +#: ../../include/functions_snmp.php:139 +msgid "idle CPU time" +msgstr "tiempo de inactividad de la CPU" + +#: ../../include/functions_snmp.php:143 +msgid "system Up time" +msgstr "Tiempo de actividad del sistema" + +#: ../../include/functions_filemanager.php:172 +#: ../../include/functions_filemanager.php:242 +#: ../../include/functions_filemanager.php:300 +#: ../../include/functions_filemanager.php:382 +msgid "Security error" +msgstr "Error de seguridad" + +#: ../../include/functions_filemanager.php:185 +msgid "Upload error" +msgstr "Error de subida" + +#: ../../include/functions_filemanager.php:193 +#: ../../include/functions_filemanager.php:261 +#: ../../include/functions_filemanager.php:326 +msgid "Upload correct" +msgstr "Subida correcta" + +#: ../../include/functions_filemanager.php:206 msgid "" -"An error occurred while updating the database schema to the minor release " +"File size seems to be too large. Please check your php.ini configuration or " +"contact with the administrator" msgstr "" -"Ha ocurrido un error cuando se actualizaba el esquema de base de datos en el " -"fichero de minor release " +"El tamaño del archivo es demasiado grande. Por favor, compruebe su " +"configuración php.ini o contacte con el administrador" -#: ../../include/ajax/rolling_release.ajax.php:117 -#: ../../include/ajax/rolling_release.ajax.php:130 -msgid "The directory " -msgstr "El directorio " +#: ../../include/functions_filemanager.php:254 +msgid "Error creating file" +msgstr "Error al crear fichero" -#: ../../include/ajax/rolling_release.ajax.php:117 -msgid " should have read permissions in order to update the database schema" +#: ../../include/functions_filemanager.php:267 +#: ../../include/functions_filemanager.php:362 +msgid "Error creating file with empty name" +msgstr "Error al crear archivo con nombre en blanco" + +#: ../../include/functions_filemanager.php:312 +msgid "Attach error" +msgstr "Error en el adjunto" + +#: ../../include/functions_filemanager.php:348 +msgid "Security error." +msgstr "Error de seguridad." + +#: ../../include/functions_filemanager.php:357 +msgid "Directory created" +msgstr "Directorio creado" + +#: ../../include/functions_filemanager.php:385 +#: ../../include/functions_reporting_html.php:1238 +msgid "Deleted" +msgstr "Eliminado(s)" + +#: ../../include/functions_filemanager.php:550 +#, php-format +msgid "Directory %s doesn't exist!" +msgstr "El directorio %s no existe" + +#: ../../include/functions_filemanager.php:561 +#: ../../godmode/setup/file_manager.php:63 +#: ../../godmode/servers/plugin.php:224 +#, php-format +msgid "Index of %s" +msgstr "Índice de %s" + +#: ../../include/functions_filemanager.php:565 +msgid "Index of images" +msgstr "Índice de imágenes" + +#: ../../include/functions_filemanager.php:603 +msgid "Parent directory" +msgstr "Directorio padre" + +#: ../../include/functions_filemanager.php:632 +msgid "The zip upload in this dir, easy to upload multiple files." msgstr "" -" debería tener permisos de lectura para actualizar el esquema de la base de " -"datos" +"Subir archivo zip a este directorio, útil para subir múltiples archivos." -#: ../../include/ajax/rolling_release.ajax.php:130 -msgid " does not exist" -msgstr " no existe" +#: ../../include/functions_filemanager.php:636 +msgid "Decompress" +msgstr "Descomprimir" -#: ../../include/ajax/update_manager.ajax.php:75 -#: ../../enterprise/include/functions_update_manager.php:362 -msgid "There was an error extracting the file '" -msgstr "Hay un error al extraer el fichero '" +#: ../../include/functions_filemanager.php:638 +msgid "Go" +msgstr "Ir" -#: ../../include/ajax/update_manager.ajax.php:91 -#: ../../enterprise/include/functions_update_manager.php:379 -msgid "The package was not extracted." -msgstr "El paquete no se pudo extraer" +#: ../../include/functions_filemanager.php:679 +msgid "Directory" +msgstr "Directorio" -#: ../../include/ajax/update_manager.ajax.php:97 -msgid "Invalid extension. The package must have the extension .oum." -msgstr "Extensión inválida. El paquete debe tener la extensión .oum" +#: ../../include/functions_filemanager.php:682 +#: ../../include/functions_visual_map_editor.php:198 +#: ../../godmode/reporting/visual_console_builder.wizard.php:118 +#: ../../godmode/reporting/visual_console_builder.elements.php:78 +msgid "Image" +msgstr "Imagen" -#: ../../include/ajax/update_manager.ajax.php:104 -msgid "The file was not uploaded succesfully." -msgstr "El fichero no se pudo subir correctamente." +#: ../../include/functions_filemanager.php:685 +msgid "Compressed file" +msgstr "Archivo comprimido" -#: ../../include/ajax/update_manager.ajax.php:173 -#: ../../include/ajax/update_manager.ajax.php:177 -#: ../../include/ajax/update_manager.ajax.php:204 -#: ../../include/functions_update_manager.php:128 -#: ../../include/functions_update_manager.php:132 -#: ../../include/functions_update_manager.php:158 -#: ../../enterprise/include/functions_update_manager.php:501 -#: ../../enterprise/include/functions_update_manager.php:505 -#: ../../enterprise/include/functions_update_manager.php:532 -msgid "Some of your files might not be recovered." +#: ../../include/functions_filemanager.php:688 +#: ../../include/functions_filemanager.php:695 +msgid "Text file" +msgstr "Fichero de texto" + +#: ../../include/functions_filemanager.php:759 +#: ../../godmode/servers/plugin.php:151 +msgid "Edit file" +msgstr "Editar archivo" + +#: ../../include/functions_filemanager.php:785 +msgid "Create directory" +msgstr "Crear directorio" + +#: ../../include/functions_filemanager.php:790 +msgid "Create text" +msgstr "Crear texto" + +#: ../../include/functions_filemanager.php:795 +msgid "Upload file/s" +msgstr "Subir archivo/s" + +#: ../../include/functions_filemanager.php:802 +msgid "The directory is read-only" +msgstr "Este directorio es de solo lectura" + +#: ../../include/functions_db.php:75 +#, php-format +msgid "Error connecting to database %s at %s." +msgstr "Error conectando a la base de datos %s el %s" + +#: ../../include/functions_db.php:1499 ../../godmode/menu.php:317 +#: ../../godmode/db/db_refine.php:33 +msgid "Database debug" +msgstr "Depurar BBDD" + +#: ../../include/functions_db.php:1515 +msgid "SQL sentence" +msgstr "Consulta SQL" + +#: ../../include/functions_db.php:1517 +msgid "Rows" +msgstr "Filas" + +#: ../../include/functions_db.php:1518 +msgid "Saved" +msgstr "Guardado" + +#: ../../include/functions_db.php:1519 +msgid "Time (ms)" +msgstr "Tiempo (ms)" + +#: ../../include/functions_db.php:1529 +#: ../../include/functions_reporting_html.php:496 +#: ../../include/functions_reporting_html.php:575 +#: ../../include/functions_reporting_html.php:675 +#: ../../include/functions_reporting_html.php:2043 +#: ../../include/functions_reporting_html.php:2523 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1333 +msgid "OK" +msgstr "Bien" + +#: ../../include/functions_custom_graphs.php:226 +#: ../../godmode/reporting/reporting_builder.list_items.php:313 +msgid "No items." +msgstr "Sin artículos." + +#: ../../include/functions_groups.php:63 +msgid "Alert Actions" +msgstr "Acciones de alerta" + +#: ../../include/functions_groups.php:78 +msgid "Alert Templates" +msgstr "Plantillas de alerta" + +#: ../../include/functions_groups.php:135 +msgid "Layout visual console" +msgstr "Diseño de la consola visual" + +#: ../../include/functions_groups.php:149 +msgid "Plannet down time" +msgstr "Tiempo de inactividad estipulado" + +#: ../../include/functions_groups.php:176 +msgid "GIS maps" +msgstr "Mapas GIS" + +#: ../../include/functions_groups.php:190 +msgid "GIS connections" +msgstr "Conexiones GIS" + +#: ../../include/functions_groups.php:204 +msgid "GIS map layers" +msgstr "Mapas GIS adicionales" + +#: ../../include/functions_groups.php:217 +msgid "Network maps" +msgstr "Mapas de red" + +#: ../../include/functions_groups.php:2149 +msgid "Show branch children" +msgstr "Mostrar los grupos dependientes" + +#: ../../include/functions_groups.php:2178 +msgid "" +"You can not delete the last group in Pandora. A common installation must has " +"almost one group." msgstr "" -"Algunos de sus ficheros puede que no se hayan recuperado correctamente." +"No se puede borrar el último grupo en Pandora. Una instalación normal debe " +"tener al menos un grupo." -#: ../../include/ajax/update_manager.ajax.php:181 -#: ../../include/ajax/update_manager.ajax.php:198 -#: ../../include/functions_update_manager.php:136 -#: ../../include/functions_update_manager.php:152 -#: ../../enterprise/include/functions_update_manager.php:510 -#: ../../enterprise/include/functions_update_manager.php:526 -msgid "Some of your old files might not be recovered." -msgstr "Algunos de sus ficheros antiguos no se han podido recuperar." +#: ../../include/functions_ui.php:225 +msgid "Information" +msgstr "Información" -#: ../../include/ajax/update_manager.ajax.php:219 -#: ../../include/functions_update_manager.php:173 -#: ../../enterprise/include/functions_update_manager.php:547 -msgid "An error ocurred while reading a file." -msgstr "Se produjo un error al leer un fichero" +#: ../../include/functions_ui.php:231 +msgid "Success" +msgstr "Éxito" -#: ../../include/ajax/update_manager.ajax.php:226 -#: ../../include/functions_update_manager.php:180 -#: ../../enterprise/include/functions_update_manager.php:554 -msgid "The package does not exist" -msgstr "El paquete no existe." +#: ../../include/functions_ui.php:367 +msgid "Request successfully processed" +msgstr "Petición procesada correctamente" -#: ../../include/ajax/update_manager.ajax.php:240 -msgid "Package rejected." -msgstr "Paquete rechazado" +#: ../../include/functions_ui.php:370 +msgid "Error processing request" +msgstr "Error al procesar la petición" -#: ../../include/ajax/update_manager.ajax.php:414 -#: ../../enterprise/include/functions_update_manager.php:315 -msgid "Fail to update to the last package." -msgstr "Fallo al actualizar al ultimo paquete" +#: ../../include/functions_ui.php:508 +msgid "" +"Is possible that this view uses part of information which your user has not " +"access" +msgstr "" +"Es posible que esta vista utilize parte de la información a la cual su " +"usuario no tenga acceso" -#: ../../include/ajax/update_manager.ajax.php:422 -#: ../../enterprise/include/functions_update_manager.php:330 -msgid "Starting to update to the last package." -msgstr "Comenzando la actualización al último paquete" +#: ../../include/functions_ui.php:1003 ../../godmode/alerts/alert_view.php:152 +#: ../../godmode/alerts/configure_alert_template.php:846 +msgid "The alert would fire when the value is " +msgstr "" +"La alerta se disparará cuando el valor sea " -#: ../../include/ajax/update_manager.ajax.php:493 -#: ../../enterprise/include/functions_update_manager.php:423 -msgid "progress" -msgstr "Progreso" +#: ../../include/functions_ui.php:1007 ../../godmode/alerts/alert_view.php:156 +#: ../../godmode/alerts/configure_alert_template.php:847 +msgid "The alert would fire when the value is not " +msgstr "" +"La alerta se disparará cuando el valor no sea " -#: ../../include/ajax/update_manager.ajax.php:514 -msgid "The package is extracted." -msgstr "El paquete se extrajo." +#: ../../include/functions_ui.php:1012 ../../godmode/alerts/alert_view.php:144 +#: ../../godmode/alerts/configure_alert_template.php:844 +msgid "" +"The alert would fire when the value matches " +msgstr "" +"La alerta se disparará cuando el valor coincida con " -#: ../../include/ajax/update_manager.ajax.php:518 -msgid "Error in package extraction." -msgstr "Error en la extracción del paquete." +#: ../../include/functions_ui.php:1015 ../../godmode/alerts/alert_view.php:147 +msgid "" +"The alert would fire when the value doesn't match " +msgstr "" +"La alerta se disparará cuando el valor no coincida con " -#: ../../include/ajax/update_manager.ajax.php:536 -#: ../../include/functions_update_manager.php:189 -#: ../../enterprise/include/functions_update_manager.php:563 -msgid "The package is installed." -msgstr "El paquete está instalado" +#: ../../include/functions_ui.php:1021 ../../godmode/alerts/alert_view.php:161 +#: ../../godmode/alerts/configure_alert_template.php:848 +msgid "" +"The alert would fire when the value is between and " +"" +msgstr "" +"La alerta se disparará cuando el valor esté entre y " +"" -#: ../../include/ajax/update_manager.ajax.php:540 -msgid "An error ocurred in the installation process." -msgstr "Ha ocurrido un error en el proceso de instalación." +#: ../../include/functions_ui.php:1024 ../../godmode/alerts/alert_view.php:164 +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/ajax/visual_console_builder.ajax.php:180 -#: ../../include/functions_graph.php:5226 -msgid "No data to show" -msgstr "No hay datos que mostrar" +#: ../../include/functions_ui.php:1028 +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:1033 +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:1038 ../../godmode/alerts/alert_view.php:186 +#: ../../godmode/alerts/configure_alert_template.php:852 +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:1043 ../../godmode/alerts/alert_view.php:189 +#: ../../godmode/alerts/configure_alert_template.php:853 +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:1080 +#: ../../godmode/servers/recon_script.php:183 +#: ../../godmode/servers/plugin.php:473 +msgid "Help" +msgstr "Ayuda" + +#: ../../include/functions_ui.php:1307 +msgid "the Flexible Monitoring System" +msgstr "el Sistema Flexible de Monitorización" + +#: ../../include/functions_ui.php:1627 ../../include/functions_ui.php:1661 +#, php-format +msgid "Total items: %s" +msgstr "Total de elementos %s" + +#: ../../include/functions_ui.php:1968 +msgid "Unknown type" +msgstr "Tipo desconocido" + +#: ../../include/functions_ui.php:2001 ../../include/functions_graph.php:758 +#: ../../include/functions_graph.php:759 ../../include/functions_graph.php:760 +#: ../../include/functions_graph.php:763 +#: ../../include/functions_graph.php:1433 +#: ../../include/functions_graph.php:3947 +#: ../../include/functions_graph.php:3952 +#: ../../include/functions_graph.php:4670 +#: ../../include/functions_graph.php:4673 +#: ../../include/functions_graph.php:4676 +#: ../../include/graphs/functions_pchart.php:202 +#: ../../include/graphs/functions_pchart.php:1190 +#: ../../include/functions_reporting.php:948 +#: ../../godmode/alerts/alert_view.php:310 +#: ../../godmode/reporting/reporting_builder.item_editor.php:781 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1284 +msgid "Max" +msgstr "Máx" + +#: ../../include/functions_ui.php:2001 ../../include/functions_graph.php:758 +#: ../../include/functions_graph.php:759 ../../include/functions_graph.php:760 +#: ../../include/functions_graph.php:763 +#: ../../include/functions_graph.php:1435 +#: ../../include/functions_graph.php:3947 +#: ../../include/functions_graph.php:3952 +#: ../../include/functions_graph.php:4670 +#: ../../include/functions_graph.php:4673 +#: ../../include/functions_graph.php:4676 +#: ../../include/graphs/functions_pchart.php:208 +#: ../../include/graphs/functions_pchart.php:1188 +#: ../../include/functions_reporting.php:951 +#: ../../godmode/alerts/alert_view.php:310 +#: ../../godmode/reporting/reporting_builder.item_editor.php:779 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1286 +msgid "Min" +msgstr "Mín" + +#: ../../include/functions_ui.php:2781 +msgid "Type at least two characters to search." +msgstr "Escriba al menos dos caracteres para buscar." + +#: ../../include/functions_ui.php:3574 +msgid "Problem with Pandora FMS database" +msgstr "Problema con la base de datos de Pandora FMS" + +#: ../../include/functions_ui.php:3575 +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\tthe database server is not running." +msgstr "" +"No se pudo conectar a la base de datos, por favor, compruebe su " +"configuración de base de datos en el fichero include/config.php " +"

    \n" +"\t\t\tProbablemente su valor de administrador, usuario o contraseña sean " +"incorrectos.\n" +"\t\t\tla base de datos no está en ejecución." + +#: ../../include/functions_ui.php:3579 +msgid "DB ERROR" +msgstr "ERROR de la BD" + +#: ../../include/functions_ui.php:3585 +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\";
    " +msgstr "" +"Si usted ha modificado el sistema de autenticación, este problema puede ser " +"porque Pandora no puede anular las variables de autorización de la base de " +"datos de configuración. Quítelas de su base de datos " +"ejecutando
    DELETE FROM tconfig WHERE token = \"auth\";
    " + +#: ../../include/functions_ui.php:3589 +msgid "Empty configuration table" +msgstr "Tabla de configuración vacía" + +#: ../../include/functions_ui.php:3590 +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

    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, compruebe la configuración de su base de datos en el\n" +"\t\t\tinclude/config.php file.

    \n" +"\t\t\tLo más probable es que el esquema de su base de datos haya sido creada " +"pero no hay datos dentro, tiene un problema con los credenciales o su " +"esquema está fuera de fecha\n" +"\t\t\t

    La consola de Pandora FMS no puede encontrar " +"include/config.php or this file has invalid\n" +"\t\t\tpermisos y el servidor HTTP no puede leerlo. Por favor, lea la " +"documentación para solucionar este problema.
    " + +#: ../../include/functions_ui.php:3597 +msgid "No configuration file found" +msgstr "No se ha encontrado el fichero de configuración" + +#: ../../include/functions_ui.php:3598 +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." +msgstr "" +"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, lea la " +"documentación para solucionar este problema." + +#: ../../include/functions_ui.php:3609 +#, php-format +msgid "You may try to run the %sinstallation wizard%s to create one." +msgstr "" +"Puede intentar correr el %sinstallation wizard%s para crear uno." + +#: ../../include/functions_ui.php:3612 +msgid "Installer active" +msgstr "Instalador activo" + +#: ../../include/functions_ui.php:3613 +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." +msgstr "" +"Por razones de seguridad no podrá operar con normalidad gasta que elimine el " +"archivo de instalación\n" +"\t\t\tPor favor, elimine el archivo ./install.php antes de ejecutar " +"la consola de Pandora FMS." + +#: ../../include/functions_ui.php:3617 +msgid "Bad permission for include/config.php" +msgstr "Permiso incorrecto para include/config.php" + +#: ../../include/functions_ui.php:3618 +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." +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 el. Solo " +"debería poder escribir el creador\n" +"\t\t\t(habitualmente www-data o http daemon usuario), la operación normal no " +"es posible hasta que cambie\n" +"\t\t\tlos permisos para el fichero include/config.php . Por favor " +"hágalo, es por su seguridad." + +#: ../../include/functions_visual_map_editor.php:53 +#: ../../include/functions_visual_map_editor.php:359 +#: ../../godmode/reporting/visual_console_builder.elements.php:111 +#: ../../godmode/reporting/visual_console_builder.data.php:139 +msgid "Background" +msgstr "Imagen de fondo" + +#: ../../include/functions_visual_map_editor.php:54 +#: ../../include/functions_visual_map_editor.php:604 +#: ../../godmode/reporting/visual_console_builder.wizard.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:138 +msgid "Static Graph" +msgstr "Icono" + +#: ../../include/functions_visual_map_editor.php:55 +#: ../../include/functions_visual_map_editor.php:605 +#: ../../godmode/reporting/visual_console_builder.wizard.php:105 +msgid "Percentile Item" +msgstr "Item percentual" + +#: ../../include/functions_visual_map_editor.php:57 +#: ../../godmode/reporting/visual_console_builder.wizard.php:107 +msgid "Simple value" +msgstr "Valor simple" + +#: ../../include/functions_visual_map_editor.php:57 +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 "" +"Para usar el campo \"etiqueta\", debe escribir\n" +"\t\t\t\t\tun teto para reemplazar '(_VALUE_)' y el valor del módulo se " +"pintará al final." + +#: ../../include/functions_visual_map_editor.php:84 +#: ../../include/functions_visual_map_editor.php:386 +#: ../../godmode/setup/gis_step_2.php:257 +#: ../../godmode/events/event_responses.editor.php:104 +#: ../../godmode/reporting/visual_console_builder.wizard.php:134 +#: ../../godmode/reporting/graph_builder.main.php:137 +msgid "Width" +msgstr "Anchura" + +#: ../../include/functions_visual_map_editor.php:95 +#: ../../include/functions_visual_map_editor.php:119 +msgid "Border color" +msgstr "Color del borde" + +#: ../../include/functions_visual_map_editor.php:131 +msgid "Border width" +msgstr "Ancho del borde" + +#: ../../include/functions_visual_map_editor.php:140 +msgid "Fill color" +msgstr "Color de relleno" + +#: ../../include/functions_visual_map_editor.php:218 +msgid "Enable link" +msgstr "Activar enlace" + +#: ../../include/functions_visual_map_editor.php:237 +#: ../../godmode/reporting/visual_console_builder.data.php:144 +msgid "Background color" +msgstr "Color de fondo" + +#: ../../include/functions_visual_map_editor.php:239 +msgid "White" +msgstr "Blanco" + +#: ../../include/functions_visual_map_editor.php:240 +msgid "Black" +msgstr "Netro" + +#: ../../include/functions_visual_map_editor.php:241 +msgid "Transparent" +msgstr "Transparente" + +#: ../../include/functions_visual_map_editor.php:254 +#: ../../include/functions_visual_map_editor.php:264 +#: ../../include/functions_reports.php:429 +#: ../../include/functions_reports.php:505 +#: ../../include/functions_reports.php:507 +#: ../../include/functions_reporting.php:5748 +#: ../../godmode/reporting/visual_console_builder.elements.php:78 +#: ../../godmode/reporting/visual_console_builder.elements.php:380 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1134 +msgid "Custom graph" +msgstr "Gráfica personalizada" + +#: ../../include/functions_visual_map_editor.php:322 +#: ../../godmode/reporting/graph_builder.main.php:151 +msgid "Type of graph" +msgstr "Tipo de gráfica" + +#: ../../include/functions_visual_map_editor.php:348 +#: ../../godmode/reporting/visual_console_builder.wizard.php:193 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:431 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:948 +msgid "Process" +msgstr "Procesar" + +#: ../../include/functions_visual_map_editor.php:350 +#: ../../godmode/reporting/visual_console_builder.wizard.php:196 +msgid "Min value" +msgstr "Valor mínimo" + +#: ../../include/functions_visual_map_editor.php:351 +#: ../../include/functions_visual_map_editor.php:393 +#: ../../godmode/reporting/visual_console_builder.wizard.php:197 +#: ../../godmode/reporting/visual_console_builder.wizard.php:210 +msgid "Max value" +msgstr "Valor max." + +#: ../../include/functions_visual_map_editor.php:352 +#: ../../godmode/reporting/visual_console_builder.wizard.php:198 +msgid "Avg value" +msgstr "Valor medio" + +#: ../../include/functions_visual_map_editor.php:366 +msgid "Original Size" +msgstr "Tamaño original" + +#: ../../include/functions_visual_map_editor.php:367 +msgid "Apply" +msgstr "Aplicar" + +#: ../../include/functions_visual_map_editor.php:373 +msgid "Aspect ratio" +msgstr "Relación de aspecto" + +#: ../../include/functions_visual_map_editor.php:374 +msgid "Width proportional" +msgstr "Ancho proporcional" + +#: ../../include/functions_visual_map_editor.php:380 +msgid "Height proportional" +msgstr "Altura proporcional" + +#: ../../include/functions_visual_map_editor.php:409 +#: ../../include/functions_visual_map_editor.php:428 +#: ../../godmode/reporting/visual_console_builder.wizard.php:230 +msgid "Value to show" +msgstr "Valor a mostrar" + +#: ../../include/functions_visual_map_editor.php:438 +#: ../../godmode/reporting/visual_console_builder.wizard.php:185 +#: ../../godmode/reporting/visual_console_builder.elements.php:80 +#: ../../godmode/reporting/reporting_builder.item_editor.php:748 +#: ../../godmode/reporting/graph_builder.main.php:147 +#: ../../godmode/agentes/module_manager_editor_prediction.php:150 +msgid "Period" +msgstr "Periodo" + +#: ../../include/functions_visual_map_editor.php:497 +#: ../../godmode/snmpconsole/snmp_alert.php:966 +#: ../../godmode/snmpconsole/snmp_alert.php:1148 +#: ../../godmode/reporting/visual_console_builder.elements.php:80 +#: ../../godmode/reporting/reporting_builder.list_items.php:285 +msgid "Position" +msgstr "Posición" + +#: ../../include/functions_visual_map_editor.php:510 +msgid "For use the original image file size, set 0 width and 0 height." +msgstr "" +"Para usar el tamaño original de la imagen, coloque en 0 el ancho y en 0 el " +"alto." + +#: ../../include/functions_visual_map_editor.php:537 +#: ../../godmode/reporting/visual_console_builder.elements.php:81 +msgid "Map linked" +msgstr "Mapa enlazado" + +#: ../../include/functions_visual_map_editor.php:546 +msgid "Lines haven't advanced options" +msgstr "Las líneas no tienen opciones avanzadas" + +#: ../../include/functions_visual_map_editor.php:573 +msgid "Click start point
    of the line" +msgstr "Haga clic en el punto de inicio
    de la línea" + +#: ../../include/functions_visual_map_editor.php:578 +msgid "Click end point
    of the line" +msgstr "Haga clic en el punto final
    de la línea" + +#: ../../include/functions_visual_map_editor.php:626 +msgid "Show grid" +msgstr "Mostrar cuadrícula" + +#: ../../include/functions_visual_map_editor.php:628 +msgid "Delete item" +msgstr "Borrar elemento" + +#: ../../include/functions_visual_map_editor.php:629 +msgid "Copy item" +msgstr "Copiar elemento" + +#: ../../include/functions_visual_map_editor.php:657 +msgid "No image or name defined." +msgstr "No se ha definido ningun nombre o imagen" + +#: ../../include/functions_visual_map_editor.php:659 +msgid "No label defined." +msgstr "No se ha definido una etiqueta." + +#: ../../include/functions_visual_map_editor.php:661 +msgid "No image defined." +msgstr "No se ha definido ninguna imagen." + +#: ../../include/functions_visual_map_editor.php:663 +msgid "No process defined." +msgstr "No hay proceso definido." + +#: ../../include/functions_visual_map_editor.php:665 +msgid "No Max value defined." +msgstr "No hay valor máximo definido." + +#: ../../include/functions_visual_map_editor.php:667 +msgid "No width defined." +msgstr "No hay margen definido." + +#: ../../include/functions_visual_map_editor.php:669 +msgid "No period defined." +msgstr "No hay periodo definido." + +#: ../../include/functions_visual_map_editor.php:671 +msgid "No agent defined." +msgstr "No hay agente definido." + +#: ../../include/functions_visual_map_editor.php:673 +msgid "No module defined." +msgstr "No hay módulo definido." + +#: ../../include/functions_visual_map_editor.php:676 +msgid "Successfully save the changes." +msgstr "Cambios guardados con éxito" + +#: ../../include/functions_visual_map_editor.php:678 +msgid "Could not be save" +msgstr "No se puede guardar" + +#: ../../include/functions_reports.php:499 +#: ../../include/functions_reporting.php:5751 +#: ../../include/functions_reporting.php:5873 +msgid "Simple graph" +msgstr "Gráfica simple" + +#: ../../include/functions_reports.php:501 +#: ../../include/functions_reporting.php:3325 +msgid "Simple baseline graph" +msgstr "Gráfica simple de línea base" + +#: ../../include/functions_reports.php:511 +msgid "SQL vertical bar graph" +msgstr "Gráfica de barra vertical SQL" + +#: ../../include/functions_reports.php:513 +msgid "SQL pie graph" +msgstr "Gráfico circular de SQL" + +#: ../../include/functions_reports.php:515 +msgid "SQL horizonal bar graph" +msgstr "Gráfico de barra horizontal SQL" + +#: ../../include/functions_reports.php:519 +msgid "Automatic combined Graph" +msgstr "Grafica automática combinada" + +#: ../../include/functions_reports.php:523 +msgid "Availability graph" +msgstr "Gráfica de disponibilidad" + +#: ../../include/functions_reports.php:526 +msgid "Module Histogram graph" +msgstr "Gráfica de histórico de módulo" + +#: ../../include/functions_reports.php:528 +#: ../../include/functions_reports.php:530 +#: ../../include/functions_reports.php:532 +#: ../../include/functions_reports.php:534 +msgid "ITIL" +msgstr "I.T.I.L" + +#: ../../include/functions_reports.php:529 +#: ../../include/functions_reporting.php:3691 +msgid "TTRT" +msgstr "TTRT" + +#: ../../include/functions_reports.php:531 +#: ../../include/functions_reporting.php:3688 +msgid "TTO" +msgstr "TTO" + +#: ../../include/functions_reports.php:533 +#: ../../include/functions_reporting.php:3685 +msgid "MTBF" +msgstr "MTBF" + +#: ../../include/functions_reports.php:535 +#: ../../include/functions_reporting.php:3682 +msgid "MTTR" +msgstr "MTTR" + +#: ../../include/functions_reports.php:539 +#: ../../include/functions_reports.php:542 +#: ../../include/functions_reports.php:544 +#: ../../include/functions_reports.php:546 +#: ../../include/functions_reports.php:550 +msgid "SLA" +msgstr "S.L.A." + +#: ../../include/functions_reports.php:540 +#: ../../include/functions_reporting.php:530 +msgid "S.L.A." +msgstr "S.L.A." + +#: ../../include/functions_reports.php:543 +msgid "Monthly S.L.A." +msgstr "S.L.A mensual" + +#: ../../include/functions_reports.php:545 +msgid "Weekly S.L.A." +msgstr "S.L.A. Semanal" + +#: ../../include/functions_reports.php:547 +msgid "Hourly S.L.A." +msgstr "S.L.A. Horario" + +#: ../../include/functions_reports.php:551 +msgid "Services S.L.A." +msgstr "S.L.A. de Servicios" + +#: ../../include/functions_reports.php:556 +#: ../../include/functions_reports.php:558 +msgid "Forecasting" +msgstr "Predicción" + +#: ../../include/functions_reports.php:557 +msgid "Prediction date" +msgstr "Fecha de predicción" + +#: ../../include/functions_reports.php:559 +msgid "Projection graph" +msgstr "Gráfica de proyección" + +#: ../../include/functions_reports.php:564 +#: ../../include/functions_graph.php:704 +#: ../../include/functions_graph.php:3931 +msgid "Avg. Value" +msgstr "Valor promedio" + +#: ../../include/functions_reports.php:566 +#: ../../include/functions_graph.php:703 +#: ../../include/functions_graph.php:3931 +#: ../../include/functions_reporting.php:3670 +#: ../../godmode/modules/manage_network_components_form_common.php:166 +#: ../../godmode/agentes/module_manager_editor_common.php:423 +msgid "Max. Value" +msgstr "Valor máximo" + +#: ../../include/functions_reports.php:568 +#: ../../include/functions_graph.php:705 +#: ../../include/functions_graph.php:3932 +#: ../../include/functions_reporting.php:3673 +#: ../../godmode/modules/manage_network_components_form_common.php:164 +#: ../../godmode/agentes/module_manager_editor_common.php:419 +msgid "Min. Value" +msgstr "Valor mínimo" + +#: ../../include/functions_reports.php:570 +msgid "Monitor report" +msgstr "Informe de monitores" + +#: ../../include/functions_reports.php:572 +msgid "Serialize data" +msgstr "Serializar datos" + +#: ../../include/functions_reports.php:574 +#: ../../include/functions_reporting.php:3679 +#: ../../include/functions_reporting.php:5669 +msgid "Summatory" +msgstr "Sumatorio" + +#: ../../include/functions_reports.php:576 +msgid "Historical Data" +msgstr "Datos historicos" + +#: ../../include/functions_reports.php:580 +#: ../../include/functions_reports.php:582 +#: ../../include/functions_reports.php:584 +#: ../../include/functions_reports.php:587 +#: ../../include/functions_reports.php:591 +#: ../../include/functions_reports.php:594 +#: ../../include/functions_reports.php:596 +#: ../../include/functions_reports.php:598 +msgid "Grouped" +msgstr "Agrupado" + +#: ../../include/functions_reports.php:583 +msgid "Group report" +msgstr "Grupo de informes" + +#: ../../include/functions_reports.php:585 +#: ../../include/functions_reporting.php:1722 +msgid "Exception" +msgstr "Excepción" + +#: ../../include/functions_reports.php:592 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1208 +msgid "SQL query" +msgstr "Consulta SQL" + +#: ../../include/functions_reports.php:595 +msgid "Top n" +msgstr "Top n" + +#: ../../include/functions_reports.php:597 +msgid "Network interfaces" +msgstr "Interfaces de red" + +#: ../../include/functions_reports.php:599 +#: ../../include/functions_reporting.php:4817 +#: ../../include/functions_reporting.php:5060 +msgid "Availability" +msgstr "Disponibilidad" + +#: ../../include/functions_reports.php:602 +#: ../../include/functions_reports.php:604 +msgid "Text/HTML " +msgstr "Texto/HTML " + +#: ../../include/functions_reports.php:603 +#: ../../include/functions_reporting.php:3846 ../../godmode/setup/news.php:181 +#: ../../godmode/setup/setup_visuals.php:679 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1196 +msgid "Text" +msgstr "Texto" + +#: ../../include/functions_reports.php:605 +msgid "Import text from URL" +msgstr "Importar texto de una URL" + +#: ../../include/functions_reports.php:610 +msgid "Alert report module" +msgstr "Informe de alertas de un módulo" + +#: ../../include/functions_reports.php:612 +msgid "Alert report agent" +msgstr "Informe de alertas de un agente" + +#: ../../include/functions_reports.php:615 +msgid "Alert report group" +msgstr "Informe de alertas para grupos" + +#: ../../include/functions_reports.php:621 +msgid "Event report agent" +msgstr "Informe de los eventos de un agente" + +#: ../../include/functions_reports.php:623 +msgid "Event report module" +msgstr "Informe de los eventos de un módulo" + +#: ../../include/functions_reports.php:625 +msgid "Event report group" +msgstr "Informe de los eventos de un grupo" + +#: ../../include/functions_reports.php:628 +#: ../../include/functions_reports.php:629 +#: ../../include/functions_reports.php:631 +#: ../../include/functions_reporting.php:1585 +#: ../../godmode/agentes/configurar_agente.php:527 +msgid "Inventory" +msgstr "Inventario" + +#: ../../include/functions_reports.php:632 +msgid "Inventory changes" +msgstr "Inventario de cambios" + +#: ../../include/functions_reports.php:637 +#: ../../include/functions_reports.php:639 ../../godmode/menu.php:131 +#: ../../godmode/setup/setup.php:138 +#: ../../godmode/agentes/planned_downtime.list.php:396 +msgid "Configuration" +msgstr "Configuración" + +#: ../../include/functions_reports.php:638 +#: ../../include/functions_reporting.php:3522 +msgid "Agent configuration" +msgstr "Configuración de agentes" + +#: ../../include/functions_reports.php:640 +#: ../../include/functions_reporting.php:2511 +msgid "Group configuration" +msgstr "Configuración del grupo" + +#: ../../include/functions_reports.php:641 +#: ../../include/functions_reports.php:643 +#: ../../include/functions_reports.php:645 +#: ../../include/functions_reports.php:647 +#: ../../include/functions_reports.php:649 ../../godmode/menu.php:264 +#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:129 +msgid "Netflow" +msgstr "Netflow" + +#: ../../include/functions_reports.php:642 +msgid "Netflow area chart" +msgstr "Gráfica de area de Netflow" + +#: ../../include/functions_reports.php:644 +msgid "Netflow pie chart" +msgstr "Gráfica de tarta de Netflow" + +#: ../../include/functions_reports.php:646 +msgid "Netflow data table" +msgstr "Tabla de datos de Netflow" + +#: ../../include/functions_reports.php:648 +msgid "Netflow statistics table" +msgstr "Tabla de estadísticas Netflow" + +#: ../../include/functions_reports.php:650 +msgid "Netflow summary table" +msgstr "Tabla de resumen Netflow" + +#: ../../include/functions_reports.php:654 +msgid "Log" +msgstr "Log" + +#: ../../include/functions_reports.php:655 +msgid "Log report" +msgstr "Informe de log" + +#: ../../include/functions_graph.php:706 +msgid "Units. Value" +msgstr "Valor de unidades" + +#: ../../include/functions_graph.php:754 +#: ../../include/functions_graph.php:3947 +#: ../../include/functions_graph.php:3952 +#: ../../include/functions_graph.php:4670 +#: ../../include/functions_graph.php:4673 +#: ../../include/functions_graph.php:4676 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1127 +msgid "Last" +msgstr "Último" + +#: ../../include/functions_graph.php:755 ../../include/functions_graph.php:758 +#: ../../include/functions_graph.php:759 ../../include/functions_graph.php:760 +#: ../../include/functions_graph.php:763 +#: ../../include/functions_graph.php:1437 +#: ../../include/functions_graph.php:3947 +#: ../../include/functions_graph.php:3952 +#: ../../include/functions_graph.php:4670 +#: ../../include/functions_graph.php:4673 +#: ../../include/functions_graph.php:4676 +#: ../../include/functions_reporting.php:956 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1288 +msgid "Avg" +msgstr "Media" + +#: ../../include/functions_graph.php:781 +#: ../../include/functions_graph.php:1753 +#, php-format +msgid "Percentile %dº" +msgstr "Porcentaje %dº" + +#: ../../include/functions_graph.php:815 +#: ../../include/functions_graph.php:4017 +msgid "Previous" +msgstr "Anterior" + +#: ../../include/functions_graph.php:1246 +#, php-format +msgid "%s" +msgstr "%s" + +#: ../../include/functions_graph.php:1753 +msgid " of module " +msgstr " de módulo " + +#: ../../include/functions_graph.php:2109 +msgid "Not fired alerts" +msgstr "No se han lanzado alertas" + +#: ../../include/functions_graph.php:2118 +#: ../../include/functions_graph.php:2198 +#: ../../include/functions_graph.php:2271 +#: ../../include/functions_graph.php:3037 +#: ../../include/functions_graph.php:3473 +#: ../../include/functions_reporting_html.php:2924 +#: ../../include/functions_reporting_html.php:3002 +#: ../../include/functions_reporting.php:1207 +#: ../../include/functions_reporting.php:1360 +#: ../../include/functions_reporting.php:1379 +#: ../../include/functions_reporting.php:1400 +#: ../../include/functions_reporting.php:1421 +#: ../../include/functions_reporting.php:2087 +#: ../../include/functions_reporting.php:2269 +#: ../../include/functions_reporting.php:2290 +#: ../../include/functions_reporting.php:2311 +#: ../../include/functions_reporting.php:6179 +#: ../../include/functions_reporting.php:6199 +#: ../../include/functions_reporting.php:6219 +msgid "other" +msgstr "otro" + +#: ../../include/functions_graph.php:2278 +#: ../../include/functions_graph.php:2325 +#: ../../include/graphs/functions_gd.php:165 +#: ../../include/graphs/functions_gd.php:256 +msgid "Out of limits" +msgstr "Fuera de límites" + +#: ../../include/functions_graph.php:2558 +msgid "Today" +msgstr "Hoy" + +#: ../../include/functions_graph.php:2559 +msgid "Week" +msgstr "Semana" + +#: ../../include/functions_graph.php:2560 ../../include/functions_html.php:863 +msgid "Month" +msgstr "Mes" + +#: ../../include/functions_graph.php:2561 +#: ../../include/functions_graph.php:2562 +msgid "Months" +msgstr "Meses" + +#: ../../include/functions_graph.php:2584 +msgid "History db" +msgstr "Base de datos histórico" + +#: ../../include/functions_graph.php:2771 +#: ../../include/functions_incidents.php:29 +#: ../../include/functions_incidents.php:54 +msgid "Informative" +msgstr "Informativo" + +#: ../../include/functions_graph.php:2772 +#: ../../include/functions_incidents.php:30 +#: ../../include/functions_incidents.php:57 +msgid "Low" +msgstr "Bajo" + +#: ../../include/functions_graph.php:2773 +#: ../../include/functions_incidents.php:31 +#: ../../include/functions_incidents.php:60 +msgid "Medium" +msgstr "Medio" + +#: ../../include/functions_graph.php:2774 +#: ../../include/functions_incidents.php:32 +#: ../../include/functions_incidents.php:63 +msgid "Serious" +msgstr "Grave" + +#: ../../include/functions_graph.php:2775 +#: ../../include/functions_incidents.php:33 +#: ../../include/functions_incidents.php:66 +msgid "Very serious" +msgstr "Muy grave" + +#: ../../include/functions_graph.php:2776 +#: ../../include/functions_graph.php:3276 +#: ../../include/functions_graph.php:3277 +#: ../../include/functions_graph.php:5225 +#: ../../include/functions_incidents.php:34 +#: ../../include/functions_incidents.php:69 +#: ../../include/functions_events.php:1459 ../../include/functions.php:867 +#: ../../include/functions.php:1075 ../../include/functions.php:1108 +msgid "Maintenance" +msgstr "Mantenimiento" + +#: ../../include/functions_graph.php:2798 +#: ../../include/functions_graph.php:2810 +msgid "Open incident" +msgstr "Abrir incidente" + +#: ../../include/functions_graph.php:2799 +#: ../../include/functions_graph.php:2812 +msgid "Closed incident" +msgstr "Incidente cerrado" + +#: ../../include/functions_graph.php:2800 +#: ../../include/functions_graph.php:2814 +msgid "Outdated" +msgstr "Obsoleto" + +#: ../../include/functions_graph.php:2801 +#: ../../include/functions_graph.php:2816 +msgid "Invalid" +msgstr "No válido" + +#: ../../include/functions_graph.php:3147 +#: ../../include/functions_graph.php:3198 +#: ../../include/functions_events.php:1161 +msgid "SYSTEM" +msgstr "SISTEMA" + +#: ../../include/functions_graph.php:3234 +#: ../../godmode/setup/performance.php:149 +msgid "Others" +msgstr "Otros" + +#: ../../include/functions_graph.php:3280 +#: ../../include/functions_graph.php:3281 +#: ../../include/functions_graph.php:5228 +#: ../../include/functions_events.php:1462 ../../include/functions.php:870 +#: ../../include/functions.php:1076 ../../include/functions.php:1111 +msgid "Informational" +msgstr "Informativo" + +#: ../../include/functions_graph.php:3288 +#: ../../include/functions_graph.php:3289 +#: ../../include/functions_graph.php:5240 ../../include/functions.php:882 +#: ../../include/functions.php:1078 ../../include/functions.php:1123 +msgid "Minor" +msgstr "Menor" + +#: ../../include/functions_graph.php:3296 +#: ../../include/functions_graph.php:3297 +#: ../../include/functions_graph.php:5243 ../../include/functions.php:885 +#: ../../include/functions.php:1080 ../../include/functions.php:1126 +msgid "Major" +msgstr "Principal" + +#: ../../include/functions_graph.php:3932 +msgid "Units" +msgstr "Unidades" + +#: ../../include/functions_graph.php:4320 +#: ../../include/functions_treeview.php:94 +#: ../../include/functions_treeview.php:107 +#: ../../include/functions_reporting_html.php:3131 +#: ../../include/functions_alerts.php:560 +#: ../../godmode/alerts/configure_alert_template.php:625 +#: ../../godmode/massive/massive_edit_modules.php:381 +#: ../../godmode/massive/massive_edit_modules.php:427 +#: ../../godmode/massive/massive_edit_modules.php:516 +#: ../../godmode/modules/manage_network_components_form_common.php:122 +#: ../../godmode/modules/manage_network_components_form_common.php:139 +#: ../../godmode/agentes/module_manager_editor_common.php:283 +#: ../../godmode/agentes/module_manager_editor_common.php:304 +msgid "Max." +msgstr "Máx." + +#: ../../include/functions_graph.php:4320 +#: ../../include/functions_treeview.php:94 +#: ../../include/functions_treeview.php:107 +#: ../../include/functions_reporting_html.php:3130 +#: ../../include/functions_alerts.php:561 +#: ../../godmode/alerts/configure_alert_template.php:620 +#: ../../godmode/massive/massive_edit_modules.php:372 +#: ../../godmode/massive/massive_edit_modules.php:418 +#: ../../godmode/massive/massive_edit_modules.php:514 +#: ../../godmode/modules/manage_network_components_form_common.php:119 +#: ../../godmode/modules/manage_network_components_form_common.php:136 +msgid "Min." +msgstr "Mín." + +#: ../../include/functions_graph.php:4320 +msgid "Avg." +msgstr "Media" + +#: ../../include/functions_graph.php:5577 +msgid "Main node" +msgstr "Nodo principal" + +#: ../../include/functions_clippy.php:163 +#: ../../include/functions_clippy.php:168 +msgid "End wizard" +msgstr "Cierra asistente" + +#: ../../include/functions_clippy.php:195 +msgid "Next →" +msgstr "Siguiente →" + +#: ../../include/functions_clippy.php:196 +msgid "← Back" +msgstr "← Anterior" + +#: ../../include/functions_clippy.php:208 +msgid "Do you want to exit the help tour?" +msgstr "¿Quieres salir de la ayuda guiada?" + +#: ../../include/functions_treeview.php:54 +msgid "There was a problem loading module" +msgstr "Hubo un problema al cargar el módulo" + +#: ../../include/functions_treeview.php:91 +#: ../../include/functions_treeview.php:104 +#: ../../godmode/massive/massive_edit_modules.php:390 +#: ../../godmode/massive/massive_edit_modules.php:436 +#: ../../godmode/modules/manage_network_components_form_common.php:125 +#: ../../godmode/modules/manage_network_components_form_common.php:142 +#: ../../godmode/agentes/module_manager_editor_common.php:288 +#: ../../godmode/agentes/module_manager_editor_common.php:309 +msgid "Str." +msgstr "Str." + +#: ../../include/functions_treeview.php:98 +#: ../../include/functions_alerts.php:564 +#: ../../godmode/massive/massive_edit_modules.php:368 +#: ../../godmode/modules/manage_network_components_form_common.php:118 +#: ../../godmode/agentes/module_manager_editor_common.php:278 +msgid "Warning status" +msgstr "Umbral Warning" + +#: ../../include/functions_treeview.php:110 +#: ../../include/functions_alerts.php:565 +#: ../../godmode/massive/massive_edit_modules.php:414 +#: ../../godmode/modules/manage_network_components_form_common.php:135 +#: ../../godmode/agentes/module_manager_editor_common.php:299 +msgid "Critical status" +msgstr "Umbral crítico" + +#: ../../include/functions_treeview.php:294 +#: ../../include/graphs/functions_flot.php:593 +msgid "No data" +msgstr "Sin datos" + +#: ../../include/functions_treeview.php:298 +#: ../../include/functions_reporting_html.php:70 +#: ../../include/functions_reporting_html.php:3373 +msgid "Last data" +msgstr "Últimos datos" + +#: ../../include/functions_treeview.php:313 +msgid "Go to module edition" +msgstr "Ir a la edición de módulos" + +#: ../../include/functions_treeview.php:362 +msgid "There was a problem loading alerts" +msgstr "Hubo un problema al cargar las alertas" + +#: ../../include/functions_treeview.php:423 +#: ../../include/functions_reporting_html.php:2872 +#: ../../include/functions_reporting_html.php:3100 +#: ../../godmode/snmpconsole/snmp_alert.php:1165 +msgid "Times fired" +msgstr "Veces disparada" + +#: ../../include/functions_treeview.php:446 +msgid "Go to alerts edition" +msgstr "Ir a \"editar alertas\"" + +#: ../../include/functions_treeview.php:610 +msgid "Next agent contact" +msgstr "Siguiente contacto con el agente" + +#: ../../include/functions_treeview.php:620 +msgid "Go to agent edition" +msgstr "Ir a \"editar agentes\"" + +#: ../../include/functions_treeview.php:629 +msgid "Agent data" +msgstr "Datos de agentes" + +#: ../../include/functions_treeview.php:702 +msgid "Advanced information" +msgstr "Información avanzada" + +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:678 +#: ../../godmode/agentes/planned_downtime.editor.php:212 +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 " +"mayor que la fecha actual" + +#: ../../include/functions_planned_downtimes.php:45 +#: ../../include/functions_planned_downtimes.php:50 +#: ../../include/functions_planned_downtimes.php:53 +#: ../../include/functions_planned_downtimes.php:682 +#: ../../include/functions_planned_downtimes.php:687 +#: ../../include/functions_planned_downtimes.php:695 +#: ../../include/functions_planned_downtimes.php:702 +#: ../../godmode/agentes/planned_downtime.editor.php:215 +#: ../../godmode/agentes/planned_downtime.editor.php:218 +#: ../../godmode/agentes/planned_downtime.editor.php:223 +#: ../../godmode/agentes/planned_downtime.editor.php:226 +msgid "Not created. Error inserting data" +msgstr "No se pudo crear. Error al insertar los datos." + +#: ../../include/functions_planned_downtimes.php:45 +#: ../../include/functions_planned_downtimes.php:683 +#: ../../godmode/agentes/planned_downtime.editor.php:215 +msgid "The end date must be higher than the start date" +msgstr "La fecha de fin debe ser mayor que la fecha de inicio" + +#: ../../include/functions_planned_downtimes.php:50 +#: ../../include/functions_planned_downtimes.php:696 +#: ../../godmode/agentes/planned_downtime.editor.php:223 +#: ../../godmode/agentes/planned_downtime.editor.php:592 +#: ../../godmode/agentes/planned_downtime.editor.php:600 +msgid "The end time must be higher than the start time" +msgstr "La hora de fin debe ser mayor que la fecha de inicio" + +#: ../../include/functions_planned_downtimes.php:53 +#: ../../include/functions_planned_downtimes.php:703 +#: ../../godmode/agentes/planned_downtime.editor.php:226 +#: ../../godmode/agentes/planned_downtime.editor.php:581 +msgid "The end day must be higher than the start day" +msgstr "El día de fin debe ser mayor que el día de inicio" + +#: ../../include/functions_planned_downtimes.php:94 +#: ../../include/functions_planned_downtimes.php:717 +#: ../../godmode/agentes/planned_downtime.editor.php:275 +msgid "Each planned downtime must have a different name" +msgstr "Cada parada de servicio planeada debe tener un nombre diferente" + +#: ../../include/functions_planned_downtimes.php:100 +#: ../../include/functions_planned_downtimes.php:722 +#: ../../godmode/agentes/planned_downtime.editor.php:280 +#: ../../godmode/agentes/planned_downtime.editor.php:307 +msgid "Planned downtime must have a name" +msgstr "La parada de servicio planeada debe tener un nombre" + +#: ../../include/functions_planned_downtimes.php:113 +#: ../../include/functions_planned_downtimes.php:731 +#: ../../godmode/snmpconsole/snmp_alert.php:247 +#: ../../godmode/snmpconsole/snmp_filters.php:66 +#: ../../godmode/alerts/alert_special_days.php:148 +#: ../../godmode/alerts/alert_actions.php:184 +#: ../../godmode/alerts/alert_commands.php:293 +#: ../../godmode/alerts/configure_alert_template.php:431 +#: ../../godmode/alerts/alert_list.php:104 ../../godmode/setup/news.php:56 +#: ../../godmode/setup/gis.php:45 ../../godmode/setup/links.php:41 +#: ../../godmode/users/configure_user.php:236 +#: ../../godmode/users/profile_list.php:241 +#: ../../godmode/modules/manage_nc_groups.php:73 +#: ../../godmode/agentes/configurar_agente.php:621 +#: ../../godmode/agentes/planned_downtime.editor.php:365 +msgid "Successfully created" +msgstr "Creado correctamente" + +#: ../../include/functions_planned_downtimes.php:560 +msgid "Succesful stopped the Downtime" +msgstr "La parada planificada se ha detenido correctamente" + +#: ../../include/functions_planned_downtimes.php:561 +msgid "Unsuccesful stopped the Downtime" +msgstr "La parada planificada no ha podido ser detenida" + +#: ../../include/functions_planned_downtimes.php:660 +#, php-format +msgid "Enabled %s elements from the downtime" +msgstr "Habilitar %s elementos desde la parada" + +#: ../../include/functions_planned_downtimes.php:688 +#: ../../godmode/agentes/planned_downtime.editor.php:218 +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:785 +msgid "This planned downtime are executed now. Can't delete in this moment." +msgstr "" +"Esta parada planificada se está ejecutando. No se puede borrar en este " +"momento." + +#: ../../include/functions_planned_downtimes.php:790 +msgid "Deleted this planned downtime successfully." +msgstr "Parada planificada borrada con éxito" + +#: ../../include/functions_planned_downtimes.php:792 +msgid "Problems for deleted this planned downtime." +msgstr "Problemas al borrar la parada planificada" + +#: ../../include/functions_incidents.php:88 +#: ../../include/functions_incidents.php:107 +msgid "Active incidents" +msgstr "Incidentes activos" + +#: ../../include/functions_incidents.php:89 +#: ../../include/functions_incidents.php:110 +msgid "Active incidents, with comments" +msgstr "Incidentes activos, con comentarios" + +#: ../../include/functions_incidents.php:90 +#: ../../include/functions_incidents.php:113 +msgid "Rejected incidents" +msgstr "Incidentes rechazados" + +#: ../../include/functions_incidents.php:91 +#: ../../include/functions_incidents.php:116 +msgid "Expired incidents" +msgstr "Incidentes caducados" + +#: ../../include/functions_incidents.php:92 +#: ../../include/functions_incidents.php:119 +msgid "Closed incidents" +msgstr "Incidentes cerrados" + +#: ../../include/functions_maps.php:34 +#: ../../include/functions_networkmap.php:1641 +#: ../../include/functions_networkmap.php:1720 +msgid "Topology" +msgstr "Topología" + +#: ../../include/functions_maps.php:43 +#: ../../include/functions_reporting.php:619 +#: ../../include/functions_reporting.php:5126 +#: ../../include/functions_networkmap.php:1722 +msgid "Dynamic" +msgstr "Dinámico" + +#: ../../include/functions_menu.php:470 +msgid "Configure user" +msgstr "Configurar usuario" + +#: ../../include/functions_menu.php:471 +msgid "Configure profile" +msgstr "Configurar perfil" + +#: ../../include/functions_menu.php:473 +#: ../../godmode/servers/manage_recontask_form.php:182 +#: ../../godmode/servers/manage_recontask.php:43 +msgid "Manage recontask" +msgstr "Gestionar tarea recon" + +#: ../../include/functions_menu.php:475 +msgid "Module templates management" +msgstr "Gestión de plantillas de módulos" + +#: ../../include/functions_menu.php:476 +msgid "Inventory modules management" +msgstr "Gestión de módulos de inventario" + +#: ../../include/functions_menu.php:477 +msgid "Tags management" +msgstr "Gestión de etiquetas" + +#: ../../include/functions_menu.php:479 +#: ../../godmode/users/profile_list.php:308 +msgid "Agents management" +msgstr "Gestión de agentes" + +#: ../../include/functions_menu.php:481 +msgid "View agent" +msgstr "Ver agente" + +#: ../../include/functions_menu.php:483 +#: ../../godmode/alerts/configure_alert_template.php:63 +#: ../../godmode/alerts/configure_alert_template.php:82 +#: ../../godmode/alerts/configure_alert_template.php:100 +msgid "Configure alert template" +msgstr "Configurar plantilla de alerta" + +#: ../../include/functions_menu.php:485 +msgid "Manage network map" +msgstr "Gestión de mapas de red" + +#: ../../include/functions_menu.php:486 +#: ../../godmode/users/configure_profile.php:320 +msgid "View visual console" +msgstr "Ver consola visual" + +#: ../../include/functions_menu.php:487 +msgid "Builder visual console" +msgstr "Configurador de la consola visual" + +#: ../../include/functions_menu.php:489 +msgid "Administration events" +msgstr "Administrador de eventos" + +#: ../../include/functions_menu.php:491 +msgid "View reporting" +msgstr "Ver informes" + +#: ../../include/functions_menu.php:492 +msgid "Manage custom graphs" +msgstr "Gestionar graficas personalizadas" + +#: ../../include/functions_menu.php:493 +msgid "Copy dashboard" +msgstr "Copiar dashboard" + +#: ../../include/functions_menu.php:496 +msgid "Manage GIS Maps" +msgstr "Gestionar mapas GIS" + +#: ../../include/functions_menu.php:498 +msgid "Incidents statistics" +msgstr "Estadísticas incidentes" + +#: ../../include/functions_menu.php:499 +msgid "Manage messages" +msgstr "Gestionar mensajes" + +#: ../../include/functions_menu.php:501 +msgid "Manage groups" +msgstr "Gestionar grupos" + +#: ../../include/functions_menu.php:502 +msgid "Manage module groups" +msgstr "Gestionar grupos de módulos" + +#: ../../include/functions_menu.php:503 +msgid "Manage custom field" +msgstr "Gestionar campos personalizados" + +#: ../../include/functions_menu.php:505 +msgid "Manage alert actions" +msgstr "Gestionar acciones de alertas" + +#: ../../include/functions_menu.php:506 +msgid "Manage commands" +msgstr "Gestionar comandos" + +#: ../../include/functions_menu.php:507 +msgid "Manage event alerts" +msgstr "Gestionar eventos de alertas" + +#: ../../include/functions_menu.php:509 +msgid "Manage export targets" +msgstr "Gestionar objetivos de exportación" + +#: ../../include/functions_menu.php:511 +msgid "Manage services" +msgstr "Gestión de servicios" + +#: ../../include/functions_menu.php:512 ../../godmode/menu.php:170 +msgid "SNMP alerts" +msgstr "Alertas SNMP" + +#: ../../include/functions_menu.php:514 +msgid "SNMP trap editor" +msgstr "Editor de Traps SNMP" + +#: ../../include/functions_menu.php:519 +msgid "Manage incident" +msgstr "Gestionar incidentes" + +#: ../../include/functions_menu.php:521 +#: ../../godmode/users/configure_profile.php:328 +msgid "Manage visual console" +msgstr "Gestionar consolas visuales" + +#: ../../include/functions_menu.php:571 +msgid "Administration" +msgstr "Administración" + +#: ../../include/functions_network_components.php:507 +#: ../../include/functions_alerts.php:961 +msgid "Copy of" +msgstr "Copia de" + +#: ../../include/get_file.php:46 +msgid "Security error. Please contact the administrator." +msgstr "Error de seguridad. Contacte con el administrador" + +#: ../../include/get_file.php:56 +msgid "File is missing in disk storage. Please contact the administrator." +msgstr "" +"El archivo no se encuentra en disco, por favor, contacte con el " +"administrador." + +#: ../../include/functions_tags.php:602 +msgid "Click here to open a popup window with URL tag" +msgstr "Click aquí para abrir una ventana popup con el tag URL" + +#: ../../include/graphs/functions_pchart.php:205 +#: ../../include/graphs/functions_pchart.php:1189 +msgid "Actual" +msgstr "Actual" + +#: ../../include/graphs/export_data.php:71 +#: ../../include/graphs/export_data.php:126 +msgid "An error occured exporting the data" +msgstr "Ocurrió un error exportando los datos" + +#: ../../include/graphs/export_data.php:76 +msgid "Selected" +msgstr "Seleccionado" + +#: ../../include/graphs/functions_flot.php:251 +msgid "Cancel zoom" +msgstr "Cancelar el zoom" + +#: ../../include/graphs/functions_flot.php:253 +msgid "Warning and Critical thresholds" +msgstr "Umbrales de alerta y critico" + +#: ../../include/graphs/functions_flot.php:256 +msgid "Overview graph" +msgstr "Grafica de vista general" + +#: ../../include/graphs/functions_flot.php:259 +#: ../../godmode/modules/manage_network_templates.php:216 +#: ../../godmode/agentes/planned_downtime.list.php:508 +msgid "Export to CSV" +msgstr "Exportar a CSV" + +#: ../../include/functions_users.php:377 +#, php-format +msgid "User %s login at %s" +msgstr "Usuario %s entró a las %s" + +#: ../../include/functions_users.php:438 +#, php-format +msgid "User %s was deleted in the DB at %s" +msgstr "El usuario %s fué borrado en la base de datos el %s" + +#: ../../include/functions_users.php:443 +#, php-format +msgid "User %s logout at %s" +msgstr "Usuario %s salió a las %s" + +#: ../../include/functions_reporting_html.php:63 +#: ../../include/functions_reporting_html.php:3384 +#: ../../godmode/agentes/planned_downtime.editor.php:506 +msgid "From:" +msgstr "Desde:" + +#: ../../include/functions_reporting_html.php:64 +#: ../../include/functions_reporting_html.php:3385 +#: ../../godmode/agentes/planned_downtime.editor.php:517 +msgid "To:" +msgstr "Hasta:" + +#: ../../include/functions_reporting_html.php:93 +msgid "Label: " +msgstr "Etiqueta: " + +#: ../../include/functions_reporting_html.php:111 +msgid "Generated" +msgstr "Generado" + +#: ../../include/functions_reporting_html.php:114 +msgid "Report date" +msgstr "Fecha del informe" + +#: ../../include/functions_reporting_html.php:398 +msgid "Max/Min Values" +msgstr "Valores Max/Min" + +#: ../../include/functions_reporting_html.php:399 +msgid "SLA Limit" +msgstr "Límite del SLA" + +#: ../../include/functions_reporting_html.php:400 +msgid "SLA Compliance" +msgstr "Cumplimiento del SLA" + +#: ../../include/functions_reporting_html.php:425 +msgid "Global Time" +msgstr "Tiempo global" + +#: ../../include/functions_reporting_html.php:426 +msgid "Time Total" +msgstr "Tiempo total" + +#: ../../include/functions_reporting_html.php:427 +msgid "Time Failed" +msgstr "Tiempo en fallo" + +#: ../../include/functions_reporting_html.php:428 +#: ../../include/functions_reporting_html.php:2256 +msgid "Time OK" +msgstr "Tiempo OK" + +#: ../../include/functions_reporting_html.php:429 +msgid "Time Unknown" +msgstr "Tiempo Desconocido" + +#: ../../include/functions_reporting_html.php:430 +msgid "Time Not Init" +msgstr "TIempo No Inicializado" + +#: ../../include/functions_reporting_html.php:431 +msgid "Downtime" +msgstr "Parada planificada" + +#: ../../include/functions_reporting_html.php:456 +msgid "Checks Time" +msgstr "Tiempo de comprobaciones" + +#: ../../include/functions_reporting_html.php:457 +msgid "Checks Total" +msgstr "Comprobaciones totales" + +#: ../../include/functions_reporting_html.php:458 +msgid "Checks Failed" +msgstr "Comprobaciones fallidas" + +#: ../../include/functions_reporting_html.php:459 +#: ../../include/functions_reporting_html.php:2299 +msgid "Checks OK" +msgstr "Comprobaciones OK" + +#: ../../include/functions_reporting_html.php:460 +msgid "Checks Unknown" +msgstr "Comprobaciones Desconocidas" + +#: ../../include/functions_reporting_html.php:502 +#: ../../include/functions_reporting_html.php:581 +#: ../../include/functions_config.php:533 +#: ../../include/functions_config.php:1554 +msgid "Fail" +msgstr "Fallo" + +#: ../../include/functions_reporting_html.php:685 +#: ../../include/functions_reporting_html.php:2533 +msgid "Unknow" +msgstr "Desconocido" + +#: ../../include/functions_reporting_html.php:695 +#: ../../include/functions_reporting_html.php:2543 +msgid "Downtimes" +msgstr "Paradas planificadas" + +#: ../../include/functions_reporting_html.php:700 +#: ../../include/functions_reporting_html.php:2548 +msgid "Ignore time" +msgstr "Tiempo ignorado" + +#: ../../include/functions_reporting_html.php:772 +#: ../../include/functions_reporting_html.php:1523 +#: ../../include/functions_reporting_html.php:2449 +#: ../../include/functions_reporting_html.php:2673 +msgid "Min Value" +msgstr "Valor mínimo" + +#: ../../include/functions_reporting_html.php:773 +#: ../../include/functions_reporting_html.php:1524 +#: ../../include/functions_reporting_html.php:2450 +#: ../../include/functions_reporting_html.php:2674 +msgid "Average Value" +msgstr "Valor medio" + +#: ../../include/functions_reporting_html.php:774 +#: ../../include/functions_reporting_html.php:1525 +#: ../../include/functions_reporting_html.php:2447 +#: ../../include/functions_reporting_html.php:2676 +msgid "Max Value" +msgstr "Valor máximo" + +#: ../../include/functions_reporting_html.php:812 +#: ../../include/functions_reporting_html.php:821 +#: ../../include/functions_reporting_html.php:1643 +msgid "Val. by" +msgstr "Val. por" + +#: ../../include/functions_reporting_html.php:875 +#: ../../include/functions_events.php:2709 +msgid "Pandora System" +msgstr "Sistema de Pandora" + +#: ../../include/functions_reporting_html.php:915 +#: ../../include/functions_reporting_html.php:1111 +msgid "Events by agent" +msgstr "Eventos por agente" + +#: ../../include/functions_reporting_html.php:934 +#: ../../include/functions_reporting_html.php:1130 +msgid "Events by user validator" +msgstr "Eventos por usuario validador" + +#: ../../include/functions_reporting_html.php:953 +#: ../../include/functions_reporting_html.php:1149 +msgid "Events by Severity" +msgstr "Eventos por gravedad" + +#: ../../include/functions_reporting_html.php:972 +#: ../../include/functions_reporting_html.php:1168 +msgid "Events validated vs unvalidated" +msgstr "Eventos validados vs no validados" + +#: ../../include/functions_reporting_html.php:1022 +#: ../../include/functions_reporting_html.php:1032 +#: ../../include/functions_reporting_html.php:2815 +#: ../../include/functions_events.php:35 +#: ../../include/functions_events.php:905 +#: ../../include/functions_events.php:2338 +#: ../../godmode/events/custom_events.php:71 +#: ../../godmode/events/custom_events.php:153 +msgid "Event name" +msgstr "Nombre del evento" + +#: ../../include/functions_reporting_html.php:1228 +msgid "Added" +msgstr "Añadido" + +#: ../../include/functions_reporting_html.php:1379 +#, php-format +msgid "%s in %s : NORMAL" +msgstr "%s en %s : NORMAL" + +#: ../../include/functions_reporting_html.php:1387 +#, php-format +msgid "%s in %s : CRITICAL" +msgstr "%s en %s : CRITICAL" + +#: ../../include/functions_reporting_html.php:1395 +#, php-format +msgid "%s in %s : WARNING" +msgstr "%s en %s : WARNING" + +#: ../../include/functions_reporting_html.php:1403 +#, php-format +msgid "%s in %s : UNKNOWN" +msgstr "%s en %s : DESCONOCIDO" + +#: ../../include/functions_reporting_html.php:1413 +#, php-format +msgid "%s in %s : ALERTS FIRED" +msgstr "%s en %s : ALERTA ENVIADA" + +#: ../../include/functions_reporting_html.php:1421 +#, php-format +msgid "%s in %s : Not initialize" +msgstr "%s en %s : No iniciado" + +#: ../../include/functions_reporting_html.php:1579 +#: ../../include/functions_reporting_html.php:3262 +msgid "Monitors" +msgstr "Monitores" + +#: ../../include/functions_reporting_html.php:1596 +#: ../../godmode/servers/manage_recontask_form.php:255 +msgid "Defined" +msgstr "Definido" + +#: ../../include/functions_reporting_html.php:1611 +#, php-format +msgid "Last %s" +msgstr "Último %s" + +#: ../../include/functions_reporting_html.php:1731 +msgid "Events validated by user" +msgstr "Eventos validados por el usuario" + +#: ../../include/functions_reporting_html.php:1750 +#: ../../include/functions_reporting_html.php:3551 +msgid "Events by severity" +msgstr "Eventos por gravedad" + +#: ../../include/functions_reporting_html.php:1899 +#, php-format +msgid "Interface '%s' throughput graph" +msgstr "Interfaz '%s' gráfico de rendimiento" + +#: ../../include/functions_reporting_html.php:1902 +msgid "Mac" +msgstr "Mac" + +#: ../../include/functions_reporting_html.php:1903 +msgid "Actual status" +msgstr "Estado actual" + +#: ../../include/functions_reporting_html.php:2049 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1334 +msgid "Not OK" +msgstr "No está bien" + +#: ../../include/functions_reporting_html.php:2099 +msgid "Empty modules" +msgstr "Módulos vacíos" + +#: ../../include/functions_reporting_html.php:2106 +msgid "Warning
    Critical" +msgstr "Warning
    Critical" + +#: ../../include/functions_reporting_html.php:2111 +#: ../../include/functions_netflow.php:1131 +#: ../../include/functions_netflow.php:1141 +#: ../../include/functions_netflow.php:1159 +#: ../../include/functions_netflow.php:1167 +#: ../../include/functions_netflow.php:1190 +#: ../../include/functions_netflow.php:1248 +#: ../../include/functions_netflow.php:1254 +#: ../../include/functions_netflow.php:1286 +#: ../../godmode/massive/massive_edit_modules.php:538 +#: ../../godmode/modules/manage_network_components_form_common.php:168 +#: ../../godmode/agentes/module_manager_editor_common.php:366 +msgid "Unit" +msgstr "Unidad" + +#: ../../include/functions_reporting_html.php:2254 +msgid "Total time" +msgstr "Tiempo total" + +#: ../../include/functions_reporting_html.php:2255 +msgid "Time failed" +msgstr "Tiempo en fallo" + +#: ../../include/functions_reporting_html.php:2257 +msgid "Time Uknown" +msgstr "Tiempo en desconocido" + +#: ../../include/functions_reporting_html.php:2258 +msgid "Time Not Init Module" +msgstr "Tiempo en módulo no inicializado" + +#: ../../include/functions_reporting_html.php:2259 +msgid "Time Downtime" +msgstr "Tiempo de parada planificada" + +#: ../../include/functions_reporting_html.php:2260 +msgid "% Ok" +msgstr "% Ok" + +#: ../../include/functions_reporting_html.php:2297 +msgid "Total checks" +msgstr "Comprobaciones totales" + +#: ../../include/functions_reporting_html.php:2298 +msgid "Checks failed" +msgstr "Comprobaciones fallidas" + +#: ../../include/functions_reporting_html.php:2300 +msgid "Checks Uknown" +msgstr "Comprobaciones en desconocido" + +#: ../../include/functions_reporting_html.php:2426 +#: ../../include/functions_reporting_html.php:2654 +#: ../../include/functions_reporting.php:997 +#: ../../include/functions_reporting.php:1816 +msgid "There are no Agent/Modules defined" +msgstr "No hay Agente/Módulos definidos" + +#: ../../include/functions_reporting_html.php:2446 +msgid "Agent max value" +msgstr "Valor máximo del agente" + +#: ../../include/functions_reporting_html.php:2448 +msgid "Agent min value" +msgstr "Valor mínimo de agente" + +#: ../../include/functions_reporting_html.php:2685 +#: ../../include/functions_reporting_html.php:2779 +msgid "Summary" +msgstr "Lista de agentes" + +#: ../../include/functions_reporting_html.php:2752 +#: ../../include/functions_reporting.php:6988 +#: ../../include/functions_reporting.php:7010 +msgid "Alert level" +msgstr "Nivel de alerta" + +#: ../../include/functions_reporting_html.php:2871 +msgid "Alert description" +msgstr "Descripción de la alerta" + +#: ../../include/functions_reporting_html.php:2921 +msgid "Alerts not fired" +msgstr "Alertas no disparadas" + +#: ../../include/functions_reporting_html.php:2930 +msgid "Total alerts monitored" +msgstr "Alertas totales monitorizadas" + +#: ../../include/functions_reporting_html.php:2981 +msgid "Total monitors" +msgstr "Total de monitores" + +#: ../../include/functions_reporting_html.php:2982 +msgid "Monitors down on period" +msgstr "Monitores inactivos en un periodo" + +#: ../../include/functions_reporting_html.php:2998 +msgid "Monitors OK" +msgstr "Monitores en buen estado" + +#: ../../include/functions_reporting_html.php:2999 +msgid "Monitors BAD" +msgstr "Monitores en mal estado" + +#: ../../include/functions_reporting_html.php:3073 +#, php-format +msgid "Agents in group: %s" +msgstr "Agentes en el grupo: %s" + +#: ../../include/functions_reporting_html.php:3166 +msgid "Last failure" +msgstr "Último fallo" + +#: ../../include/functions_reporting_html.php:3230 +msgid "N/A(*)" +msgstr "N/A(*)" + +#: ../../include/functions_reporting_html.php:3407 +msgid "Agents warning" +msgstr "Agentes warning" + +#: ../../include/functions_reporting_html.php:3413 +msgid "Agents ok" +msgstr "Agentes ok" + +#: ../../include/functions_reporting_html.php:3433 +#: ../../include/functions_reporting_html.php:3442 +msgid "Agents by status" +msgstr "Agentes por estado" + +#: ../../include/functions_reporting_html.php:3461 +#: ../../include/functions_reporting.php:7229 +msgid "Monitor checks" +msgstr "Comprobaciones de monitores" + +#: ../../include/functions_reporting_html.php:3466 +#: ../../include/functions_reporting.php:7247 +msgid "Total agents and monitors" +msgstr "Total de agentes y monitores" + +#: ../../include/functions_reporting_html.php:3486 +#: ../../include/functions_reporting_html.php:3495 +msgid "Node overview" +msgstr "Resumen de nodos" + +#: ../../include/functions_reporting_html.php:3513 +#: ../../include/functions_reporting_html.php:3530 +msgid "Critical events" +msgstr "Eventos en estado \"crítico\"" + +#: ../../include/functions_reporting_html.php:3517 +#: ../../include/functions_reporting_html.php:3534 +msgid "Warning events" +msgstr "Eventos en advertencia" + +#: ../../include/functions_reporting_html.php:3521 +#: ../../include/functions_reporting_html.php:3538 +msgid "OK events" +msgstr "Eventos OK" + +#: ../../include/functions_reporting_html.php:3525 +#: ../../include/functions_reporting_html.php:3542 +msgid "Unknown events" +msgstr "Eventos desconocidos" + +#: ../../include/functions_reporting_html.php:3565 +msgid "Important Events by Criticity" +msgstr "Eventos importantes por criticidad" + +#: ../../include/functions_reporting_html.php:3591 +msgid "Last activity in Pandora FMS console" +msgstr "Última actividad en la consola de Pandora FMS" + +#: ../../include/functions_reporting_html.php:3667 +msgid "Events info (1hr.)" +msgstr "Información de Eventos (1hr.)" + +#: ../../include/functions_reporting_html.php:3807 +msgid "This SLA has been affected by the following planned downtimes" +msgstr "Las siguientes paradas planificadas han modificado este SLA" + +#: ../../include/functions_reporting_html.php:3811 +#: ../../godmode/agentes/planned_downtime.editor.php:493 +#: ../../godmode/agentes/planned_downtime.list.php:395 +msgid "Execution" +msgstr "Ejecución" + +#: ../../include/functions_reporting_html.php:3812 +msgid "Dates" +msgstr "Fechas" + +#: ../../include/functions_reporting_html.php:3853 +msgid "This item is affected by a malformed planned downtime" +msgstr "A este elemento le afecta una parada planificada mal formada" + +#: ../../include/functions_reporting_html.php:3854 +msgid "Go to the planned downtimes section to solve this" +msgstr "" +"Ir a la sección de paradas planificadas para solucionar este problema" #: ../../include/auth/mysql.php:246 msgid "" @@ -19968,1125 +13223,6 @@ msgstr "No se pudo cambiar la contraseña en el Pandora remoto" msgid "Your installation of PHP does not support LDAP" msgstr "Su instalación de PHP no soporta LDAP" -#: ../../include/class/Tree.class.php:1474 -#: ../../include/functions_modules.php:1875 -#: ../../include/functions_modules.php:1895 -#: ../../mobile/operation/modules.php:459 -#: ../../mobile/operation/modules.php:477 -#: ../../mobile/operation/modules.php:512 -#: ../../mobile/operation/modules.php:530 -#: ../../operation/agentes/pandora_networkmap.view.php:285 -#: ../../operation/agentes/pandora_networkmap.view.php:307 -#: ../../operation/agentes/status_monitor.php:1158 -#: ../../operation/agentes/status_monitor.php:1162 -#: ../../operation/agentes/status_monitor.php:1195 -#: ../../operation/agentes/status_monitor.php:1200 -#: ../../operation/search_modules.php:112 -#: ../../operation/search_modules.php:132 -#: ../../enterprise/extensions/vmware/vmware_view.php:935 -#: ../../enterprise/include/functions_services.php:1595 -#: ../../enterprise/include/functions_services.php:1619 -#: ../../enterprise/operation/agentes/policy_view.php:363 -#: ../../enterprise/operation/agentes/policy_view.php:382 -msgid "CRITICAL" -msgstr "CRÍTICO" - -#: ../../include/class/Tree.class.php:1481 -#: ../../include/functions_modules.php:1879 -#: ../../include/functions_modules.php:1899 -#: ../../mobile/operation/modules.php:463 -#: ../../mobile/operation/modules.php:482 -#: ../../mobile/operation/modules.php:516 -#: ../../mobile/operation/modules.php:535 -#: ../../operation/agentes/pandora_networkmap.view.php:289 -#: ../../operation/agentes/pandora_networkmap.view.php:312 -#: ../../operation/agentes/status_monitor.php:1168 -#: ../../operation/agentes/status_monitor.php:1172 -#: ../../operation/agentes/status_monitor.php:1207 -#: ../../operation/agentes/status_monitor.php:1212 -#: ../../operation/search_modules.php:116 -#: ../../operation/search_modules.php:139 -#: ../../enterprise/extensions/vmware/vmware_view.php:939 -#: ../../enterprise/include/functions_login.php:33 -#: ../../enterprise/include/functions_services.php:1599 -#: ../../enterprise/include/functions_services.php:1623 -#: ../../enterprise/operation/agentes/policy_view.php:367 -#: ../../enterprise/operation/agentes/policy_view.php:386 -msgid "WARNING" -msgstr "ADVERTENCIA" - -#: ../../include/class/Tree.class.php:1486 -#: ../../include/functions_modules.php:1890 -#: ../../include/functions_modules.php:1894 -#: ../../include/functions_modules.php:1898 -#: ../../mobile/operation/modules.php:471 -#: ../../mobile/operation/modules.php:476 -#: ../../mobile/operation/modules.php:481 -#: ../../mobile/operation/modules.php:524 -#: ../../mobile/operation/modules.php:529 -#: ../../mobile/operation/modules.php:534 -#: ../../operation/agentes/pandora_networkmap.view.php:301 -#: ../../operation/agentes/pandora_networkmap.view.php:306 -#: ../../operation/agentes/pandora_networkmap.view.php:311 -#: ../../operation/agentes/status_monitor.php:1182 -#: ../../operation/agentes/status_monitor.php:1187 -#: ../../operation/agentes/status_monitor.php:1194 -#: ../../operation/agentes/status_monitor.php:1199 -#: ../../operation/agentes/status_monitor.php:1206 -#: ../../operation/agentes/status_monitor.php:1211 -#: ../../operation/search_modules.php:124 -#: ../../operation/search_modules.php:131 -#: ../../operation/search_modules.php:138 -#: ../../enterprise/extensions/vmware/vmware_view.php:943 -#: ../../enterprise/include/functions_services.php:1606 -#: ../../enterprise/include/functions_services.php:1614 -#: ../../enterprise/include/functions_services.php:1619 -#: ../../enterprise/include/functions_services.php:1623 -#: ../../enterprise/include/functions_services.php:1627 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/policy_view.php:386 -msgid "UNKNOWN" -msgstr "DESCONOCIDO" - -#: ../../include/class/Tree.class.php:1492 -msgid "NO DATA" -msgstr "SIN DATOS" - -#: ../../include/class/Tree.class.php:1500 -#: ../../include/functions_modules.php:1883 -#: ../../include/functions_modules.php:1891 -#: ../../mobile/operation/modules.php:455 -#: ../../mobile/operation/modules.php:472 -#: ../../mobile/operation/modules.php:508 -#: ../../mobile/operation/modules.php:525 -#: ../../operation/agentes/pandora_networkmap.view.php:293 -#: ../../operation/agentes/pandora_networkmap.view.php:302 -#: ../../operation/agentes/status_monitor.php:1148 -#: ../../operation/agentes/status_monitor.php:1152 -#: ../../operation/agentes/status_monitor.php:1183 -#: ../../operation/agentes/status_monitor.php:1188 -#: ../../operation/search_modules.php:108 -#: ../../operation/search_modules.php:125 -#: ../../enterprise/extensions/vmware/vmware_view.php:931 -#: ../../enterprise/include/functions_services.php:1591 -#: ../../enterprise/include/functions_services.php:1614 -#: ../../enterprise/operation/agentes/policy_view.php:371 -#: ../../enterprise/operation/agentes/policy_view.php:378 -msgid "NORMAL" -msgstr "NORMAL" - -#: ../../include/class/Tree.class.php:1578 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 -msgid "Module alerts" -msgstr "Alertas de módulo" - -#: ../../include/functions.php:215 -#: ../../enterprise/include/functions_reporting_csv.php:1535 -msgid "." -msgstr "." - -#: ../../include/functions.php:217 -msgid "," -msgstr "," - -#: ../../include/functions.php:439 ../../include/functions.php:573 -msgid "s" -msgstr "s" - -#: ../../include/functions.php:440 ../../include/functions.php:574 -msgid "d" -msgstr "d" - -#: ../../include/functions.php:441 ../../include/functions.php:575 -msgid "M" -msgstr "M" - -#: ../../include/functions.php:442 ../../include/functions.php:576 -msgid "Y" -msgstr "Y" - -#: ../../include/functions.php:443 ../../include/functions.php:577 -msgid "m" -msgstr "m" - -#: ../../include/functions.php:444 ../../include/functions.php:578 -msgid "h" -msgstr "h" - -#: ../../include/functions.php:445 ../../include/functions.php:579 -msgid "N" -msgstr "N" - -#: ../../include/functions.php:867 ../../include/functions.php:1075 -#: ../../include/functions.php:1108 ../../include/functions_events.php:1459 -#: ../../include/functions_graph.php:2777 -#: ../../include/functions_graph.php:3277 -#: ../../include/functions_graph.php:3278 -#: ../../include/functions_graph.php:5244 -#: ../../include/functions_incidents.php:34 -#: ../../include/functions_incidents.php:69 -msgid "Maintenance" -msgstr "Mantenimiento" - -#: ../../include/functions.php:870 ../../include/functions.php:1076 -#: ../../include/functions.php:1111 ../../include/functions_events.php:1462 -#: ../../include/functions_graph.php:3281 -#: ../../include/functions_graph.php:3282 -#: ../../include/functions_graph.php:5247 -msgid "Informational" -msgstr "Informativo" - -#: ../../include/functions.php:882 ../../include/functions.php:1078 -#: ../../include/functions.php:1123 ../../include/functions_graph.php:3289 -#: ../../include/functions_graph.php:3290 -#: ../../include/functions_graph.php:5259 -msgid "Minor" -msgstr "Menor" - -#: ../../include/functions.php:885 ../../include/functions.php:1080 -#: ../../include/functions.php:1126 ../../include/functions_graph.php:3297 -#: ../../include/functions_graph.php:3298 -#: ../../include/functions_graph.php:5262 -msgid "Major" -msgstr "Principal" - -#: ../../include/functions.php:1029 ../../include/functions_events.php:1395 -msgid "Monitor Critical" -msgstr "Monitor en estado crítico" - -#: ../../include/functions.php:1030 ../../include/functions_events.php:1398 -msgid "Monitor Warning" -msgstr "Monitor en estado de aviso" - -#: ../../include/functions.php:1031 ../../include/functions_events.php:1401 -msgid "Monitor Normal" -msgstr "Monitor en estado normal" - -#: ../../include/functions.php:1033 -msgid "Monitor Unknown" -msgstr "Monitor descon." - -#: ../../include/functions.php:1036 ../../include/functions_events.php:1138 -#: ../../include/functions_events.php:1407 -msgid "Alert recovered" -msgstr "Alerta recuperada" - -#: ../../include/functions.php:1037 ../../include/functions_events.php:1173 -#: ../../include/functions_events.php:1410 -msgid "Alert ceased" -msgstr "Alerta finalizada" - -#: ../../include/functions.php:1038 ../../include/functions_events.php:1413 -msgid "Alert manual validation" -msgstr "Validación manual de alerta" - -#: ../../include/functions.php:1040 -msgid "Agent created" -msgstr "Agente creado" - -#: ../../include/functions.php:1041 ../../include/functions_events.php:1416 -msgid "Recon host detected" -msgstr "Equipo de red detectado con Recon" - -#: ../../include/functions.php:1044 ../../include/functions_events.php:1170 -#: ../../include/functions_events.php:1425 -msgid "Configuration change" -msgstr "Cambio de configuración" - -#: ../../include/functions.php:2043 ../../include/functions.php:2044 -#, php-format -msgid "%s minutes" -msgstr "%s minutos" - -#: ../../include/functions.php:2052 ../../include/functions.php:2053 -#, php-format -msgid "%s months" -msgstr "%s meses" - -#: ../../include/functions.php:2055 ../../include/functions.php:2056 -#, php-format -msgid "%s years" -msgstr "%s años" - -#: ../../include/functions.php:2059 -msgid "Default values will be used" -msgstr "Se usarán valores por defecto" - -#: ../../include/functions.php:2219 -msgid "The uploaded file was only partially uploaded" -msgstr "El fichero se ha subido parcialmente" - -#: ../../include/functions.php:2222 -msgid "No file was uploaded" -msgstr "No se subió ningún archivo" - -#: ../../include/functions.php:2225 -msgid "Missing a temporary folder" -msgstr "El directorio temporal no existe" - -#: ../../include/functions.php:2228 -msgid "Failed to write file to disk" -msgstr "No se pudo escribir el fichero a disco" - -#: ../../include/functions.php:2231 -msgid "File upload stopped by extension" -msgstr "Subida de fichero cancelada por la extensión" - -#: ../../include/functions.php:2235 -msgid "Unknown upload error" -msgstr "Error desconocido al subir el fichero" - -#: ../../include/functions.php:2320 -msgid "No data found to export" -msgstr "Datos no encontrados para exportar" - -#: ../../include/functions.php:2338 -msgid "Source ID" -msgstr "ID Fuente" - -#: ../../include/functions.php:2606 -#: ../../operation/gis_maps/render_view.php:135 -msgid "5 seconds" -msgstr "5 segundos" - -#: ../../include/functions.php:2607 -#: ../../operation/gis_maps/render_view.php:136 -msgid "10 seconds" -msgstr "10 segundos" - -#: ../../include/functions.php:2608 -msgid "15 seconds" -msgstr "15 segundos" - -#: ../../include/functions.php:2609 -#: ../../operation/gis_maps/render_view.php:137 -msgid "30 seconds" -msgstr "30 segundos" - -#: ../../include/functions.php:2613 -msgid "15 minutes" -msgstr "15 minutos" - -#: ../../include/functions_reporting.php:535 -#: ../../include/functions_reports.php:540 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:112 -#: ../../enterprise/godmode/services/services.service.php:301 -#: ../../enterprise/include/functions_reporting_csv.php:909 -msgid "S.L.A." -msgstr "S.L.A." - -#: ../../include/functions_reporting.php:568 -#: ../../include/functions_reporting.php:5118 -#: ../../enterprise/include/functions_reporting.php:2073 -#: ../../enterprise/include/functions_reporting.php:2799 -#: ../../enterprise/include/functions_reporting.php:3580 -#: ../../enterprise/include/functions_reporting.php:4899 -#: ../../enterprise/include/functions_reporting.php:4905 -msgid "There are no SLAs defined" -msgstr "No hay SLA definidos" - -#: ../../include/functions_reporting.php:624 -#: ../../include/functions_reporting.php:5158 -#: ../../include/functions_maps.php:43 -#: ../../include/functions_networkmap.php:1722 -#: ../../enterprise/include/functions_reporting.php:2117 -#: ../../enterprise/include/functions_reporting.php:2843 -#: ../../enterprise/include/functions_reporting.php:3624 -msgid "Dynamic" -msgstr "Dinámico" - -#: ../../include/functions_reporting.php:635 -#: ../../include/functions_reporting.php:5169 -#: ../../enterprise/include/functions_reporting.php:2128 -#: ../../enterprise/include/functions_reporting.php:2854 -#: ../../enterprise/include/functions_reporting.php:3635 -msgid "Inverse" -msgstr "Inverso" - -#: ../../include/functions_reporting.php:945 -#: ../../enterprise/dashboard/widgets/top_n.php:31 -msgid "Top N" -msgstr "Top N" - -#: ../../include/functions_reporting.php:964 -#: ../../operation/snmpconsole/snmp_statistics.php:127 -#: ../../operation/snmpconsole/snmp_statistics.php:185 -#: ../../enterprise/include/functions_reporting_csv.php:418 -#, php-format -msgid "Top %d" -msgstr "Primeros %d" - -#: ../../include/functions_reporting.php:1002 -#: ../../include/functions_reporting.php:1821 -#: ../../include/functions_reporting_html.php:2432 -#: ../../include/functions_reporting_html.php:2664 -#: ../../enterprise/dashboard/widgets/top_n.php:468 -#: ../../enterprise/include/functions_reporting_pdf.php:825 -#: ../../enterprise/include/functions_reporting_pdf.php:1258 -#: ../../enterprise/include/functions_reporting_pdf.php:2013 -msgid "There are no Agent/Modules defined" -msgstr "No hay Agente/Módulos definidos" - -#: ../../include/functions_reporting.php:1055 -#: ../../enterprise/dashboard/widgets/top_n.php:534 -msgid "Insuficient data" -msgstr "Datos insuficientes" - -#: ../../include/functions_reporting.php:1212 -#: ../../include/functions_reporting.php:1365 -#: ../../include/functions_reporting.php:1384 -#: ../../include/functions_reporting.php:1405 -#: ../../include/functions_reporting.php:1426 -#: ../../include/functions_reporting.php:2092 -#: ../../include/functions_reporting.php:2274 -#: ../../include/functions_reporting.php:2295 -#: ../../include/functions_reporting.php:2316 -#: ../../include/functions_reporting.php:6211 -#: ../../include/functions_reporting.php:6231 -#: ../../include/functions_reporting.php:6251 -#: ../../include/functions_graph.php:2120 -#: ../../include/functions_graph.php:2200 -#: ../../include/functions_graph.php:2273 -#: ../../include/functions_graph.php:3038 -#: ../../include/functions_graph.php:3474 -#: ../../include/functions_reporting_html.php:2934 -#: ../../include/functions_reporting_html.php:3012 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:180 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:197 -msgid "other" -msgstr "otro" - -#: ../../include/functions_reporting.php:1288 -msgid "Event Report Group" -msgstr "Evento Grupo del Informe" - -#: ../../include/functions_reporting.php:1332 -#: ../../include/functions_reporting.php:1500 -#: ../../include/functions_events.php:865 -#: ../../include/functions_events.php:869 -#: ../../include/functions_reporting_html.php:3779 -#: ../../mobile/operation/events.php:790 -#: ../../operation/events/events.build_table.php:118 -#: ../../operation/events/events.build_table.php:787 -msgid "No events" -msgstr "No hay eventos" - -#: ../../include/functions_reporting.php:1465 -msgid "Event Report Module" -msgstr "Evento módulo del Informe" - -#: ../../include/functions_reporting.php:1527 -#: ../../enterprise/include/functions_reporting_csv.php:293 -msgid "Inventory Changes" -msgstr "Cambios de Inventario" - -#: ../../include/functions_reporting.php:1569 -#: ../../enterprise/extensions/ipam/ipam_action.php:198 -msgid "No changes found." -msgstr "No se han encontrado cambios." - -#: ../../include/functions_reporting.php:1656 -msgid "Agent/Modules" -msgstr "Agentes / módulos" - -#: ../../include/functions_reporting.php:1727 -#: ../../include/functions_reports.php:585 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:45 -#: ../../enterprise/include/functions_reporting_csv.php:391 -msgid "Exception" -msgstr "Excepción" - -#: ../../include/functions_reporting.php:1745 -msgid "Exception - Everything" -msgstr "Excepción - todo" - -#: ../../include/functions_reporting.php:1750 -#, php-format -msgid "Exception - Modules over or equal to %s" -msgstr "Excepción - Módulos por encima o igual a %s" - -#: ../../include/functions_reporting.php:1752 -#, php-format -msgid "Modules over or equal to %s" -msgstr "Módulos de más de o igual a %s" - -#: ../../include/functions_reporting.php:1756 -#, php-format -msgid "Exception - Modules under or equal to %s" -msgstr "Excepción - Módulos por debajo o igual a %s" - -#: ../../include/functions_reporting.php:1758 -#, php-format -msgid "Modules under or equal to %s" -msgstr "Módulos bajo o igual a %s" - -#: ../../include/functions_reporting.php:1762 -#, php-format -msgid "Exception - Modules under %s" -msgstr "Excepción - Módulos por debajo de %s" - -#: ../../include/functions_reporting.php:1764 -#, php-format -msgid "Modules under %s" -msgstr "Módulos bajo %s" - -#: ../../include/functions_reporting.php:1768 -#, php-format -msgid "Exception - Modules over %s" -msgstr "Excepción - Módulos por encima %s" - -#: ../../include/functions_reporting.php:1770 -#, php-format -msgid "Modules over %s" -msgstr "Módulos de más de %s" - -#: ../../include/functions_reporting.php:1774 -#, php-format -msgid "Exception - Equal to %s" -msgstr "Excepción - Igual a %s" - -#: ../../include/functions_reporting.php:1776 -#, php-format -msgid "Equal to %s" -msgstr "Igual a %s" - -#: ../../include/functions_reporting.php:1780 -#, php-format -msgid "Exception - Not equal to %s" -msgstr "Excepción - no igual a %s" - -#: ../../include/functions_reporting.php:1782 -#, php-format -msgid "Not equal to %s" -msgstr "No igual a %s" - -#: ../../include/functions_reporting.php:1786 -msgid "Exception - Modules at normal status" -msgstr "Excepción - Módulos en estado normal" - -#: ../../include/functions_reporting.php:1787 -msgid "Modules at normal status" -msgstr "Módulos en estado normal" - -#: ../../include/functions_reporting.php:1791 -msgid "Exception - Modules at critical or warning status" -msgstr "Excepción - Módulos en estado crítico o de advertencia" - -#: ../../include/functions_reporting.php:1792 -msgid "Modules at critical or warning status" -msgstr "Módulos en estado crítico o de advertencia" - -#: ../../include/functions_reporting.php:1981 -msgid "There are no Modules under those conditions." -msgstr "No hay módulos bajo esas condiciones" - -#: ../../include/functions_reporting.php:1984 -#, php-format -msgid "There are no Modules over or equal to %s." -msgstr "No hay módulos mayores o iguales a %s" - -#: ../../include/functions_reporting.php:1987 -#, php-format -msgid "There are no Modules less or equal to %s." -msgstr "No hay módulos menores o igual a %s" - -#: ../../include/functions_reporting.php:1990 -#, php-format -msgid "There are no Modules less %s." -msgstr "No hay módulos menores %s" - -#: ../../include/functions_reporting.php:1993 -#, php-format -msgid "There are no Modules over %s." -msgstr "No hay módulos mayores %s" - -#: ../../include/functions_reporting.php:1996 -#, php-format -msgid "There are no Modules equal to %s" -msgstr "No hay módules iguales a %s" - -#: ../../include/functions_reporting.php:1999 -#, php-format -msgid "There are no Modules not equal to %s" -msgstr "No hay módulos no iguales a %s" - -#: ../../include/functions_reporting.php:2002 -msgid "There are no Modules normal status" -msgstr "No hay módulos en estado normal" - -#: ../../include/functions_reporting.php:2005 -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:2153 -#: ../../enterprise/include/functions_reporting_csv.php:444 -msgid "Group Report" -msgstr "Informe del grupo" - -#: ../../include/functions_reporting.php:2207 -msgid "Event Report Agent" -msgstr "Informe de Eventos de Agentes" - -#: ../../include/functions_reporting.php:2409 -msgid "Database Serialized" -msgstr "Base de datos serializada" - -#: ../../include/functions_reporting.php:2529 -#: ../../include/functions_reports.php:640 -msgid "Group configuration" -msgstr "Configuración del grupo" - -#: ../../include/functions_reporting.php:2605 -msgid "Network interfaces report" -msgstr "Informe de las interfaces de red" - -#: ../../include/functions_reporting.php:2624 -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:2673 -#: ../../include/functions_reporting.php:2696 -msgid "bytes/s" -msgstr "bytes/s" - -#: ../../include/functions_reporting.php:2748 -msgid "Alert Report Group" -msgstr "Grupo de informe de alerta" - -#: ../../include/functions_reporting.php:2894 -msgid "Alert Report Agent" -msgstr "Agente informe de alerta" - -#: ../../include/functions_reporting.php:3011 -msgid "Alert Report Module" -msgstr "Módulo informe de alerta" - -#: ../../include/functions_reporting.php:3144 -msgid "SQL Graph Vertical Bars" -msgstr "Barras de gráficas verticales SQL" - -#: ../../include/functions_reporting.php:3147 -msgid "SQL Graph Horizontal Bars" -msgstr "Barras de gráficas horizontales SQL" - -#: ../../include/functions_reporting.php:3150 -msgid "SQL Graph Pie" -msgstr "Gráfica SQL circular" - -#: ../../include/functions_reporting.php:3197 -#: ../../enterprise/include/functions_reporting_csv.php:832 -#: ../../enterprise/include/functions_reporting_csv.php:848 -#: ../../enterprise/include/functions_reporting_csv.php:856 -msgid "Monitor Report" -msgstr "Informe de monitores" - -#: ../../include/functions_reporting.php:3274 -msgid "Netflow Area" -msgstr "Área de netflow" - -#: ../../include/functions_reporting.php:3277 -msgid "Netflow Pie" -msgstr "Tarta Netflow" - -#: ../../include/functions_reporting.php:3280 -msgid "Netflow Data" -msgstr "Datos de netflow" - -#: ../../include/functions_reporting.php:3283 -msgid "Netflow Statistics" -msgstr "Estadísticas de netflow" - -#: ../../include/functions_reporting.php:3286 -msgid "Netflow Summary" -msgstr "Resumen de netflow" - -#: ../../include/functions_reporting.php:3349 -#: ../../include/functions_reports.php:501 -msgid "Simple baseline graph" -msgstr "Gráfica simple de línea base" - -#: ../../include/functions_reporting.php:3416 -msgid "Prediction Date" -msgstr "Fecha de predicción." - -#: ../../include/functions_reporting.php:3467 -#: ../../enterprise/include/functions_reporting_csv.php:334 -msgid "Projection Graph" -msgstr "Gráfico de proyección" - -#: ../../include/functions_reporting.php:3554 -#: ../../include/functions_reports.php:638 -msgid "Agent configuration" -msgstr "Configuración de agentes" - -#: ../../include/functions_reporting.php:3708 -#: ../../enterprise/include/functions_reporting_csv.php:796 -#: ../../enterprise/include/functions_reporting_csv.php:812 -#: ../../enterprise/include/functions_reporting_csv.php:819 -msgid "AVG. Value" -msgstr "Valor AVG." - -#: ../../include/functions_reporting.php:3711 -#: ../../include/functions_reporting.php:5701 -#: ../../include/functions_reports.php:574 -#: ../../enterprise/include/functions_reporting_csv.php:688 -#: ../../enterprise/include/functions_reporting_csv.php:704 -#: ../../enterprise/include/functions_reporting_csv.php:711 -msgid "Summatory" -msgstr "Sumatorio" - -#: ../../include/functions_reporting.php:3714 -#: ../../include/functions_reports.php:535 -#: ../../enterprise/include/functions_reporting_csv.php:512 -#: ../../enterprise/include/functions_reporting_csv.php:527 -#: ../../enterprise/include/functions_reporting_csv.php:534 -msgid "MTTR" -msgstr "MTTR" - -#: ../../include/functions_reporting.php:3717 -#: ../../include/functions_reports.php:533 -#: ../../enterprise/include/functions_reporting_csv.php:547 -#: ../../enterprise/include/functions_reporting_csv.php:563 -#: ../../enterprise/include/functions_reporting_csv.php:570 -msgid "MTBF" -msgstr "MTBF" - -#: ../../include/functions_reporting.php:3720 -#: ../../include/functions_reports.php:531 -#: ../../enterprise/include/functions_reporting_csv.php:583 -#: ../../enterprise/include/functions_reporting_csv.php:599 -#: ../../enterprise/include/functions_reporting_csv.php:606 -msgid "TTO" -msgstr "TTO" - -#: ../../include/functions_reporting.php:3723 -#: ../../include/functions_reports.php:529 -#: ../../enterprise/include/functions_reporting_csv.php:619 -#: ../../enterprise/include/functions_reporting_csv.php:636 -#: ../../enterprise/include/functions_reporting_csv.php:643 -msgid "TTRT" -msgstr "TTRT" - -#: ../../include/functions_reporting.php:3898 -#: ../../enterprise/godmode/reporting/mysql_builder.php:142 -#: ../../enterprise/include/functions_reporting_csv.php:654 -msgid "SQL" -msgstr "SQL" - -#: ../../include/functions_reporting.php:3969 -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." -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." - -#: ../../include/functions_reporting.php:4849 -#: ../../include/functions_reporting.php:5092 -#: ../../include/functions_reports.php:599 -#: ../../enterprise/include/functions_reporting.php:1015 -#: ../../enterprise/include/functions_reporting_csv.php:249 -msgid "Availability" -msgstr "Disponibilidad" - -#: ../../include/functions_reporting.php:4960 -msgid "No Address" -msgstr "Sin dirección" - -#: ../../include/functions_reporting.php:5711 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:264 -msgid "Rate" -msgstr "Tasa" - -#: ../../include/functions_reporting.php:5783 -#: ../../include/functions_reporting.php:5905 -#: ../../include/functions_reports.php:499 -msgid "Simple graph" -msgstr "Gráfica simple" - -#: ../../include/functions_reporting.php:6356 -msgid "Maximum of events shown" -msgstr "Máximo número de eventos mostrados" - -#: ../../include/functions_reporting.php:6996 -#: ../../include/functions_reporting.php:7033 -msgid "Server health" -msgstr "Salud del servidor" - -#: ../../include/functions_reporting.php:6996 -#, php-format -msgid "%d Downed servers" -msgstr "%d Servidores caidos" - -#: ../../include/functions_reporting.php:7004 -#: ../../include/functions_reporting.php:7036 -msgid "Monitor health" -msgstr "Estado de los monitores" - -#: ../../include/functions_reporting.php:7004 -#, php-format -msgid "%d Not Normal monitors" -msgstr "%d Monitores fuera de la normalidad" - -#: ../../include/functions_reporting.php:7006 -#: ../../include/functions_reporting.php:7037 -msgid "of monitors up" -msgstr "de monitores funcionando" - -#: ../../include/functions_reporting.php:7012 -#: ../../include/functions_reporting.php:7039 -msgid "Module sanity" -msgstr "Estado de los módulos" - -#: ../../include/functions_reporting.php:7012 -#, php-format -msgid "%d Not inited monitors" -msgstr "%d Monitores sin iniciar" - -#: ../../include/functions_reporting.php:7014 -#: ../../include/functions_reporting.php:7040 -msgid "of total modules inited" -msgstr "del total de módulos inic." - -#: ../../include/functions_reporting.php:7020 -#: ../../include/functions_reporting.php:7042 -#: ../../include/functions_reporting_html.php:2762 -msgid "Alert level" -msgstr "Nivel de alerta" - -#: ../../include/functions_reporting.php:7020 -#: ../../include/functions_reporting.php:8040 -#: ../../include/functions_reporting.php:8049 -#, php-format -msgid "%d Fired alerts" -msgstr "%d Alertas lanzadas" - -#: ../../include/functions_reporting.php:7022 -#: ../../include/functions_reporting.php:7043 -msgid "of defined alerts not fired" -msgstr "de alertas definidas no disparadas" - -#: ../../include/functions_reporting.php:7080 -#: ../../enterprise/include/functions_reporting_csv.php:465 -msgid "Defined alerts" -msgstr "Alertas definidas" - -#: ../../include/functions_reporting.php:7093 -#: ../../include/functions_reporting.php:7114 -#: ../../include/functions_graph.php:2111 ../../operation/tree.php:276 -#: ../../operation/tree.php:277 ../../operation/tree.php:278 -#: ../../enterprise/dashboard/widgets/tree_view.php:200 -#: ../../enterprise/dashboard/widgets/tree_view.php:201 -#: ../../enterprise/dashboard/widgets/tree_view.php:202 -#: ../../enterprise/include/functions_reporting_csv.php:466 -msgid "Fired alerts" -msgstr "Alertas disparadas" - -#: ../../include/functions_reporting.php:7102 -msgid "Defined and fired alerts" -msgstr "Alertas definidas y lanzadas" - -#: ../../include/functions_reporting.php:7157 -#: ../../operation/events/sound_events.php:84 -msgid "Monitor critical" -msgstr "Monitor crítico" - -#: ../../include/functions_reporting.php:7161 -#: ../../operation/events/sound_events.php:86 -msgid "Monitor warning" -msgstr "Monitor warning" - -#: ../../include/functions_reporting.php:7168 -msgid "Monitor normal" -msgstr "Monitor normal" - -#: ../../include/functions_reporting.php:7172 -#: ../../operation/events/sound_events.php:85 -msgid "Monitor unknown" -msgstr "Monitor desconocido" - -#: ../../include/functions_reporting.php:7179 -msgid "Monitor not init" -msgstr "Monitor no iniciado" - -#: ../../include/functions_reporting.php:7203 -#: ../../include/functions_reporting.php:7214 -msgid "Monitors by status" -msgstr "Monitores por estatus" - -#: ../../include/functions_reporting.php:7261 -#: ../../include/functions_reporting_html.php:3471 -#: ../../enterprise/dashboard/widgets/tactical.php:32 -msgid "Monitor checks" -msgstr "Comprobaciones de monitores" - -#: ../../include/functions_reporting.php:7279 -#: ../../include/functions_reporting_html.php:3476 -msgid "Total agents and monitors" -msgstr "Total de agentes y monitores" - -#: ../../include/functions_reporting.php:7302 -msgid "Defined users" -msgstr "Usuarios definidos" - -#: ../../include/functions_reporting.php:7940 -msgid "Agent without data" -msgstr "Agente sin datos" - -#: ../../include/functions_reporting.php:7979 -#: ../../include/functions_agents.php:2209 -#: ../../include/functions_agents.php:2234 -#: ../../include/functions_agents.php:2259 -msgid "At least one module in CRITICAL status" -msgstr "Al menos un módulo está en estado CRÍTICO" - -#: ../../include/functions_reporting.php:7983 -#: ../../include/functions_agents.php:2213 -#: ../../include/functions_agents.php:2238 -#: ../../include/functions_agents.php:2263 -msgid "At least one module in WARNING status" -msgstr "Al menos un módulo está en estado ADVERTENCIA" - -#: ../../include/functions_reporting.php:7987 -#: ../../include/functions_agents.php:2217 -#: ../../include/functions_agents.php:2242 -#: ../../include/functions_agents.php:2267 -msgid "At least one module is in UKNOWN status" -msgstr "Al menos un módulo está en estado DESCONOCIDO" - -#: ../../include/functions_reporting.php:7991 -#: ../../include/functions_agents.php:2221 -#: ../../include/functions_agents.php:2246 -#: ../../include/functions_agents.php:2271 -msgid "All Monitors OK" -msgstr "Todos los monitores BIEN" - -#: ../../include/functions_reporting.php:8027 -#: ../../include/functions_reporting.php:8035 -#, php-format -msgid "%d Total modules" -msgstr "%d Módulos totales" - -#: ../../include/functions_reporting.php:8028 -#, php-format -msgid "%d Modules in normal status" -msgstr "%d Módulos en estado normal" - -#: ../../include/functions_reporting.php:8029 -#, php-format -msgid "%d Modules in critical status" -msgstr "%d Módulos en estado crítico" - -#: ../../include/functions_reporting.php:8030 -#, php-format -msgid "%d Modules in warning status" -msgstr "%d Módulos en estado de alerta" - -#: ../../include/functions_reporting.php:8031 -#, php-format -msgid "%d Modules in unknown status" -msgstr "%d Módulos en estado desconocido" - -#: ../../include/functions_reporting.php:8032 -#, php-format -msgid "%d Modules in not init status" -msgstr "%d Módulos en estado no iniciado" - -#: ../../include/functions_reporting.php:8036 -#, php-format -msgid "%d Normal modules" -msgstr "%d Módulos normales" - -#: ../../include/functions_reporting.php:8037 -#, php-format -msgid "%d Critical modules" -msgstr "%d Módulos críticos" - -#: ../../include/functions_reporting.php:8038 -#, php-format -msgid "%d Warning modules" -msgstr "%d Módulos en estado de alerta" - -#: ../../include/functions_reporting.php:8039 -#, php-format -msgid "%d Unknown modules" -msgstr "%d Módulos desconocidos" - -#: ../../include/functions_reporting.php:8043 -#, php-format -msgid "%d Total agents" -msgstr "%d del total de agentes" - -#: ../../include/functions_reporting.php:8044 -#, php-format -msgid "%d Normal agents" -msgstr "%d Agentes normales" - -#: ../../include/functions_reporting.php:8045 -#, php-format -msgid "%d Critical agents" -msgstr "%d Agentes en estado crítico" - -#: ../../include/functions_reporting.php:8046 -#, php-format -msgid "%d Warning agents" -msgstr "%d Agentes en estado de alerta" - -#: ../../include/functions_reporting.php:8047 -#, php-format -msgid "%d Unknown agents" -msgstr "%d Agentes desconocidos" - -#: ../../include/functions_reporting.php:8048 -#, php-format -msgid "%d not init agents" -msgstr "%d agentes no iniciados" - -#: ../../include/functions_reporting.php:9750 -msgid "Total running modules" -msgstr "Total de módulos en ejecución" - -#: ../../include/functions_reporting.php:9753 -#: ../../include/functions_reporting.php:9769 -#: ../../include/functions_reporting.php:9785 -#: ../../include/functions_reporting.php:9808 -#: ../../include/functions_reporting.php:9827 -#: ../../include/functions_reporting.php:9839 -#: ../../include/functions_reporting.php:9851 -#: ../../include/functions_reporting.php:9867 -msgid "Ratio" -msgstr "Proporción" - -#: ../../include/functions_reporting.php:9753 -#: ../../include/functions_reporting.php:9769 -#: ../../include/functions_reporting.php:9785 -#: ../../include/functions_reporting.php:9808 -#: ../../include/functions_reporting.php:9827 -#: ../../include/functions_reporting.php:9839 -#: ../../include/functions_reporting.php:9851 -#: ../../include/functions_reporting.php:9867 -msgid "Modules by second" -msgstr "Módulos por segundo" - -#: ../../include/functions_reporting.php:9765 -msgid "Local modules" -msgstr "Módulos locales" - -#: ../../include/functions_reporting.php:9776 -msgid "Remote modules" -msgstr "Módulos remotos" - -#: ../../include/functions_reporting.php:9800 -msgid "Network modules" -msgstr "Módulos de red" - -#: ../../include/functions_reporting.php:9823 -msgid "Plugin modules" -msgstr "Módulos de plugin" - -#: ../../include/functions_reporting.php:9835 -msgid "Prediction modules" -msgstr "Módulos de predicciónd" - -#: ../../include/functions_reporting.php:9847 -msgid "WMI modules" -msgstr "Módulos WMI" - -#: ../../include/functions_reporting.php:9859 -msgid "Web modules" -msgstr "Módulos Web" - -#: ../../include/functions_reporting.php:9921 -#: ../../enterprise/dashboard/widgets/tactical.php:39 -msgid "Server performance" -msgstr "Rendimiento del servidor" - -#: ../../include/functions_reporting.php:10003 -#: ../../enterprise/include/functions_reporting.php:4976 -msgid "Weekly:" -msgstr "Semanalmente" - -#: ../../include/functions_reporting.php:10037 -#: ../../enterprise/include/functions_reporting.php:5010 -msgid "Monthly:" -msgstr "Mensual" - -#: ../../include/functions_reporting.php:10038 -#: ../../enterprise/include/functions_reporting.php:5011 -msgid "From day" -msgstr "Desde el día" - -#: ../../include/functions_reporting.php:10039 -#: ../../enterprise/include/functions_reporting.php:5012 -msgid "To day" -msgstr "Hasta el día" - -#: ../../include/functions_agents.php:672 -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:2205 -#: ../../include/functions_agents.php:2230 -#: ../../include/functions_agents.php:2255 -msgid "No Monitors" -msgstr "No hay monitores" - -#: ../../include/functions_tags.php:602 -msgid "Click here to open a popup window with URL tag" -msgstr "Click aquí para abrir una ventana popup con el tag URL" - -#: ../../include/functions_alerts.php:401 -#: ../../enterprise/include/functions_policies.php:456 -#: ../../enterprise/include/functions_policies.php:471 -msgid "copy" -msgstr "copiar" - -#: ../../include/functions_alerts.php:567 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:113 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:114 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:113 -msgid "Regular expression" -msgstr "Expresión regular" - -#: ../../include/functions_alerts.php:568 -msgid "Max and min" -msgstr "Máx. y mín." - -#: ../../include/functions_alerts.php:571 -msgid "Equal to" -msgstr "Igual a" - -#: ../../include/functions_alerts.php:572 -msgid "Not equal to" -msgstr "Diferente a" - -#: ../../include/functions_alerts.php:575 -msgid "Unknown status" -msgstr "Estado desconocido" - -#: ../../include/functions_alerts.php:576 -msgid "On Change" -msgstr "en estado de cambio" - -#: ../../include/functions_alerts.php:970 -#: ../../include/functions_network_components.php:507 -#: ../../enterprise/include/functions_local_components.php:284 -msgid "Copy of" -msgstr "Copia de" - -#: ../../include/functions_alerts.php:1394 -msgid "No actions defined" -msgstr "No hay acciones definidas" - #: ../../include/functions_api.php:77 msgid "No set or get or help operation." msgstr "Sin acceso a operaciones de tipo SET, GET o HELP" @@ -21999,6 +14135,21 @@ msgstr "Usuario habilitado." msgid "Disabled user." msgstr "Usuario deshabilitado." +#: ../../include/functions_api.php:7659 +#: ../../godmode/agentes/configurar_agente.php:1614 +msgid "Save by Pandora Console" +msgstr "Guardado por la consola de Pandora" + +#: ../../include/functions_api.php:7660 +#: ../../godmode/agentes/configurar_agente.php:1629 +msgid "Update by Pandora Console" +msgstr "Actualizado por la consola de Pandora" + +#: ../../include/functions_api.php:7661 +#: ../../godmode/agentes/configurar_agente.php:1642 +msgid "Insert by Pandora Console" +msgstr "Insertado por la consola de Pandora" + #: ../../include/functions_api.php:8268 msgid "Delete user." msgstr "borrar usuario" @@ -22101,1449 +14252,71 @@ msgstr "Error en la eliminación de día especial" msgid "Error in deletion special day." msgstr "Error en la eliminación de día especial" -#: ../../include/functions_treeview.php:54 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1347 -msgid "There was a problem loading module" -msgstr "Hubo un problema al cargar el módulo" - -#: ../../include/functions_treeview.php:279 -#: ../../include/functions_treeview.php:286 -#: ../../include/functions_ui.php:3714 ../../include/functions_ui.php:3721 -#: ../../mobile/operation/modules.php:610 -#: ../../mobile/operation/modules.php:617 -#: ../../operation/agentes/status_monitor.php:1362 -#: ../../operation/agentes/status_monitor.php:1369 -#: ../../enterprise/include/functions_services.php:1569 -#: ../../enterprise/operation/agentes/ux_console_view.php:100 -#: ../../enterprise/operation/agentes/ux_console_view.php:269 -#: ../../enterprise/operation/agentes/ux_console_view.php:342 -msgid "Snapshot view" -msgstr "Vista de captura de comando" - -#: ../../include/functions_treeview.php:294 -#: ../../include/graphs/functions_flot.php:624 -#: ../../enterprise/extensions/vmware/vmware_view.php:873 -#: ../../enterprise/extensions/vmware/vmware_view.php:889 -#: ../../enterprise/extensions/vmware/vmware_view.php:905 -#: ../../enterprise/extensions/vmware/vmware_view.php:921 -msgid "No data" -msgstr "Sin datos" - -#: ../../include/functions_treeview.php:298 -#: ../../include/functions_reporting_html.php:70 -#: ../../include/functions_reporting_html.php:3383 -#: ../../enterprise/include/functions_reporting_pdf.php:2260 -#: ../../enterprise/include/functions_reporting_pdf.php:2298 -msgid "Last data" -msgstr "Últimos datos" - -#: ../../include/functions_treeview.php:313 -msgid "Go to module edition" -msgstr "Ir a la edición de módulos" - -#: ../../include/functions_treeview.php:362 -msgid "There was a problem loading alerts" -msgstr "Hubo un problema al cargar las alertas" - -#: ../../include/functions_treeview.php:446 -msgid "Go to alerts edition" -msgstr "Ir a \"editar alertas\"" - -#: ../../include/functions_treeview.php:506 -#: ../../operation/agentes/agent_fields.php:28 -#: ../../operation/agentes/custom_fields.php:28 -#: ../../operation/agentes/estado_generalagente.php:46 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1057 -msgid "There was a problem loading agent" -msgstr "Hubo un problema al cargar la configuración del agente" - -#: ../../include/functions_treeview.php:571 -#: ../../operation/agentes/estado_generalagente.php:268 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1102 -msgid "Other IP addresses" -msgstr "Otras direcciones IP" - -#: ../../include/functions_treeview.php:602 -#: ../../operation/agentes/estado_agente.php:501 -#: ../../operation/agentes/estado_generalagente.php:205 -#: ../../operation/gis_maps/ajax.php:332 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1149 -msgid "Remote" -msgstr "Remoto" - -#: ../../include/functions_treeview.php:610 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1170 -msgid "Next agent contact" -msgstr "Siguiente contacto con el agente" - -#: ../../include/functions_treeview.php:620 -msgid "Go to agent edition" -msgstr "Ir a \"editar agentes\"" - -#: ../../include/functions_treeview.php:629 -msgid "Agent data" -msgstr "Datos de agentes" - -#: ../../include/functions_treeview.php:642 -#: ../../operation/agentes/estado_generalagente.php:159 -#: ../../operation/gis_maps/ajax.php:315 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1117 -msgid "Agent Version" -msgstr "Versión del agente" - -#: ../../include/functions_treeview.php:659 -#: ../../operation/agentes/estado_generalagente.php:310 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1124 -msgid "Position (Long, Lat)" -msgstr "posición (longitud, latitud)" - -#: ../../include/functions_treeview.php:676 -#: ../../operation/agentes/estado_generalagente.php:338 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1164 -msgid "Timezone Offset" -msgstr "Franja horaria desactivada" - -#: ../../include/functions_treeview.php:691 -#: ../../operation/agentes/agent_fields.php:45 -#: ../../operation/agentes/estado_generalagente.php:354 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1180 -msgid "Custom field" -msgstr "Campo personalizado" - -#: ../../include/functions_treeview.php:702 -msgid "Advanced information" -msgstr "Información avanzada" - -#: ../../include/functions_treeview.php:714 -#: ../../operation/agentes/estado_generalagente.php:256 -msgid "Agent access rate (24h)" -msgstr "Accesibilidad del agente (24h)" - -#: ../../include/functions_treeview.php:722 -#: ../../mobile/operation/agent.php:214 -#: ../../operation/agentes/estado_generalagente.php:602 -msgid "Events (24h)" -msgstr "Eventos (24h)" - -#: ../../include/functions_treeview.php:774 -#: ../../operation/agentes/estado_generalagente.php:478 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:645 -msgid "Interface traffic" -msgstr "Interfaz de tráfico" - -#: ../../include/functions_treeview.php:796 -#: ../../operation/agentes/estado_generalagente.php:448 -msgid "Interface information" -msgstr "Interfaz de información" - -#: ../../include/functions_clippy.php:163 -#: ../../include/functions_clippy.php:168 -msgid "End wizard" -msgstr "Cierra asistente" - -#: ../../include/functions_clippy.php:195 -msgid "Next →" -msgstr "Siguiente →" - -#: ../../include/functions_clippy.php:196 -msgid "← Back" -msgstr "← Anterior" - -#: ../../include/functions_clippy.php:208 -msgid "Do you want to exit the help tour?" -msgstr "¿Quieres salir de la ayuda guiada?" - -#: ../../include/functions_pandora_networkmap.php:103 -#: ../../mobile/operation/networkmap.php:110 -#: ../../mobile/operation/networkmap.php:129 -#: ../../mobile/operation/networkmap.php:146 -#: ../../operation/agentes/networkmap.dinamic.php:130 -#: ../../enterprise/include/class/NetworkmapEnterprise.class.php:227 -#: ../../enterprise/operation/policies/networkmap.policies.php:64 -msgid "Pandora FMS" -msgstr "Pandora FMS" - -#: ../../include/functions_pandora_networkmap.php:754 -#, php-format -msgid "Edit node %s" -msgstr "Modificar nodo %s" - -#: ../../include/functions_pandora_networkmap.php:755 -msgid "Holding Area" -msgstr "Buffer de procesamiento" - -#: ../../include/functions_pandora_networkmap.php:756 -msgid "Show details and options" -msgstr "Mostrar los detalles y opciones" - -#: ../../include/functions_pandora_networkmap.php:757 -msgid "Add a interface link" -msgstr "Añadir enlace de interfaz" - -#: ../../include/functions_pandora_networkmap.php:758 -msgid "Set parent interface" -msgstr "Establecer padre en la relación de interfaz" - -#: ../../include/functions_pandora_networkmap.php:759 -msgid "Set as children" -msgstr "Establecer como hijo" - -#: ../../include/functions_pandora_networkmap.php:760 -msgid "Set parent" -msgstr "Establecer como padre" - -#: ../../include/functions_pandora_networkmap.php:761 -#: ../../include/functions_pandora_networkmap.php:768 -msgid "Abort the action of set relationship" -msgstr "Cancela la acción de relacionar por parentesco" - -#: ../../include/functions_pandora_networkmap.php:763 -#: ../../include/functions_pandora_networkmap.php:1546 -msgid "Add node" -msgstr "Añadir nodo" - -#: ../../include/functions_pandora_networkmap.php:764 -msgid "Set center" -msgstr "Fijar centro" - -#: ../../include/functions_pandora_networkmap.php:766 -msgid "Refresh Holding area" -msgstr "Actualizar buffer de procesamiento" - -#: ../../include/functions_pandora_networkmap.php:767 -msgid "Abort the action of set interface relationship" -msgstr "Cancelar enlace de interfaz" - -#: ../../include/functions_pandora_networkmap.php:953 -#: ../../include/functions_maps.php:62 -msgid "Copy of " -msgstr "Copiar de " - -#: ../../include/functions_pandora_networkmap.php:1276 -msgid "Open Minimap" -msgstr "Abrir Minimapa" - -#: ../../include/functions_pandora_networkmap.php:1283 -msgid "Hide Labels" -msgstr "Ocultar textos" - -#: ../../include/functions_pandora_networkmap.php:1374 -msgid "Edit node" -msgstr "Modificar nodo" - -#: ../../include/functions_pandora_networkmap.php:1385 -msgid "Adresses" -msgstr "Direcciones" - -#: ../../include/functions_pandora_networkmap.php:1387 -msgid "OS type" -msgstr "Tipo de SO" - -#: ../../include/functions_pandora_networkmap.php:1392 -#: ../../include/functions_pandora_networkmap.php:1393 -msgid "Node Details" -msgstr "Detalles de nodo" - -#: ../../include/functions_pandora_networkmap.php:1402 -msgid "Ip" -msgstr "IP" - -#: ../../include/functions_pandora_networkmap.php:1403 -msgid "MAC" -msgstr "MAC" - -#: ../../include/functions_pandora_networkmap.php:1412 -#: ../../include/functions_pandora_networkmap.php:1413 -msgid "Interface Information (SNMP)" -msgstr "Información de interfaces (SNMP)" - -#: ../../include/functions_pandora_networkmap.php:1420 -msgid "Shape" -msgstr "Forma" - -#: ../../include/functions_pandora_networkmap.php:1422 -msgid "Circle" -msgstr "Círculo" - -#: ../../include/functions_pandora_networkmap.php:1423 -msgid "Square" -msgstr "Cuadrado" - -#: ../../include/functions_pandora_networkmap.php:1424 -msgid "Rhombus" -msgstr "Rombo" - -#: ../../include/functions_pandora_networkmap.php:1434 -msgid "name node" -msgstr "nombre del nodo" - -#: ../../include/functions_pandora_networkmap.php:1436 -msgid "Update node" -msgstr "Actualizar nodo" - -#: ../../include/functions_pandora_networkmap.php:1441 -#: ../../include/functions_pandora_networkmap.php:1602 -msgid "name fictional node" -msgstr "Nombre de nodo ficticio" - -#: ../../include/functions_pandora_networkmap.php:1442 -#: ../../include/functions_pandora_networkmap.php:1603 -msgid "Networkmap to link" -msgstr "Enlace a mapa de red" - -#: ../../include/functions_pandora_networkmap.php:1448 -msgid "Update fictional node" -msgstr "Actualizar nodo ficticio" - -#: ../../include/functions_pandora_networkmap.php:1451 -#: ../../include/functions_pandora_networkmap.php:1452 -msgid "Node options" -msgstr "Opciones de nodo" - -#: ../../include/functions_pandora_networkmap.php:1459 -#: ../../include/functions_pandora_networkmap.php:1514 -msgid "Node source" -msgstr "Nodo origen" - -#: ../../include/functions_pandora_networkmap.php:1460 -#: ../../include/functions_pandora_networkmap.php:1515 -msgid "Interface source" -msgstr "Interfaz origen" - -#: ../../include/functions_pandora_networkmap.php:1461 -#: ../../include/functions_pandora_networkmap.php:1516 -msgid "Interface Target" -msgstr "Interfaz objetivo" - -#: ../../include/functions_pandora_networkmap.php:1463 -#: ../../include/functions_pandora_networkmap.php:1517 -msgid "Node target" -msgstr "Nodo objetivo" - -#: ../../include/functions_pandora_networkmap.php:1464 -msgid "E." -msgstr "E." - -#: ../../include/functions_pandora_networkmap.php:1495 -msgid "There are not relations" -msgstr "No hay relaciones" - -#: ../../include/functions_pandora_networkmap.php:1502 -#: ../../include/functions_pandora_networkmap.php:1503 -msgid "Relations" -msgstr "Relaciones" - -#: ../../include/functions_pandora_networkmap.php:1538 -msgid "Add interface link" -msgstr "Añadir enlace de interfaz" - -#: ../../include/functions_pandora_networkmap.php:1565 -#: ../../include/functions_pandora_networkmap.php:1569 -#: ../../include/functions_pandora_networkmap.php:1570 -#: ../../include/functions_pandora_networkmap.php:1590 -#: ../../include/functions_pandora_networkmap.php:1595 -#: ../../include/functions_pandora_networkmap.php:1613 -msgid "Add agent node" -msgstr "Añadir nodo de agente" - -#: ../../include/functions_pandora_networkmap.php:1594 -msgid "Add agent node (filter by group)" -msgstr "Añadir nodo de agente (filtro por grupo)" - -#: ../../include/functions_pandora_networkmap.php:1609 -msgid "Add fictional node" -msgstr "Añadir nodo ficticio" - -#: ../../include/functions_pandora_networkmap.php:1612 -msgid "Add fictional point" -msgstr "Añadir punto ficticio" - -#: ../../include/functions_ui.php:225 -msgid "Information" -msgstr "Información" - -#: ../../include/functions_ui.php:231 -#: ../../enterprise/include/functions_visual_map.php:622 -msgid "Success" -msgstr "Éxito" - -#: ../../include/functions_ui.php:367 -msgid "Request successfully processed" -msgstr "Petición procesada correctamente" - -#: ../../include/functions_ui.php:370 -msgid "Error processing request" -msgstr "Error al procesar la petición" - -#: ../../include/functions_ui.php:508 -msgid "" -"Is possible that this view uses part of information which your user has not " -"access" -msgstr "" -"Es posible que esta vista utilize parte de la información a la cual su " -"usuario no tenga acceso" - -#: ../../include/functions_ui.php:1028 -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:1033 -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:1309 -#: ../../enterprise/meta/include/functions_ui_meta.php:54 -msgid "the Flexible Monitoring System" -msgstr "el Sistema Flexible de Monitorización" - -#: ../../include/functions_ui.php:1629 ../../include/functions_ui.php:1655 -#, php-format -msgid "Total items: %s" -msgstr "Total de elementos %s" - -#: ../../include/functions_ui.php:1962 -msgid "Unknown type" -msgstr "Tipo desconocido" - -#: ../../include/functions_ui.php:2775 -msgid "Type at least two characters to search." -msgstr "Escriba al menos dos caracteres para buscar." - -#: ../../include/functions_ui.php:3605 -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\tthe database server is not running." -msgstr "" -"No se pudo conectar a la base de datos, por favor, compruebe su " -"configuración de base de datos en el fichero include/config.php " -"

    \n" -"\t\t\tProbablemente su valor de administrador, usuario o contraseña sean " -"incorrectos.\n" -"\t\t\tla base de datos no está en ejecución." - -#: ../../include/functions_ui.php:3620 -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

    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, compruebe la configuración de su base de datos en el\n" -"\t\t\tinclude/config.php file.

    \n" -"\t\t\tLo más probable es que el esquema de su base de datos haya sido creada " -"pero no hay datos dentro, tiene un problema con los credenciales o su " -"esquema está fuera de fecha\n" -"\t\t\t

    La consola de Pandora FMS no puede encontrar " -"include/config.php or this file has invalid\n" -"\t\t\tpermisos y el servidor HTTP no puede leerlo. Por favor, lea la " -"documentación para solucionar este problema.
    " - -#: ../../include/functions_ui.php:3628 -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." -msgstr "" -"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, lea la " -"documentación para solucionar este problema." - -#: ../../include/functions_ui.php:3643 -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." -msgstr "" -"Por razones de seguridad no podrá operar con normalidad gasta que elimine el " -"archivo de instalación\n" -"\t\t\tPor favor, elimine el archivo ./install.php antes de ejecutar " -"la consola de Pandora FMS." - -#: ../../include/functions_ui.php:3648 -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." -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 el. Solo " -"debería poder escribir el creador\n" -"\t\t\t(habitualmente www-data o http daemon usuario), la operación normal no " -"es posible hasta que cambie\n" -"\t\t\tlos permisos para el fichero include/config.php . Por favor " -"hágalo, es por su seguridad." - -#: ../../include/functions_config.php:94 -msgid "Failed updated: User did not login." -msgstr "Fallo de actualización: el usuario no se dio de alta" - -#: ../../include/functions_config.php:102 -msgid "Failed updated: User is not admin." -msgstr "Fallo de actualización:el usuario no es administrador" - -#: ../../include/functions_config.php:140 -msgid "SSL cert path" -msgstr "Ruta del certificado SSL" - -#: ../../include/functions_config.php:144 -msgid "Use cert." -msgstr "Usar certificado" - -#: ../../include/functions_config.php:154 -msgid "Enable Integria incidents in Pandora Console" -msgstr "Habilitar incidentes de Integria en Pandora Console" - -#: ../../include/functions_config.php:156 -msgid "Integria inventory" -msgstr "Inventario Integria" - -#: ../../include/functions_config.php:158 -msgid "Integria API password" -msgstr "Contraseña de la API de Integria" - -#: ../../include/functions_config.php:160 -msgid "Integria URL" -msgstr "Integria URL" - -#: ../../include/functions_config.php:184 -msgid "License information" -msgstr "Información sobre la licencia" - -#: ../../include/functions_config.php:204 -msgid "Identification_reminder" -msgstr "Recordatorio de identificación" - -#: ../../include/functions_config.php:206 -msgid "Include_agents" -msgstr "Incluir agentes" - -#: ../../include/functions_config.php:208 -msgid "Audit log directory" -msgstr "Directorio de log" - -#: ../../include/functions_config.php:213 -#: ../../enterprise/godmode/setup/setup.php:30 -msgid "Forward SNMP traps to agent (if exist)" -msgstr "Reenviar los Traps SNMP al agente (si existe)" - -#: ../../include/functions_config.php:215 -#: ../../enterprise/godmode/setup/setup.php:38 -msgid "Use Enterprise ACL System" -msgstr "Utilize el sistema ACL Enterprise" - -#: ../../include/functions_config.php:217 -#: ../../enterprise/meta/include/functions_meta.php:327 -msgid "Activate Metaconsole" -msgstr "Activar la metaconsola" - -#: ../../include/functions_config.php:219 -#: ../../enterprise/godmode/setup/setup.php:47 -msgid "Size of collection" -msgstr "Tamaño de la colección" - -#: ../../include/functions_config.php:221 -#: ../../enterprise/godmode/setup/setup.php:54 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:384 -msgid "Events replication" -msgstr "Replicación de eventos" - -#: ../../include/functions_config.php:224 -#: ../../enterprise/godmode/setup/setup.php:63 -msgid "Replication interval" -msgstr "Intervalo de replicación" - -#: ../../include/functions_config.php:226 -#: ../../enterprise/godmode/setup/setup.php:70 -msgid "Replication limit" -msgstr "Límite de replicación" - -#: ../../include/functions_config.php:228 -#: ../../enterprise/godmode/setup/setup.php:89 -msgid "Replication mode" -msgstr "Modo de replicación" - -#: ../../include/functions_config.php:230 -#: ../../enterprise/godmode/setup/setup.php:138 -msgid "Show events list in local console (read only)" -msgstr "Mostrar lista de eventos en la consola local (solo lectura)" - -#: ../../include/functions_config.php:233 -msgid "Replication DB engine" -msgstr "Motor BD replicación" - -#: ../../include/functions_config.php:235 -msgid "Replication DB host" -msgstr "Host de la BD de réplica" - -#: ../../include/functions_config.php:237 -msgid "Replication DB database" -msgstr "Nombre de la BD de réplica" - -#: ../../include/functions_config.php:239 -msgid "Replication DB user" -msgstr "Usuario de la BD de réplica" - -#: ../../include/functions_config.php:241 -msgid "Replication DB password" -msgstr "Password de la BD de réplica" - -#: ../../include/functions_config.php:243 -msgid "Replication DB port" -msgstr "Puerto de la BD de réplica" - -#: ../../include/functions_config.php:245 -msgid "Metaconsole agent cache" -msgstr "Cache agente metaconsola" - -#: ../../include/functions_config.php:247 -#: ../../enterprise/godmode/setup/setup.php:203 -msgid "Activate Log Collector" -msgstr "Activar el Colector de Logs" - -#: ../../include/functions_config.php:251 -#: ../../enterprise/godmode/setup/setup.php:147 -msgid "Inventory changes blacklist" -msgstr "Lista negra ante cambios de inventario" - -#: ../../include/functions_config.php:254 -#: ../../enterprise/godmode/setup/setup.php:237 -#: ../../enterprise/meta/advanced/metasetup.mail.php:84 -msgid "From dir" -msgstr "Dirección origen" - -#: ../../include/functions_config.php:256 -#: ../../enterprise/godmode/setup/setup.php:240 -#: ../../enterprise/meta/advanced/metasetup.mail.php:87 -msgid "From name" -msgstr "Nombre origen" - -#: ../../include/functions_config.php:258 -#: ../../enterprise/godmode/setup/setup.php:243 -#: ../../enterprise/meta/advanced/metasetup.mail.php:90 -msgid "Server SMTP" -msgstr "Servidor SMTP" - -#: ../../include/functions_config.php:260 -#: ../../enterprise/godmode/setup/setup.php:246 -#: ../../enterprise/meta/advanced/metasetup.mail.php:93 -msgid "Port SMTP" -msgstr "Puerto SMTP" - -#: ../../include/functions_config.php:262 -#: ../../enterprise/godmode/setup/setup.php:249 -#: ../../enterprise/meta/advanced/metasetup.mail.php:96 -msgid "Email user" -msgstr "Email del usuario" - -#: ../../include/functions_config.php:264 -#: ../../enterprise/godmode/setup/setup.php:252 -#: ../../enterprise/meta/advanced/metasetup.mail.php:99 -msgid "Email password" -msgstr "Contraseña del email" - -#: ../../include/functions_config.php:271 -#: ../../enterprise/godmode/setup/setup.php:277 -#: ../../enterprise/meta/advanced/metasetup.password.php:78 -#: ../../enterprise/meta/include/functions_meta.php:489 -msgid "Enable password policy" -msgstr "Habilitar política de contraseñas" - -#: ../../include/functions_config.php:274 -#: ../../enterprise/godmode/setup/setup.php:282 -#: ../../enterprise/meta/advanced/metasetup.password.php:84 -#: ../../enterprise/meta/include/functions_meta.php:499 -msgid "Min. size password" -msgstr "Contraseña con tamaño mínimo" - -#: ../../include/functions_config.php:276 -#: ../../enterprise/godmode/setup/setup.php:296 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -#: ../../enterprise/meta/include/functions_meta.php:529 -msgid "Password expiration" -msgstr "Expiración de contraseña" - -#: ../../include/functions_config.php:278 -#: ../../enterprise/godmode/setup/setup.php:300 -#: ../../enterprise/meta/advanced/metasetup.password.php:106 -#: ../../enterprise/meta/include/functions_meta.php:539 -msgid "Force change password on first login" -msgstr "Forzar cambio de contraseña en el primer inicio de sesión" - -#: ../../include/functions_config.php:280 -#: ../../enterprise/godmode/setup/setup.php:305 -#: ../../enterprise/meta/advanced/metasetup.password.php:112 -#: ../../enterprise/meta/include/functions_meta.php:549 -msgid "User blocked if login fails" -msgstr "Usuario bloqueado si la identificación falla" - -#: ../../include/functions_config.php:282 -#: ../../enterprise/godmode/setup/setup.php:309 -#: ../../enterprise/meta/advanced/metasetup.password.php:117 -#: ../../enterprise/meta/include/functions_meta.php:559 -msgid "Number of failed login attempts" -msgstr "Número de intentos de identificación fallidos" - -#: ../../include/functions_config.php:284 -#: ../../enterprise/godmode/setup/setup.php:286 -#: ../../enterprise/meta/advanced/metasetup.password.php:89 -#: ../../enterprise/meta/include/functions_meta.php:509 -msgid "Password must have numbers" -msgstr "La contraseña tiene que contener números" - -#: ../../include/functions_config.php:286 -#: ../../enterprise/godmode/setup/setup.php:291 -#: ../../enterprise/meta/advanced/metasetup.password.php:95 -#: ../../enterprise/meta/include/functions_meta.php:519 -msgid "Password must have symbols" -msgstr "La contraseña tiene que contener símbolos" - -#: ../../include/functions_config.php:288 -#: ../../enterprise/godmode/setup/setup.php:314 -#: ../../enterprise/meta/advanced/metasetup.password.php:122 -#: ../../enterprise/meta/include/functions_meta.php:476 -msgid "Apply password policy to admin users" -msgstr "Aplicar la política de contraseñas a los usuarios administradores" - -#: ../../include/functions_config.php:290 -#: ../../enterprise/godmode/setup/setup.php:319 -#: ../../enterprise/meta/advanced/metasetup.password.php:128 -#: ../../enterprise/meta/include/functions_meta.php:569 -msgid "Enable password history" -msgstr "Activar histórico de contraseñas" - -#: ../../include/functions_config.php:292 -#: ../../enterprise/godmode/setup/setup.php:324 -#: ../../enterprise/meta/advanced/metasetup.password.php:134 -#: ../../enterprise/meta/include/functions_meta.php:579 -msgid "Compare previous password" -msgstr "Comparar la contraseña anterior" - -#: ../../include/functions_config.php:294 -#: ../../enterprise/godmode/setup/setup.php:329 -#: ../../enterprise/meta/advanced/metasetup.setup.php:251 -#: ../../enterprise/meta/include/functions_meta.php:449 -msgid "Activate reset password" -msgstr "Activar la recuperación de contraseña" - -#: ../../include/functions_config.php:304 -#: ../../enterprise/godmode/setup/setup_auth.php:52 -#: ../../enterprise/godmode/setup/setup_auth.php:369 -#: ../../enterprise/meta/include/functions_meta.php:622 -msgid "Autocreate profile" -msgstr "Creat automáticamente el perfil" - -#: ../../include/functions_config.php:306 -#: ../../enterprise/godmode/setup/setup_auth.php:58 -#: ../../enterprise/godmode/setup/setup_auth.php:375 -#: ../../enterprise/meta/include/functions_meta.php:632 -msgid "Autocreate profile group" -msgstr "Crear automáticamente perfil de grupo" - -#: ../../include/functions_config.php:308 -#: ../../enterprise/godmode/setup/setup_auth.php:65 -#: ../../enterprise/godmode/setup/setup_auth.php:382 -#: ../../enterprise/meta/include/functions_meta.php:642 -msgid "Autocreate profile tags" -msgstr "Autocreado de tags de perfiles" - -#: ../../include/functions_config.php:310 -#: ../../enterprise/godmode/setup/setup_auth.php:491 -#: ../../enterprise/meta/include/functions_meta.php:652 -msgid "Autocreate blacklist" -msgstr "Crear automáticamente una lista negra" - -#: ../../include/functions_config.php:313 -#: ../../enterprise/godmode/setup/setup_auth.php:499 -#: ../../enterprise/meta/include/functions_meta.php:684 -msgid "Active directory server" -msgstr "Servidor de Directorio Activo" - -#: ../../include/functions_config.php:315 -#: ../../enterprise/godmode/setup/setup_auth.php:505 -#: ../../enterprise/meta/include/functions_meta.php:694 -msgid "Active directory port" -msgstr "Puerto del Directorio Activo" - -#: ../../include/functions_config.php:319 -#: ../../enterprise/godmode/setup/setup_auth.php:354 -#: ../../enterprise/meta/include/functions_meta.php:714 -msgid "Advanced Config AD" -msgstr "Configuración avanzada" - -#: ../../include/functions_config.php:321 -#: ../../enterprise/godmode/setup/setup_auth.php:518 -#: ../../enterprise/meta/include/functions_meta.php:724 -msgid "Domain" -msgstr "Dominio" - -#: ../../include/functions_config.php:323 -#: ../../enterprise/godmode/setup/setup_auth.php:416 -#: ../../enterprise/meta/include/functions_meta.php:734 -msgid "Advanced Permisions AD" -msgstr "Permisos avanzados de AD" - -#: ../../include/functions_config.php:341 -#: ../../enterprise/godmode/setup/setup_auth.php:254 -msgid "MySQL host" -msgstr "Dirección de MYSQL" - -#: ../../include/functions_config.php:343 -#: ../../include/functions_config.php:354 -#: ../../include/functions_config.php:364 -#: ../../enterprise/godmode/setup/setup_auth.php:260 -#: ../../enterprise/godmode/setup/setup_auth.php:291 -#: ../../enterprise/godmode/setup/setup_auth.php:322 -#: ../../enterprise/meta/include/functions_meta.php:829 -#: ../../enterprise/meta/include/functions_meta.php:882 -#: ../../enterprise/meta/include/functions_meta.php:935 -msgid "MySQL port" -msgstr "Puerto de MySQL" - -#: ../../include/functions_config.php:345 -#: ../../include/functions_config.php:356 -#: ../../include/functions_config.php:366 -#: ../../include/functions_config.php:717 -#: ../../enterprise/godmode/setup/setup_auth.php:266 -#: ../../enterprise/godmode/setup/setup_auth.php:297 -#: ../../enterprise/godmode/setup/setup_auth.php:328 -#: ../../enterprise/godmode/setup/setup_history.php:59 -#: ../../enterprise/meta/include/functions_meta.php:839 -#: ../../enterprise/meta/include/functions_meta.php:892 -#: ../../enterprise/meta/include/functions_meta.php:945 -msgid "Database name" -msgstr "Nombre de la base de datos" - -#: ../../include/functions_config.php:352 -#: ../../enterprise/godmode/setup/setup_auth.php:285 -#: ../../enterprise/meta/include/functions_meta.php:872 -msgid "Babel Enterprise host" -msgstr "Servidor de Babel Enterprise" - -#: ../../include/functions_config.php:362 -#: ../../enterprise/godmode/setup/setup_auth.php:316 -#: ../../enterprise/meta/include/functions_meta.php:925 -msgid "Integria host" -msgstr "Servidor de Integria" - -#: ../../include/functions_config.php:372 -msgid "Saml path" -msgstr "Ruta de SAML" - -#: ../../include/functions_config.php:376 -#: ../../enterprise/meta/include/functions_meta.php:672 -msgid "Session timeout" -msgstr "Sesión expirada" - -#: ../../include/functions_config.php:402 -msgid "Max. days before autodisable deletion" -msgstr "Días máximos antes de eliminar los deshabilitados" - -#: ../../include/functions_config.php:404 -msgid "Item limit for realtime reports)" -msgstr "Límite de ítems para los informes de tiempo real" - -#: ../../include/functions_config.php:420 -msgid "Big Operatiopn Step to purge old data" -msgstr "Gran operación para la purga de datos antiguos" - -#: ../../include/functions_config.php:463 -#: ../../enterprise/meta/advanced/metasetup.visual.php:111 -#: ../../enterprise/meta/include/functions_meta.php:1038 -msgid "Graphic resolution (1-low, 5-high)" -msgstr "Resolución de los gráficos (1 baja, 5 alta)" - -#: ../../include/functions_config.php:464 -#: ../../include/functions_config.php:1595 -#: ../../include/functions_netflow.php:1640 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Bytes" -msgstr "Bytes" - -#: ../../include/functions_config.php:478 -msgid "Show QR code header" -msgstr "Mostrar código QR en la cabecera" - -#: ../../include/functions_config.php:491 -#: ../../enterprise/meta/include/functions_meta.php:1131 -msgid "Custom logo login" -msgstr "Logo personalizado en la pantalla de bienvenida" - -#: ../../include/functions_config.php:493 -#: ../../enterprise/meta/include/functions_meta.php:1141 -msgid "Custom splash login" -msgstr "Imagen personalizada de login" - -#: ../../include/functions_config.php:495 -#: ../../enterprise/meta/include/functions_meta.php:1151 -msgid "Custom title1 login" -msgstr "Título 1 personalizado de login" - -#: ../../include/functions_config.php:497 -#: ../../enterprise/meta/include/functions_meta.php:1161 -msgid "Custom title2 login" -msgstr "Título 2 personalizado en login" - -#: ../../include/functions_config.php:502 -msgid "Custom logo metaconsole" -msgstr "Logo personalizado de la metaconsola" - -#: ../../include/functions_config.php:504 -msgid "Custom logo login metaconsole" -msgstr "Logo del login personalizado de la metaconsola" - -#: ../../include/functions_config.php:506 -msgid "Custom splash login metaconsole" -msgstr "Imagen personalizada en el login de la metaconsola" - -#: ../../include/functions_config.php:508 -msgid "Custom title1 login metaconsole" -msgstr "Título 1 personalizado de la metaconsola" - -#: ../../include/functions_config.php:510 -msgid "Custom title2 login metaconsole" -msgstr "Título 2 personalizado de la metaconsola" - -#: ../../include/functions_config.php:512 -msgid "Login background metaconsole" -msgstr "Fondo de login de la metaconsola" - -#: ../../include/functions_config.php:533 -msgid "Show units in values report" -msgstr "Mostrar unidades en los valores del informe" - -#: ../../include/functions_config.php:539 -msgid "Fixed graph" -msgstr "Gráfico fijo" - -#: ../../include/functions_config.php:545 -msgid "Paginate module" -msgstr "Paginar vista de módulos" - -#: ../../include/functions_config.php:557 -msgid "Default type of module charts." -msgstr "Tipo de gráficas de módulos por defecto." - -#: ../../include/functions_config.php:559 -msgid "Default type of interface charts." -msgstr "Tipo predefinido para las gráficas de interfaz" - -#: ../../include/functions_config.php:561 -msgid "Default show only average or min and max" -msgstr "Por defecto mostrar solo la media o el máximo y el mínimo" - -#: ../../include/functions_config.php:566 -#: ../../include/functions_config.php:1655 -#: ../../include/functions_reporting_html.php:502 -#: ../../include/functions_reporting_html.php:581 -#: ../../enterprise/include/functions_reporting.php:1659 -#: ../../enterprise/include/functions_reporting.php:1695 -#: ../../enterprise/include/functions_reporting.php:2451 -#: ../../enterprise/include/functions_reporting.php:2487 -#: ../../enterprise/include/functions_reporting.php:3228 -#: ../../enterprise/include/functions_reporting.php:3264 -#: ../../enterprise/include/functions_reporting.php:4835 -#: ../../enterprise/include/functions_reporting.php:5169 -#: ../../enterprise/include/functions_reporting_csv.php:968 -#: ../../enterprise/include/functions_reporting_csv.php:1015 -#: ../../enterprise/include/functions_reporting_pdf.php:1328 -#: ../../enterprise/include/functions_reporting_pdf.php:1409 -#: ../../enterprise/include/functions_reporting_pdf.php:1629 -#: ../../enterprise/include/functions_reporting_pdf.php:1665 -#: ../../enterprise/include/functions_reporting_pdf.php:2068 -msgid "Fail" -msgstr "Fallo" - -#: ../../include/functions_config.php:570 -msgid "Display lateral menus with left click" -msgstr "Mostrar los menús laterales con el click izquierdo" - -#: ../../include/functions_config.php:576 -msgid "Service item padding size" -msgstr "Espacio entre los nodos del mapa de servicios" - -#: ../../include/functions_config.php:579 -msgid "Default percentil" -msgstr "Percentil por defecto" - -#: ../../include/functions_config.php:599 -msgid "Add the custom post process" -msgstr "Añadir la personalización al proceso posterior" - -#: ../../include/functions_config.php:606 -msgid "Delete the custom post process" -msgstr "Borrar la personalización al proceso posterior" - -#: ../../include/functions_config.php:655 -msgid "Custom report info" -msgstr "Información del informe personalizado" - -#: ../../include/functions_config.php:705 -#: ../../enterprise/godmode/setup/setup_log_collector.php:47 -msgid "Log max lifetime" -msgstr "Tiempo máximo para logarse" - -#: ../../include/functions_config.php:709 -#: ../../enterprise/godmode/setup/setup_history.php:45 -msgid "Enable history database" -msgstr "Activar base de datos de histórico" - -#: ../../include/functions_config.php:711 -msgid "Enable history event" -msgstr "Activar histórico de eventos" - -#: ../../include/functions_config.php:713 -#: ../../enterprise/godmode/setup/setup_history.php:53 -msgid "Host" -msgstr "Servidor" - -#: ../../include/functions_config.php:719 -#: ../../enterprise/godmode/setup/setup_history.php:62 -msgid "Database user" -msgstr "Usuario de la base de datos" - -#: ../../include/functions_config.php:721 -#: ../../enterprise/godmode/setup/setup_history.php:65 -msgid "Database password" -msgstr "Contraseña de la base de datos" - -#: ../../include/functions_config.php:725 -msgid "Event Days" -msgstr "Eventos en día" - -#: ../../include/functions_config.php:729 -#: ../../enterprise/godmode/setup/setup_history.php:74 -msgid "Delay" -msgstr "Retraso" - -#: ../../include/functions_config.php:735 -msgid "eHorus user" -msgstr "Usuario de eHorus" - -#: ../../include/functions_config.php:737 -msgid "eHorus password" -msgstr "Contraseña de eHorus" - -#: ../../include/functions_config.php:739 -msgid "eHorus API hostname" -msgstr "Propietario de la API de eHorus" - -#: ../../include/functions_config.php:741 -msgid "eHorus API port" -msgstr "Puerto de la API de eHorus" - -#: ../../include/functions_config.php:743 -msgid "eHorus request timeout" -msgstr "Tiempo de respuesta de eHorus" - -#: ../../include/functions_config.php:745 -msgid "eHorus id custom field" -msgstr "Id del campo personalizado de eHorus" - -#: ../../include/functions_config.php:757 -#, php-format -msgid "Failed updated: the next values cannot update: %s" -msgstr "" -"Actualización fracasada: los siguientes valores no pueden ser actualizados:%s" - -#: ../../include/functions_config.php:1168 -#: ../../enterprise/meta/general/login_page.php:142 -#: ../../enterprise/meta/include/process_reset_pass.php:108 -#: ../../enterprise/meta/include/reset_pass.php:97 -msgid "PANDORA FMS NEXT GENERATION" -msgstr "PANDORA FMS NEXT GENERATION" - -#: ../../include/functions_config.php:1172 -#: ../../enterprise/meta/general/login_page.php:150 -#: ../../enterprise/meta/include/process_reset_pass.php:116 -#: ../../enterprise/meta/include/reset_pass.php:105 -msgid "METACONSOLE" -msgstr "METACONSOLA" - -#: ../../include/functions_config.php:1801 -msgid "" -"Click here to start the " -"registration process" -msgstr "" -"Click here para empezar el proceso " -"de registro" - -#: ../../include/functions_config.php:1802 -msgid "This instance is not registered in the Update manager" -msgstr "" -"Esta instancia no está registrada en el Administrador de actualizaciones" - -#: ../../include/functions_config.php:1809 -msgid "" -"Click here to start the " -"newsletter subscription process" -msgstr "" -"Click here para empezar el " -"proceso de registro al boletín de noticias" - -#: ../../include/functions_config.php:1810 -msgid "Not subscribed to the newsletter" -msgstr "No suscrito al boletín de noticias" - -#: ../../include/functions_config.php:1821 -msgid "Default password for \"Admin\" user has not been changed." -msgstr "" -"La contraseña por defecto para el usuario \"Admin\" no ha sido cambiada." - -#: ../../include/functions_config.php:1822 -msgid "" -"Please change the default password because is a common vulnerability " -"reported." -msgstr "" -"Por favor cambie la contraseña por defecto ya que es una vulnerabilidad " -"comunmente reportada." - -#: ../../include/functions_config.php:1828 -msgid "You can not get updates until you renew the license." -msgstr "No puede obtener actualizaciones hasta que no renueve la licencia" - -#: ../../include/functions_config.php:1829 -msgid "This license has expired." -msgstr "Esta licencia ha expirado" - -#: ../../include/functions_config.php:1834 -msgid "" -"Please check that the web server has write rights on the " -"{HOMEDIR}/attachment directory" -msgstr "" -"Compruebe que el servidor web tiene permisos de escritura en el directorio " -"{HOMEDIR}/directorio_de_adjuntos" - -#: ../../include/functions_config.php:1847 -msgid "Remote configuration directory is not readble for the console" -msgstr "El directorio de configuración remota no es legible por la consola" - -#: ../../include/functions_config.php:1853 -#: ../../include/functions_config.php:1860 -msgid "Remote configuration directory is not writtable for the console" -msgstr "" -"El directorio de configuración remoto no es modificable por la consola" - -#: ../../include/functions_config.php:1871 -msgid "" -"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 «attachment». Este no es un error " -"fatal, pero debería considerar limpiar el directorio manualmente." - -#: ../../include/functions_config.php:1871 -msgid "files" -msgstr "archivos" - -#: ../../include/functions_config.php:1872 -msgid "Too much files in your tempora/attachment directory" -msgstr "Demasiados archivos en el directorio /attachment" - -#: ../../include/functions_config.php:1889 -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" -msgstr "" -"Tu base de datos no está bien mantenida. Parece que han pasado más de 48hr " -"de un buen mantenimiento. Por favor revise la documentación de Pandora FMS " -"acerca de como ejecutar este proceso de mantenimiento (pandora_db.pl) y " -"habilítelo lo antes posible" - -#: ../../include/functions_config.php:1890 -msgid "Database maintance problem" -msgstr "Problema en el mantenimiento de la base de datos" - -#: ../../include/functions_config.php:1896 -msgid "" -"Your defined font doesnt exist or is not defined. Please check font " -"parameters in your config" -msgstr "" -"La fuente definida no existe o no ha sido definida. Por favor compruebe los " -"paremetros de la fuente en su configuración" - -#: ../../include/functions_config.php:1897 -msgid "Default font doesnt exist" -msgstr "La fuente por defecto no existe" - -#: ../../include/functions_config.php:1902 -msgid "You need to restart server after altering this configuration setting." -msgstr "" -"Es necesario reiniciar el servidor después de modificar esta configuración" - -#: ../../include/functions_config.php:1903 -msgid "" -"Event storm protection is activated. No events will be generated during this " -"mode." -msgstr "" -"La protección contra tormentas de eventos está activada. Los eventos no " -"serán generados durante este modo" - -#: ../../include/functions_config.php:1910 -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" -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" - -#: ../../include/functions_config.php:1911 -msgid "Developer mode is enabled" -msgstr "El modo «desarrollador» está activado" - -#: ../../include/functions_config.php:1920 -msgid "Error first setup Open update" -msgstr "Error en la primera configuración de Open update" - -#: ../../include/functions_config.php:1926 -msgid "" -"There is a new update available. Please go to Administration:Setup:Update Manager for more details." -msgstr "" -"Existe una nueva actualización. Por favor ve a Administración:Configuración:Update Manager para más " -"detalles." - -#: ../../include/functions_config.php:1927 -msgid "New update of Pandora Console" -msgstr "Nueva actualización de la consola de Pandora" - -#: ../../include/functions_config.php:1941 -msgid "" -"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 deshabilitar, hay que poner safe_mode = Off en el fichero de " -"configuración de PHP (php.ini). (Después de los cambios, hay que reiniciar " -"Apache)" - -#: ../../include/functions_config.php:1942 -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" - -#: ../../include/functions_config.php:1947 -#, php-format -msgid "Recommended value is %s" -msgstr "El valor recomendado es '%s'" - -#: ../../include/functions_config.php:1947 -#: ../../include/functions_config.php:1953 -msgid "Unlimited" -msgstr "Sin límite" - -#: ../../include/functions_config.php:1947 -#: ../../include/functions_config.php:1953 -#: ../../include/functions_config.php:1961 -#: ../../include/functions_config.php:1976 -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, cambielo en su fichero de configuración de PHP (php.ini) o " -"contacte con un administrador (No olvide reiniciar el proceso apache tras " -"los cambios)" - -#: ../../include/functions_config.php:1948 -#: ../../include/functions_config.php:1954 -#: ../../include/functions_config.php:1962 -#: ../../include/functions_config.php:1970 -#, php-format -msgid "Not recommended '%s' value in PHP configuration" -msgstr "Valor '%s' no recomendado en la configuración de PHP" - -#: ../../include/functions_config.php:1953 -#: ../../include/functions_config.php:1961 -#: ../../include/functions_config.php:1969 -#, php-format -msgid "Recommended value is: %s" -msgstr "El valor recomendado es: %s" - -#: ../../include/functions_config.php:1961 -#: ../../include/functions_config.php:1969 -#, php-format -msgid "%s or greater" -msgstr "%s o mayor" - -#: ../../include/functions_config.php:1969 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator" -msgstr "" -"Por favor, cámbielo en su fichero de configuración de PHP (php.ini) o " -"contacte con un administrador" - -#: ../../include/functions_config.php:1975 -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 " -"fichero de configuración de php (php.ini)" - -#: ../../include/functions_config.php:1976 -msgid "Problems with disable functions in PHP.INI" -msgstr "Problemas para desactivar funciones en PHP.INI" - -#: ../../include/functions_update_manager.php:202 -msgid "There is a unknown error." -msgstr "Hay un error desconocido." - -#: ../../include/functions_update_manager.php:316 -#: ../../include/functions_update_manager.php:319 -#: ../../include/functions_update_manager.php:438 -#: ../../include/functions_update_manager.php:442 -#: ../../enterprise/include/functions_update_manager.php:141 -#: ../../enterprise/include/functions_update_manager.php:310 -msgid "Could not connect to internet" -msgstr "No se puede conectar con internet" - -#: ../../include/functions_update_manager.php:324 -#: ../../include/functions_update_manager.php:327 -#: ../../include/functions_update_manager.php:449 -#: ../../include/functions_update_manager.php:453 -#: ../../enterprise/include/functions_update_manager.php:144 -msgid "Server not found." -msgstr "Servidor no encontrado" - -#: ../../include/functions_update_manager.php:375 -msgid "Update to the last version" -msgstr "Actualizado a la ultima version" - -#: ../../include/functions_update_manager.php:378 -#: ../../enterprise/include/functions_update_manager.php:222 -msgid "There is no update available." -msgstr "No hay actualizaciones disponibles" - -#: ../../include/functions_update_manager.php:487 -#: ../../include/functions_update_manager.php:517 -msgid "Remote server error on newsletter request" -msgstr "Error de servidor remoto en la solicitud de boletín informativo" - -#: ../../include/functions_update_manager.php:495 -msgid "E-mail successfully subscribed to newsletter." -msgstr "E-mail suscrito correctamente al boletín informativo" - -#: ../../include/functions_update_manager.php:497 -msgid "E-mail has already subscribed to newsletter." -msgstr "El E-mail ya está suscrito al boletín informativo" - -#: ../../include/functions_update_manager.php:499 -#: ../../include/functions_update_manager.php:539 -msgid "Update manager returns error code: " -msgstr "El administrador de actualizaciones devolvió un error: " - -#: ../../include/functions_update_manager.php:534 -msgid "Pandora successfully subscribed with UID: " -msgstr "Pandora se suscribió correctamente con UID: " - -#: ../../include/functions_update_manager.php:536 -msgid "Unsuccessful subscription." -msgstr "No se pudo suscribir" - -#: ../../include/functions_update_manager.php:663 -msgid "Failed extracting the package to temp directory." -msgstr "Fallo al extraer el paquete al directorio temporal" - -#: ../../include/functions_update_manager.php:702 -msgid "Failed the copying of the files." -msgstr "Fallo copiando los ficheros" - -#: ../../include/functions_update_manager.php:718 -msgid "Package extracted successfully." -msgstr "Paquete extraído correctamente" - -#: ../../include/functions_db.php:75 -#, php-format -msgid "Error connecting to database %s at %s." -msgstr "Error conectando a la base de datos %s el %s" - -#: ../../include/functions_db.php:1515 -msgid "SQL sentence" -msgstr "Consulta SQL" - -#: ../../include/functions_db.php:1517 -msgid "Rows" -msgstr "Filas" - -#: ../../include/functions_db.php:1518 -msgid "Saved" -msgstr "Guardado" - -#: ../../include/functions_db.php:1519 -msgid "Time (ms)" -msgstr "Tiempo (ms)" - -#: ../../include/functions_users.php:377 -#, php-format -msgid "User %s login at %s" -msgstr "Usuario %s entró a las %s" - -#: ../../include/functions_users.php:438 -#, php-format -msgid "User %s was deleted in the DB at %s" -msgstr "El usuario %s fué borrado en la base de datos el %s" - -#: ../../include/functions_users.php:443 -#, php-format -msgid "User %s logout at %s" -msgstr "Usuario %s salió a las %s" - -#: ../../include/functions_events.php:880 -#: ../../operation/agentes/tactical.php:188 -msgid "Latest events" -msgstr "Últimos eventos" +#: ../../include/functions_alerts.php:392 +msgid "copy" +msgstr "copiar" + +#: ../../include/functions_alerts.php:558 +msgid "Regular expression" +msgstr "Expresión regular" + +#: ../../include/functions_alerts.php:559 +msgid "Max and min" +msgstr "Máx. y mín." + +#: ../../include/functions_alerts.php:562 +msgid "Equal to" +msgstr "Igual a" + +#: ../../include/functions_alerts.php:563 +msgid "Not equal to" +msgstr "Diferente a" + +#: ../../include/functions_alerts.php:566 +msgid "Unknown status" +msgstr "Estado desconocido" + +#: ../../include/functions_alerts.php:567 +msgid "On Change" +msgstr "en estado de cambio" + +#: ../../include/functions_alerts.php:568 +#: ../../godmode/alerts/alert_view.php:195 +#: ../../godmode/alerts/alert_list.list.php:524 +msgid "Always" +msgstr "Siempre" + +#: ../../include/functions_alerts.php:1385 +msgid "No actions defined" +msgstr "No hay acciones definidas" + +#: ../../include/functions_events.php:34 +#: ../../include/functions_events.php:1581 +#: ../../godmode/events/custom_events.php:68 +#: ../../godmode/events/custom_events.php:152 +msgid "Event id" +msgstr "Identificación del evento" + +#: ../../include/functions_events.php:42 +#: ../../godmode/events/custom_events.php:92 +#: ../../godmode/events/custom_events.php:160 +msgid "Agent module" +msgstr "Módulo de agente" + +#: ../../include/functions_events.php:48 +#: ../../include/functions_events.php:2251 +#: ../../godmode/events/custom_events.php:110 +#: ../../godmode/events/custom_events.php:166 +msgid "Extra id" +msgstr "ID extra" + +#: ../../include/functions_events.php:52 +#: ../../godmode/events/custom_events.php:122 +#: ../../godmode/events/custom_events.php:170 +msgid "Server name" +msgstr "Nombre del servidor" #: ../../include/functions_events.php:895 -#: ../../include/functions_events.php:1505 -#: ../../include/functions_events.php:1719 -#: ../../include/functions_events.php:1725 -#: ../../include/functions_events.php:1729 -#: ../../include/functions_events.php:1734 -#: ../../include/functions_events.php:3151 -#: ../../include/functions_events.php:3159 -#: ../../include/functions_graph.php:3023 -#: ../../operation/snmpconsole/snmp_view.php:408 -#: ../../operation/snmpconsole/snmp_view.php:664 -#: ../../operation/snmpconsole/snmp_view.php:915 -msgid "Validated" -msgstr "Validado" - -#: ../../include/functions_events.php:895 -#: ../../enterprise/operation/agentes/policy_view.php:51 msgid "V." msgstr "V." @@ -23551,22 +14324,15 @@ msgstr "V." msgid "Events -by module-" msgstr "Eventos-por módulo-" -#: ../../include/functions_events.php:1025 -#: ../../operation/agentes/tactical.php:203 -#: ../../operation/events/event_statistics.php:37 -msgid "Event graph" -msgstr "Gráfica de eventos" - -#: ../../include/functions_events.php:1030 -#: ../../operation/agentes/tactical.php:209 -#: ../../operation/events/event_statistics.php:57 -msgid "Event graph by agent" -msgstr "Gráfica de eventos por agente" - #: ../../include/functions_events.php:1135 msgid "Going to unknown" msgstr "Cambiando a estado desconocido" +#: ../../include/functions_events.php:1138 +#: ../../include/functions_events.php:1407 ../../include/functions.php:1036 +msgid "Alert recovered" +msgstr "Alerta recuperada" + #: ../../include/functions_events.php:1141 msgid "Alert manually validated" msgstr "Alerta validada manualmente" @@ -23587,12 +14353,6 @@ msgstr "Subiendo a estado normal" msgid "Going down from normal to warning" msgstr "Cayendo de normal a advertencia" -#: ../../include/functions_events.php:1161 -#: ../../include/functions_graph.php:3148 -#: ../../include/functions_graph.php:3199 -msgid "SYSTEM" -msgstr "SISTEMA" - #: ../../include/functions_events.php:1164 msgid "Recon server detected a new host" msgstr "El servidor Recon detectó un equipo nuevo" @@ -23601,14 +14361,43 @@ msgstr "El servidor Recon detectó un equipo nuevo" msgid "New agent created" msgstr "Agente nuevo creado" +#: ../../include/functions_events.php:1170 +#: ../../include/functions_events.php:1425 ../../include/functions.php:1044 +msgid "Configuration change" +msgstr "Cambio de configuración" + +#: ../../include/functions_events.php:1173 +#: ../../include/functions_events.php:1410 ../../include/functions.php:1037 +msgid "Alert ceased" +msgstr "Alerta finalizada" + #: ../../include/functions_events.php:1180 msgid "Unknown type:" msgstr "Tipo desconocido:" +#: ../../include/functions_events.php:1395 ../../include/functions.php:1029 +msgid "Monitor Critical" +msgstr "Monitor en estado crítico" + +#: ../../include/functions_events.php:1398 ../../include/functions.php:1030 +msgid "Monitor Warning" +msgstr "Monitor en estado de aviso" + +#: ../../include/functions_events.php:1401 ../../include/functions.php:1031 +msgid "Monitor Normal" +msgstr "Monitor en estado normal" + +#: ../../include/functions_events.php:1413 ../../include/functions.php:1038 +msgid "Alert manual validation" +msgstr "Validación manual de alerta" + +#: ../../include/functions_events.php:1416 ../../include/functions.php:1041 +msgid "Recon host detected" +msgstr "Equipo de red detectado con Recon" + #: ../../include/functions_events.php:1496 #: ../../include/functions_events.php:1503 #: ../../include/functions_events.php:1523 -#: ../../enterprise/dashboard/widgets/events_list.php:47 msgid "All event" msgstr "Todos los eventos" @@ -23619,7 +14408,6 @@ msgstr "Solo nuevos" #: ../../include/functions_events.php:1498 #: ../../include/functions_events.php:1529 -#: ../../enterprise/dashboard/widgets/events_list.php:48 msgid "Only validated" msgstr "Solo validados" @@ -23635,7 +14423,6 @@ msgstr "Solo no validados" #: ../../include/functions_events.php:1504 #: ../../include/functions_events.php:1719 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:97 msgid "New" msgstr "Nuevo" @@ -23674,17 +14461,15 @@ msgstr "Cambiar estado" msgid "Add comment" msgstr "Añadir comentario" -#: ../../include/functions_events.php:1759 -#: ../../include/functions_events.php:1761 -#: ../../include/functions_events.php:4033 -#: ../../operation/events/events.build_table.php:687 -msgid "Delete event" -msgstr "Eliminar evento" - #: ../../include/functions_events.php:1771 msgid "Custom responses" msgstr "Respuesta personalizada" +#: ../../include/functions_events.php:1817 +#: ../../godmode/events/event_responses.editor.php:111 +msgid "Parameters" +msgstr "Parámetros" + #: ../../include/functions_events.php:1973 msgid "There was an error connecting to the node" msgstr "Hubo un error conectando al nodo" @@ -23693,12 +14478,6 @@ msgstr "Hubo un error conectando al nodo" msgid "Agent details" msgstr "Detalles del agente" -#: ../../include/functions_events.php:2043 -#: ../../operation/agentes/ver_agente.php:697 -#: ../../enterprise/operation/agentes/ver_agente.php:76 -msgid "Last remote contact" -msgstr "Último contacto remoto" - #: ../../include/functions_events.php:2049 msgid "View custom fields" msgstr "Ver campos personalizados" @@ -23711,6 +14490,12 @@ msgstr "Detalles del módulo" msgid "No assigned" msgstr "No asignado" +#: ../../include/functions_events.php:2140 +#: ../../godmode/alerts/alert_view.php:49 +#: ../../godmode/alerts/alert_view.php:324 +msgid "Alert details" +msgstr "Detalles de alerta" + #: ../../include/functions_events.php:2151 #: ../../include/functions_events.php:2155 msgid "Go to data overview" @@ -23721,13 +14506,6 @@ msgstr "Ir a la vista general de datos" msgid "Invalid custom data: %s" msgstr "Datos personalizados no válidos: %s" -#: ../../include/functions_events.php:2333 -#: ../../include/functions_events.php:3525 -#: ../../mobile/operation/events.php:469 -#: ../../operation/events/events.build_table.php:149 -msgid "Event ID" -msgstr "ID del evento" - #: ../../include/functions_events.php:2345 msgid "First event" msgstr "Primer evento" @@ -23736,11 +14514,6 @@ msgstr "Primer evento" msgid "Last event" msgstr "ültimo evento" -#: ../../include/functions_events.php:2421 -#: ../../mobile/operation/events.php:497 -msgid "Acknowledged by" -msgstr "Admitido por" - #: ../../include/functions_events.php:2459 msgid "ID extra" msgstr "ID extra" @@ -23750,789 +14523,6 @@ msgstr "ID extra" msgid "There are no comments" msgstr "No hay comentarios" -#: ../../include/functions_events.php:2709 -#: ../../include/functions_reporting_html.php:875 -msgid "Pandora System" -msgstr "Sistema de Pandora" - -#: ../../include/functions_events.php:3154 -#: ../../include/functions_events.php:3159 -#: ../../operation/snmpconsole/snmp_view.php:407 -#: ../../operation/snmpconsole/snmp_view.php:660 -#: ../../operation/snmpconsole/snmp_view.php:918 -msgid "Not validated" -msgstr "Sin validar" - -#: ../../include/functions_events.php:3530 -#: ../../mobile/operation/events.php:108 -#: ../../operation/events/events.build_table.php:155 -msgid "Event Name" -msgstr "Nombre del evento" - -#: ../../include/functions_events.php:3568 -#: ../../operation/events/events.build_table.php:198 -msgid "Agent Module" -msgstr "Módulo del agente" - -#: ../../include/functions_events.php:3599 -#: ../../operation/events/events.build_table.php:235 -msgid "Extra ID" -msgstr "ID Extra" - -#: ../../include/functions_events.php:4023 -#: ../../operation/events/events.build_table.php:677 -msgid "Validate event" -msgstr "Validar evento" - -#: ../../include/functions_events.php:4038 -#: ../../operation/events/events.build_table.php:692 -#: ../../operation/events/events.php:780 ../../operation/events/events.php:784 -#: ../../operation/events/events.php:954 ../../operation/events/events.php:958 -msgid "Is not allowed delete events in process" -msgstr "No puede borrar eventos en proceso" - -#: ../../include/functions_events.php:4046 -#: ../../operation/events/events.build_table.php:700 -#: ../../operation/snmpconsole/snmp_view.php:760 -msgid "Show more" -msgstr "Mostrar más" - -#: ../../include/functions_visual_map.php:1150 -msgid "Last value: " -msgstr "Ultimo valor: " - -#: ../../include/functions_visual_map.php:1725 -msgid "Agent successfully added to layout" -msgstr "Agente añadido correctamente a la distribución" - -#: ../../include/functions_visual_map.php:1872 -msgid "Modules successfully added to layout" -msgstr "Módulos añadidos correctamente a la distribución" - -#: ../../include/functions_visual_map.php:2069 -msgid "Agents successfully added to layout" -msgstr "Agentes añadidos con éxito a la plantilla" - -#: ../../include/functions_visual_map.php:2410 -msgid "Cannot load the visualmap" -msgstr "No se puede cargar el mapa visual" - -#: ../../include/functions_visual_map.php:2746 -msgid "Percentile bar" -msgstr "Barra de porcentaje" - -#: ../../include/functions_visual_map.php:2750 -msgid "Static graph" -msgstr "Imagen estática" - -#: ../../include/functions_visual_map_editor.php:57 -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 "" -"Para usar el campo \"etiqueta\", debe escribir\n" -"\t\t\t\t\tun teto para reemplazar '(_VALUE_)' y el valor del módulo se " -"pintará al final." - -#: ../../include/functions_visual_map_editor.php:95 -#: ../../include/functions_visual_map_editor.php:119 -msgid "Border color" -msgstr "Color del borde" - -#: ../../include/functions_visual_map_editor.php:131 -msgid "Border width" -msgstr "Ancho del borde" - -#: ../../include/functions_visual_map_editor.php:140 -msgid "Fill color" -msgstr "Color de relleno" - -#: ../../include/functions_visual_map_editor.php:218 -msgid "Enable link" -msgstr "Activar enlace" - -#: ../../include/functions_visual_map_editor.php:239 -msgid "White" -msgstr "Blanco" - -#: ../../include/functions_visual_map_editor.php:240 -msgid "Black" -msgstr "Netro" - -#: ../../include/functions_visual_map_editor.php:241 -msgid "Transparent" -msgstr "Transparente" - -#: ../../include/functions_visual_map_editor.php:366 -msgid "Original Size" -msgstr "Tamaño original" - -#: ../../include/functions_visual_map_editor.php:373 -msgid "Aspect ratio" -msgstr "Relación de aspecto" - -#: ../../include/functions_visual_map_editor.php:374 -msgid "Width proportional" -msgstr "Ancho proporcional" - -#: ../../include/functions_visual_map_editor.php:380 -msgid "Height proportional" -msgstr "Altura proporcional" - -#: ../../include/functions_visual_map_editor.php:513 -msgid "For use the original image file size, set 0 width and 0 height." -msgstr "" -"Para usar el tamaño original de la imagen, coloque en 0 el ancho y en 0 el " -"alto." - -#: ../../include/functions_visual_map_editor.php:549 -msgid "Lines haven't advanced options" -msgstr "Las líneas no tienen opciones avanzadas" - -#: ../../include/functions_visual_map_editor.php:576 -msgid "Click start point
    of the line" -msgstr "Haga clic en el punto de inicio
    de la línea" - -#: ../../include/functions_visual_map_editor.php:581 -msgid "Click end point
    of the line" -msgstr "Haga clic en el punto final
    de la línea" - -#: ../../include/functions_visual_map_editor.php:672 -msgid "Show grid" -msgstr "Mostrar cuadrícula" - -#: ../../include/functions_visual_map_editor.php:674 -msgid "Delete item" -msgstr "Borrar elemento" - -#: ../../include/functions_visual_map_editor.php:675 -msgid "Copy item" -msgstr "Copiar elemento" - -#: ../../include/functions_visual_map_editor.php:703 -msgid "No image or name defined." -msgstr "No se ha definido ningun nombre o imagen" - -#: ../../include/functions_visual_map_editor.php:705 -msgid "No label defined." -msgstr "No se ha definido una etiqueta." - -#: ../../include/functions_visual_map_editor.php:707 -msgid "No image defined." -msgstr "No se ha definido ninguna imagen." - -#: ../../include/functions_visual_map_editor.php:709 -msgid "No process defined." -msgstr "No hay proceso definido." - -#: ../../include/functions_visual_map_editor.php:711 -msgid "No Max value defined." -msgstr "No hay valor máximo definido." - -#: ../../include/functions_visual_map_editor.php:713 -msgid "No width defined." -msgstr "No hay margen definido." - -#: ../../include/functions_visual_map_editor.php:715 -msgid "No period defined." -msgstr "No hay periodo definido." - -#: ../../include/functions_visual_map_editor.php:717 -msgid "No agent defined." -msgstr "No hay agente definido." - -#: ../../include/functions_visual_map_editor.php:719 -msgid "No module defined." -msgstr "No hay módulo definido." - -#: ../../include/functions_visual_map_editor.php:722 -msgid "Successfully save the changes." -msgstr "Cambios guardados con éxito" - -#: ../../include/functions_visual_map_editor.php:724 -msgid "Could not be save" -msgstr "No se puede guardar" - -#: ../../include/functions_filemanager.php:172 -#: ../../include/functions_filemanager.php:242 -#: ../../include/functions_filemanager.php:300 -#: ../../include/functions_filemanager.php:382 -msgid "Security error" -msgstr "Error de seguridad" - -#: ../../include/functions_filemanager.php:185 -msgid "Upload error" -msgstr "Error de subida" - -#: ../../include/functions_filemanager.php:193 -#: ../../include/functions_filemanager.php:261 -#: ../../include/functions_filemanager.php:326 -msgid "Upload correct" -msgstr "Subida correcta" - -#: ../../include/functions_filemanager.php:206 -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, compruebe su " -"configuración php.ini o contacte con el administrador" - -#: ../../include/functions_filemanager.php:254 -msgid "Error creating file" -msgstr "Error al crear fichero" - -#: ../../include/functions_filemanager.php:267 -#: ../../include/functions_filemanager.php:362 -msgid "Error creating file with empty name" -msgstr "Error al crear archivo con nombre en blanco" - -#: ../../include/functions_filemanager.php:312 -msgid "Attach error" -msgstr "Error en el adjunto" - -#: ../../include/functions_filemanager.php:348 -#: ../../enterprise/godmode/agentes/collections.editor.php:148 -#: ../../enterprise/godmode/agentes/collections.editor.php:311 -msgid "Security error." -msgstr "Error de seguridad." - -#: ../../include/functions_filemanager.php:357 -msgid "Directory created" -msgstr "Directorio creado" - -#: ../../include/functions_filemanager.php:385 -#: ../../include/functions_reporting_html.php:1238 -#: ../../enterprise/include/functions_inventory.php:517 -#: ../../enterprise/include/functions_inventory.php:582 -#: ../../enterprise/include/functions_reporting_pdf.php:511 -msgid "Deleted" -msgstr "Eliminado(s)" - -#: ../../include/functions_filemanager.php:550 -#, php-format -msgid "Directory %s doesn't exist!" -msgstr "El directorio %s no existe" - -#: ../../include/functions_filemanager.php:565 -msgid "Index of images" -msgstr "Índice de imágenes" - -#: ../../include/functions_filemanager.php:603 -msgid "Parent directory" -msgstr "Directorio padre" - -#: ../../include/functions_filemanager.php:632 -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:636 -msgid "Decompress" -msgstr "Descomprimir" - -#: ../../include/functions_filemanager.php:638 -#: ../../enterprise/extensions/csv_import/main.php:88 -#: ../../enterprise/extensions/csv_import_group/main.php:84 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1204 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1412 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1588 -msgid "Go" -msgstr "Ir" - -#: ../../include/functions_filemanager.php:679 -msgid "Directory" -msgstr "Directorio" - -#: ../../include/functions_filemanager.php:685 -msgid "Compressed file" -msgstr "Archivo comprimido" - -#: ../../include/functions_filemanager.php:688 -#: ../../include/functions_filemanager.php:695 -msgid "Text file" -msgstr "Fichero de texto" - -#: ../../include/functions_filemanager.php:785 -msgid "Create directory" -msgstr "Crear directorio" - -#: ../../include/functions_filemanager.php:790 -msgid "Create text" -msgstr "Crear texto" - -#: ../../include/functions_filemanager.php:795 -msgid "Upload file/s" -msgstr "Subir archivo/s" - -#: ../../include/functions_filemanager.php:802 -msgid "The directory is read-only" -msgstr "Este directorio es de solo lectura" - -#: ../../include/get_file.php:46 -msgid "Security error. Please contact the administrator." -msgstr "Error de seguridad. Contacte con el administrador" - -#: ../../include/get_file.php:56 -msgid "File is missing in disk storage. Please contact the administrator." -msgstr "" -"El archivo no se encuentra en disco, por favor, contacte con el " -"administrador." - -#: ../../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_graph.php:710 -#: ../../include/functions_graph.php:3938 -#: ../../include/functions_reports.php:564 -msgid "Avg. Value" -msgstr "Valor promedio" - -#: ../../include/functions_graph.php:712 -msgid "Units. Value" -msgstr "Valor de unidades" - -#: ../../include/functions_graph.php:787 -#: ../../include/functions_graph.php:1763 -#, php-format -msgid "Percentile %dº" -msgstr "Porcentaje %dº" - -#: ../../include/functions_graph.php:821 -#: ../../include/functions_graph.php:4024 -#: ../../enterprise/dashboard/full_dashboard.php:234 -#: ../../enterprise/dashboard/public_dashboard.php:256 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:160 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:180 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:208 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:170 -msgid "Previous" -msgstr "Anterior" - -#: ../../include/functions_graph.php:1259 -#, php-format -msgid "%s" -msgstr "%s" - -#: ../../include/functions_graph.php:1763 -msgid " of module " -msgstr " de módulo " - -#: ../../include/functions_graph.php:2111 -msgid "Not fired alerts" -msgstr "No se han lanzado alertas" - -#: ../../include/functions_graph.php:2280 -#: ../../include/functions_graph.php:2326 -#: ../../include/graphs/functions_gd.php:165 -#: ../../include/graphs/functions_gd.php:256 -#: ../../enterprise/include/functions_reporting.php:1790 -#: ../../enterprise/include/functions_reporting_pdf.php:1768 -#: ../../enterprise/include/functions_reporting_pdf.php:1769 -msgid "Out of limits" -msgstr "Fuera de límites" - -#: ../../include/functions_graph.php:2559 -msgid "Today" -msgstr "Hoy" - -#: ../../include/functions_graph.php:2560 -msgid "Week" -msgstr "Semana" - -#: ../../include/functions_graph.php:2561 ../../include/functions_html.php:869 -#: ../../enterprise/include/functions_reporting_csv.php:1160 -#: ../../enterprise/include/functions_reporting_csv.php:1372 -msgid "Month" -msgstr "Mes" - -#: ../../include/functions_graph.php:2562 -#: ../../include/functions_graph.php:2563 -msgid "Months" -msgstr "Meses" - -#: ../../include/functions_graph.php:2585 -msgid "History db" -msgstr "Base de datos histórico" - -#: ../../include/functions_graph.php:2772 -#: ../../include/functions_incidents.php:29 -#: ../../include/functions_incidents.php:54 -msgid "Informative" -msgstr "Informativo" - -#: ../../include/functions_graph.php:2773 -#: ../../include/functions_incidents.php:30 -#: ../../include/functions_incidents.php:57 -msgid "Low" -msgstr "Bajo" - -#: ../../include/functions_graph.php:2774 -#: ../../include/functions_incidents.php:31 -#: ../../include/functions_incidents.php:60 -msgid "Medium" -msgstr "Medio" - -#: ../../include/functions_graph.php:2775 -#: ../../include/functions_incidents.php:32 -#: ../../include/functions_incidents.php:63 -msgid "Serious" -msgstr "Grave" - -#: ../../include/functions_graph.php:2776 -#: ../../include/functions_incidents.php:33 -#: ../../include/functions_incidents.php:66 -msgid "Very serious" -msgstr "Muy grave" - -#: ../../include/functions_graph.php:2799 -#: ../../include/functions_graph.php:2811 -msgid "Open incident" -msgstr "Abrir incidente" - -#: ../../include/functions_graph.php:2800 -#: ../../include/functions_graph.php:2813 -msgid "Closed incident" -msgstr "Incidente cerrado" - -#: ../../include/functions_graph.php:2801 -#: ../../include/functions_graph.php:2815 -msgid "Outdated" -msgstr "Obsoleto" - -#: ../../include/functions_graph.php:2802 -#: ../../include/functions_graph.php:2817 -#: ../../enterprise/godmode/setup/setup_acl.php:368 -#: ../../enterprise/godmode/setup/setup_acl.php:381 -msgid "Invalid" -msgstr "No válido" - -#: ../../include/functions_graph.php:3939 -msgid "Units" -msgstr "Unidades" - -#: ../../include/functions_graph.php:4333 -#: ../../enterprise/dashboard/widgets/top_n.php:77 -msgid "Avg." -msgstr "Media" - -#: ../../include/functions_graph.php:5596 -msgid "Main node" -msgstr "Nodo principal" - -#: ../../include/functions_groups.php:63 -msgid "Alert Actions" -msgstr "Acciones de alerta" - -#: ../../include/functions_groups.php:78 -msgid "Alert Templates" -msgstr "Plantillas de alerta" - -#: ../../include/functions_groups.php:106 -#: ../../include/functions_groups.php:163 -#: ../../include/functions_reports.php:498 -#: ../../include/functions_reports.php:500 -#: ../../include/functions_reports.php:504 -#: ../../include/functions_reports.php:506 -#: ../../include/functions_reports.php:510 -#: ../../include/functions_reports.php:512 -#: ../../include/functions_reports.php:514 -#: ../../include/functions_reports.php:518 -#: ../../include/functions_reports.php:522 -#: ../../include/functions_reports.php:525 -#: ../../operation/agentes/ver_agente.php:1058 -#: ../../operation/search_results.php:104 -msgid "Graphs" -msgstr "Gráficas" - -#: ../../include/functions_groups.php:120 -#: ../../operation/search_results.php:114 -#: ../../enterprise/extensions/cron/functions.php:552 -#: ../../enterprise/meta/general/main_header.php:136 -#: ../../enterprise/meta/general/main_header.php:151 -#: ../../enterprise/mobile/include/functions_web.php:15 -msgid "Reports" -msgstr "Informes" - -#: ../../include/functions_groups.php:135 -msgid "Layout visual console" -msgstr "Diseño de la consola visual" - -#: ../../include/functions_groups.php:149 -msgid "Plannet down time" -msgstr "Tiempo de inactividad estipulado" - -#: ../../include/functions_groups.php:176 -msgid "GIS maps" -msgstr "Mapas GIS" - -#: ../../include/functions_groups.php:190 -msgid "GIS connections" -msgstr "Conexiones GIS" - -#: ../../include/functions_groups.php:204 -msgid "GIS map layers" -msgstr "Mapas GIS adicionales" - -#: ../../include/functions_groups.php:217 -msgid "Network maps" -msgstr "Mapas de red" - -#: ../../include/functions_groups.php:794 -#: ../../include/functions_groups.php:796 -#: ../../include/functions_groups.php:798 -#: ../../include/functions_groups.php:799 -#: ../../include/functions_groups.php:800 -#: ../../include/functions_reporting_html.php:3426 -#: ../../mobile/operation/groups.php:137 -msgid "Agents unknown" -msgstr "agentes desconocidos" - -#: ../../include/functions_groups.php:848 -#: ../../include/functions_groups.php:850 -#: ../../include/functions_groups.php:852 -#: ../../include/functions_groups.php:853 -#: ../../include/functions_groups.php:854 -#: ../../include/functions_reporting_html.php:2930 -#: ../../include/functions_reporting_html.php:2939 -#: ../../mobile/operation/groups.php:161 -#: ../../operation/agentes/ver_agente.php:773 -#: ../../enterprise/operation/agentes/ver_agente.php:152 -msgid "Alerts fired" -msgstr "Alertas disparadas" - -#: ../../include/functions_groups.php:2149 -msgid "Show branch children" -msgstr "Mostrar los grupos dependientes" - -#: ../../include/functions_groups.php:2178 -msgid "" -"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. Una instalación normal debe " -"tener al menos un grupo." - -#: ../../include/functions_html.php:737 -msgid "weeks" -msgstr "semana" - -#: ../../include/functions_html.php:868 -msgid "Month day" -msgstr "Día del mes" - -#: ../../include/functions_html.php:870 -msgid "Week day" -msgstr "Día de la semana" - -#: ../../include/functions_html.php:2176 -msgid "Type at least two characters to search the module." -msgstr "Escriba al menos dos caracteres para buscar el módulo" - -#: ../../include/functions_incidents.php:88 -#: ../../include/functions_incidents.php:107 -msgid "Active incidents" -msgstr "Incidentes activos" - -#: ../../include/functions_incidents.php:89 -#: ../../include/functions_incidents.php:110 -msgid "Active incidents, with comments" -msgstr "Incidentes activos, con comentarios" - -#: ../../include/functions_incidents.php:90 -#: ../../include/functions_incidents.php:113 -msgid "Rejected incidents" -msgstr "Incidentes rechazados" - -#: ../../include/functions_incidents.php:91 -#: ../../include/functions_incidents.php:116 -msgid "Expired incidents" -msgstr "Incidentes caducados" - -#: ../../include/functions_incidents.php:92 -#: ../../include/functions_incidents.php:119 -msgid "Closed incidents" -msgstr "Incidentes cerrados" - -#: ../../include/functions_maps.php:34 -#: ../../include/functions_networkmap.php:1641 -#: ../../include/functions_networkmap.php:1720 -#: ../../enterprise/meta/general/logon_ok.php:62 -msgid "Topology" -msgstr "Topología" - -#: ../../include/functions_maps.php:37 -#: ../../include/functions_networkmap.php:1635 ../../operation/tree.php:80 -#: ../../enterprise/dashboard/widgets/tree_view.php:39 -#: ../../enterprise/include/functions_groups.php:32 -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/operation/agentes/ver_agente.php:208 -msgid "Policies" -msgstr "Políticas" - -#: ../../include/functions_menu.php:481 -msgid "Configure user" -msgstr "Configurar usuario" - -#: ../../include/functions_menu.php:482 -msgid "Configure profile" -msgstr "Configurar perfil" - -#: ../../include/functions_menu.php:486 -msgid "Module templates management" -msgstr "Gestión de plantillas de módulos" - -#: ../../include/functions_menu.php:487 -msgid "Inventory modules management" -msgstr "Gestión de módulos de inventario" - -#: ../../include/functions_menu.php:488 -#: ../../enterprise/meta/advanced/component_management.php:56 -msgid "Tags management" -msgstr "Gestión de etiquetas" - -#: ../../include/functions_menu.php:492 -msgid "View agent" -msgstr "Ver agente" - -#: ../../include/functions_menu.php:496 -msgid "Manage network map" -msgstr "Gestión de mapas de red" - -#: ../../include/functions_menu.php:498 -msgid "Builder visual console" -msgstr "Configurador de la consola visual" - -#: ../../include/functions_menu.php:500 -msgid "Administration events" -msgstr "Administrador de eventos" - -#: ../../include/functions_menu.php:502 -msgid "View reporting" -msgstr "Ver informes" - -#: ../../include/functions_menu.php:503 -msgid "Manage custom graphs" -msgstr "Gestionar graficas personalizadas" - -#: ../../include/functions_menu.php:504 -msgid "Copy dashboard" -msgstr "Copiar dashboard" - -#: ../../include/functions_menu.php:507 -msgid "Manage GIS Maps" -msgstr "Gestionar mapas GIS" - -#: ../../include/functions_menu.php:509 -msgid "Incidents statistics" -msgstr "Estadísticas incidentes" - -#: ../../include/functions_menu.php:510 -msgid "Manage messages" -msgstr "Gestionar mensajes" - -#: ../../include/functions_menu.php:512 -msgid "Manage groups" -msgstr "Gestionar grupos" - -#: ../../include/functions_menu.php:513 -msgid "Manage module groups" -msgstr "Gestionar grupos de módulos" - -#: ../../include/functions_menu.php:514 -msgid "Manage custom field" -msgstr "Gestionar campos personalizados" - -#: ../../include/functions_menu.php:516 -msgid "Manage alert actions" -msgstr "Gestionar acciones de alertas" - -#: ../../include/functions_menu.php:517 -msgid "Manage commands" -msgstr "Gestionar comandos" - -#: ../../include/functions_menu.php:518 -msgid "Manage event alerts" -msgstr "Gestionar eventos de alertas" - -#: ../../include/functions_menu.php:520 -msgid "Manage export targets" -msgstr "Gestionar objetivos de exportación" - -#: ../../include/functions_menu.php:522 -msgid "Manage services" -msgstr "Gestión de servicios" - -#: ../../include/functions_menu.php:524 ../../operation/menu.php:92 -msgid "SNMP filters" -msgstr "Filtros SNMP" - -#: ../../include/functions_menu.php:525 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:22 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 -#: ../../enterprise/operation/menu.php:119 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:79 -msgid "SNMP trap editor" -msgstr "Editor de Traps SNMP" - -#: ../../include/functions_menu.php:526 ../../operation/menu.php:93 -msgid "SNMP trap generator" -msgstr "Generador de traps SNMP" - -#: ../../include/functions_menu.php:528 ../../operation/menu.php:84 -msgid "SNMP console" -msgstr "Consola SNMP" - -#: ../../include/functions_menu.php:530 -msgid "Manage incident" -msgstr "Gestionar incidentes" - -#: ../../include/functions_menu.php:582 -msgid "Administration" -msgstr "Administración" - -#: ../../include/functions_modules.php:1871 -#: ../../mobile/operation/modules.php:451 -#: ../../mobile/operation/modules.php:504 -#: ../../operation/agentes/status_monitor.php:1143 -#: ../../operation/search_modules.php:104 -msgid "NOT INIT" -msgstr "No inicializado" - -#: ../../include/functions_modules.php:1890 -#: ../../include/functions_modules.php:1894 -#: ../../include/functions_modules.php:1898 -#: ../../mobile/operation/modules.php:471 -#: ../../mobile/operation/modules.php:476 -#: ../../mobile/operation/modules.php:481 -#: ../../mobile/operation/modules.php:524 -#: ../../mobile/operation/modules.php:529 -#: ../../mobile/operation/modules.php:534 -#: ../../operation/agentes/pandora_networkmap.view.php:301 -#: ../../operation/agentes/pandora_networkmap.view.php:306 -#: ../../operation/agentes/pandora_networkmap.view.php:311 -#: ../../operation/agentes/status_monitor.php:1182 -#: ../../operation/agentes/status_monitor.php:1187 -#: ../../operation/agentes/status_monitor.php:1194 -#: ../../operation/agentes/status_monitor.php:1199 -#: ../../operation/agentes/status_monitor.php:1206 -#: ../../operation/agentes/status_monitor.php:1211 -#: ../../operation/search_modules.php:124 -#: ../../operation/search_modules.php:131 -#: ../../operation/search_modules.php:138 -#: ../../enterprise/include/functions_services.php:1614 -#: ../../enterprise/include/functions_services.php:1619 -#: ../../enterprise/include/functions_services.php:1623 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/policy_view.php:386 -#: ../../enterprise/operation/agentes/transactional_map.php:152 -msgid "Last status" -msgstr "Último estado" - #: ../../include/functions_netflow.php:362 msgid "Total flows" msgstr "Fluctuaciones totales" @@ -24569,11 +14559,6 @@ msgstr "Gráfica de tarta y tabla resumen" msgid "Statistics table" msgstr "Tabla de estadísticas" -#: ../../include/functions_netflow.php:1034 -#: ../../operation/agentes/exportdata.php:330 -msgid "Data table" -msgstr "Tabla de datos" - #: ../../include/functions_netflow.php:1035 msgid "Circular mesh" msgstr "Malla circular" @@ -24598,29 +14583,33 @@ msgstr "15 minutos" msgid "30 mins" msgstr "30 minutos" -#: ../../include/functions_netflow.php:1053 -#: ../../include/functions_netflow.php:1086 -#: ../../operation/gis_maps/render_view.php:143 -#: ../../enterprise/dashboard/widgets/top_n.php:62 -#: ../../enterprise/godmode/agentes/inventory_manager.php:177 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:191 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:182 -msgid "2 hours" -msgstr "2 horas" - #: ../../include/functions_netflow.php:1054 #: ../../include/functions_netflow.php:1087 -#: ../../enterprise/dashboard/widgets/top_n.php:63 msgid "5 hours" msgstr "5 horas" +#: ../../include/functions_netflow.php:1057 +#: ../../include/functions_netflow.php:1090 +#: ../../godmode/setup/performance.php:108 +msgid "2 days" +msgstr "2 días" + #: ../../include/functions_netflow.php:1058 #: ../../include/functions_netflow.php:1091 msgid "5 days" msgstr "5 días" +#: ../../include/functions_netflow.php:1060 +#: ../../godmode/setup/performance.php:110 +msgid "Last week" +msgstr "Última semana" + +#: ../../include/functions_netflow.php:1061 +#: ../../godmode/setup/performance.php:112 +msgid "Last month" +msgstr "Último mes" + #: ../../include/functions_netflow.php:1062 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:192 msgid "2 months" msgstr "2 meses" @@ -24697,32 +14686,2028 @@ msgstr "IP Orig" msgid "Src port" msgstr "Puerto Orig" -#: ../../include/functions_planned_downtimes.php:560 -msgid "Succesful stopped the Downtime" -msgstr "La parada planificada se ha detenido correctamente" +#: ../../include/functions_html.php:646 ../../include/functions_html.php:647 +#: ../../include/functions_html.php:770 ../../include/functions_html.php:771 +#: ../../godmode/massive/massive_edit_modules.php:486 +#: ../../godmode/agentes/module_manager_editor_network.php:87 +msgid "Custom" +msgstr "Personalizado" -#: ../../include/functions_planned_downtimes.php:561 -msgid "Unsuccesful stopped the Downtime" -msgstr "La parada planificada no ha podido ser detenida" +#: ../../include/functions_html.php:728 ../../include/functions.php:434 +#: ../../include/functions.php:568 ../../godmode/setup/setup_visuals.php:712 +msgid "minutes" +msgstr "minutos" -#: ../../include/functions_planned_downtimes.php:660 +#: ../../include/functions_html.php:729 ../../include/functions.php:435 +#: ../../include/functions.php:569 ../../godmode/setup/setup_visuals.php:713 +msgid "hours" +msgstr "horas" + +#: ../../include/functions_html.php:730 ../../include/functions.php:431 +#: ../../include/functions.php:565 ../../godmode/setup/setup_visuals.php:714 +#: ../../godmode/db/db_main.php:82 ../../godmode/db/db_main.php:88 +msgid "days" +msgstr "días" + +#: ../../include/functions_html.php:731 +msgid "weeks" +msgstr "semana" + +#: ../../include/functions_html.php:732 ../../include/functions.php:432 +#: ../../include/functions.php:566 ../../godmode/setup/setup_visuals.php:715 +msgid "months" +msgstr "meses" + +#: ../../include/functions_html.php:733 ../../include/functions.php:433 +#: ../../include/functions.php:567 ../../godmode/setup/setup_visuals.php:716 +msgid "years" +msgstr "años" + +#: ../../include/functions_html.php:847 +#: ../../godmode/alerts/configure_alert_special_days.php:87 +#: ../../godmode/alerts/alert_special_days.php:243 +#: ../../godmode/alerts/alert_special_days.php:443 +#: ../../godmode/alerts/alert_templates.php:71 +#: ../../godmode/reporting/reporting_builder.item_editor.php:839 +msgid "Sunday" +msgstr "Domingo" + +#: ../../include/functions_html.php:848 +#: ../../godmode/alerts/configure_alert_special_days.php:81 +#: ../../godmode/alerts/alert_special_days.php:237 +#: ../../godmode/alerts/alert_special_days.php:425 +#: ../../godmode/alerts/alert_templates.php:65 +#: ../../godmode/reporting/reporting_builder.item_editor.php:803 +msgid "Monday" +msgstr "Lunes" + +#: ../../include/functions_html.php:849 +#: ../../godmode/alerts/configure_alert_special_days.php:82 +#: ../../godmode/alerts/alert_special_days.php:238 +#: ../../godmode/alerts/alert_special_days.php:428 +#: ../../godmode/alerts/alert_templates.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:809 +msgid "Tuesday" +msgstr "Martes" + +#: ../../include/functions_html.php:850 +#: ../../godmode/alerts/configure_alert_special_days.php:83 +#: ../../godmode/alerts/alert_special_days.php:239 +#: ../../godmode/alerts/alert_special_days.php:431 +#: ../../godmode/alerts/alert_templates.php:67 +#: ../../godmode/reporting/reporting_builder.item_editor.php:815 +msgid "Wednesday" +msgstr "Miércoles" + +#: ../../include/functions_html.php:851 +#: ../../godmode/alerts/configure_alert_special_days.php:84 +#: ../../godmode/alerts/alert_special_days.php:240 +#: ../../godmode/alerts/alert_special_days.php:434 +#: ../../godmode/alerts/alert_templates.php:68 +#: ../../godmode/reporting/reporting_builder.item_editor.php:821 +msgid "Thursday" +msgstr "Jueves" + +#: ../../include/functions_html.php:852 +#: ../../godmode/alerts/configure_alert_special_days.php:85 +#: ../../godmode/alerts/alert_special_days.php:241 +#: ../../godmode/alerts/alert_special_days.php:437 +#: ../../godmode/alerts/alert_templates.php:69 +#: ../../godmode/reporting/reporting_builder.item_editor.php:827 +msgid "Friday" +msgstr "Viernes" + +#: ../../include/functions_html.php:853 +#: ../../godmode/alerts/configure_alert_special_days.php:86 +#: ../../godmode/alerts/alert_special_days.php:242 +#: ../../godmode/alerts/alert_special_days.php:440 +#: ../../godmode/alerts/alert_templates.php:70 +#: ../../godmode/reporting/reporting_builder.item_editor.php:833 +msgid "Saturday" +msgstr "Sábado" + +#: ../../include/functions_html.php:862 +msgid "Month day" +msgstr "Día del mes" + +#: ../../include/functions_html.php:864 +msgid "Week day" +msgstr "Día de la semana" + +#: ../../include/functions_html.php:2167 +msgid "Type at least two characters to search the module." +msgstr "Escriba al menos dos caracteres para buscar el módulo" + +#: ../../include/functions_reporting.php:563 +#: ../../include/functions_reporting.php:5086 +msgid "There are no SLAs defined" +msgstr "No hay SLA definidos" + +#: ../../include/functions_reporting.php:630 +#: ../../include/functions_reporting.php:5137 +msgid "Inverse" +msgstr "Inverso" + +#: ../../include/functions_reporting.php:940 +msgid "Top N" +msgstr "Top N" + +#: ../../include/functions_reporting.php:1050 +msgid "Insuficient data" +msgstr "Datos insuficientes" + +#: ../../include/functions_reporting.php:1283 +msgid "Event Report Group" +msgstr "Evento Grupo del Informe" + +#: ../../include/functions_reporting.php:1460 +msgid "Event Report Module" +msgstr "Evento módulo del Informe" + +#: ../../include/functions_reporting.php:1522 +msgid "Inventory Changes" +msgstr "Cambios de Inventario" + +#: ../../include/functions_reporting.php:1564 +msgid "No changes found." +msgstr "No se han encontrado cambios." + +#: ../../include/functions_reporting.php:1626 +#: ../../godmode/reporting/reporting_builder.php:727 +msgid "No data found." +msgstr "No se encontraron datos." + +#: ../../include/functions_reporting.php:1651 +msgid "Agent/Modules" +msgstr "Agentes / módulos" + +#: ../../include/functions_reporting.php:1740 +msgid "Exception - Everything" +msgstr "Excepción - todo" + +#: ../../include/functions_reporting.php:1741 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1326 +msgid "Everything" +msgstr "Todo" + +#: ../../include/functions_reporting.php:1745 #, php-format -msgid "Enabled %s elements from the downtime" -msgstr "Habilitar %s elementos desde la parada" +msgid "Exception - Modules over or equal to %s" +msgstr "Excepción - Módulos por encima o igual a %s" -#: ../../include/functions_planned_downtimes.php:785 -msgid "This planned downtime are executed now. Can't delete in this moment." +#: ../../include/functions_reporting.php:1747 +#, php-format +msgid "Modules over or equal to %s" +msgstr "Módulos de más de o igual a %s" + +#: ../../include/functions_reporting.php:1751 +#, php-format +msgid "Exception - Modules under or equal to %s" +msgstr "Excepción - Módulos por debajo o igual a %s" + +#: ../../include/functions_reporting.php:1753 +#, php-format +msgid "Modules under or equal to %s" +msgstr "Módulos bajo o igual a %s" + +#: ../../include/functions_reporting.php:1757 +#, php-format +msgid "Exception - Modules under %s" +msgstr "Excepción - Módulos por debajo de %s" + +#: ../../include/functions_reporting.php:1759 +#, php-format +msgid "Modules under %s" +msgstr "Módulos bajo %s" + +#: ../../include/functions_reporting.php:1763 +#, php-format +msgid "Exception - Modules over %s" +msgstr "Excepción - Módulos por encima %s" + +#: ../../include/functions_reporting.php:1765 +#, php-format +msgid "Modules over %s" +msgstr "Módulos de más de %s" + +#: ../../include/functions_reporting.php:1769 +#, php-format +msgid "Exception - Equal to %s" +msgstr "Excepción - Igual a %s" + +#: ../../include/functions_reporting.php:1771 +#, php-format +msgid "Equal to %s" +msgstr "Igual a %s" + +#: ../../include/functions_reporting.php:1775 +#, php-format +msgid "Exception - Not equal to %s" +msgstr "Excepción - no igual a %s" + +#: ../../include/functions_reporting.php:1777 +#, php-format +msgid "Not equal to %s" +msgstr "No igual a %s" + +#: ../../include/functions_reporting.php:1781 +msgid "Exception - Modules at normal status" +msgstr "Excepción - Módulos en estado normal" + +#: ../../include/functions_reporting.php:1782 +msgid "Modules at normal status" +msgstr "Módulos en estado normal" + +#: ../../include/functions_reporting.php:1786 +msgid "Exception - Modules at critical or warning status" +msgstr "Excepción - Módulos en estado crítico o de advertencia" + +#: ../../include/functions_reporting.php:1787 +msgid "Modules at critical or warning status" +msgstr "Módulos en estado crítico o de advertencia" + +#: ../../include/functions_reporting.php:1976 +msgid "There are no Modules under those conditions." +msgstr "No hay módulos bajo esas condiciones" + +#: ../../include/functions_reporting.php:1979 +#, php-format +msgid "There are no Modules over or equal to %s." +msgstr "No hay módulos mayores o iguales a %s" + +#: ../../include/functions_reporting.php:1982 +#, php-format +msgid "There are no Modules less or equal to %s." +msgstr "No hay módulos menores o igual a %s" + +#: ../../include/functions_reporting.php:1985 +#, php-format +msgid "There are no Modules less %s." +msgstr "No hay módulos menores %s" + +#: ../../include/functions_reporting.php:1988 +#, php-format +msgid "There are no Modules over %s." +msgstr "No hay módulos mayores %s" + +#: ../../include/functions_reporting.php:1991 +#, php-format +msgid "There are no Modules equal to %s" +msgstr "No hay módules iguales a %s" + +#: ../../include/functions_reporting.php:1994 +#, php-format +msgid "There are no Modules not equal to %s" +msgstr "No hay módulos no iguales a %s" + +#: ../../include/functions_reporting.php:1997 +msgid "There are no Modules normal status" +msgstr "No hay módulos en estado normal" + +#: ../../include/functions_reporting.php:2000 +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:2148 +msgid "Group Report" +msgstr "Informe del grupo" + +#: ../../include/functions_reporting.php:2202 +msgid "Event Report Agent" +msgstr "Informe de Eventos de Agentes" + +#: ../../include/functions_reporting.php:2341 +#: ../../godmode/massive/massive_edit_modules.php:557 +#: ../../godmode/modules/manage_network_components_form_common.php:161 +#: ../../godmode/agentes/module_manager_editor_common.php:334 +msgid "Historical data" +msgstr "Histórico de datos" + +#: ../../include/functions_reporting.php:2398 +msgid "Database Serialized" +msgstr "Base de datos serializada" + +#: ../../include/functions_reporting.php:2587 +msgid "Network interfaces report" +msgstr "Informe de las interfaces de red" + +#: ../../include/functions_reporting.php:2606 +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:2655 +#: ../../include/functions_reporting.php:2678 +msgid "bytes/s" +msgstr "bytes/s" + +#: ../../include/functions_reporting.php:2730 +msgid "Alert Report Group" +msgstr "Grupo de informe de alerta" + +#: ../../include/functions_reporting.php:2876 +msgid "Alert Report Agent" +msgstr "Agente informe de alerta" + +#: ../../include/functions_reporting.php:2993 +msgid "Alert Report Module" +msgstr "Módulo informe de alerta" + +#: ../../include/functions_reporting.php:3126 +msgid "SQL Graph Vertical Bars" +msgstr "Barras de gráficas verticales SQL" + +#: ../../include/functions_reporting.php:3129 +msgid "SQL Graph Horizontal Bars" +msgstr "Barras de gráficas horizontales SQL" + +#: ../../include/functions_reporting.php:3132 +msgid "SQL Graph Pie" +msgstr "Gráfica SQL circular" + +#: ../../include/functions_reporting.php:3179 +msgid "Monitor Report" +msgstr "Informe de monitores" + +#: ../../include/functions_reporting.php:3250 +msgid "Netflow Area" +msgstr "Área de netflow" + +#: ../../include/functions_reporting.php:3253 +msgid "Netflow Pie" +msgstr "Tarta Netflow" + +#: ../../include/functions_reporting.php:3256 +msgid "Netflow Data" +msgstr "Datos de netflow" + +#: ../../include/functions_reporting.php:3259 +msgid "Netflow Statistics" +msgstr "Estadísticas de netflow" + +#: ../../include/functions_reporting.php:3262 +msgid "Netflow Summary" +msgstr "Resumen de netflow" + +#: ../../include/functions_reporting.php:3386 +msgid "Prediction Date" +msgstr "Fecha de predicción." + +#: ../../include/functions_reporting.php:3436 +msgid "Projection Graph" +msgstr "Gráfico de proyección" + +#: ../../include/functions_reporting.php:3676 +msgid "AVG. Value" +msgstr "Valor AVG." + +#: ../../include/functions_reporting.php:3811 +#: ../../godmode/tag/edit_tag.php:185 +msgid "Url" +msgstr "Url" + +#: ../../include/functions_reporting.php:3866 +msgid "SQL" +msgstr "SQL" + +#: ../../include/functions_reporting.php:3937 +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." msgstr "" -"Esta parada planificada se está ejecutando. No se puede borrar en este " -"momento." +"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." -#: ../../include/functions_planned_downtimes.php:790 -msgid "Deleted this planned downtime successfully." -msgstr "Parada planificada borrada con éxito" +#: ../../include/functions_reporting.php:4928 +msgid "No Address" +msgstr "Sin dirección" -#: ../../include/functions_planned_downtimes.php:792 -msgid "Problems for deleted this planned downtime." -msgstr "Problemas al borrar la parada planificada" +#: ../../include/functions_reporting.php:5672 +#: ../../godmode/db/db_refine.php:107 ../../godmode/db/db_refine.php:109 +msgid "Minimum" +msgstr "Mínimo" + +#: ../../include/functions_reporting.php:5675 +#: ../../godmode/db/db_refine.php:112 ../../godmode/db/db_refine.php:114 +msgid "Maximum" +msgstr "Máximo" + +#: ../../include/functions_reporting.php:5679 +msgid "Rate" +msgstr "Tasa" + +#: ../../include/functions_reporting.php:6324 +msgid "Maximum of events shown" +msgstr "Máximo número de eventos mostrados" + +#: ../../include/functions_reporting.php:6964 +#: ../../include/functions_reporting.php:7001 +msgid "Server health" +msgstr "Salud del servidor" + +#: ../../include/functions_reporting.php:6964 +#, php-format +msgid "%d Downed servers" +msgstr "%d Servidores caidos" + +#: ../../include/functions_reporting.php:6972 +#: ../../include/functions_reporting.php:7004 +msgid "Monitor health" +msgstr "Estado de los monitores" + +#: ../../include/functions_reporting.php:6972 +#, php-format +msgid "%d Not Normal monitors" +msgstr "%d Monitores fuera de la normalidad" + +#: ../../include/functions_reporting.php:6974 +#: ../../include/functions_reporting.php:7005 +msgid "of monitors up" +msgstr "de monitores funcionando" + +#: ../../include/functions_reporting.php:6980 +#: ../../include/functions_reporting.php:7007 +msgid "Module sanity" +msgstr "Estado de los módulos" + +#: ../../include/functions_reporting.php:6980 +#, php-format +msgid "%d Not inited monitors" +msgstr "%d Monitores sin iniciar" + +#: ../../include/functions_reporting.php:6982 +#: ../../include/functions_reporting.php:7008 +msgid "of total modules inited" +msgstr "del total de módulos inic." + +#: ../../include/functions_reporting.php:6988 +#: ../../include/functions_reporting.php:8008 +#: ../../include/functions_reporting.php:8017 +#, php-format +msgid "%d Fired alerts" +msgstr "%d Alertas lanzadas" + +#: ../../include/functions_reporting.php:6990 +#: ../../include/functions_reporting.php:7011 +msgid "of defined alerts not fired" +msgstr "de alertas definidas no disparadas" + +#: ../../include/functions_reporting.php:7048 +msgid "Defined alerts" +msgstr "Alertas definidas" + +#: ../../include/functions_reporting.php:7070 +msgid "Defined and fired alerts" +msgstr "Alertas definidas y lanzadas" + +#: ../../include/functions_reporting.php:7136 +msgid "Monitor normal" +msgstr "Monitor normal" + +#: ../../include/functions_reporting.php:7147 +msgid "Monitor not init" +msgstr "Monitor no iniciado" + +#: ../../include/functions_reporting.php:7171 +#: ../../include/functions_reporting.php:7182 +msgid "Monitors by status" +msgstr "Monitores por estatus" + +#: ../../include/functions_reporting.php:7270 +msgid "Defined users" +msgstr "Usuarios definidos" + +#: ../../include/functions_reporting.php:7908 +msgid "Agent without data" +msgstr "Agente sin datos" + +#: ../../include/functions_reporting.php:7995 +#: ../../include/functions_reporting.php:8003 +#, php-format +msgid "%d Total modules" +msgstr "%d Módulos totales" + +#: ../../include/functions_reporting.php:7996 +#, php-format +msgid "%d Modules in normal status" +msgstr "%d Módulos en estado normal" + +#: ../../include/functions_reporting.php:7997 +#, php-format +msgid "%d Modules in critical status" +msgstr "%d Módulos en estado crítico" + +#: ../../include/functions_reporting.php:7998 +#, php-format +msgid "%d Modules in warning status" +msgstr "%d Módulos en estado de alerta" + +#: ../../include/functions_reporting.php:7999 +#, php-format +msgid "%d Modules in unknown status" +msgstr "%d Módulos en estado desconocido" + +#: ../../include/functions_reporting.php:8000 +#, php-format +msgid "%d Modules in not init status" +msgstr "%d Módulos en estado no iniciado" + +#: ../../include/functions_reporting.php:8004 +#, php-format +msgid "%d Normal modules" +msgstr "%d Módulos normales" + +#: ../../include/functions_reporting.php:8005 +#, php-format +msgid "%d Critical modules" +msgstr "%d Módulos críticos" + +#: ../../include/functions_reporting.php:8006 +#, php-format +msgid "%d Warning modules" +msgstr "%d Módulos en estado de alerta" + +#: ../../include/functions_reporting.php:8007 +#, php-format +msgid "%d Unknown modules" +msgstr "%d Módulos desconocidos" + +#: ../../include/functions_reporting.php:8011 +#, php-format +msgid "%d Total agents" +msgstr "%d del total de agentes" + +#: ../../include/functions_reporting.php:8012 +#, php-format +msgid "%d Normal agents" +msgstr "%d Agentes normales" + +#: ../../include/functions_reporting.php:8013 +#, php-format +msgid "%d Critical agents" +msgstr "%d Agentes en estado crítico" + +#: ../../include/functions_reporting.php:8014 +#, php-format +msgid "%d Warning agents" +msgstr "%d Agentes en estado de alerta" + +#: ../../include/functions_reporting.php:8015 +#, php-format +msgid "%d Unknown agents" +msgstr "%d Agentes desconocidos" + +#: ../../include/functions_reporting.php:8016 +#, php-format +msgid "%d not init agents" +msgstr "%d agentes no iniciados" + +#: ../../include/functions_reporting.php:9718 +msgid "Total running modules" +msgstr "Total de módulos en ejecución" + +#: ../../include/functions_reporting.php:9721 +#: ../../include/functions_reporting.php:9737 +#: ../../include/functions_reporting.php:9753 +#: ../../include/functions_reporting.php:9776 +#: ../../include/functions_reporting.php:9795 +#: ../../include/functions_reporting.php:9807 +#: ../../include/functions_reporting.php:9819 +#: ../../include/functions_reporting.php:9835 +msgid "Ratio" +msgstr "Proporción" + +#: ../../include/functions_reporting.php:9721 +#: ../../include/functions_reporting.php:9737 +#: ../../include/functions_reporting.php:9753 +#: ../../include/functions_reporting.php:9776 +#: ../../include/functions_reporting.php:9795 +#: ../../include/functions_reporting.php:9807 +#: ../../include/functions_reporting.php:9819 +#: ../../include/functions_reporting.php:9835 +msgid "Modules by second" +msgstr "Módulos por segundo" + +#: ../../include/functions_reporting.php:9733 +msgid "Local modules" +msgstr "Módulos locales" + +#: ../../include/functions_reporting.php:9744 +msgid "Remote modules" +msgstr "Módulos remotos" + +#: ../../include/functions_reporting.php:9768 +msgid "Network modules" +msgstr "Módulos de red" + +#: ../../include/functions_reporting.php:9791 +msgid "Plugin modules" +msgstr "Módulos de plugin" + +#: ../../include/functions_reporting.php:9803 +msgid "Prediction modules" +msgstr "Módulos de predicciónd" + +#: ../../include/functions_reporting.php:9815 +msgid "WMI modules" +msgstr "Módulos WMI" + +#: ../../include/functions_reporting.php:9827 +msgid "Web modules" +msgstr "Módulos Web" + +#: ../../include/functions_reporting.php:9866 ../../godmode/db/db_main.php:105 +msgid "Total events" +msgstr "Total de eventos" + +#: ../../include/functions_reporting.php:9889 +msgid "Server performance" +msgstr "Rendimiento del servidor" + +#: ../../include/functions_reporting.php:9971 +msgid "Weekly:" +msgstr "Semanalmente" + +#: ../../include/functions_reporting.php:9974 ../../include/functions.php:913 +#: ../../godmode/alerts/alert_special_days.php:327 +#: ../../godmode/alerts/alert_view.php:208 +#: ../../godmode/alerts/configure_alert_template.php:521 +#: ../../godmode/agentes/planned_downtime.editor.php:544 +msgid "Mon" +msgstr "Lun" + +#: ../../include/functions_reporting.php:9978 ../../include/functions.php:915 +#: ../../godmode/alerts/alert_special_days.php:328 +#: ../../godmode/alerts/alert_view.php:209 +#: ../../godmode/alerts/configure_alert_template.php:523 +#: ../../godmode/agentes/planned_downtime.editor.php:547 +msgid "Tue" +msgstr "Mar" + +#: ../../include/functions_reporting.php:9982 ../../include/functions.php:917 +#: ../../godmode/alerts/alert_special_days.php:329 +#: ../../godmode/alerts/alert_view.php:210 +#: ../../godmode/alerts/configure_alert_template.php:525 +#: ../../godmode/agentes/planned_downtime.editor.php:550 +msgid "Wed" +msgstr "Mié" + +#: ../../include/functions_reporting.php:9986 ../../include/functions.php:919 +#: ../../godmode/alerts/alert_special_days.php:330 +#: ../../godmode/alerts/alert_view.php:211 +#: ../../godmode/alerts/configure_alert_template.php:527 +#: ../../godmode/agentes/planned_downtime.editor.php:553 +msgid "Thu" +msgstr "Jue" + +#: ../../include/functions_reporting.php:9990 ../../include/functions.php:921 +#: ../../godmode/alerts/alert_special_days.php:331 +#: ../../godmode/alerts/alert_view.php:212 +#: ../../godmode/alerts/configure_alert_template.php:529 +#: ../../godmode/agentes/planned_downtime.editor.php:556 +msgid "Fri" +msgstr "Vie" + +#: ../../include/functions_reporting.php:9994 ../../include/functions.php:923 +#: ../../godmode/alerts/alert_special_days.php:332 +#: ../../godmode/alerts/alert_view.php:213 +#: ../../godmode/alerts/configure_alert_template.php:531 +#: ../../godmode/agentes/planned_downtime.editor.php:559 +msgid "Sat" +msgstr "Sáb" + +#: ../../include/functions_reporting.php:9998 ../../include/functions.php:925 +#: ../../godmode/alerts/alert_special_days.php:326 +#: ../../godmode/alerts/alert_view.php:214 +#: ../../godmode/alerts/configure_alert_template.php:533 +#: ../../godmode/agentes/planned_downtime.editor.php:562 +msgid "Sun" +msgstr "Dom" + +#: ../../include/functions_reporting.php:10005 +msgid "Monthly:" +msgstr "Mensual" + +#: ../../include/functions_reporting.php:10006 +msgid "From day" +msgstr "Desde el día" + +#: ../../include/functions_reporting.php:10007 +msgid "To day" +msgstr "Hasta el día" + +#: ../../include/functions_config.php:94 +msgid "Failed updated: User did not login." +msgstr "Fallo de actualización: el usuario no se dio de alta" + +#: ../../include/functions_config.php:102 +msgid "Failed updated: User is not admin." +msgstr "Fallo de actualización:el usuario no es administrador" + +#: ../../include/functions_config.php:131 +#: ../../godmode/setup/setup_general.php:57 +msgid "Remote config directory" +msgstr "Directorio remoto de configuración" + +#: ../../include/functions_config.php:133 +#: ../../godmode/setup/setup_general.php:62 +msgid "Auto login (hash) password" +msgstr "Contraseña («hash») de Inicio de sesión automático" + +#: ../../include/functions_config.php:136 +#: ../../godmode/setup/setup_general.php:65 +msgid "Time source" +msgstr "Hora de referencia" + +#: ../../include/functions_config.php:138 +#: ../../godmode/setup/setup_general.php:70 +msgid "Automatic check for updates" +msgstr "Chequeo automático de actualizaciones" + +#: ../../include/functions_config.php:140 +msgid "SSL cert path" +msgstr "Ruta del certificado SSL" + +#: ../../include/functions_config.php:142 +#: ../../godmode/setup/setup_general.php:74 +msgid "Enforce https" +msgstr "Forzar https" + +#: ../../include/functions_config.php:144 +msgid "Use cert." +msgstr "Usar certificado" + +#: ../../include/functions_config.php:146 +#: ../../godmode/setup/setup_general.php:86 +msgid "Attachment store" +msgstr "Almacenamiento de adjuntos" + +#: ../../include/functions_config.php:148 +#: ../../godmode/setup/setup_general.php:89 +msgid "IP list with API access" +msgstr "Lista de IPs con acceso a la API" + +#: ../../include/functions_config.php:150 +#: ../../godmode/setup/setup_general.php:98 +msgid "API password" +msgstr "Password de la API" + +#: ../../include/functions_config.php:152 +#: ../../godmode/setup/setup_general.php:102 +msgid "Enable GIS features in Pandora Console" +msgstr "Activar funcionalidades GIS en Pandora FMS" + +#: ../../include/functions_config.php:154 +msgid "Enable Integria incidents in Pandora Console" +msgstr "Habilitar incidentes de Integria en Pandora Console" + +#: ../../include/functions_config.php:156 +msgid "Integria inventory" +msgstr "Inventario Integria" + +#: ../../include/functions_config.php:158 +msgid "Integria API password" +msgstr "Contraseña de la API de Integria" + +#: ../../include/functions_config.php:160 +msgid "Integria URL" +msgstr "Integria URL" + +#: ../../include/functions_config.php:162 +#: ../../godmode/setup/setup_general.php:106 +msgid "Enable Netflow" +msgstr "Activar Netflow" + +#: ../../include/functions_config.php:169 +#: ../../godmode/setup/setup_general.php:146 +msgid "Sound for Alert fired" +msgstr "Sonido para alertas" + +#: ../../include/functions_config.php:171 +#: ../../godmode/setup/setup_general.php:151 +msgid "Sound for Monitor critical" +msgstr "Sonido para monitores Críticos" + +#: ../../include/functions_config.php:173 +#: ../../godmode/setup/setup_general.php:156 +msgid "Sound for Monitor warning" +msgstr "Sonido para monitores Warning" + +#: ../../include/functions_config.php:184 +msgid "License information" +msgstr "Información sobre la licencia" + +#: ../../include/functions_config.php:188 +#: ../../godmode/setup/setup_general.php:161 +msgid "Public URL" +msgstr "URL pública" + +#: ../../include/functions_config.php:190 +#: ../../godmode/setup/setup_general.php:165 +msgid "Referer security" +msgstr "Seguridad de Referer" + +#: ../../include/functions_config.php:192 +#: ../../godmode/setup/setup_general.php:173 +msgid "Event storm protection" +msgstr "Protección de tormenta de eventos" + +#: ../../include/functions_config.php:194 +#: ../../godmode/setup/setup_general.php:182 +msgid "Command Snapshot" +msgstr "Salida de comandos como capturas" + +#: ../../include/functions_config.php:196 +#: ../../godmode/setup/setup_general.php:187 +msgid "Server logs directory" +msgstr "Directorio de logs del servidor" + +#: ../../include/functions_config.php:198 +#: ../../godmode/setup/setup_general.php:196 +msgid "Tutorial mode" +msgstr "Modo Tutorial" + +#: ../../include/functions_config.php:200 +#: ../../godmode/setup/setup_general.php:203 +msgid "Allow create planned downtimes in the past" +msgstr "" +"Permitir la creación de paradas planificadas con fecha anterior a la actual" + +#: ../../include/functions_config.php:202 +#: ../../godmode/setup/setup_general.php:208 +msgid "Limit parameters massive" +msgstr "Límites de los parámetros masivos" + +#: ../../include/functions_config.php:204 +msgid "Identification_reminder" +msgstr "Recordatorio de identificación" + +#: ../../include/functions_config.php:206 +msgid "Include_agents" +msgstr "Incluir agentes" + +#: ../../include/functions_config.php:208 +msgid "Audit log directory" +msgstr "Directorio de log" + +#: ../../include/functions_config.php:213 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "Reenviar los Traps SNMP al agente (si existe)" + +#: ../../include/functions_config.php:215 +msgid "Use Enterprise ACL System" +msgstr "Utilize el sistema ACL Enterprise" + +#: ../../include/functions_config.php:217 +msgid "Activate Metaconsole" +msgstr "Activar la metaconsola" + +#: ../../include/functions_config.php:219 +msgid "Size of collection" +msgstr "Tamaño de la colección" + +#: ../../include/functions_config.php:221 +msgid "Events replication" +msgstr "Replicación de eventos" + +#: ../../include/functions_config.php:224 +msgid "Replication interval" +msgstr "Intervalo de replicación" + +#: ../../include/functions_config.php:226 +msgid "Replication limit" +msgstr "Límite de replicación" + +#: ../../include/functions_config.php:228 +msgid "Replication mode" +msgstr "Modo de replicación" + +#: ../../include/functions_config.php:230 +msgid "Show events list in local console (read only)" +msgstr "Mostrar lista de eventos en la consola local (solo lectura)" + +#: ../../include/functions_config.php:233 +msgid "Replication DB engine" +msgstr "Motor BD replicación" + +#: ../../include/functions_config.php:235 +msgid "Replication DB host" +msgstr "Host de la BD de réplica" + +#: ../../include/functions_config.php:237 +msgid "Replication DB database" +msgstr "Nombre de la BD de réplica" + +#: ../../include/functions_config.php:239 +msgid "Replication DB user" +msgstr "Usuario de la BD de réplica" + +#: ../../include/functions_config.php:241 +msgid "Replication DB password" +msgstr "Password de la BD de réplica" + +#: ../../include/functions_config.php:243 +msgid "Replication DB port" +msgstr "Puerto de la BD de réplica" + +#: ../../include/functions_config.php:245 +msgid "Metaconsole agent cache" +msgstr "Cache agente metaconsola" + +#: ../../include/functions_config.php:247 +msgid "Activate Log Collector" +msgstr "Activar el Colector de Logs" + +#: ../../include/functions_config.php:251 +msgid "Inventory changes blacklist" +msgstr "Lista negra ante cambios de inventario" + +#: ../../include/functions_config.php:258 +msgid "Enable password policy" +msgstr "Habilitar política de contraseñas" + +#: ../../include/functions_config.php:261 +msgid "Min. size password" +msgstr "Contraseña con tamaño mínimo" + +#: ../../include/functions_config.php:263 +msgid "Password expiration" +msgstr "Expiración de contraseña" + +#: ../../include/functions_config.php:265 +msgid "Force change password on first login" +msgstr "Forzar cambio de contraseña en el primer inicio de sesión" + +#: ../../include/functions_config.php:267 +msgid "User blocked if login fails" +msgstr "Usuario bloqueado si la identificación falla" + +#: ../../include/functions_config.php:269 +msgid "Number of failed login attempts" +msgstr "Número de intentos de identificación fallidos" + +#: ../../include/functions_config.php:271 +msgid "Password must have numbers" +msgstr "La contraseña tiene que contener números" + +#: ../../include/functions_config.php:273 +msgid "Password must have symbols" +msgstr "La contraseña tiene que contener símbolos" + +#: ../../include/functions_config.php:275 +msgid "Apply password policy to admin users" +msgstr "Aplicar la política de contraseñas a los usuarios administradores" + +#: ../../include/functions_config.php:277 +msgid "Enable password history" +msgstr "Activar histórico de contraseñas" + +#: ../../include/functions_config.php:279 +msgid "Compare previous password" +msgstr "Comparar la contraseña anterior" + +#: ../../include/functions_config.php:285 +#: ../../godmode/setup/setup_auth.php:183 +msgid "Authentication method" +msgstr "Método de autenticación" + +#: ../../include/functions_config.php:287 +#: ../../godmode/setup/setup_auth.php:57 +msgid "Autocreate remote users" +msgstr "Crear automáticamente los usuarios remotos" + +#: ../../include/functions_config.php:289 +msgid "Autocreate profile" +msgstr "Creat automáticamente el perfil" + +#: ../../include/functions_config.php:291 +msgid "Autocreate profile group" +msgstr "Crear automáticamente perfil de grupo" + +#: ../../include/functions_config.php:293 +msgid "Autocreate profile tags" +msgstr "Autocreado de tags de perfiles" + +#: ../../include/functions_config.php:295 +msgid "Autocreate blacklist" +msgstr "Crear automáticamente una lista negra" + +#: ../../include/functions_config.php:298 +msgid "Active directory server" +msgstr "Servidor de Directorio Activo" + +#: ../../include/functions_config.php:300 +msgid "Active directory port" +msgstr "Puerto del Directorio Activo" + +#: ../../include/functions_config.php:302 +#: ../../include/functions_config.php:317 +#: ../../godmode/setup/setup_auth.php:93 +msgid "Start TLS" +msgstr "Start TLS" + +#: ../../include/functions_config.php:304 +msgid "Advanced Config AD" +msgstr "Configuración avanzada" + +#: ../../include/functions_config.php:306 +msgid "Domain" +msgstr "Dominio" + +#: ../../include/functions_config.php:308 +msgid "Advanced Permisions AD" +msgstr "Permisos avanzados de AD" + +#: ../../include/functions_config.php:311 +#: ../../godmode/setup/setup_auth.php:74 +msgid "LDAP server" +msgstr "Servidor LDAP" + +#: ../../include/functions_config.php:313 +#: ../../godmode/setup/setup_auth.php:80 +msgid "LDAP port" +msgstr "Puerto LDAP" + +#: ../../include/functions_config.php:315 +#: ../../godmode/setup/setup_auth.php:87 +msgid "LDAP version" +msgstr "Versión LDAP" + +#: ../../include/functions_config.php:319 +#: ../../godmode/setup/setup_auth.php:100 +msgid "Base DN" +msgstr "DN base" + +#: ../../include/functions_config.php:321 +#: ../../godmode/setup/setup_auth.php:106 +msgid "Login attribute" +msgstr "Atributo de acceso" + +#: ../../include/functions_config.php:323 +#: ../../godmode/setup/setup_auth.php:49 +msgid "Fallback to local authentication" +msgstr "Alternativa si falla autenticación" + +#: ../../include/functions_config.php:326 +msgid "MySQL host" +msgstr "Dirección de MYSQL" + +#: ../../include/functions_config.php:328 +#: ../../include/functions_config.php:339 +#: ../../include/functions_config.php:349 +msgid "MySQL port" +msgstr "Puerto de MySQL" + +#: ../../include/functions_config.php:330 +#: ../../include/functions_config.php:341 +#: ../../include/functions_config.php:351 +#: ../../include/functions_config.php:681 +msgid "Database name" +msgstr "Nombre de la base de datos" + +#: ../../include/functions_config.php:337 +msgid "Babel Enterprise host" +msgstr "Servidor de Babel Enterprise" + +#: ../../include/functions_config.php:347 +msgid "Integria host" +msgstr "Servidor de Integria" + +#: ../../include/functions_config.php:357 +msgid "Saml path" +msgstr "Ruta de SAML" + +#: ../../include/functions_config.php:361 +msgid "Session timeout" +msgstr "Sesión expirada" + +#: ../../include/functions_config.php:371 +#: ../../godmode/setup/performance.php:49 +msgid "Max. days before delete events" +msgstr "Nº max. de días antes de borrar eventos" + +#: ../../include/functions_config.php:373 +#: ../../godmode/setup/performance.php:52 +msgid "Max. days before delete traps" +msgstr "Nº max. de días antes de borrar traps SNMP" + +#: ../../include/functions_config.php:375 +#: ../../godmode/setup/performance.php:58 +msgid "Max. days before delete string data" +msgstr "Nº max. de días antes de borrar datos de tipo texto" + +#: ../../include/functions_config.php:377 +#: ../../godmode/setup/performance.php:55 +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:379 +#: ../../godmode/setup/performance.php:61 +msgid "Max. days before delete GIS data" +msgstr "Nº max. de días antes de borrar información GIS" + +#: ../../include/functions_config.php:381 +#: ../../godmode/setup/performance.php:64 +msgid "Max. days before purge" +msgstr "Máx. días antes de eliminar datos" + +#: ../../include/functions_config.php:383 +#: ../../godmode/setup/performance.php:70 +msgid "Max. days before delete unknown modules" +msgstr "Máximo de días antes de borrar módulos desconocidos" + +#: ../../include/functions_config.php:385 +#: ../../godmode/setup/performance.php:67 +msgid "Max. days before compact data" +msgstr "Máx. días antes de comprimir datos" + +#: ../../include/functions_config.php:387 +msgid "Max. days before autodisable deletion" +msgstr "Días máximos antes de eliminar los deshabilitados" + +#: ../../include/functions_config.php:389 +msgid "Item limit for realtime reports)" +msgstr "Límite de ítems para los informes de tiempo real" + +#: ../../include/functions_config.php:391 +#: ../../godmode/setup/performance.php:100 +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:393 +#: ../../godmode/setup/performance.php:114 +msgid "Default hours for event view" +msgstr "Núm. de horas predeterminado para la visión de eventos" + +#: ../../include/functions_config.php:395 +#: ../../godmode/setup/performance.php:117 +msgid "Use realtime statistics" +msgstr "Usar estadísticas en tiempo real" + +#: ../../include/functions_config.php:397 +#: ../../godmode/setup/performance.php:121 +msgid "Batch statistics period (secs)" +msgstr "Período de las estadísticas programadas (En segundos)" + +#: ../../include/functions_config.php:399 +#: ../../godmode/setup/performance.php:124 +msgid "Use agent access graph" +msgstr "Usar la gráfica de acceso del agente" + +#: ../../include/functions_config.php:401 +#: ../../godmode/setup/performance.php:128 +msgid "Max. recommended number of files in attachment directory" +msgstr "Max. número de archivos recomendado para el directorio attachment" + +#: ../../include/functions_config.php:403 +#: ../../godmode/setup/performance.php:131 +msgid "Delete not init modules" +msgstr "Borrar módulos no inicializados" + +#: ../../include/functions_config.php:405 +msgid "Big Operatiopn Step to purge old data" +msgstr "Gran operación para la purga de datos antiguos" + +#: ../../include/functions_config.php:407 +#: ../../godmode/setup/performance.php:138 +msgid "Small Operation Step to purge old data" +msgstr "Operación menor para la purga de datos antiguos" + +#: ../../include/functions_config.php:409 +#: ../../godmode/setup/performance.php:76 +msgid "Retention period of past special days" +msgstr "Período de retención de días especiales pasados" + +#: ../../include/functions_config.php:411 +#: ../../godmode/setup/performance.php:79 +msgid "Max. macro data fields" +msgstr "Campo de macro para el máximo" + +#: ../../include/functions_config.php:414 +#: ../../godmode/setup/performance.php:83 +msgid "Max. days before delete inventory data" +msgstr "Días máximos antes del borrado de datos de inventario" + +#: ../../include/functions_config.php:422 +#: ../../godmode/setup/setup_visuals.php:651 +msgid "Date format string" +msgstr "Formato de fecha a mostrar" + +#: ../../include/functions_config.php:424 +#: ../../godmode/setup/setup_visuals.php:664 +msgid "Timestamp or time comparation" +msgstr "Marca de tiempo o comparación de hora" + +#: ../../include/functions_config.php:426 +#: ../../godmode/setup/setup_visuals.php:391 +msgid "Graph color (min)" +msgstr "Color de la gráfica (mín.)" + +#: ../../include/functions_config.php:428 +#: ../../godmode/setup/setup_visuals.php:395 +msgid "Graph color (avg)" +msgstr "Color de la gráfica (med.)" + +#: ../../include/functions_config.php:430 +#: ../../godmode/setup/setup_visuals.php:399 +msgid "Graph color (max)" +msgstr "Color de la gráfica (máx.)" + +#: ../../include/functions_config.php:432 +#: ../../godmode/setup/setup_visuals.php:403 +msgid "Graph color #4" +msgstr "Color de la gráfica #4" + +#: ../../include/functions_config.php:434 +#: ../../godmode/setup/setup_visuals.php:407 +msgid "Graph color #5" +msgstr "Color de la gráfica #5" + +#: ../../include/functions_config.php:436 +#: ../../godmode/setup/setup_visuals.php:411 +msgid "Graph color #6" +msgstr "Color de la gráfica #6" + +#: ../../include/functions_config.php:438 +#: ../../godmode/setup/setup_visuals.php:415 +msgid "Graph color #7" +msgstr "Color de la gráfica #7" + +#: ../../include/functions_config.php:440 +#: ../../godmode/setup/setup_visuals.php:419 +msgid "Graph color #8" +msgstr "Color de la gráfica #8" + +#: ../../include/functions_config.php:442 +#: ../../godmode/setup/setup_visuals.php:423 +msgid "Graph color #9" +msgstr "Color de la gráfica #9" + +#: ../../include/functions_config.php:444 +#: ../../godmode/setup/setup_visuals.php:427 +msgid "Graph color #10" +msgstr "Color de la gráfica #10" + +#: ../../include/functions_config.php:446 +msgid "Graphic resolution (1-low, 5-high)" +msgstr "Resolución de los gráficos (1 baja, 5 alta)" + +#: ../../include/functions_config.php:448 +#: ../../godmode/setup/setup_visuals.php:435 +msgid "Value to interface graphics" +msgstr "Valor para la interfaz gráfica" + +#: ../../include/functions_config.php:450 +#: ../../godmode/setup/setup_visuals.php:444 +msgid "Data precision for reports" +msgstr "Precisión de los datos en los informes" + +#: ../../include/functions_config.php:455 +#: ../../godmode/setup/setup_visuals.php:153 +msgid "Style template" +msgstr "Plantilla de estilo" + +#: ../../include/functions_config.php:459 +#: ../../godmode/setup/setup_visuals.php:454 +msgid "Use round corners" +msgstr "Usar bordes redondeados" + +#: ../../include/functions_config.php:461 +msgid "Show QR code header" +msgstr "Mostrar código QR en la cabecera" + +#: ../../include/functions_config.php:463 +#: ../../godmode/setup/setup_visuals.php:158 +msgid "Status icon set" +msgstr "Icono de estado en" + +#: ../../include/functions_config.php:465 +#: ../../godmode/setup/setup_visuals.php:311 +msgid "Font path" +msgstr "Ruta de la tipografía" + +#: ../../include/functions_config.php:467 +#: ../../godmode/setup/setup_visuals.php:318 +#: ../../godmode/reporting/visual_console_builder.wizard.php:178 +msgid "Font size" +msgstr "Tamaño de la tipografía" + +#: ../../include/functions_config.php:473 +#: ../../include/functions_config.php:633 +#: ../../godmode/setup/setup_visuals.php:574 +msgid "Custom logo" +msgstr "Logotipo personalizado" + +#: ../../include/functions_config.php:475 +msgid "Custom logo login" +msgstr "Logo personalizado en la pantalla de bienvenida" + +#: ../../include/functions_config.php:480 +#: ../../godmode/setup/setup_visuals.php:168 +msgid "Login background" +msgstr "Imagen de fondo de la pantalla de login" + +#: ../../include/functions_config.php:482 +#: ../../godmode/setup/setup_visuals.php:75 +msgid "Default interval for refresh on Visual Console" +msgstr "Intervalo de refresco en la consola visual por defecto" + +#: ../../include/functions_config.php:484 +#: ../../godmode/setup/setup_visuals.php:528 +msgid "Default line thickness for the Visual Console" +msgstr "Grosor de línea por defecto en las Consolas Visuales" + +#: ../../include/functions_config.php:486 +#: ../../include/functions_config.php:488 +#: ../../godmode/setup/setup_visuals.php:341 +msgid "Agent size text" +msgstr "Tamaño del texto del agente" + +#: ../../include/functions_config.php:490 +#: ../../godmode/setup/setup_visuals.php:349 +msgid "Module size text" +msgstr "Tamaño del nombre del modulo" + +#: ../../include/functions_config.php:492 +#: ../../include/functions_config.php:494 +#: ../../godmode/setup/setup_visuals.php:357 +msgid "Description size text" +msgstr "Tamaño del texto de la descripción" + +#: ../../include/functions_config.php:496 +#: ../../godmode/setup/setup_visuals.php:361 +msgid "Item title size text" +msgstr "Tamaño del texto de los títulos" + +#: ../../include/functions_config.php:498 +#: ../../godmode/setup/setup_visuals.php:274 +msgid "GIS Labels" +msgstr "Etiquetas GIS" + +#: ../../include/functions_config.php:500 +msgid "Show units in values report" +msgstr "Mostrar unidades en los valores del informe" + +#: ../../include/functions_config.php:502 +#: ../../godmode/setup/setup_visuals.php:286 +msgid "Default icon in GIS" +msgstr "Icono GIS por defecto" + +#: ../../include/functions_config.php:504 +#: ../../godmode/setup/setup_visuals.php:254 +msgid "Autohidden menu" +msgstr "Ocultar menú" + +#: ../../include/functions_config.php:506 +msgid "Fixed graph" +msgstr "Gráfico fijo" + +#: ../../include/functions_config.php:508 +#: ../../godmode/setup/setup_visuals.php:238 +msgid "Fixed header" +msgstr "Cabecera fija" + +#: ../../include/functions_config.php:510 +#: ../../godmode/setup/setup_visuals.php:246 +msgid "Fixed menu" +msgstr "Menú fijo" + +#: ../../include/functions_config.php:512 +msgid "Paginate module" +msgstr "Paginar vista de módulos" + +#: ../../include/functions_config.php:514 +#: ../../godmode/setup/setup_visuals.php:625 +msgid "Custom graphviz directory" +msgstr "Directorio personalizado graphviz" + +#: ../../include/functions_config.php:516 +#: ../../godmode/setup/setup_visuals.php:632 +msgid "Networkmap max width" +msgstr "Máximo ancho de Networkmap" + +#: ../../include/functions_config.php:518 +#: ../../godmode/setup/setup_visuals.php:469 +msgid "Shortened module graph data" +msgstr "Gráfica de modulo de datos acortados" + +#: ../../include/functions_config.php:520 +#: ../../godmode/setup/setup_visuals.php:641 +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:522 +#: ../../godmode/setup/setup_visuals.php:449 +msgid "Default line thickness for the Custom Graph." +msgstr "Espesor de la línea predeterminada para el gráfico personalizado." + +#: ../../include/functions_config.php:524 +msgid "Default type of module charts." +msgstr "Tipo de gráficas de módulos por defecto." + +#: ../../include/functions_config.php:526 +msgid "Default type of interface charts." +msgstr "Tipo predefinido para las gráficas de interfaz" + +#: ../../include/functions_config.php:528 +msgid "Default show only average or min and max" +msgstr "Por defecto mostrar solo la media o el máximo y el mínimo" + +#: ../../include/functions_config.php:530 +#: ../../godmode/setup/setup_visuals.php:85 +msgid "Display data of proc modules in other format" +msgstr "Mostrar los datos de los módulos proc de otra forma" + +#: ../../include/functions_config.php:532 +#: ../../godmode/setup/setup_visuals.php:95 +msgid "Display text proc modules have state is ok" +msgstr "Texto a mostrar cuando el estado del módulo proc es OK" + +#: ../../include/functions_config.php:534 +#: ../../godmode/setup/setup_visuals.php:99 +msgid "Display text when proc modules have state critical" +msgstr "Texto a mostrar cuando el estado del módulo proc es Critico" + +#: ../../include/functions_config.php:537 +msgid "Display lateral menus with left click" +msgstr "Mostrar los menús laterales con el click izquierdo" + +#: ../../include/functions_config.php:541 +#: ../../godmode/setup/setup_visuals.php:117 +msgid "Service label font size" +msgstr "Tamaño de fuente para el mapa de servicios" + +#: ../../include/functions_config.php:543 +msgid "Service item padding size" +msgstr "Espacio entre los nodos del mapa de servicios" + +#: ../../include/functions_config.php:546 +msgid "Default percentil" +msgstr "Percentil por defecto" + +#: ../../include/functions_config.php:548 +#: ../../godmode/setup/setup_visuals.php:126 +msgid "Classic menu mode" +msgstr "Menú clásico" + +#: ../../include/functions_config.php:566 +msgid "Add the custom post process" +msgstr "Añadir la personalización al proceso posterior" + +#: ../../include/functions_config.php:573 +msgid "Delete the custom post process" +msgstr "Borrar la personalización al proceso posterior" + +#: ../../include/functions_config.php:618 +#: ../../godmode/setup/setup_visuals.php:723 +msgid "Delete interval" +msgstr "Borrar intervalo" + +#: ../../include/functions_config.php:622 +msgid "Custom report info" +msgstr "Información del informe personalizado" + +#: ../../include/functions_config.php:627 +#: ../../include/functions_config.php:630 +#: ../../include/functions_config.php:633 +#: ../../include/functions_config.php:636 +#: ../../include/functions_config.php:639 +#: ../../include/functions_config.php:642 +#: ../../godmode/setup/setup_visuals.php:567 +#: ../../godmode/setup/setup_visuals.php:573 +#: ../../godmode/setup/setup_visuals.php:586 +#: ../../godmode/setup/setup_visuals.php:594 +#: ../../godmode/setup/setup_visuals.php:599 +#: ../../godmode/setup/setup_visuals.php:607 +msgid "Custom report front" +msgstr "Portada de informe personalizado" + +#: ../../include/functions_config.php:630 +#: ../../godmode/setup/setup_visuals.php:567 +msgid "Font family" +msgstr "Tipo de letra" + +#: ../../include/functions_config.php:636 +#: ../../godmode/setup/setup_visuals.php:594 +msgid "Header" +msgstr "Encabezado" + +#: ../../include/functions_config.php:639 +#: ../../godmode/setup/setup_visuals.php:599 +msgid "First page" +msgstr "Primera página" + +#: ../../include/functions_config.php:642 +#: ../../godmode/setup/setup_visuals.php:607 +msgid "Footer" +msgstr "Pie de página" + +#: ../../include/functions_config.php:647 +#: ../../godmode/setup/setup_netflow.php:41 +msgid "Data storage path" +msgstr "Ruta de almacenamiento de datos" + +#: ../../include/functions_config.php:649 +#: ../../godmode/setup/setup_netflow.php:45 +msgid "Daemon interval" +msgstr "Intervalo del demonio" + +#: ../../include/functions_config.php:651 +#: ../../godmode/setup/setup_netflow.php:49 +msgid "Daemon binary path" +msgstr "Ruta de demonio binario" + +#: ../../include/functions_config.php:653 +#: ../../godmode/setup/setup_netflow.php:52 +msgid "Nfdump binary path" +msgstr "Ruta binaria Nfdump" + +#: ../../include/functions_config.php:655 +#: ../../godmode/setup/setup_netflow.php:55 +msgid "Nfexpire binary path" +msgstr "Ruta binaria Nfexpire" + +#: ../../include/functions_config.php:657 +#: ../../godmode/setup/setup_netflow.php:58 +msgid "Maximum chart resolution" +msgstr "Máxima resolución de gráfica" + +#: ../../include/functions_config.php:659 +#: ../../godmode/setup/setup_netflow.php:61 +msgid "Disable custom live view filters" +msgstr "Desactive los filtros de vista activa personalizados" + +#: ../../include/functions_config.php:661 +#: ../../include/functions_config.php:667 +#: ../../godmode/setup/setup_netflow.php:65 +msgid "Netflow max lifetime" +msgstr "Tiempo máximo del Netflow" + +#: ../../include/functions_config.php:663 +#: ../../godmode/setup/setup_netflow.php:68 +msgid "Name resolution for IP address" +msgstr "Resolver direcciones IP para obtener sus nombres de máquina" + +#: ../../include/functions_config.php:669 +msgid "Log max lifetime" +msgstr "Tiempo máximo para logarse" + +#: ../../include/functions_config.php:673 +msgid "Enable history database" +msgstr "Activar base de datos de histórico" + +#: ../../include/functions_config.php:675 +msgid "Enable history event" +msgstr "Activar histórico de eventos" + +#: ../../include/functions_config.php:677 +msgid "Host" +msgstr "Servidor" + +#: ../../include/functions_config.php:679 +#: ../../godmode/modules/manage_network_components_form_network.php:38 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:342 +#: ../../godmode/agentes/module_manager_editor_network.php:106 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:703 +msgid "Port" +msgstr "Puerto" + +#: ../../include/functions_config.php:683 +msgid "Database user" +msgstr "Usuario de la base de datos" + +#: ../../include/functions_config.php:685 +msgid "Database password" +msgstr "Contraseña de la base de datos" + +#: ../../include/functions_config.php:687 +#: ../../godmode/alerts/alert_templates.php:73 +msgid "Days" +msgstr "Días" + +#: ../../include/functions_config.php:689 +msgid "Event Days" +msgstr "Eventos en día" + +#: ../../include/functions_config.php:691 +#: ../../godmode/alerts/configure_alert_template.php:147 +#: ../../godmode/alerts/configure_alert_template.php:152 +#: ../../godmode/alerts/configure_alert_template.php:167 +#: ../../godmode/alerts/configure_alert_template.php:172 +#: ../../godmode/alerts/configure_alert_template.php:187 +#: ../../godmode/alerts/configure_alert_template.php:192 +msgid "Step" +msgstr "Paso" + +#: ../../include/functions_config.php:693 +msgid "Delay" +msgstr "Retraso" + +#: ../../include/functions_config.php:697 +#: ../../godmode/setup/setup_ehorus.php:54 +msgid "Enable eHorus" +msgstr "Activar eHorus" + +#: ../../include/functions_config.php:699 +msgid "eHorus user" +msgstr "Usuario de eHorus" + +#: ../../include/functions_config.php:701 +msgid "eHorus password" +msgstr "Contraseña de eHorus" + +#: ../../include/functions_config.php:703 +msgid "eHorus API hostname" +msgstr "Propietario de la API de eHorus" + +#: ../../include/functions_config.php:705 +msgid "eHorus API port" +msgstr "Puerto de la API de eHorus" + +#: ../../include/functions_config.php:707 +msgid "eHorus request timeout" +msgstr "Tiempo de respuesta de eHorus" + +#: ../../include/functions_config.php:709 +msgid "eHorus id custom field" +msgstr "Id del campo personalizado de eHorus" + +#: ../../include/functions_config.php:721 +#, php-format +msgid "Failed updated: the next values cannot update: %s" +msgstr "" +"Actualización fracasada: los siguientes valores no pueden ser actualizados:%s" + +#: ../../include/functions_config.php:1696 +msgid "" +"Click here to start the " +"registration process" +msgstr "" +"Click here para empezar el proceso " +"de registro" + +#: ../../include/functions_config.php:1697 +msgid "This instance is not registered in the Update manager" +msgstr "" +"Esta instancia no está registrada en el Administrador de actualizaciones" + +#: ../../include/functions_config.php:1704 +msgid "" +"Click here to start the " +"newsletter subscription process" +msgstr "" +"Click here para empezar el " +"proceso de registro al boletín de noticias" + +#: ../../include/functions_config.php:1705 +msgid "Not subscribed to the newsletter" +msgstr "No suscrito al boletín de noticias" + +#: ../../include/functions_config.php:1716 +msgid "Default password for \"Admin\" user has not been changed." +msgstr "" +"La contraseña por defecto para el usuario \"Admin\" no ha sido cambiada." + +#: ../../include/functions_config.php:1717 +msgid "" +"Please change the default password because is a common vulnerability " +"reported." +msgstr "" +"Por favor cambie la contraseña por defecto ya que es una vulnerabilidad " +"comunmente reportada." + +#: ../../include/functions_config.php:1723 +msgid "You can not get updates until you renew the license." +msgstr "No puede obtener actualizaciones hasta que no renueve la licencia" + +#: ../../include/functions_config.php:1724 +msgid "This license has expired." +msgstr "Esta licencia ha expirado" + +#: ../../include/functions_config.php:1729 +msgid "" +"Please check that the web server has write rights on the " +"{HOMEDIR}/attachment directory" +msgstr "" +"Compruebe que el servidor web tiene permisos de escritura en el directorio " +"{HOMEDIR}/directorio_de_adjuntos" + +#: ../../include/functions_config.php:1742 +msgid "Remote configuration directory is not readble for the console" +msgstr "El directorio de configuración remota no es legible por la consola" + +#: ../../include/functions_config.php:1748 +#: ../../include/functions_config.php:1755 +msgid "Remote configuration directory is not writtable for the console" +msgstr "" +"El directorio de configuración remoto no es modificable por la consola" + +#: ../../include/functions_config.php:1766 +msgid "" +"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 «attachment». Este no es un error " +"fatal, pero debería considerar limpiar el directorio manualmente." + +#: ../../include/functions_config.php:1766 +msgid "files" +msgstr "archivos" + +#: ../../include/functions_config.php:1767 +msgid "Too much files in your tempora/attachment directory" +msgstr "Demasiados archivos en el directorio /attachment" + +#: ../../include/functions_config.php:1784 +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" +msgstr "" +"Tu base de datos no está bien mantenida. Parece que han pasado más de 48hr " +"de un buen mantenimiento. Por favor revise la documentación de Pandora FMS " +"acerca de como ejecutar este proceso de mantenimiento (pandora_db.pl) y " +"habilítelo lo antes posible" + +#: ../../include/functions_config.php:1785 +msgid "Database maintance problem" +msgstr "Problema en el mantenimiento de la base de datos" + +#: ../../include/functions_config.php:1791 +msgid "" +"Your defined font doesnt exist or is not defined. Please check font " +"parameters in your config" +msgstr "" +"La fuente definida no existe o no ha sido definida. Por favor compruebe los " +"paremetros de la fuente en su configuración" + +#: ../../include/functions_config.php:1792 +msgid "Default font doesnt exist" +msgstr "La fuente por defecto no existe" + +#: ../../include/functions_config.php:1797 +msgid "You need to restart server after altering this configuration setting." +msgstr "" +"Es necesario reiniciar el servidor después de modificar esta configuración" + +#: ../../include/functions_config.php:1798 +msgid "" +"Event storm protection is activated. No events will be generated during this " +"mode." +msgstr "" +"La protección contra tormentas de eventos está activada. Los eventos no " +"serán generados durante este modo" + +#: ../../include/functions_config.php:1805 +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" +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" + +#: ../../include/functions_config.php:1806 +msgid "Developer mode is enabled" +msgstr "El modo «desarrollador» está activado" + +#: ../../include/functions_config.php:1815 +msgid "Error first setup Open update" +msgstr "Error en la primera configuración de Open update" + +#: ../../include/functions_config.php:1821 +msgid "" +"There is a new update available. Please go to Administration:Setup:Update Manager for more details." +msgstr "" +"Existe una nueva actualización. Por favor ve a Administración:Configuración:Update Manager para más " +"detalles." + +#: ../../include/functions_config.php:1822 +msgid "New update of Pandora Console" +msgstr "Nueva actualización de la consola de Pandora" + +#: ../../include/functions_config.php:1836 +msgid "" +"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 deshabilitar, hay que poner safe_mode = Off en el fichero de " +"configuración de PHP (php.ini). (Después de los cambios, hay que reiniciar " +"Apache)" + +#: ../../include/functions_config.php:1837 +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" + +#: ../../include/functions_config.php:1842 +#, php-format +msgid "Recommended value is %s" +msgstr "El valor recomendado es '%s'" + +#: ../../include/functions_config.php:1842 +#: ../../include/functions_config.php:1848 +msgid "Unlimited" +msgstr "Sin límite" + +#: ../../include/functions_config.php:1842 +#: ../../include/functions_config.php:1848 +#: ../../include/functions_config.php:1856 +#: ../../include/functions_config.php:1871 +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, cambielo en su fichero de configuración de PHP (php.ini) o " +"contacte con un administrador (No olvide reiniciar el proceso apache tras " +"los cambios)" + +#: ../../include/functions_config.php:1843 +#: ../../include/functions_config.php:1849 +#: ../../include/functions_config.php:1857 +#: ../../include/functions_config.php:1865 +#, php-format +msgid "Not recommended '%s' value in PHP configuration" +msgstr "Valor '%s' no recomendado en la configuración de PHP" + +#: ../../include/functions_config.php:1848 +#: ../../include/functions_config.php:1856 +#: ../../include/functions_config.php:1864 +#, php-format +msgid "Recommended value is: %s" +msgstr "El valor recomendado es: %s" + +#: ../../include/functions_config.php:1856 +#: ../../include/functions_config.php:1864 +#, php-format +msgid "%s or greater" +msgstr "%s o mayor" + +#: ../../include/functions_config.php:1864 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator" +msgstr "" +"Por favor, cámbielo en su fichero de configuración de PHP (php.ini) o " +"contacte con un administrador" + +#: ../../include/functions_config.php:1870 +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 " +"fichero de configuración de php (php.ini)" + +#: ../../include/functions_config.php:1871 +msgid "Problems with disable functions in PHP.INI" +msgstr "Problemas para desactivar funciones en PHP.INI" + +#: ../../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.php:215 +msgid "." +msgstr "." + +#: ../../include/functions.php:217 +msgid "," +msgstr "," + +#: ../../include/functions.php:439 ../../include/functions.php:573 +msgid "s" +msgstr "s" + +#: ../../include/functions.php:440 ../../include/functions.php:574 +msgid "d" +msgstr "d" + +#: ../../include/functions.php:441 ../../include/functions.php:575 +msgid "M" +msgstr "M" + +#: ../../include/functions.php:442 ../../include/functions.php:576 +msgid "Y" +msgstr "Y" + +#: ../../include/functions.php:443 ../../include/functions.php:577 +msgid "m" +msgstr "m" + +#: ../../include/functions.php:444 ../../include/functions.php:578 +msgid "h" +msgstr "h" + +#: ../../include/functions.php:445 ../../include/functions.php:579 +msgid "N" +msgstr "N" + +#: ../../include/functions.php:1033 +msgid "Monitor Unknown" +msgstr "Monitor descon." + +#: ../../include/functions.php:1040 +msgid "Agent created" +msgstr "Agente creado" + +#: ../../include/functions.php:2015 +msgid "custom" +msgstr "personalizado" + +#: ../../include/functions.php:2020 ../../include/functions.php:2021 +#, php-format +msgid "%s minutes" +msgstr "%s minutos" + +#: ../../include/functions.php:2023 ../../include/functions.php:2024 +#, php-format +msgid "%s hours" +msgstr "%s horas" + +#: ../../include/functions.php:2029 ../../include/functions.php:2030 +#, php-format +msgid "%s months" +msgstr "%s meses" + +#: ../../include/functions.php:2032 ../../include/functions.php:2033 +#, php-format +msgid "%s years" +msgstr "%s años" + +#: ../../include/functions.php:2036 +#: ../../godmode/alerts/configure_alert_template.php:915 +#: ../../godmode/alerts/alert_list.builder.php:212 +#: ../../godmode/modules/manage_network_components_form_network.php:82 +#: ../../godmode/modules/manage_network_components_form_plugin.php:29 +#: ../../godmode/modules/manage_network_components_form_wmi.php:58 +msgid "Empty" +msgstr "Vacío" + +#: ../../include/functions.php:2036 +msgid "Default values will be used" +msgstr "Se usarán valores por defecto" + +#: ../../include/functions.php:2196 +msgid "The uploaded file was only partially uploaded" +msgstr "El fichero se ha subido parcialmente" + +#: ../../include/functions.php:2199 +msgid "No file was uploaded" +msgstr "No se subió ningún archivo" + +#: ../../include/functions.php:2202 +msgid "Missing a temporary folder" +msgstr "El directorio temporal no existe" + +#: ../../include/functions.php:2205 +msgid "Failed to write file to disk" +msgstr "No se pudo escribir el fichero a disco" + +#: ../../include/functions.php:2208 +msgid "File upload stopped by extension" +msgstr "Subida de fichero cancelada por la extensión" + +#: ../../include/functions.php:2212 +msgid "Unknown upload error" +msgstr "Error desconocido al subir el fichero" + +#: ../../include/functions.php:2297 +msgid "No data found to export" +msgstr "Datos no encontrados para exportar" + +#: ../../include/functions.php:2315 +msgid "Source ID" +msgstr "ID Fuente" + +#: ../../include/functions.php:2582 +#: ../../godmode/alerts/alert_list.list.php:136 +#: ../../godmode/alerts/alert_list.list.php:784 +#: ../../godmode/extensions.php:277 ../../godmode/users/user_list.php:463 +msgid "Disable" +msgstr "Desactivar" + +#: ../../include/functions.php:2585 +msgid "15 seconds" +msgstr "15 segundos" + +#: ../../include/functions.php:2590 +msgid "15 minutes" +msgstr "15 minutos" #: ../../include/functions_networkmap.php:1638 #: ../../include/functions_networkmap.php:1724 @@ -24745,11713 +16730,7158 @@ msgstr "Crear un nuevo mapa dinámico" msgid "Create a new radial dynamic map" msgstr "Crear un nuevo mapa dinámico radial" -#: ../../include/functions_reporting_html.php:93 -msgid "Label: " -msgstr "Etiqueta: " +#: ../../godmode/snmpconsole/snmp_trap_generator.php:37 +msgid "SNMP Trap generator" +msgstr "Generador de Traps SNMP" -#: ../../include/functions_reporting_html.php:111 -#: ../../enterprise/include/functions_netflow_pdf.php:157 -#: ../../enterprise/include/functions_reporting_csv.php:1506 -#: ../../enterprise/include/functions_reporting_csv.php:1510 -#: ../../enterprise/include/functions_reporting_pdf.php:2163 -msgid "Generated" -msgstr "Generado" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +msgid "Empty parameters" +msgstr "Parámetros vacíos" -#: ../../include/functions_reporting_html.php:114 -#: ../../enterprise/include/functions_reporting_pdf.php:2166 -msgid "Report date" -msgstr "Fecha del informe" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:56 +msgid "Successfully generated" +msgstr "Generado satisfactoriamente" -#: ../../include/functions_reporting_html.php:119 -#: ../../operation/reporting/reporting_viewer.php:197 -#: ../../enterprise/include/functions_reporting_pdf.php:2171 -msgid "Items period before" -msgstr "Periodo de elementos antes de" - -#: ../../include/functions_reporting_html.php:398 -#: ../../enterprise/include/functions_reporting.php:1646 -#: ../../enterprise/include/functions_reporting.php:2438 -#: ../../enterprise/include/functions_reporting.php:3215 -#: ../../enterprise/include/functions_reporting_pdf.php:1266 -#: ../../enterprise/include/functions_reporting_pdf.php:1609 -msgid "Max/Min Values" -msgstr "Valores Max/Min" - -#: ../../include/functions_reporting_html.php:399 -#: ../../enterprise/include/functions_reporting.php:1647 -#: ../../enterprise/include/functions_reporting.php:2439 -#: ../../enterprise/include/functions_reporting.php:3216 -#: ../../enterprise/include/functions_reporting.php:4809 -#: ../../enterprise/include/functions_reporting.php:5110 -#: ../../enterprise/include/functions_reporting_csv.php:932 -#: ../../enterprise/include/functions_reporting_csv.php:979 -#: ../../enterprise/include/functions_reporting_csv.php:1051 -#: ../../enterprise/include/functions_reporting_csv.php:1167 -#: ../../enterprise/include/functions_reporting_csv.php:1379 -#: ../../enterprise/include/functions_reporting_pdf.php:1267 -#: ../../enterprise/include/functions_reporting_pdf.php:1610 -#: ../../enterprise/include/functions_reporting_pdf.php:2040 -msgid "SLA Limit" -msgstr "Límite del SLA" - -#: ../../include/functions_reporting_html.php:400 -#: ../../enterprise/include/functions_reporting.php:1647 -#: ../../enterprise/include/functions_reporting.php:1779 -#: ../../enterprise/include/functions_reporting.php:2439 -#: ../../enterprise/include/functions_reporting.php:3216 -#: ../../enterprise/include/functions_reporting.php:4810 -#: ../../enterprise/include/functions_reporting.php:5111 -#: ../../enterprise/include/functions_reporting_pdf.php:1268 -#: ../../enterprise/include/functions_reporting_pdf.php:1610 -#: ../../enterprise/include/functions_reporting_pdf.php:1759 -#: ../../enterprise/include/functions_reporting_pdf.php:2041 -msgid "SLA Compliance" -msgstr "Cumplimiento del SLA" - -#: ../../include/functions_reporting_html.php:425 -#: ../../enterprise/include/functions_reporting_pdf.php:1275 -msgid "Global Time" -msgstr "Tiempo global" - -#: ../../include/functions_reporting_html.php:426 -#: ../../enterprise/include/functions_reporting_csv.php:1310 -#: ../../enterprise/include/functions_reporting_pdf.php:1276 -msgid "Time Total" -msgstr "Tiempo total" - -#: ../../include/functions_reporting_html.php:427 -#: ../../enterprise/include/functions_reporting_pdf.php:1277 -#: ../../enterprise/include/functions_reporting_pdf.php:1850 -msgid "Time Failed" -msgstr "Tiempo en fallo" - -#: ../../include/functions_reporting_html.php:428 -#: ../../include/functions_reporting_html.php:2262 -#: ../../enterprise/include/functions_reporting_csv.php:1311 -#: ../../enterprise/include/functions_reporting_pdf.php:1278 -#: ../../enterprise/include/functions_reporting_pdf.php:1851 -msgid "Time OK" -msgstr "Tiempo OK" - -#: ../../include/functions_reporting_html.php:429 -#: ../../enterprise/include/functions_reporting_csv.php:1313 -#: ../../enterprise/include/functions_reporting_pdf.php:1279 -#: ../../enterprise/include/functions_reporting_pdf.php:1852 -msgid "Time Unknown" -msgstr "Tiempo Desconocido" - -#: ../../include/functions_reporting_html.php:430 -#: ../../enterprise/include/functions_reporting_csv.php:1314 -#: ../../enterprise/include/functions_reporting_pdf.php:1280 -msgid "Time Not Init" -msgstr "TIempo No Inicializado" - -#: ../../include/functions_reporting_html.php:431 -#: ../../enterprise/include/functions_reporting_pdf.php:1281 -msgid "Downtime" -msgstr "Parada planificada" - -#: ../../include/functions_reporting_html.php:456 -#: ../../enterprise/include/functions_reporting_pdf.php:1287 -msgid "Checks Time" -msgstr "Tiempo de comprobaciones" - -#: ../../include/functions_reporting_html.php:457 -#: ../../enterprise/include/functions_reporting_csv.php:1316 -#: ../../enterprise/include/functions_reporting_pdf.php:1288 -msgid "Checks Total" -msgstr "Comprobaciones totales" - -#: ../../include/functions_reporting_html.php:458 -#: ../../enterprise/include/functions_reporting_pdf.php:1289 -#: ../../enterprise/include/functions_reporting_pdf.php:1870 -msgid "Checks Failed" -msgstr "Comprobaciones fallidas" - -#: ../../include/functions_reporting_html.php:459 -#: ../../include/functions_reporting_html.php:2305 -#: ../../enterprise/include/functions_reporting_csv.php:1317 -#: ../../enterprise/include/functions_reporting_pdf.php:1290 -#: ../../enterprise/include/functions_reporting_pdf.php:1871 -msgid "Checks OK" -msgstr "Comprobaciones OK" - -#: ../../include/functions_reporting_html.php:460 -#: ../../enterprise/include/functions_reporting_csv.php:1319 -#: ../../enterprise/include/functions_reporting_pdf.php:1291 -#: ../../enterprise/include/functions_reporting_pdf.php:1872 -msgid "Checks Unknown" -msgstr "Comprobaciones Desconocidas" - -#: ../../include/functions_reporting_html.php:685 -#: ../../include/functions_reporting_html.php:2541 -#: ../../enterprise/include/functions_reporting.php:2652 -#: ../../enterprise/include/functions_reporting.php:3421 -#: ../../enterprise/include/functions_reporting_pdf.php:1506 -#: ../../enterprise/include/functions_services.php:1271 -msgid "Unknow" -msgstr "Desconocido" - -#: ../../include/functions_reporting_html.php:690 -#: ../../include/functions_reporting_html.php:2546 -#: ../../operation/agentes/group_view.php:170 -#: ../../enterprise/include/functions_reporting.php:1677 -#: ../../enterprise/include/functions_reporting.php:2469 -#: ../../enterprise/include/functions_reporting.php:2657 -#: ../../enterprise/include/functions_reporting.php:3246 -#: ../../enterprise/include/functions_reporting.php:3426 -#: ../../enterprise/include/functions_reporting.php:4147 -#: ../../enterprise/include/functions_reporting_pdf.php:1508 -#: ../../enterprise/include/functions_reporting_pdf.php:1647 -msgid "Not Init" -msgstr "No iniciado" - -#: ../../include/functions_reporting_html.php:695 -#: ../../include/functions_reporting_html.php:2551 -#: ../../enterprise/include/functions_reporting.php:2662 -#: ../../enterprise/include/functions_reporting.php:3431 -#: ../../enterprise/include/functions_reporting_pdf.php:1510 -msgid "Downtimes" -msgstr "Paradas planificadas" - -#: ../../include/functions_reporting_html.php:700 -#: ../../include/functions_reporting_html.php:2556 -#: ../../enterprise/include/functions_reporting.php:2667 -#: ../../enterprise/include/functions_reporting.php:3436 -#: ../../enterprise/include/functions_reporting_pdf.php:1512 -msgid "Ignore time" -msgstr "Tiempo ignorado" - -#: ../../include/functions_reporting_html.php:772 -#: ../../include/functions_reporting_html.php:1529 -#: ../../include/functions_reporting_html.php:2455 -#: ../../include/functions_reporting_html.php:2683 -#: ../../enterprise/include/functions_reporting_pdf.php:804 -#: ../../enterprise/include/functions_reporting_pdf.php:896 -#: ../../enterprise/include/functions_reporting_pdf.php:952 -msgid "Min Value" -msgstr "Valor mínimo" - -#: ../../include/functions_reporting_html.php:773 -#: ../../include/functions_reporting_html.php:1530 -#: ../../include/functions_reporting_html.php:2456 -#: ../../include/functions_reporting_html.php:2684 -#: ../../enterprise/include/functions_reporting_pdf.php:805 -#: ../../enterprise/include/functions_reporting_pdf.php:897 -#: ../../enterprise/include/functions_reporting_pdf.php:953 -#: ../../enterprise/include/functions_reporting_pdf.php:1993 -msgid "Average Value" -msgstr "Valor medio" - -#: ../../include/functions_reporting_html.php:774 -#: ../../include/functions_reporting_html.php:1531 -#: ../../include/functions_reporting_html.php:2453 -#: ../../include/functions_reporting_html.php:2686 -#: ../../enterprise/include/functions_reporting_pdf.php:806 -#: ../../enterprise/include/functions_reporting_pdf.php:898 -#: ../../enterprise/include/functions_reporting_pdf.php:954 -#: ../../enterprise/include/functions_reporting_pdf.php:1990 -msgid "Max Value" -msgstr "Valor máximo" - -#: ../../include/functions_reporting_html.php:807 -#: ../../include/functions_reporting_html.php:1025 -#: ../../include/functions_reporting_html.php:1644 -#: ../../operation/snmpconsole/snmp_view.php:610 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:143 -msgid "Count" -msgstr "Número" - -#: ../../include/functions_reporting_html.php:812 -#: ../../include/functions_reporting_html.php:821 -#: ../../include/functions_reporting_html.php:1649 -msgid "Val. by" -msgstr "Val. por" - -#: ../../include/functions_reporting_html.php:915 -#: ../../include/functions_reporting_html.php:1111 -msgid "Events by agent" -msgstr "Eventos por agente" - -#: ../../include/functions_reporting_html.php:934 -#: ../../include/functions_reporting_html.php:1130 -msgid "Events by user validator" -msgstr "Eventos por usuario validador" - -#: ../../include/functions_reporting_html.php:953 -#: ../../include/functions_reporting_html.php:1149 -msgid "Events by Severity" -msgstr "Eventos por gravedad" - -#: ../../include/functions_reporting_html.php:972 -#: ../../include/functions_reporting_html.php:1168 -msgid "Events validated vs unvalidated" -msgstr "Eventos validados vs no validados" - -#: ../../include/functions_reporting_html.php:1228 -#: ../../enterprise/include/functions_inventory.php:511 -#: ../../enterprise/include/functions_inventory.php:574 -#: ../../enterprise/include/functions_reporting_pdf.php:495 -msgid "Added" -msgstr "Añadido" - -#: ../../include/functions_reporting_html.php:1379 -#: ../../enterprise/dashboard/widgets/agent_module.php:309 -#: ../../enterprise/include/functions_reporting_pdf.php:618 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:57 #, php-format -msgid "%s in %s : NORMAL" -msgstr "%s en %s : NORMAL" +msgid "Could not be generated: %s" +msgstr "No se pudo generar: %s" -#: ../../include/functions_reporting_html.php:1388 -#: ../../enterprise/dashboard/widgets/agent_module.php:317 -#: ../../enterprise/include/functions_reporting_pdf.php:627 -#, php-format -msgid "%s in %s : CRITICAL" -msgstr "%s en %s : CRITICAL" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:81 +msgid "SNMP Type" +msgstr "Tipo de SNMP" -#: ../../include/functions_reporting_html.php:1397 -#: ../../enterprise/dashboard/widgets/agent_module.php:325 -#: ../../enterprise/include/functions_reporting_pdf.php:636 -#, php-format -msgid "%s in %s : WARNING" -msgstr "%s en %s : WARNING" +#: ../../godmode/snmpconsole/snmp_trap_generator.php:89 +msgid "Generate trap" +msgstr "Generar trap" -#: ../../include/functions_reporting_html.php:1406 -#: ../../enterprise/dashboard/widgets/agent_module.php:333 -#: ../../enterprise/include/functions_reporting_pdf.php:645 -#, php-format -msgid "%s in %s : UNKNOWN" -msgstr "%s en %s : DESCONOCIDO" +#: ../../godmode/snmpconsole/snmp_alert.php:78 +msgid "Update alert" +msgstr "Actualizar alerta" -#: ../../include/functions_reporting_html.php:1417 -#: ../../enterprise/dashboard/widgets/agent_module.php:350 -#: ../../enterprise/include/functions_reporting_pdf.php:663 -#, php-format -msgid "%s in %s : ALERTS FIRED" -msgstr "%s en %s : ALERTA ENVIADA" +#: ../../godmode/snmpconsole/snmp_alert.php:82 +msgid "Create alert" +msgstr "Crear alerta" -#: ../../include/functions_reporting_html.php:1426 -#: ../../enterprise/dashboard/widgets/agent_module.php:341 -#: ../../enterprise/include/functions_reporting_pdf.php:654 -#, php-format -msgid "%s in %s : Not initialize" -msgstr "%s en %s : No iniciado" +#: ../../godmode/snmpconsole/snmp_alert.php:86 +msgid "Alert overview" +msgstr "Vista general de alertas" -#: ../../include/functions_reporting_html.php:1450 -msgid "Cell turns grey when the module is in 'not initialize' status" -msgstr "" -"La celda se vuelve gris cuando el módulo está en estado \"no iniciado\"" +#: ../../godmode/snmpconsole/snmp_alert.php:243 +msgid "There was a problem creating the alert" +msgstr "Hubo un problema al crear la alerta" -#: ../../include/functions_reporting_html.php:1585 -#: ../../include/functions_reporting_html.php:3272 -msgid "Monitors" -msgstr "Monitores" +#: ../../godmode/snmpconsole/snmp_alert.php:314 +msgid "There was a problem updating the alert" +msgstr "Hubo un problema al actualizar la alerta" -#: ../../include/functions_reporting_html.php:1604 -#: ../../include/functions_reporting_html.php:1959 -#: ../../include/functions_reporting_html.php:1960 -#: ../../mobile/operation/alerts.php:38 -#: ../../operation/agentes/alerts_status.functions.php:74 -#: ../../operation/snmpconsole/snmp_view.php:162 -#: ../../operation/snmpconsole/snmp_view.php:923 -#: ../../enterprise/include/functions_reporting_pdf.php:734 -msgid "Fired" -msgstr "Lanzada" +#: ../../godmode/snmpconsole/snmp_alert.php:536 +msgid "There was a problem duplicating the alert" +msgstr "Hubo un problema al duplicar la alerta" -#: ../../include/functions_reporting_html.php:1617 -#: ../../enterprise/include/functions_reporting_pdf.php:749 -#, php-format -msgid "Last %s" -msgstr "Último %s" - -#: ../../include/functions_reporting_html.php:1737 -msgid "Events validated by user" -msgstr "Eventos validados por el usuario" - -#: ../../include/functions_reporting_html.php:1756 -#: ../../include/functions_reporting_html.php:3561 -msgid "Events by severity" -msgstr "Eventos por gravedad" - -#: ../../include/functions_reporting_html.php:1775 -#: ../../operation/events/event_statistics.php:61 -msgid "Amount events validated" -msgstr "Cantidad de eventos validados" - -#: ../../include/functions_reporting_html.php:1905 -#, php-format -msgid "Interface '%s' throughput graph" -msgstr "Interfaz '%s' gráfico de rendimiento" - -#: ../../include/functions_reporting_html.php:1908 -msgid "Mac" -msgstr "Mac" - -#: ../../include/functions_reporting_html.php:1909 -msgid "Actual status" -msgstr "Estado actual" - -#: ../../include/functions_reporting_html.php:2105 -msgid "Empty modules" -msgstr "Módulos vacíos" - -#: ../../include/functions_reporting_html.php:2112 -msgid "Warning
    Critical" -msgstr "Warning
    Critical" - -#: ../../include/functions_reporting_html.php:2260 -msgid "Total time" -msgstr "Tiempo total" - -#: ../../include/functions_reporting_html.php:2261 -msgid "Time failed" -msgstr "Tiempo en fallo" - -#: ../../include/functions_reporting_html.php:2263 -msgid "Time Uknown" -msgstr "Tiempo en desconocido" - -#: ../../include/functions_reporting_html.php:2264 -msgid "Time Not Init Module" -msgstr "Tiempo en módulo no inicializado" - -#: ../../include/functions_reporting_html.php:2265 -#: ../../enterprise/include/functions_reporting_csv.php:1315 -msgid "Time Downtime" -msgstr "Tiempo de parada planificada" - -#: ../../include/functions_reporting_html.php:2266 -#: ../../enterprise/include/functions_reporting_pdf.php:1855 -msgid "% Ok" -msgstr "% Ok" - -#: ../../include/functions_reporting_html.php:2303 -msgid "Total checks" -msgstr "Comprobaciones totales" - -#: ../../include/functions_reporting_html.php:2304 -msgid "Checks failed" -msgstr "Comprobaciones fallidas" - -#: ../../include/functions_reporting_html.php:2306 -msgid "Checks Uknown" -msgstr "Comprobaciones en desconocido" - -#: ../../include/functions_reporting_html.php:2452 -#: ../../enterprise/include/functions_reporting_pdf.php:1989 -msgid "Agent max value" -msgstr "Valor máximo del agente" - -#: ../../include/functions_reporting_html.php:2454 -msgid "Agent min value" -msgstr "Valor mínimo de agente" - -#: ../../include/functions_reporting_html.php:2695 -#: ../../include/functions_reporting_html.php:2789 -#: ../../enterprise/dashboard/widgets/tactical.php:44 -msgid "Summary" -msgstr "Lista de agentes" - -#: ../../include/functions_reporting_html.php:2761 -#: ../../operation/tree.php:163 -msgid "Module status" -msgstr "Estado del módulo" - -#: ../../include/functions_reporting_html.php:2881 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1224 -msgid "Alert description" -msgstr "Descripción de la alerta" - -#: ../../include/functions_reporting_html.php:2931 -msgid "Alerts not fired" -msgstr "Alertas no disparadas" - -#: ../../include/functions_reporting_html.php:2940 -msgid "Total alerts monitored" -msgstr "Alertas totales monitorizadas" - -#: ../../include/functions_reporting_html.php:2991 -msgid "Total monitors" -msgstr "Total de monitores" - -#: ../../include/functions_reporting_html.php:2992 -msgid "Monitors down on period" -msgstr "Monitores inactivos en un periodo" - -#: ../../include/functions_reporting_html.php:3008 -msgid "Monitors OK" -msgstr "Monitores en buen estado" - -#: ../../include/functions_reporting_html.php:3009 -msgid "Monitors BAD" -msgstr "Monitores en mal estado" - -#: ../../include/functions_reporting_html.php:3035 -#: ../../include/functions_reporting_html.php:3175 -#: ../../mobile/include/functions_web.php:23 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 -msgid "Monitor" -msgstr "Monitor" - -#: ../../include/functions_reporting_html.php:3083 -#, php-format -msgid "Agents in group: %s" -msgstr "Agentes en el grupo: %s" - -#: ../../include/functions_reporting_html.php:3176 -msgid "Last failure" -msgstr "Último fallo" - -#: ../../include/functions_reporting_html.php:3240 -msgid "N/A(*)" -msgstr "N/A(*)" - -#: ../../include/functions_reporting_html.php:3414 -#: ../../mobile/operation/groups.php:133 -msgid "Agents critical" -msgstr "Agentes críticos" - -#: ../../include/functions_reporting_html.php:3417 -msgid "Agents warning" -msgstr "Agentes warning" - -#: ../../include/functions_reporting_html.php:3423 -msgid "Agents ok" -msgstr "Agentes ok" - -#: ../../include/functions_reporting_html.php:3432 -#: ../../mobile/operation/groups.php:129 -msgid "Agents not init" -msgstr "Agentes no inicializados" - -#: ../../include/functions_reporting_html.php:3443 -#: ../../include/functions_reporting_html.php:3452 -msgid "Agents by status" -msgstr "Agentes por estado" - -#: ../../include/functions_reporting_html.php:3489 -#: ../../operation/agentes/pandora_networkmap.php:403 -msgid "Nodes" -msgstr "Nodos" - -#: ../../include/functions_reporting_html.php:3496 -#: ../../include/functions_reporting_html.php:3505 -msgid "Node overview" -msgstr "Resumen de nodos" - -#: ../../include/functions_reporting_html.php:3523 -#: ../../include/functions_reporting_html.php:3540 -msgid "Critical events" -msgstr "Eventos en estado \"crítico\"" - -#: ../../include/functions_reporting_html.php:3527 -#: ../../include/functions_reporting_html.php:3544 -msgid "Warning events" -msgstr "Eventos en advertencia" - -#: ../../include/functions_reporting_html.php:3531 -#: ../../include/functions_reporting_html.php:3548 -msgid "OK events" -msgstr "Eventos OK" - -#: ../../include/functions_reporting_html.php:3535 -#: ../../include/functions_reporting_html.php:3552 -msgid "Unknown events" -msgstr "Eventos desconocidos" - -#: ../../include/functions_reporting_html.php:3575 -msgid "Important Events by Criticity" -msgstr "Eventos importantes por criticidad" - -#: ../../include/functions_reporting_html.php:3601 -msgid "Last activity in Pandora FMS console" -msgstr "Última actividad en la consola de Pandora FMS" - -#: ../../include/functions_reporting_html.php:3677 -msgid "Events info (1hr.)" -msgstr "Información de Eventos (1hr.)" - -#: ../../include/functions_reporting_html.php:3817 -#: ../../enterprise/include/functions_reporting.php:4939 -#: ../../enterprise/include/functions_reporting_pdf.php:2418 -msgid "This SLA has been affected by the following planned downtimes" -msgstr "Las siguientes paradas planificadas han modificado este SLA" - -#: ../../include/functions_reporting_html.php:3822 -#: ../../enterprise/include/functions_reporting.php:4944 -#: ../../enterprise/include/functions_reporting_pdf.php:2423 -msgid "Dates" -msgstr "Fechas" - -#: ../../include/functions_reporting_html.php:3863 -#: ../../enterprise/include/functions_reporting.php:5038 -#: ../../enterprise/include/functions_reporting_pdf.php:2462 -msgid "This item is affected by a malformed planned downtime" -msgstr "A este elemento le afecta una parada planificada mal formada" - -#: ../../include/functions_reporting_html.php:3864 -#: ../../enterprise/include/functions_reporting.php:5039 -#: ../../enterprise/include/functions_reporting_pdf.php:2463 -msgid "Go to the planned downtimes section to solve this" -msgstr "" -"Ir a la sección de paradas planificadas para solucionar este problema" - -#: ../../include/functions_reports.php:511 -msgid "SQL vertical bar graph" -msgstr "Gráfica de barra vertical SQL" - -#: ../../include/functions_reports.php:513 -msgid "SQL pie graph" -msgstr "Gráfico circular de SQL" - -#: ../../include/functions_reports.php:515 -msgid "SQL horizonal bar graph" -msgstr "Gráfico de barra horizontal SQL" - -#: ../../include/functions_reports.php:519 -msgid "Automatic combined Graph" -msgstr "Grafica automática combinada" - -#: ../../include/functions_reports.php:523 -msgid "Availability graph" -msgstr "Gráfica de disponibilidad" - -#: ../../include/functions_reports.php:526 -msgid "Module Histogram graph" -msgstr "Gráfica de histórico de módulo" - -#: ../../include/functions_reports.php:528 -#: ../../include/functions_reports.php:530 -#: ../../include/functions_reports.php:532 -#: ../../include/functions_reports.php:534 -msgid "ITIL" -msgstr "I.T.I.L" - -#: ../../include/functions_reports.php:539 -#: ../../include/functions_reports.php:542 -#: ../../include/functions_reports.php:544 -#: ../../include/functions_reports.php:546 -#: ../../include/functions_reports.php:550 -#: ../../enterprise/include/functions_reporting_csv.php:1321 -#: ../../enterprise/operation/services/services.list.php:343 -#: ../../enterprise/operation/services/services.service.php:141 -msgid "SLA" -msgstr "S.L.A." - -#: ../../include/functions_reports.php:543 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:113 -#: ../../enterprise/include/functions_reporting.php:1996 -msgid "Monthly S.L.A." -msgstr "S.L.A mensual" - -#: ../../include/functions_reports.php:545 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:114 -#: ../../enterprise/include/functions_reporting.php:2721 -msgid "Weekly S.L.A." -msgstr "S.L.A. Semanal" - -#: ../../include/functions_reports.php:547 -#: ../../enterprise/include/functions_reporting.php:3503 -msgid "Hourly S.L.A." -msgstr "S.L.A. Horario" - -#: ../../include/functions_reports.php:551 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:119 -#: ../../enterprise/include/functions_reporting.php:4399 -#: ../../enterprise/include/functions_reporting.php:4863 -msgid "Services S.L.A." -msgstr "S.L.A. de Servicios" - -#: ../../include/functions_reports.php:556 -#: ../../include/functions_reports.php:558 -msgid "Forecasting" -msgstr "Predicción" - -#: ../../include/functions_reports.php:557 -#: ../../enterprise/include/functions_reporting_csv.php:317 -msgid "Prediction date" -msgstr "Fecha de predicción" - -#: ../../include/functions_reports.php:559 -msgid "Projection graph" -msgstr "Gráfica de proyección" - -#: ../../include/functions_reports.php:570 -msgid "Monitor report" -msgstr "Informe de monitores" - -#: ../../include/functions_reports.php:572 -msgid "Serialize data" -msgstr "Serializar datos" - -#: ../../include/functions_reports.php:576 -msgid "Historical Data" -msgstr "Datos historicos" - -#: ../../include/functions_reports.php:580 -#: ../../include/functions_reports.php:582 -#: ../../include/functions_reports.php:584 -#: ../../include/functions_reports.php:587 -#: ../../include/functions_reports.php:591 -#: ../../include/functions_reports.php:594 -#: ../../include/functions_reports.php:596 -#: ../../include/functions_reports.php:598 -msgid "Grouped" -msgstr "Agrupado" - -#: ../../include/functions_reports.php:583 -#: ../../enterprise/include/functions_reporting_csv.php:470 -msgid "Group report" -msgstr "Grupo de informes" - -#: ../../include/functions_reports.php:595 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:44 -msgid "Top n" -msgstr "Top n" - -#: ../../include/functions_reports.php:597 -msgid "Network interfaces" -msgstr "Interfaces de red" - -#: ../../include/functions_reports.php:602 -#: ../../include/functions_reports.php:604 -msgid "Text/HTML " -msgstr "Texto/HTML " - -#: ../../include/functions_reports.php:605 -msgid "Import text from URL" -msgstr "Importar texto de una URL" - -#: ../../include/functions_reports.php:610 -msgid "Alert report module" -msgstr "Informe de alertas de un módulo" - -#: ../../include/functions_reports.php:612 -msgid "Alert report agent" -msgstr "Informe de alertas de un agente" - -#: ../../include/functions_reports.php:615 -msgid "Alert report group" -msgstr "Informe de alertas para grupos" - -#: ../../include/functions_reports.php:621 -msgid "Event report agent" -msgstr "Informe de los eventos de un agente" - -#: ../../include/functions_reports.php:623 -msgid "Event report module" -msgstr "Informe de los eventos de un módulo" - -#: ../../include/functions_reports.php:625 -msgid "Event report group" -msgstr "Informe de los eventos de un grupo" - -#: ../../include/functions_reports.php:632 -msgid "Inventory changes" -msgstr "Inventario de cambios" - -#: ../../include/functions_reports.php:642 -msgid "Netflow area chart" -msgstr "Gráfica de area de Netflow" - -#: ../../include/functions_reports.php:644 -msgid "Netflow pie chart" -msgstr "Gráfica de tarta de Netflow" - -#: ../../include/functions_reports.php:646 -msgid "Netflow data table" -msgstr "Tabla de datos de Netflow" - -#: ../../include/functions_reports.php:648 -msgid "Netflow statistics table" -msgstr "Tabla de estadísticas Netflow" - -#: ../../include/functions_reports.php:650 -msgid "Netflow summary table" -msgstr "Tabla de resumen Netflow" - -#: ../../include/functions_reports.php:654 -#: ../../enterprise/include/functions_reporting.php:1829 -msgid "Log" -msgstr "Log" - -#: ../../include/functions_reports.php:655 -#: ../../enterprise/include/functions_reporting.php:1820 -msgid "Log report" -msgstr "Informe de log" - -#: ../../include/functions_servers.php:363 -msgid "Data server" -msgstr "Servidor de datos" - -#: ../../include/functions_servers.php:368 -msgid "Network server" -msgstr "Servidor de red" - -#: ../../include/functions_servers.php:373 -msgid "SNMP Trap server" -msgstr "Servidor de traps SNMP" - -#: ../../include/functions_servers.php:383 -msgid "Plugin server" -msgstr "Servidor de complementos" - -#: ../../include/functions_servers.php:388 -msgid "Prediction server" -msgstr "Servidor de predicción" - -#: ../../include/functions_servers.php:393 -msgid "WMI server" -msgstr "Servidor WMI" - -#: ../../include/functions_servers.php:398 -#: ../../enterprise/godmode/servers/manage_export_form.php:71 -msgid "Export server" -msgstr "Servidor de exportación" - -#: ../../include/functions_servers.php:403 -msgid "Inventory server" -msgstr "Servidor de inventario" - -#: ../../include/functions_servers.php:408 -msgid "Web server" -msgstr "Servidor web" - -#: ../../include/functions_servers.php:413 -msgid "Event server" -msgstr "Servidor de eventos" - -#: ../../include/functions_servers.php:418 -msgid "Enterprise ICMP server" -msgstr "Servidor ICMP Enterprise" - -#: ../../include/functions_servers.php:423 -msgid "Enterprise SNMP server" -msgstr "Servidor SNMP Enterprise" - -#: ../../include/functions_servers.php:428 -msgid "Enterprise Satellite server" -msgstr "Servidor enterprise satelite" - -#: ../../include/functions_servers.php:433 -msgid "Enterprise Transactional server" -msgstr "Servidor Transaccional Enterprise" - -#: ../../include/functions_servers.php:438 -msgid "Mainframe server" -msgstr "Servidor mainframe" - -#: ../../include/functions_servers.php:443 -msgid "Sync server" -msgstr "Servidor sync" - -#: ../../include/functions_snmp.php:67 -msgid "Load Average (Last minute)" -msgstr "Carga media (Última hora)" - -#: ../../include/functions_snmp.php:71 -msgid "Load Average (Last 5 minutes)" -msgstr "Carga media (últimos 5 minutos)" - -#: ../../include/functions_snmp.php:75 -msgid "Load Average (Last 15 minutes)" -msgstr "Carga media (últimos 15 minutos)" - -#: ../../include/functions_snmp.php:79 -msgid "Total Swap Size configured for the host" -msgstr "Tamaño de intercambio total configurado para el host" - -#: ../../include/functions_snmp.php:83 -msgid "Available Swap Space on the host" -msgstr "Espacio de intercambio disponible en el host" - -#: ../../include/functions_snmp.php:87 -msgid "Total Real/Physical Memory Size on the host" -msgstr "Tamaño de memoria real/física en el servidor" - -#: ../../include/functions_snmp.php:91 -msgid "Available Real/Physical Memory Space on the host" -msgstr "Memoria real/física disponible en el servidor" - -#: ../../include/functions_snmp.php:95 -msgid "Total Available Memory on the host" -msgstr "Memoria total disponible" - -#: ../../include/functions_snmp.php:99 -msgid "Total Cached Memory" -msgstr "Memoria caché total" - -#: ../../include/functions_snmp.php:103 -msgid "Total Buffered Memory" -msgstr "Memoria total de búfer" - -#: ../../include/functions_snmp.php:107 -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:111 -msgid "Amount of memory swapped to disk (kB/s)" -msgstr "La cantidad de memoria intercambiada con el disco (kB / s)" - -#: ../../include/functions_snmp.php:115 -msgid "Number of blocks sent to a block device" -msgstr "Número de bloques enviado al dispositivo de bloques" - -#: ../../include/functions_snmp.php:119 -msgid "Number of blocks received from a block device" -msgstr "Número de bloques recibidos del dispositivo de bloques" - -#: ../../include/functions_snmp.php:123 -msgid "Number of interrupts processed" -msgstr "Número de interrupciones procesadas" - -#: ../../include/functions_snmp.php:127 -msgid "Number of context switches" -msgstr "Número de cambios de contexto" - -#: ../../include/functions_snmp.php:131 -msgid "user CPU time" -msgstr "tiempo de CPU de usuario" - -#: ../../include/functions_snmp.php:135 -msgid "system CPU time" -msgstr "tiempo de CPU del sistema" - -#: ../../include/functions_snmp.php:139 -msgid "idle CPU time" -msgstr "tiempo de inactividad de la CPU" - -#: ../../include/functions_snmp.php:143 -msgid "system Up time" -msgstr "Tiempo de actividad del sistema" - -#: ../../include/functions_snmp_browser.php:145 -msgid "Target IP cannot be blank." -msgstr "Ip Target no puede dejarse en blanco" - -#: ../../include/functions_snmp_browser.php:403 -msgid "Numeric OID" -msgstr "OID numérico" - -#: ../../include/functions_snmp_browser.php:420 -msgid "Syntax" -msgstr "Sintáxis" - -#: ../../include/functions_snmp_browser.php:425 -msgid "Display hint" -msgstr "Activar hint" - -#: ../../include/functions_snmp_browser.php:430 -msgid "Max access" -msgstr "Acceso máximo" - -#: ../../include/functions_snmp_browser.php:445 -msgid "OID Information" -msgstr "Información OID" - -#: ../../include/functions_snmp_browser.php:510 -msgid "Starting OID" -msgstr "Iniciar OID" - -#: ../../include/functions_snmp_browser.php:521 -msgid "Browse" -msgstr "Examinar" - -#: ../../include/functions_snmp_browser.php:558 -msgid "First match" -msgstr "Primera correspondencia" - -#: ../../include/functions_snmp_browser.php:560 -msgid "Previous match" -msgstr "Coincidencia anterior" - -#: ../../include/functions_snmp_browser.php:562 -msgid "Next match" -msgstr "Siguiente coincidencia" - -#: ../../include/functions_snmp_browser.php:564 -msgid "Last match" -msgstr "Última coincidencia" - -#: ../../include/functions_snmp_browser.php:569 -msgid "Expand the tree (can be slow)" -msgstr "Expandir el árbol (puede ser lento)" - -#: ../../include/functions_snmp_browser.php:571 -msgid "Collapse the tree" -msgstr "Contraer el árbol" - -#: ../../include/functions_snmp_browser.php:590 -msgid "SNMP v3 options" -msgstr "Opciones SNMP v3" - -#: ../../include/functions_snmp_browser.php:593 -msgid "Search options" -msgstr "Opciones de búsqueda" - -#: ../../include/graphs/export_data.php:71 -#: ../../include/graphs/export_data.php:126 -msgid "An error occured exporting the data" -msgstr "Ocurrió un error exportando los datos" - -#: ../../include/graphs/export_data.php:76 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 -msgid "Selected" -msgstr "Seleccionado" - -#: ../../include/graphs/functions_flot.php:258 -#: ../../include/graphs/functions_flot.php:288 -msgid "Cancel zoom" -msgstr "Cancelar el zoom" - -#: ../../include/graphs/functions_flot.php:260 -msgid "Warning and Critical thresholds" -msgstr "Umbrales de alerta y critico" - -#: ../../include/graphs/functions_flot.php:263 -msgid "Overview graph" -msgstr "Grafica de vista general" - -#: ../../include/graphs/functions_pchart.php:195 -#: ../../include/graphs/functions_pchart.php:1149 -msgid "Actual" -msgstr "Actual" - -#: ../../include/help/clippy/agent_out_of_limits.php:39 -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:44 -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 tu agente dejado de informar o el servidor tiene algún " -"problema (demasiado carga o simplemente se ha caido). Comprueba también la " -"conectividad entre el agente y el servidor." - -#: ../../include/help/clippy/data_configuration_module.php:39 -msgid "Data Configuration Module." -msgstr "Módulos de datos de configuración" - -#: ../../include/help/clippy/data_configuration_module.php:44 -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, tenga en cuenta que la información aquí proporcionada afecta la " -"forma de cómo 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:50 -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 "" -"Información importada la PRIMERA vez desde el XML llenará la información " -"que se puede ver 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/extension_cron_send_email.php:39 -msgid "" -"The configuration of email for the task email is in the enterprise setup:" -msgstr "" -"La configuración del email para las tareas del mismo está en la " -"configuración enterprise:" - -#: ../../include/help/clippy/extension_cron_send_email.php:40 -msgid "Please check if the email configuration is correct." -msgstr "Por favor, confirmar que la configuración de correo-e es correcta." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:35 -msgid "Now you must go to Modules. Don't worry I'll lead you." -msgstr "" -"Ahora debes ir a los módulos. Pero no te preocupes, te guiare paso a paso." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:40 -msgid "Click in this tab.." -msgstr "Haz click en esta pestaña." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:56 -msgid "Now you must create the module. Don't worry, i'll teach you." -msgstr "Ahora debes crear el módulo, pero no te preocupes, te enseñaré." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:60 -msgid "Choose the network server module." -msgstr "Elige el módulo de servidor de red." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:64 -msgid "And click the button." -msgstr "Y pica el botón." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:80 -msgid "Now you must create the module. Don't worry, i'll teach you ." -msgstr "Ahora debes crear el módulo, pero no te preocupes, te enseñaré." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:84 -msgid "Now we are going to fill the form." -msgstr "Ahora nosotros vamos a rellenar el formulario." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:88 -msgid "Please choose Network Management." -msgstr "Por favor, selecciona \"Network Management\"." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:92 -msgid "Choose the component named \"Host alive\"." -msgstr "Selecciona el componente llamado \"Host alive\"." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:96 -msgid "You can change the name if you want." -msgstr "Puedes cambiar el nombre si quieres." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:100 -msgid "Check if the IP showed is the IP of your machine." -msgstr "Prueba si la IP mostrado es la IP de tu maquina." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:104 -msgid "And only to finish it is clicking this button." -msgstr "Y ya solamente para terminar pulsa en este botón." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:121 -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 problema, el color de estado pasara a " -"rojo o verde." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:126 -#: ../../include/help/clippy/operation_agentes_ver_agente.php:42 -#: ../../operation/servers/recon_view.php:137 -msgid "Done" -msgstr "Hecho" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:137 -msgid "Click on alerts tab and then fill the form to add an alert." -msgstr "" -"Haz click en la pestaña de alertas para rellenar el formulario con la alerta " -"a añadir." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:152 -msgid "Select the critical module." -msgstr "Elige el módulo critico." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 -msgid "In template select \"Critical Condition\"." -msgstr "En las plantillas selecciona \"Critical Condition\"." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:160 -msgid "Now, select the action created before." -msgstr "Ahora, elige la acción creada antes." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:165 -msgid "Click on Add Alert button to create the alert." -msgstr "Haz click en el botón añadir alerta para crear la alerta." - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:181 -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/godmode_agentes_modificar_agente.php:35 -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:39 -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:44 -msgid "If you have typed the name correctly you will see the agent." -msgstr "Si ha introducido el nombre correctamente, verá el agente." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:60 -msgid "Now, please choose the agent you searched." -msgstr "Ahora, por favor elige el agente que buscaste." - -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:65 -msgid "Choose the agent and click on the name." -msgstr "Elige el agente y haz click en el nombre" - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:36 -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 cómo crear una acción de correo electrónico: Haz click en " -"el botón Crear y rellena el formulario que aparecerá en la siguiente " -"pantalla." - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:51 -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 busca un módulo en estado " -"crítico para enlazarle la alerta." - -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:56 -msgid "" -"Click on the arrow to drop down the Monitoring submenu and select Monitor " -"Detail." -msgstr "" -"Haga click en la flecha para desplegar el submenú Monitorización y " -"seleccione Detalle Monitor." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:35 -msgid "Fill the name of your action." -msgstr "Rellena con el nombre de la acción." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:39 -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 "" -"Seleccione el grupo en la lista desplegable y este es 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:43 -msgid "In the command field select \"email\"." -msgstr "En este campo de comando elige \"email\"." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:47 -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á mas ayuda." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:53 -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 separados por comas " -"(,) o espacios en blanco, en las que deseas recibir las alertas de email." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:58 -msgid "" -"In the \"Subject\" field you can use the macros _agent_ or _module_ for " -"each name." -msgstr "" -"El campo \"Subject\" puedes usar macros _agent_ o _module_ para el asunto " -"del email." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:63 -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 puede utilizar las macros. Hay mas información " -"acerca de las macros, haz click en el icono de ayuda." - -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:69 -msgid "Click on Create button to create the action." -msgstr "Haz click en el botón de crear, para crear la acción." - -#: ../../include/help/clippy/homepage.php:59 -msgid "Hi, can I help you?" -msgstr "Buenas. ¿Te puedo ayudar?" - -#: ../../include/help/clippy/homepage.php:60 -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." -msgstr "" -"Permiteme presentarme a mi mismo: Yo soy Pandorin, el molesto asistente de " -"Pandora FMS. Puedes seguir mis pasos para hacer tareas básicas en Pandora " -"FMS o puedes cerrarme y nunca volverme a ver." - -#: ../../include/help/clippy/homepage.php:67 -msgid "Close this wizard and don't open it again." -msgstr "Cierra el asistente y no vuelva a aparecer otra vez." - -#: ../../include/help/clippy/homepage.php:81 -msgid "Which task would you like to do first?" -msgstr "¿Qué tarea le gustaría hacer primero?" - -#: ../../include/help/clippy/homepage.php:85 -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" - -#: ../../include/help/clippy/homepage.php:90 -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:209 -msgid "" -"The first thing you have to do is to setup the config email in the Pandora " -"FMS Server." -msgstr "" -"La primera cosa que tienes que hacer es configurar el email en el servidor " -"de Pandora FMS." - -#: ../../include/help/clippy/homepage.php:213 -msgid "If you have it already configured you can go to the next step." -msgstr "Si ya lo tienes ya configurado, puedes ir al siguiente paso." - -#: ../../include/help/clippy/homepage.php:218 -msgid "Now, pull down the Manage alerts menu and click on Actions. " -msgstr "Ahora, abra el menú Administrar alertas y haga click en Acciones. " - -#: ../../include/help/clippy/interval_agent_min.php:39 -msgid "Interval Agent." -msgstr "Intervalo de agente" - -#: ../../include/help/clippy/interval_agent_min.php:44 -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, tenga en cuenta que no se recomienda que tengan los agentes con " -"un intervalo de monitorización por debajo de 300 segundos. Esto tendrá un " -"impacto serio en el rendimiento del servidor. Por ejemplo, tener 200 agentes " -"con un intervalo de un minuto, es lo mismo que tener 1.000 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/module_unknow.php:39 -msgid "You have unknown modules in this agent." -msgstr "Tienes módulos en estado desconocido en este agente." - -#: ../../include/help/clippy/module_unknow.php:44 -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:39 -msgid "You have non initialized modules" -msgstr "Tienes módulos sin inicializar." - -#: ../../include/help/clippy/modules_not_init.php:44 -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 debe ser inicializado y seras capaz de 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 puede ver / editar en la sección de administración " -"del módulo, en el administrador de agente." - -#: ../../include/help/clippy/modules_not_learning_mode.php:40 -msgid "" -"Please note that you have your agent setup to do not add new modules coming " -"from the data XML." -msgstr "" -"Por favor, tenga en cuenta que si no tiene activado el modo aprendizaje no " -"se añadirán nuevos módulos que vengan en el XML." - -#: ../../include/help/clippy/modules_not_learning_mode.php:41 -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 fichero de configuración, no se tendrá en" - -#: ../../include/help/clippy/modules_not_learning_mode.php:42 -msgid "" -"You should use the \"normal\" mode (non learn) only when you don't intend to " -"add more modules to the agent." -msgstr "" -"Debería usar el modo \"normal\" (no aprendizaje) solo cuando no tenga " -"intención de añadir más módulos al agente." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:35 -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 " -"\"critico\" para enlazarle una alerta." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:39 -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 sólo una parte de ella." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:44 -msgid "Click on Show button to get the modules list filtered." -msgstr "Haz click en botón Mostrar para obtener la lista filtrada." - -#: ../../include/help/clippy/operation_agentes_status_monitor.php:60 -msgid "" -"Now, to edit the module, click on the wrench that appears in the type column." -msgstr "" -"Ahora, para editar el módulo, haz click en la llave fija que aparece en la " -"columna del tipo." - -#: ../../include/help/clippy/operation_agentes_ver_agente.php:36 -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 la alerta ha sido creada. Haz click 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:37 -msgid "" -"And restart your pandora server to read again general configuration tokens." -msgstr "" -"Y reinicia tu servidor de Pandora para leer otra vez lo tokens generales de " -"configuración." - -#: ../../include/help/clippy/server_queued_modules.php:39 -msgid "Excesive Queued." -msgstr "Encolamiento excesivo" - -#: ../../include/help/clippy/server_queued_modules.php:44 -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 "" -"Tiene demasiados ítems en cola. Esto puede pasar si su 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ía considerar la obtención de soporte sobre esto." - -#: ../../include/help/clippy/servers_down.php:39 -msgid "All servers down" -msgstr "Todo los servidores están caídos" - -#: ../../include/help/clippy/servers_down.php:44 -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 "" -"Usted puede activar todos los servidores. Tiene que ir al terminal de linux " -"y ejecutar el siguiente comando: \"sudo /etc/init.d/pandora_server " -"restart\". Es posible que necesite introducir la contraseña de root." - -#: ../../include/help/clippy/topology_group.php:39 -msgid "Topology Group" -msgstr "Tipología de grupo" - -#: ../../include/help/clippy/topology_group.php:44 -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 "" -"Tenga en cuenta que el grupo mapas de topología no muestran la relación " -"padre entre los nodos , sólo muestra el grupo padre y el agente de " -"distribución dentro de ellos " - -#: ../../mobile/include/functions_web.php:81 -#: ../../mobile/include/ui.class.php:257 -#: ../../enterprise/meta/general/footer.php:26 -#, php-format -msgid "Pandora FMS %s - Build %s" -msgstr "Pandora FMS %s - Revisión %s" - -#: ../../mobile/include/functions_web.php:82 -#: ../../mobile/include/ui.class.php:258 -#: ../../enterprise/extensions/cron/functions.php:458 -#: ../../enterprise/extensions/cron/functions.php:558 -msgid "Generated at" -msgstr "Generado el" - -#: ../../mobile/include/ui.class.php:87 ../../mobile/include/ui.class.php:168 -msgid "Pandora FMS mobile" -msgstr "Pandora FMS móvil" - -#: ../../mobile/include/ui.class.php:185 ../../mobile/operation/home.php:128 -msgid "Home" -msgstr "Inicio" - -#: ../../mobile/include/ui.class.php:630 -msgid "Not found header." -msgstr "Encabezado no encontrado" - -#: ../../mobile/include/ui.class.php:633 -msgid "Not found content." -msgstr "Contenido no encontrado" - -#: ../../mobile/include/ui.class.php:636 -msgid "Not found footer." -msgstr "Pie de página no encontrado" - -#: ../../mobile/include/ui.class.php:639 -msgid "Incorrect form." -msgstr "Forma incorrecta" - -#: ../../mobile/include/ui.class.php:642 -msgid "Incorrect grid." -msgstr "Matriz incorrecta" - -#: ../../mobile/include/ui.class.php:645 -msgid "Incorrect collapsible." -msgstr "Plegable incorrecto" - -#: ../../mobile/include/user.class.php:152 -#: ../../mobile/include/user.class.php:170 -#: ../../mobile/include/user.class.php:177 -msgid "Double authentication failed" -msgstr "Fallo en la doble autenticación" - -#: ../../mobile/include/user.class.php:153 -msgid "Secret code not found" -msgstr "Código secreto no encontrado" - -#: ../../mobile/include/user.class.php:154 -msgid "Please contact the administrator to reset your double authentication" -msgstr "" -"Por favor contacte el administrador para restablecer la doble autenticación" - -#: ../../mobile/include/user.class.php:178 -msgid "There was an error checking the code" -msgstr "Hubo un error verificando el código" - -#: ../../mobile/include/user.class.php:211 -msgid "Login Failed" -msgstr "Indentificación fallida" - -#: ../../mobile/include/user.class.php:212 -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:220 -msgid "Login out" -msgstr "Cerrar sesión" - -#: ../../mobile/include/user.class.php:244 -msgid "user" -msgstr "Usuario" - -#: ../../mobile/include/user.class.php:251 -msgid "password" -msgstr "contraseña" - -#: ../../mobile/include/user.class.php:301 -#: ../../mobile/include/user.class.php:302 -msgid "Authenticator code" -msgstr "Código de autenticación" - -#: ../../mobile/index.php:241 ../../mobile/operation/agent.php:67 -#: ../../mobile/operation/agents.php:146 ../../mobile/operation/alerts.php:142 -#: ../../mobile/operation/events.php:431 ../../mobile/operation/groups.php:54 -#: ../../mobile/operation/module_graph.php:271 -#: ../../mobile/operation/modules.php:174 -#: ../../mobile/operation/networkmap.php:79 -#: ../../mobile/operation/networkmaps.php:100 -#: ../../mobile/operation/tactical.php:72 -#: ../../mobile/operation/visualmap.php:66 -#: ../../mobile/operation/visualmaps.php:84 -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" -msgstr "" -"El acceso a esta página está restringido a usuarios autorizados, contacte " -"con el administrador del sistema si necesita asistencia.

    Todos los " -"intentos de acceso a esta página son grabados en los registros de seguridad " -"de Pandora FMS." - -#: ../../mobile/operation/agent.php:108 ../../mobile/operation/agents.php:162 -#: ../../mobile/operation/alerts.php:158 ../../mobile/operation/events.php:568 -#: ../../mobile/operation/groups.php:69 -#: ../../mobile/operation/module_graph.php:368 -#: ../../mobile/operation/module_graph.php:377 -#: ../../mobile/operation/modules.php:190 -#: ../../mobile/operation/networkmap.php:98 -#: ../../mobile/operation/networkmaps.php:116 -#: ../../mobile/operation/tactical.php:88 -#: ../../mobile/operation/visualmap.php:103 -#: ../../mobile/operation/visualmaps.php:100 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:261 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:350 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:422 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:614 -#: ../../enterprise/mobile/operation/dashboard.php:91 -#: ../../enterprise/mobile/operation/dashboard.php:225 -msgid "Back" -msgstr "Atrás" - -#: ../../mobile/operation/agent.php:112 -msgid "PandoraFMS: Agents" -msgstr "PandoraFMS: Agentes" - -#: ../../mobile/operation/agent.php:118 -msgid "No agent found" -msgstr "No se han encontrado agentes" - -#: ../../mobile/operation/agent.php:200 -msgid "Modules by status" -msgstr "Módulos por estado" - -#: ../../mobile/operation/agent.php:269 -#, php-format -msgid "Last %s Events" -msgstr "Últimos %s Eventos" - -#: ../../mobile/operation/agents.php:166 -#, php-format -msgid "Filter Agents by %s" -msgstr "Filtros de agentes por %s" - -#: ../../mobile/operation/agents.php:201 ../../mobile/operation/alerts.php:213 -#: ../../mobile/operation/events.php:659 -#: ../../mobile/operation/modules.php:261 -#: ../../mobile/operation/networkmaps.php:150 -msgid "Apply Filter" -msgstr "Aplicar el filtro" - -#: ../../mobile/operation/agents.php:370 -msgid "No agents" -msgstr "Sin agentes" - -#: ../../mobile/operation/agents.php:460 ../../mobile/operation/alerts.php:306 -#: ../../mobile/operation/events.php:1070 -#: ../../mobile/operation/modules.php:786 -#: ../../mobile/operation/networkmaps.php:216 -msgid "(Default)" -msgstr "Por defecto" - -#: ../../mobile/operation/agents.php:466 ../../mobile/operation/alerts.php:316 -#: ../../mobile/operation/events.php:1096 -#: ../../mobile/operation/modules.php:793 -#: ../../mobile/operation/networkmaps.php:222 -#, php-format -msgid "Group: %s" -msgstr "Grupo: %s" - -#: ../../mobile/operation/agents.php:470 ../../mobile/operation/alerts.php:320 -#: ../../mobile/operation/events.php:1112 -#: ../../mobile/operation/modules.php:805 -#, php-format -msgid "Status: %s" -msgstr "Estado: %s" - -#: ../../mobile/operation/agents.php:474 ../../mobile/operation/alerts.php:324 -#: ../../mobile/operation/modules.php:809 -#, php-format -msgid "Free Search: %s" -msgstr "Búsqueda libre: %s" - -#: ../../mobile/operation/alerts.php:36 -#: ../../operation/agentes/alerts_status.functions.php:72 -msgid "All (Enabled)" -msgstr "Todos (Habilitados)" - -#: ../../mobile/operation/alerts.php:39 -#: ../../operation/agentes/alerts_status.functions.php:75 -#: ../../operation/snmpconsole/snmp_view.php:162 -#: ../../operation/snmpconsole/snmp_view.php:926 -msgid "Not fired" -msgstr "No disparado" - -#: ../../mobile/operation/alerts.php:162 -#, php-format -msgid "Filter Alerts by %s" -msgstr "Filtros de alertas por %s" - -#: ../../mobile/operation/alerts.php:272 -msgid "Last Fired" -msgstr "Último/a lanzado/a" - -#: ../../mobile/operation/alerts.php:282 -msgid "No alerts" -msgstr "Sin alertas" - -#: ../../mobile/operation/alerts.php:312 -#, php-format -msgid "Standby: %s" -msgstr "Standby: %s" - -#: ../../mobile/operation/events.php:382 ../../mobile/operation/events.php:383 -#: ../../mobile/operation/events.php:590 ../../mobile/operation/events.php:591 -msgid "Preset Filters" -msgstr "Fijar los filtros" - -#: ../../mobile/operation/events.php:443 -msgid "ERROR: Event detail" -msgstr "ERROR: Detalles del evento" - -#: ../../mobile/operation/events.php:445 -msgid "Error connecting to DB pandora." -msgstr "Error al conectar a la base de datos de Pandora" - -#: ../../mobile/operation/events.php:458 -msgid "Event detail" -msgstr "Detalles del evento" - -#: ../../mobile/operation/events.php:541 -msgid "Sucessful validate" -msgstr "Validación correcta" - -#: ../../mobile/operation/events.php:543 -msgid "Fail validate" -msgstr "Validación fallida" - -#: ../../mobile/operation/events.php:575 -#, php-format -msgid "Filter Events by %s" -msgstr "Filtrar eventos por %s" - -#: ../../mobile/operation/events.php:1076 -#, php-format -msgid "Filter: %s" -msgstr "Filtro: %s" - -#: ../../mobile/operation/events.php:1089 -#, php-format -msgid "Severity: %s" -msgstr "Severidad: %s" - -#: ../../mobile/operation/events.php:1108 -#: ../../mobile/operation/networkmaps.php:229 -#, php-format -msgid "Type: %s" -msgstr "Tipo: %s" - -#: ../../mobile/operation/events.php:1116 -#, php-format -msgid "Free search: %s" -msgstr "Búsqueda libre: %s" - -#: ../../mobile/operation/events.php:1120 -#, php-format -msgid "Hours: %s" -msgstr "Horas: %s" - -#: ../../mobile/operation/groups.php:141 ../../operation/tree.php:292 -#: ../../enterprise/dashboard/widgets/tree_view.php:216 -#: ../../enterprise/include/functions_reporting_csv.php:463 -msgid "Unknown modules" -msgstr "Módulos desconocidos" - -#: ../../mobile/operation/groups.php:145 ../../operation/tree.php:297 -#: ../../enterprise/dashboard/widgets/tree_view.php:221 -#: ../../enterprise/include/functions_reporting_csv.php:464 -msgid "Not init modules" -msgstr "Módulos no inicializados" - -#: ../../mobile/operation/groups.php:149 ../../operation/tree.php:302 -#: ../../enterprise/dashboard/widgets/tree_view.php:226 -#: ../../enterprise/include/functions_reporting_csv.php:460 -msgid "Normal modules" -msgstr "Módulos Normales" - -#: ../../mobile/operation/groups.php:153 ../../operation/tree.php:287 -#: ../../enterprise/dashboard/widgets/tree_view.php:211 -#: ../../enterprise/include/functions_reporting_csv.php:462 -msgid "Warning modules" -msgstr "Módulos de advertencia" - -#: ../../mobile/operation/groups.php:157 ../../operation/tree.php:282 -#: ../../enterprise/dashboard/widgets/tree_view.php:206 -#: ../../enterprise/include/functions_reporting_csv.php:461 -msgid "Critical modules" -msgstr "Módulos críticos" - -#: ../../mobile/operation/home.php:135 ../../operation/search_results.php:64 -msgid "Global search" -msgstr "Búsqueda global" - -#: ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:373 -#, php-format -msgid "PandoraFMS: %s" -msgstr "PandoraFMS: %s" - -#: ../../mobile/operation/module_graph.php:387 -#, php-format -msgid "Options for %s : %s" -msgstr "Opciones para %s: %s" - -#: ../../mobile/operation/module_graph.php:394 -msgid "Show Alerts" -msgstr "Mostrar alertas" - -#: ../../mobile/operation/module_graph.php:402 -msgid "Show Events" -msgstr "Mostrar eventos" - -#: ../../mobile/operation/module_graph.php:410 -#: ../../operation/agentes/stat_win.php:389 -msgid "Time compare (Separated)" -msgstr "Comparación de tiempo (por separado)" - -#: ../../mobile/operation/module_graph.php:426 -#: ../../operation/agentes/stat_win.php:395 -msgid "Show unknown graph" -msgstr "Mostrar gráficas desconocidas" - -#: ../../mobile/operation/module_graph.php:434 -msgid "Avg Only" -msgstr "Solo promedio" - -#: ../../mobile/operation/module_graph.php:439 -msgid "Time range (hours)" -msgstr "Rango de tiempo (horas)" - -#: ../../mobile/operation/module_graph.php:452 -#: ../../operation/agentes/exportdata.php:310 -#: ../../operation/agentes/graphs.php:132 -#: ../../operation/agentes/interface_traffic_graph_win.php:235 -#: ../../operation/agentes/stat_win.php:314 -msgid "Begin date" -msgstr "Fecha de inicio" - -#: ../../mobile/operation/module_graph.php:459 -msgid "Update graph" -msgstr "Actualizar gráfica" - -#: ../../mobile/operation/module_graph.php:468 -msgid "Error get the graph" -msgstr "Error al obtener gráfica" - -#: ../../mobile/operation/modules.php:194 -#, php-format -msgid "Filter Modules by %s" -msgstr "Filtrar Módulos por %s" - -#: ../../mobile/operation/modules.php:543 -msgid "Interval." -msgstr "Intervalo" - -#: ../../mobile/operation/modules.php:549 -msgid "Last update." -msgstr "Última actualización" - -#: ../../mobile/operation/modules.php:801 -#, php-format -msgid "Module group: %s" -msgstr "Grupos de módulos: %s" - -#: ../../mobile/operation/modules.php:814 -#, php-format -msgid "Tag: %s" -msgstr "Etiqueta: %s" - -#: ../../mobile/operation/networkmap.php:164 -#: ../../mobile/operation/networkmaps.php:202 -msgid "No networkmaps" -msgstr "No hay mapas de red" - -#: ../../mobile/operation/networkmap.php:222 -#: ../../mobile/operation/networkmap.php:234 -#: ../../enterprise/extensions/vmware/vmware_view.php:1362 -#: ../../enterprise/extensions/vmware/vmware_view.php:1394 -#: ../../enterprise/extensions/vmware/vmware_view.php:1410 -#: ../../enterprise/operation/policies/networkmap.policies.php:70 -#: ../../enterprise/operation/policies/networkmap.policies.php:119 -#: ../../enterprise/operation/policies/networkmap.policies.php:133 -msgid "Map could not be generated" -msgstr "El mapa no pudo ser generado" - -#: ../../mobile/operation/networkmaps.php:112 -msgid "Networkmaps" -msgstr "Mapas de red" - -#: ../../mobile/operation/networkmaps.php:120 -#, php-format -msgid "Filter Networkmaps by %s" -msgstr "Filtrar mapas de red por %s" - -#: ../../mobile/operation/tactical.php:193 -msgid "Last activity" -msgstr "Última actividad" - -#: ../../mobile/operation/visualmaps.php:96 -msgid "Visual consoles" -msgstr "Consola visual" - -#: ../../mobile/operation/visualmaps.php:146 -msgid "No maps defined" -msgstr "No hay mapas definidos" - -#: ../../operation/agentes/agent_fields.php:38 -#: ../../operation/agentes/status_monitor.php:539 -msgid "Agent custom fields" -msgstr "Campos personalizados de agente" - -#: ../../operation/agentes/agent_fields.php:48 -#: ../../operation/agentes/custom_fields.php:87 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1183 -msgid "empty" -msgstr "vacío" - -#: ../../operation/agentes/alerts_status.functions.php:32 -#: ../../enterprise/godmode/alerts/alert_events_list.php:343 -msgid "Alert(s) validated" -msgstr "Alerta(s) validada(s)" - -#: ../../operation/agentes/alerts_status.functions.php:33 -msgid "Error processing alert(s)" -msgstr "Error al procesar la(s) alerta(s)" - -#: ../../operation/agentes/alerts_status.functions.php:86 -#: ../../operation/agentes/status_monitor.php:341 -#: ../../operation/agentes/status_monitor.php:344 -msgid "Only it is show tags in use." -msgstr "Mostrar sólo etiquetas en uso" - -#: ../../operation/agentes/alerts_status.functions.php:91 -#: ../../operation/agentes/status_monitor.php:349 -msgid "No tags" -msgstr "Sin etiquetas" - -#: ../../operation/agentes/alerts_status.functions.php:97 -#: ../../operation/agentes/datos_agente.php:202 -msgid "Free text for search" -msgstr "Búsqueda de texto libre" - -#: ../../operation/agentes/alerts_status.functions.php:99 -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/alerts_status.functions.php:109 -msgid "No actions" -msgstr "Sin Acciones" - -#: ../../operation/agentes/alerts_status.php:108 -msgid "Full list of alerts" -msgstr "Lista completa de alertas" - -#: ../../operation/agentes/alerts_status.php:135 -#: ../../enterprise/meta/general/main_header.php:103 -msgid "Alerts view" -msgstr "Vista de alertas" - -#: ../../operation/agentes/alerts_status.php:144 -msgid "Insufficient permissions to validate alerts" -msgstr "Permisos insuficientes para validar alertas" - -#: ../../operation/agentes/alerts_status.php:599 -msgid "No alerts found" -msgstr "No se encontró ninguna alerta" - -#: ../../operation/agentes/custom_fields.php:52 -msgid "No fields defined" -msgstr "No se han definido campos" - -#: ../../operation/agentes/datos_agente.php:165 -msgid "Received data from" -msgstr "Datos recibidos de" - -#: ../../operation/agentes/datos_agente.php:172 -msgid "Main database" -msgstr "Base de datos principal" - -#: ../../operation/agentes/datos_agente.php:172 -#: ../../enterprise/godmode/menu.php:102 -#: ../../enterprise/include/functions_setup.php:33 -#: ../../enterprise/include/functions_setup.php:63 -msgid "History database" -msgstr "BBDD de histórico" - -#: ../../operation/agentes/datos_agente.php:173 -msgid "" -"Switch between the main database and the history database to retrieve module " -"data" -msgstr "" -"Cambiar entre base de datos principal y de histórico para recoger los datos " -"de los módulos" - -#: ../../operation/agentes/ehorus.php:30 -msgid "Missing agent id" -msgstr "Falta id de agente" - -#: ../../operation/agentes/ehorus.php:48 -msgid "Missing ehorus agent id" -msgstr "Falta id de agente de ehorus" - -#: ../../operation/agentes/ehorus.php:80 -msgid "There was an error retrieving an authorization token" -msgstr "Ha habido un error en la recepción del token de autorización" - -#: ../../operation/agentes/ehorus.php:93 -#: ../../operation/agentes/ehorus.php:129 -msgid "There was an error processing the response" -msgstr "Ha habido un error en el procesamiento de la respuesta" - -#: ../../operation/agentes/ehorus.php:116 -msgid "There was an error retrieving the agent data" -msgstr "Ha habido un error en la obtención de los datos del agente" - -#: ../../operation/agentes/ehorus.php:134 -msgid "Remote management of this agent with eHorus" -msgstr "Control remoto de este agente con eHorus" - -#: ../../operation/agentes/ehorus.php:136 -msgid "Launch" -msgstr "Iniciar" - -#: ../../operation/agentes/ehorus.php:142 -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:144 -msgid "Reload the page to request a new authorization token" -msgstr "Refresque la página para conseguir otro token de autorización" - -#: ../../operation/agentes/estado_agente.php:156 -msgid "Sucessfully deleted agent" -msgstr "Agente borrado correctamente" - -#: ../../operation/agentes/estado_agente.php:158 -msgid "There was an error message deleting the agent" -msgstr "Hubo errores al intentar borrar el agente" - -#: ../../operation/agentes/estado_agente.php:594 -msgid "Remote config" -msgstr "Configuración remota" - -#: ../../operation/agentes/estado_generalagente.php:42 -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:119 -msgid "" -"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." - -#: ../../operation/agentes/estado_generalagente.php:196 -msgid "Agent contact" -msgstr "Contacto de agente" - -#: ../../operation/agentes/estado_generalagente.php:218 -msgid "Next contact" -msgstr "Siguiente contacto" - -#: ../../operation/agentes/estado_generalagente.php:241 -msgid "Agent info" -msgstr "Información del agente" - -#: ../../operation/agentes/estado_generalagente.php:313 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1128 -msgid "There is no GIS data." -msgstr "No hay datos GIS" - -#: ../../operation/agentes/estado_generalagente.php:388 -msgid "Active incident on this agent" -msgstr "Activar incidencia a este agente" - -#: ../../operation/agentes/estado_generalagente.php:397 -#: ../../enterprise/dashboard/widget.php:63 -#: ../../enterprise/include/functions_reporting_csv.php:1034 -#: ../../enterprise/include/functions_reporting_csv.php:1147 -#: ../../enterprise/include/functions_reporting_csv.php:1294 -#: ../../enterprise/include/functions_reporting_csv.php:1359 -msgid "Title" -msgstr "Título" - -#: ../../operation/agentes/estado_generalagente.php:539 -msgid "Events info (24hr.)" -msgstr "Información de eventos (24hr.)" - -#: ../../operation/agentes/estado_generalagente.php:553 -#: ../../operation/agentes/pandora_networkmap.view.php:373 -msgid "Last contact: " -msgstr "Último contacto: " - -#: ../../operation/agentes/estado_generalagente.php:621 -msgid "Refresh data" -msgstr "Refrescar datos" - -#: ../../operation/agentes/estado_generalagente.php:623 -msgid "Force remote checks" -msgstr "Forzar chequeo remoto" - -#: ../../operation/agentes/estado_monitores.php:35 -msgid "Tag's information" -msgstr "Información de etiquetas" - -#: ../../operation/agentes/estado_monitores.php:81 -msgid "Relationship information" -msgstr "Información de relaciones" - -#: ../../operation/agentes/estado_monitores.php:128 -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:129 -msgid "Full list of monitors" -msgstr "Lista completa de monitores" - -#: ../../operation/agentes/estado_monitores.php:154 -msgid "List of modules" -msgstr "Lista de módulos" - -#: ../../operation/agentes/estado_monitores.php:367 -#: ../../operation/agentes/status_monitor.php:1530 -#: ../../operation/tree.php:357 -#: ../../enterprise/dashboard/widgets/tree_view.php:283 -msgid "Module: " -msgstr "Módulo: " - -#: ../../operation/agentes/estado_monitores.php:445 -msgid "Status:" -msgstr "Estado:" - -#: ../../operation/agentes/estado_monitores.php:451 -msgid "Not Normal" -msgstr "No normal" - -#: ../../operation/agentes/estado_monitores.php:459 -msgid "Free text for search (*):" -msgstr "Texto libre de búsqueda (*)" - -#: ../../operation/agentes/estado_monitores.php:460 -msgid "Search by module name, list matches." -msgstr "Búsqueda por nombre del módulo, lista las coincidencias." - -#: ../../operation/agentes/estado_monitores.php:475 -msgid "Reset" -msgstr "Reiniciar" - -#: ../../operation/agentes/exportdata.csv.php:68 -#: ../../operation/agentes/exportdata.excel.php:67 -#: ../../operation/agentes/exportdata.php:82 -msgid "Invalid time specified" -msgstr "Hora especificada no válida" - -#: ../../operation/agentes/exportdata.csv.php:182 -#: ../../operation/agentes/exportdata.excel.php:165 -#: ../../operation/agentes/exportdata.php:218 -msgid "No modules specified" -msgstr "No se especificó ningún módulo" - -#: ../../operation/agentes/exportdata.php:36 ../../operation/menu.php:399 -msgid "Export data" -msgstr "Exportar datos" - -#: ../../operation/agentes/exportdata.php:276 -msgid "No modules of type string. You can not calculate their average" -msgstr "No hay módulos de tipo cadena. No puede calcular su media." - -#: ../../operation/agentes/exportdata.php:319 -#: ../../enterprise/include/functions_netflow_pdf.php:163 -#: ../../enterprise/operation/log/log_viewer.php:223 -msgid "End date" -msgstr "Fecha final" - -#: ../../operation/agentes/exportdata.php:327 -msgid "Export type" -msgstr "Tipo de exportación" - -#: ../../operation/agentes/exportdata.php:332 -msgid "MS Excel" -msgstr "MS Excel" - -#: ../../operation/agentes/exportdata.php:333 -msgid "Average per hour/day" -msgstr "Media por hora/día" - -#: ../../operation/agentes/gis_view.php:91 -msgid "Last position in " -msgstr "última posición en " - -#: ../../operation/agentes/gis_view.php:98 -msgid "Period to show data as path" -msgstr "periodo para mostrar datos como ruta" - -#: ../../operation/agentes/gis_view.php:102 -msgid "Refresh path" -msgstr "refrescar ruta" - -#: ../../operation/agentes/gis_view.php:105 -msgid "Positional data from the last" -msgstr "Datos de posición desde el último" - -#: ../../operation/agentes/gis_view.php:144 -msgid "This agent doesn't have any GIS data." -msgstr "Este agente no tiene ningún dato GIS." - -#: ../../operation/agentes/gis_view.php:172 -#, php-format -msgid "%s Km" -msgstr "%s Km" - -#: ../../operation/agentes/gis_view.php:184 -msgid "Distance" -msgstr "Distancia" - -#: ../../operation/agentes/gis_view.php:185 -msgid "# of Packages" -msgstr "# de paquetes" - -#: ../../operation/agentes/gis_view.php:186 -#: ../../operation/gis_maps/ajax.php:222 -msgid "Manual placement" -msgstr "Colocación manual" - -#: ../../operation/agentes/gis_view.php:189 -msgid "positional data" -msgstr "datos de posición" - -#: ../../operation/agentes/graphs.php:86 -msgid "Other modules" -msgstr "Otros módulos" - -#: ../../operation/agentes/graphs.php:91 -msgid "Modules network no proc" -msgstr "Módulos de red sin proc" - -#: ../../operation/agentes/graphs.php:136 -#: ../../operation/agentes/interface_traffic_graph_win.php:248 -#: ../../operation/agentes/stat_win.php:338 -#: ../../operation/reporting/graph_viewer.php:217 -msgid "Time range" -msgstr "Rango de tiempo" - -#: ../../operation/agentes/graphs.php:140 -#: ../../operation/agentes/stat_win.php:345 -msgid "Show events" -msgstr "Mostrar eventos" - -#: ../../operation/agentes/graphs.php:142 -#: ../../operation/agentes/stat_win.php:362 -msgid "Show alerts" -msgstr "Mostrar alertas" - -#: ../../operation/agentes/graphs.php:143 -msgid "the combined graph does not show the alerts into this graph" -msgstr "Las gráficas combinadas no muestran las alertas" - -#: ../../operation/agentes/graphs.php:145 -msgid "Show as one combined graph" -msgstr "Mostrar como una gráfica combinada" - -#: ../../operation/agentes/graphs.php:147 -msgid "one combined graph" -msgstr "gráfica combinada" - -#: ../../operation/agentes/graphs.php:150 -msgid "several graphs for each module" -msgstr "varias gráficas por cada módulo" - -#: ../../operation/agentes/graphs.php:157 -msgid "Save as custom graph" -msgstr "Guardar como gráfica personalizada" - -#: ../../operation/agentes/graphs.php:163 -msgid "Filter graphs" -msgstr "Filtrar gráficas" - -#: ../../operation/agentes/graphs.php:210 -msgid "There was an error loading the graph" -msgstr "Sucedió un error al cargar la gráfica" - -#: ../../operation/agentes/graphs.php:218 -#: ../../operation/agentes/graphs.php:221 -msgid "Name custom graph" -msgstr "Nombre de gráfica personalizada" - -#: ../../operation/agentes/graphs.php:243 -msgid "Save custom graph" -msgstr "Guardar gráfica personalizada" - -#: ../../operation/agentes/graphs.php:264 -msgid "Custom graph create from the tab graphs in the agent." -msgstr "Creada gráfica personalizada desde la sección de gráficas del agente" - -#: ../../operation/agentes/group_view.php:117 -msgid "Summary of the status groups" -msgstr "Resumen de los grupos por estatus" - -#: ../../operation/agentes/interface_traffic_graph_win.php:48 -#: ../../operation/agentes/stat_win.php:44 -msgid "There was a problem connecting with the node" -msgstr "Hubo un problema conectando con el nodo" - -#: ../../operation/agentes/interface_traffic_graph_win.php:66 -msgid "In" -msgstr "En" - -#: ../../operation/agentes/interface_traffic_graph_win.php:67 -msgid "Out" -msgstr "Fuera" - -#: ../../operation/agentes/interface_traffic_graph_win.php:210 -#: ../../operation/agentes/stat_win.php:268 -msgid "Pandora FMS Graph configuration menu" -msgstr "Menú de configuración de gráficos" - -#: ../../operation/agentes/interface_traffic_graph_win.php:212 -#: ../../operation/agentes/stat_win.php:270 -msgid "Please, make your changes and apply with the Reload button" -msgstr "Haga sus cambios y aplíquelos con el botón Actualizar." - -#: ../../operation/agentes/interface_traffic_graph_win.php:229 -#: ../../operation/agentes/stat_win.php:297 -msgid "Refresh time" -msgstr "Tiempo de actualización" - -#: ../../operation/agentes/interface_traffic_graph_win.php:242 -#: ../../operation/agentes/stat_win.php:320 -msgid "Begin time" -msgstr "Comenzar el tiempo" - -#: ../../operation/agentes/interface_traffic_graph_win.php:254 -#: ../../operation/agentes/stat_win.php:377 -msgid "Show percentil" -msgstr "Mostrar el percentil" - -#: ../../operation/agentes/interface_traffic_graph_win.php:260 -#: ../../operation/agentes/stat_win.php:326 -msgid "Zoom factor" -msgstr "Factor de ampliación" - -#: ../../operation/agentes/interface_traffic_graph_win.php:287 -#: ../../operation/agentes/stat_win.php:421 -msgid "Reload" -msgstr "Actualizar" - -#: ../../operation/agentes/pandora_networkmap.editor.php:133 -#: ../../operation/agentes/pandora_networkmap.php:369 -#: ../../operation/agentes/pandora_networkmap.view.php:701 -msgid "Networkmap" -msgstr "Mapa de red" - -#: ../../operation/agentes/pandora_networkmap.editor.php:162 -#: ../../operation/agentes/pandora_networkmap.view.php:703 -msgid "Not found networkmap." -msgstr "No se encontró ningún networkmap." - -#: ../../operation/agentes/pandora_networkmap.editor.php:187 -msgid "Node radius" -msgstr "Radio de los nodos" - -#: ../../operation/agentes/pandora_networkmap.editor.php:198 -msgid "CIDR IP mask" -msgstr "Máscara CIDR" - -#: ../../operation/agentes/pandora_networkmap.editor.php:200 -msgid "Source from recon task" -msgstr "Origen de tarea recon" - -#: ../../operation/agentes/pandora_networkmap.editor.php:202 -msgid "" -"It is setted any recon task, the nodes get from the recontask IP mask " -"instead from the group." -msgstr "" -"Si está seleccionada alguna tarea recon, los nodos se obtendrán de la " -"máscara IP de la recontask en lugar del grupo" - -#: ../../operation/agentes/pandora_networkmap.editor.php:206 -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:208 -msgid "Source from CIDR IP mask" -msgstr "Origen de máscara CIDR" - -#: ../../operation/agentes/pandora_networkmap.editor.php:212 -msgid "Don't show subgroups:" -msgstr "No mostrar subgrupos" - -#: ../../operation/agentes/pandora_networkmap.editor.php:225 -msgid "Method generation networkmap" -msgstr "Método de generación de mapas de red" - -#: ../../operation/agentes/pandora_networkmap.editor.php:237 -msgid "Save networkmap" -msgstr "Guardar mapa de red" - -#: ../../operation/agentes/pandora_networkmap.editor.php:243 -msgid "Update networkmap" -msgstr "Actualizar mapa de red" - -#: ../../operation/agentes/pandora_networkmap.php:153 -msgid "Succesfully created" -msgstr "Creado correctamente" - -#: ../../operation/agentes/pandora_networkmap.php:247 -msgid "Succesfully updated" -msgstr "Actualizado correctamente" - -#: ../../operation/agentes/pandora_networkmap.php:264 -msgid "Succesfully duplicate" -msgstr "Duplicado correctamente" - -#: ../../operation/agentes/pandora_networkmap.php:264 -#: ../../enterprise/godmode/policies/policy_modules.php:1173 -msgid "Could not be duplicated" -msgstr "No se puede duplicar" - -#: ../../operation/agentes/pandora_networkmap.php:273 -msgid "Succesfully deleted" -msgstr "Eliminado correctamente" - -#: ../../operation/agentes/pandora_networkmap.php:470 -msgid "Pending to generate" -msgstr "Pendiente de generar" - -#: ../../operation/agentes/pandora_networkmap.php:490 -#: ../../enterprise/operation/services/services.list.php:458 -msgid "Config" -msgstr "Config" - -#: ../../operation/agentes/pandora_networkmap.php:506 -msgid "There are no maps defined." -msgstr "No hay mapas definidos." - -#: ../../operation/agentes/pandora_networkmap.php:513 -msgid "Create networkmap" -msgstr "Crear mapa de red" - -#: ../../operation/agentes/pandora_networkmap.view.php:111 -msgid "Success be updated." -msgstr "Actualizado correctamente" - -#: ../../operation/agentes/pandora_networkmap.view.php:114 -#: ../../enterprise/extensions/ipam/ipam_action.php:190 -msgid "Could not be updated." -msgstr "No se puede actualizar" - -#: ../../operation/agentes/pandora_networkmap.view.php:227 -msgid "Name: " -msgstr "Nombre: " - -#: ../../operation/agentes/pandora_networkmap.view.php:258 -#: ../../operation/agentes/status_monitor.php:1035 -msgid "(Adopt) " -msgstr "Adoptar " - -#: ../../operation/agentes/pandora_networkmap.view.php:268 -#: ../../operation/agentes/status_monitor.php:1045 -msgid "(Unlinked) (Adopt) " -msgstr "(Sin enlazar) (Adoptar) " - -#: ../../operation/agentes/pandora_networkmap.view.php:272 -#: ../../operation/agentes/status_monitor.php:1049 -msgid "(Unlinked) " -msgstr "(Sin enlazar) " - -#: ../../operation/agentes/pandora_networkmap.view.php:277 -msgid "Policy: " -msgstr "Política: " - -#: ../../operation/agentes/pandora_networkmap.view.php:326 -#: ../../enterprise/extensions/vmware/vmware_manager.php:202 -msgid "Status: " -msgstr "Estado: " - -#: ../../operation/agentes/pandora_networkmap.view.php:370 -msgid "Data: " -msgstr "Datos: " - -#: ../../operation/agentes/pandora_networkmap.view.php:731 -#: ../../operation/snmpconsole/snmp_browser.php:86 -#: ../../operation/snmpconsole/snmp_statistics.php:45 -#: ../../operation/snmpconsole/snmp_view.php:78 -msgid "Normal screen" -msgstr "Pantalla normal" - -#: ../../operation/agentes/pandora_networkmap.view.php:747 -msgid "List of networkmap" -msgstr "Lista de mapas de red" - -#: ../../operation/agentes/snapshot_view.php:66 -msgid "Current data at" -msgstr "Datos actuales a" - -#: ../../operation/agentes/stat_win.php:115 -msgid "There was a problem locating the source of the graph" -msgstr "Hubo un problema al localizar la fuente del gráfico" - -#: ../../operation/agentes/stat_win.php:305 -msgid "Avg. Only" -msgstr "Solo la media" - -#: ../../operation/agentes/stat_win.php:356 -msgid "" -"Show events is disabled because this Pandora node is set the event " -"replication." -msgstr "" -"Los eventos no se muestran porque este nodo de Pandora tiene la replicación " -"de eventos activada." - -#: ../../operation/agentes/stat_win.php:368 -msgid "Show event graph" -msgstr "Mostrar gráfica de eventos" - -#: ../../operation/agentes/status_events.php:31 -#: ../../operation/agentes/status_events.php:32 -msgid "Latest events for this agent" -msgstr "Últimos eventos para este agente" - -#: ../../operation/agentes/status_monitor.php:40 ../../operation/menu.php:59 -msgid "Monitor detail" -msgstr "Detalle de monitores" - -#: ../../operation/agentes/status_monitor.php:45 -msgid "Monitor view" -msgstr "Vista del monitor" - -#: ../../operation/agentes/status_monitor.php:306 -msgid "Monitor status" -msgstr "Estado del monitor" - -#: ../../operation/agentes/status_monitor.php:327 -#: ../../operation/incidents/incident.php:238 -#: ../../enterprise/extensions/vmware/vmware_view.php:1247 -msgid "Show" -msgstr "Mostrar" - -#: ../../operation/agentes/status_monitor.php:390 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:38 -msgid "Web server module" -msgstr "Módulo del servidor web" - -#: ../../operation/agentes/status_monitor.php:394 -#: ../../operation/agentes/status_monitor.php:962 -msgid "Server type" -msgstr "Tipo de servidor" - -#: ../../operation/agentes/status_monitor.php:400 -msgid "Show monitors..." -msgstr "Mostrar módulos..." - -#: ../../operation/agentes/status_monitor.php:410 -msgid "Data type" -msgstr "Tipo de dato" - -#: ../../operation/agentes/status_monitor.php:529 -msgid "Advanced Options" -msgstr "Opciones Avanzadas" - -#: ../../operation/agentes/status_monitor.php:952 -msgid "Data Type" -msgstr "Tipo de Dato" - -#: ../../operation/agentes/status_monitor.php:1443 -msgid "This group doesn't have any monitor" -msgstr "Este grupo no tiene ningún monitor definido" - -#: ../../operation/agentes/tactical.php:135 -msgid "Report of State" -msgstr "Informe de Estado" - -#: ../../operation/agentes/ver_agente.php:686 -#: ../../enterprise/operation/agentes/ver_agente.php:70 -msgid "Main IP" -msgstr "IP principal" - -#: ../../operation/agentes/ver_agente.php:737 -#: ../../enterprise/operation/agentes/ver_agente.php:113 -msgid "Monitors down" -msgstr "Monitores caídos" - -#: ../../operation/agentes/ver_agente.php:822 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:152 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:41 -#: ../../enterprise/extensions/ipam/ipam_excel.php:116 -#: ../../enterprise/extensions/ipam/ipam_network.php:535 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:84 -msgid "Address" -msgstr "Dirección" - -#: ../../operation/agentes/ver_agente.php:863 -msgid "Sons" -msgstr "Hijos" - -#: ../../operation/agentes/ver_agente.php:947 -#: ../../operation/search_agents.php:111 -#: ../../operation/servers/recon_view.php:46 -msgid "Manage" -msgstr "Gestionar" - -#: ../../operation/agentes/ver_agente.php:1076 -msgid "Log Viewer" -msgstr "Visor de sucesos" - -#: ../../operation/agentes/ver_agente.php:1096 -msgid "Terminal" -msgstr "Terminal" - -#: ../../operation/agentes/ver_agente.php:1116 -#: ../../enterprise/godmode/agentes/collections.agents.php:53 -#: ../../enterprise/godmode/agentes/collections.data.php:104 -#: ../../enterprise/godmode/agentes/collections.data.php:216 -#: ../../enterprise/godmode/agentes/collections.data.php:256 -#: ../../enterprise/godmode/agentes/collections.editor.php:46 -#: ../../enterprise/godmode/agentes/collections.editor.php:350 -#: ../../enterprise/godmode/agentes/collections.editor.php:375 -#: ../../enterprise/include/functions_collection.php:129 -msgid "Files" -msgstr "Archivos" - -#: ../../operation/events/event_statistics.php:32 -#: ../../operation/incidents/incident_statistics.php:30 -#: ../../operation/menu.php:278 ../../operation/menu.php:365 -#: ../../operation/snmpconsole/snmp_statistics.php:61 -#: ../../operation/snmpconsole/snmp_view.php:72 -#: ../../enterprise/extensions/ipam/ipam_network.php:171 -msgid "Statistics" -msgstr "Estadísticas" - -#: ../../operation/events/event_statistics.php:41 -msgid "Event graph by user" -msgstr "Gráfica de eventos por usuario" - -#: ../../operation/events/events.build_table.php:37 -msgid "More detail" -msgstr "Más detalles" - -#: ../../operation/events/events.build_table.php:85 -#: ../../operation/events/events.build_table.php:89 -msgid "The Agent: " -msgstr "El agente: " - -#: ../../operation/events/events.build_table.php:86 -#: ../../operation/events/events.build_table.php:90 -msgid " has " -msgstr " tiene " - -#: ../../operation/events/events.build_table.php:87 -#: ../../operation/events/events.build_table.php:91 -msgid " events." -msgstr " eventos." - -#: ../../operation/events/events.build_table.php:754 -msgid "Validate selected" -msgstr "Validar selección" - -#: ../../operation/events/events.php:71 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:137 -msgid "Event" -msgstr "Evento" - -#: ../../operation/events/events.php:195 -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, contacte con el administrador para obtener más información." - -#: ../../operation/events/events.php:339 -msgid "History event list" -msgstr "Lista histórica de eventos" - -#: ../../operation/events/events.php:344 -msgid "RSS Events" -msgstr "Eventos RSS" - -#: ../../operation/events/events.php:349 -msgid "Marquee display" -msgstr "Marquesina deslizante" - -#: ../../operation/events/events.php:354 -msgid "Export to CSV file" -msgstr "Exportar a un archivo CSV" - -#: ../../operation/events/events.php:358 ../../operation/events/events.php:397 -msgid "Sound events" -msgstr "Eventos sonoros" - -#: ../../operation/events/events.php:401 -msgid "History" -msgstr "Historial" - -#: ../../operation/events/events.php:439 ../../operation/menu.php:319 -msgid "Sound Alerts" -msgstr "Alertas sonoras" - -#: ../../operation/events/events.php:472 -msgid "Event viewer" -msgstr "Visor de eventos" - -#: ../../operation/events/events.php:492 -msgid "No events selected" -msgstr "No se han seleccionado eventos" - -#: ../../operation/events/events.php:518 -msgid "Successfully validated" -msgstr "Validado correctamente" - -#: ../../operation/events/events.php:519 ../../operation/events/events.php:843 -#: ../../operation/events/events.php:995 -msgid "Could not be validated" -msgstr "No se pudo validar" - -#: ../../operation/events/events.php:523 -msgid "Successfully set in process" -msgstr "Correctamente establecido en modo \"en proceso\"" - -#: ../../operation/events/events.php:524 -msgid "Could not be set in process" -msgstr "No se ha podido establecer en modo \"en proceso\"" - -#: ../../operation/events/events.php:875 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:226 -msgid "Successfully delete" -msgstr "Borrado satisfactoriamente" - -#: ../../operation/events/events.php:878 -msgid "Error deleting event" -msgstr "Error al eliminar evento" - -#: ../../operation/events/events_list.php:256 -#: ../../operation/events/events_list.php:704 -msgid "No filter loaded" -msgstr "No se ha cargado el filtro" - -#: ../../operation/events/events_list.php:258 -#: ../../operation/events/events_list.php:705 -msgid "Filter loaded" -msgstr "Filtro cargado" - -#: ../../operation/events/events_list.php:260 -#: ../../operation/events/events_list.php:323 -#: ../../operation/events/events_list.php:671 -msgid "Save filter" -msgstr "Guardar filtro" - -#: ../../operation/events/events_list.php:262 -#: ../../operation/events/events_list.php:346 -#: ../../operation/events/events_list.php:348 -#: ../../operation/events/events_list.php:675 -#: ../../operation/netflow/nf_live_view.php:329 -msgid "Load filter" -msgstr "Cargar filtro" - -#: ../../operation/events/events_list.php:283 -msgid "New filter" -msgstr "Nuevo filtro" - -#: ../../operation/events/events_list.php:293 -msgid "Save in Group" -msgstr "Guardar en el grupo" - -#: ../../operation/events/events_list.php:310 -msgid "Overwrite filter" -msgstr "Sobrescribir filtro" - -#: ../../operation/events/events_list.php:647 -msgid "Group agents" -msgstr "Grupos de agente" - -#: ../../operation/events/events_list.php:677 -msgid "Show events graph" -msgstr "Mostrar gráfica de eventos" - -#: ../../operation/events/events_list.php:711 -#: ../../operation/events/events_list.php:713 -msgid "Event control filter" -msgstr "Filtro de control de eventos" - -#: ../../operation/events/events_list.php:720 -msgid "Error creating filter." -msgstr "Error creando filtro." - -#: ../../operation/events/events_list.php:721 -msgid "Error creating filter is duplicated." -msgstr "Error creando filtro al estar duplicado." - -#: ../../operation/events/events_list.php:722 -msgid "Filter created." -msgstr "Filtro creado." - -#: ../../operation/events/events_list.php:724 -msgid "Filter updated." -msgstr "Filtro actualizado." - -#: ../../operation/events/events_list.php:725 -msgid "Error updating filter." -msgstr "Error actualizando filtro." - -#: ../../operation/events/events_list.php:1192 -msgid "Filter name cannot be left blank" -msgstr "El nombre del filtro no se puede dejar en blanco" - -#: ../../operation/events/events_list.php:1669 -msgid "Events generated -by agent-" -msgstr "Eventos generados -por agente-" - -#: ../../operation/events/events_rss.php:32 -msgid "Your IP is not into the IP list with API access." -msgstr "Su IP no se encuentra en el listado de IPs con acceso a la API." - -#: ../../operation/events/events_rss.php:46 -msgid "The URL of your feed has bad hash." -msgstr "La URL de tu feed tiene mal el hash." - -#: ../../operation/events/events_rss.php:185 ../../operation/menu.php:98 -msgid "SNMP" -msgstr "SNMP" - -#: ../../operation/events/sound_events.php:51 ../../operation/menu.php:307 -msgid "Sound Events" -msgstr "Eventos sonoros" - -#: ../../operation/events/sound_events.php:68 -msgid "Sound console" -msgstr "Consola sonora" - -#: ../../operation/gis_maps/ajax.php:217 ../../operation/gis_maps/ajax.php:254 -msgid "Position (Lat, Long, Alt)" -msgstr "Posición (Lat, Long, Alt)" - -#: ../../operation/gis_maps/ajax.php:218 -msgid "Start contact" -msgstr "Inicio de contacto" - -#: ../../operation/gis_maps/ajax.php:220 -msgid "Num reports" -msgstr "Informes numéricos" - -#: ../../operation/gis_maps/ajax.php:258 -msgid "Default position of map." -msgstr "Posición por defecto del mapa" - -#: ../../operation/gis_maps/gis_map.php:31 ../../operation/menu.php:185 -msgid "GIS Maps" -msgstr "Mapas GIS" - -#: ../../operation/gis_maps/gis_map.php:175 -msgid "No maps found" -msgstr "No se encontraron mapas" - -#: ../../operation/gis_maps/gis_map.php:194 -msgid "Caution: Do you want delete the map?" -msgstr "Atención: Desea borrar el mapa?" - -#: ../../operation/gis_maps/gis_map.php:201 -msgid "Do you want to set default the map?" -msgstr "Desea configurar por defecto el mapa?" - -#: ../../operation/gis_maps/gis_map.php:209 -msgid "There was error on setup the default map." -msgstr "Hubo un error en la configuracion del mapa por defecto." - -#: ../../operation/gis_maps/render_view.php:145 -msgid "Refresh: " -msgstr "Refrescar " - -#: ../../operation/gis_maps/render_view.php:154 -msgid "Show agents by state: " -msgstr "Mostrar agentes por estado " - -#: ../../operation/gis_maps/render_view.php:157 -#: ../../enterprise/dashboard/widgets/network_map.php:38 -#: ../../enterprise/extensions/vmware/vmware_view.php:1104 -#: ../../enterprise/extensions/vmware/vmware_view.php:1124 -msgid "Map" -msgstr "Mapa" - -#: ../../operation/incidents/incident.php:33 -msgid "Incident management" -msgstr "Gestión de incidentes" - -#: ../../operation/incidents/incident.php:72 -msgid "Successfully reclaimed ownership" -msgstr "La propiedad se reclamó correctamente" - -#: ../../operation/incidents/incident.php:73 -msgid "Could not reclame ownership" -msgstr "No se pudo reclamar la propiedad" - -#: ../../operation/incidents/incident.php:143 -msgid "Error creating incident" -msgstr "Error al crear el incidente" - -#: ../../operation/incidents/incident.php:146 -msgid "Incident created" -msgstr "Incidente creado" - -#: ../../operation/incidents/incident.php:233 -msgid "Incidents:" -msgstr "Incidentes:" - -#: ../../operation/incidents/incident.php:234 -msgid "All incidents" -msgstr "Todos los incidentes" - -#: ../../operation/incidents/incident.php:256 -msgid "Priorities:" -msgstr "Prioridades:" - -#: ../../operation/incidents/incident.php:257 -msgid "All priorities" -msgstr "Todas las prioridades" - -#: ../../operation/incidents/incident.php:261 -msgid "Users:" -msgstr "Usuarios:" - -#: ../../operation/incidents/incident.php:262 -#: ../../enterprise/extensions/ipam/ipam_editor.php:60 -msgid "All users" -msgstr "Todos los usuarios" - -#: ../../operation/incidents/incident.php:277 -msgid "Agents:" -msgstr "Agentes:" - -#: ../../operation/incidents/incident.php:284 -msgid "Groups:" -msgstr "Grupos:" - -#: ../../operation/incidents/incident.php:290 -msgid "Free text:" -msgstr "Texto libre:" - -#: ../../operation/incidents/incident.php:291 -msgid "Search by incident name or description, list matches." -msgstr "" -"Búsqueda por nombre de incidencia o descripción. Lista las concidencias" - -#: ../../operation/incidents/incident.php:399 -msgid "Delete incidents" -msgstr "Borrar incidentes" - -#: ../../operation/incidents/incident.php:403 -msgid "Become owner" -msgstr "Hacerse propietario" - -#: ../../operation/incidents/incident.php:411 -#: ../../operation/incidents/incident_detail.php:238 -msgid "Create incident" -msgstr "Crear incidente" - -#: ../../operation/incidents/incident_detail.php:120 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:489 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:93 -msgid "No description available" -msgstr "Sin descripción disponible" - -#: ../../operation/incidents/incident_detail.php:160 -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" - -#: ../../operation/incidents/incident_detail.php:173 -msgid "File uploaded" -msgstr "Archivo subido" - -#: ../../operation/incidents/incident_detail.php:174 -msgid "File could not be uploaded" -msgstr "No se pudo subir el archivo" - -#: ../../operation/incidents/incident_detail.php:233 -msgid "Incident details" -msgstr "Detalles del incidente" - -#: ../../operation/incidents/incident_detail.php:259 -msgid "Opened at" -msgstr "Abierto el" - -#: ../../operation/incidents/incident_detail.php:261 -#: ../../operation/servers/recon_view.php:107 -#: ../../enterprise/operation/agentes/transactional_map.php:154 -msgid "Updated at" -msgstr "Actualizado el" - -#: ../../operation/incidents/incident_detail.php:327 -msgid "Creator" -msgstr "Creador" - -#: ../../operation/incidents/incident_detail.php:376 -msgid "Update incident" -msgstr "Actualizar incidente" - -#: ../../operation/incidents/incident_detail.php:382 -msgid "Submit" -msgstr "Enviar" - -#: ../../operation/incidents/incident_detail.php:396 -#: ../../operation/incidents/incident_detail.php:400 -msgid "Add note" -msgstr "Insertar nota" - -#: ../../operation/incidents/incident_detail.php:432 -msgid "Notes attached to incident" -msgstr "Notas asociadas al incidente" - -#: ../../operation/incidents/incident_detail.php:453 -#: ../../operation/incidents/incident_detail.php:505 -msgid "Filename" -msgstr "Nombre del archivo" - -#: ../../operation/incidents/incident_detail.php:481 -msgid "Attached files" -msgstr "Archivos adjuntos" - -#: ../../operation/incidents/incident_detail.php:499 -#: ../../operation/incidents/incident_detail.php:503 -msgid "Add attachment" -msgstr "Añadir adjunto" - -#: ../../operation/incidents/incident_statistics.php:33 -msgid "Incidents by status" -msgstr "Incidentes por estado" - -#: ../../operation/incidents/incident_statistics.php:36 -msgid "Incidents by priority" -msgstr "Incidentes por prioridad" - -#: ../../operation/incidents/incident_statistics.php:39 -msgid "Incidents by group" -msgstr "Incidentes por grupo" - -#: ../../operation/incidents/incident_statistics.php:42 -msgid "Incidents by user" -msgstr "Incidentes por usuario" - -#: ../../operation/incidents/incident_statistics.php:45 -msgid "Incidents by source" -msgstr "Incidentes por origen" - -#: ../../operation/menu.php:31 ../../operation/menu.php:106 -#: ../../enterprise/meta/general/logon_ok.php:56 -#: ../../enterprise/meta/general/main_header.php:82 -#: ../../enterprise/operation/services/services.list.php:60 -#: ../../enterprise/operation/services/services.list.php:64 -#: ../../enterprise/operation/services/services.table_services.php:46 -#: ../../enterprise/operation/services/services.table_services.php:50 -msgid "Monitoring" -msgstr "Monitorización" - -#: ../../operation/menu.php:37 -msgid "Views" -msgstr "Vistas" - -#: ../../operation/menu.php:51 ../../operation/tree.php:87 -#: ../../enterprise/meta/general/main_header.php:88 -msgid "Tree view" -msgstr "Vista de árbol" - -#: ../../operation/menu.php:70 -msgid "Netflow Live View" -msgstr "Netflow en tiempo real" - -#: ../../operation/menu.php:85 -msgid "SNMP browser" -msgstr "Navegador SNMP" - -#: ../../operation/menu.php:89 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:30 -msgid "MIB uploader" -msgstr "Cargador MIB" - -#: ../../operation/menu.php:117 -#: ../../enterprise/dashboard/widgets/network_map.php:26 -#: ../../enterprise/operation/policies/networkmap.policies.php:128 -msgid "Network map" -msgstr "Mapa de red" - -#: ../../operation/menu.php:190 -msgid "List of Gis maps" -msgstr "Lista de mapas Gis" - -#: ../../operation/menu.php:224 -msgid "Topology maps" -msgstr "Mapas topológicos" - -#: ../../operation/menu.php:288 -msgid "RSS" -msgstr "RSS" - -#: ../../operation/menu.php:293 -msgid "Marquee" -msgstr "Marquesina" - -#: ../../operation/menu.php:299 -msgid "CSV File" -msgstr "Archivo CSV" - -#: ../../operation/menu.php:329 -msgid "Workspace" -msgstr "Área de trabajo" - -#: ../../operation/menu.php:342 -msgid "WebChat" -msgstr "Chat de la Web" - -#: ../../operation/menu.php:364 -msgid "List of Incidents" -msgstr "Lista de incidentes" - -#: ../../operation/menu.php:379 -msgid "Messages List" -msgstr "Lista de mensajes" - -#: ../../operation/menu.php:380 -msgid "New message" -msgstr "Mensaje nuevo" - -#: ../../operation/menu.php:405 -msgid "Scheduled downtime" -msgstr "Desconexión programada" - -#: ../../operation/menu.php:410 -msgid "Recon view" -msgstr "Vista Recon" - -#: ../../operation/menu.php:485 -msgid "Tools" -msgstr "Herramientas" - -#: ../../operation/messages/message_edit.php:35 -#: ../../operation/messages/message_list.php:32 -msgid "Received messages" -msgstr "Mensajes recibidos" - -#: ../../operation/messages/message_edit.php:39 -#: ../../operation/messages/message_list.php:36 -msgid "Sent messages" -msgstr "Mensajes enviados" - -#: ../../operation/messages/message_edit.php:43 -#: ../../operation/messages/message_list.php:40 -#: ../../operation/messages/message_list.php:226 -msgid "Create message" -msgstr "Crear mensaje" - -#: ../../operation/messages/message_edit.php:60 -msgid "This message does not exist in the system" -msgstr "Este mensaje no existe en el sistema" - -#: ../../operation/messages/message_edit.php:79 -#: ../../operation/messages/message_edit.php:160 -#: ../../operation/messages/message_list.php:125 -msgid "Sender" -msgstr "Remitente" - -#: ../../operation/messages/message_edit.php:80 -msgid "at" -msgstr "el" - -#: ../../operation/messages/message_edit.php:82 -#: ../../operation/messages/message_edit.php:169 -#: ../../operation/messages/message_list.php:123 -msgid "Destination" -msgstr "Destino" - -#: ../../operation/messages/message_edit.php:92 -#: ../../operation/messages/message_edit.php:210 -#: ../../operation/users/webchat.php:86 -#: ../../enterprise/dashboard/widgets/example.php:25 -msgid "Message" -msgstr "Mensaje" - -#: ../../operation/messages/message_edit.php:104 -msgid "wrote" -msgstr "escribió" - -#: ../../operation/messages/message_edit.php:119 -msgid "Reply" -msgstr "Responder" - -#: ../../operation/messages/message_edit.php:136 -#, php-format -msgid "Message successfully sent to user %s" -msgstr "Mensaje enviado correctamente al usuario %s" - -#: ../../operation/messages/message_edit.php:137 -#, php-format -msgid "Error sending message to user %s" -msgstr "Error al enviar el mensaje al usuario %s" - -#: ../../operation/messages/message_edit.php:145 -msgid "Message successfully sent" -msgstr "Mensaje enviado correctamente" - -#: ../../operation/messages/message_edit.php:146 -#, php-format -msgid "Error sending message to group %s" -msgstr "Error al enviar el mensaje al grupo %s" - -#: ../../operation/messages/message_edit.php:203 -msgid "Select user" -msgstr "Seleccionar usuario" - -#: ../../operation/messages/message_edit.php:204 -msgid "OR" -msgstr "O" - -#: ../../operation/messages/message_edit.php:205 -msgid "Select group" -msgstr "Seleccionar grupo" - -#: ../../operation/messages/message_edit.php:217 -#: ../../operation/users/webchat.php:90 -msgid "Send message" -msgstr "Enviar mensaje" - -#: ../../operation/messages/message_list.php:74 -msgid "Not deleted. Error deleting messages" -msgstr "No borrada. Error al suprimir mensajes" - -#: ../../operation/messages/message_list.php:80 -#: ../../operation/messages/message_list.php:88 -msgid "You have" -msgstr "Tiene" - -#: ../../operation/messages/message_list.php:81 -msgid "sent message(s)" -msgstr "Mensaje(s) enviado(s)" - -#: ../../operation/messages/message_list.php:89 -msgid "unread message(s)" -msgstr "mensaje(s) sin leer" - -#: ../../operation/messages/message_list.php:97 -msgid "There are no messages." -msgstr "No hay mensajes." - -#: ../../operation/messages/message_list.php:136 -msgid "Click to read" -msgstr "Hacer click para leer" - -#: ../../operation/messages/message_list.php:141 -msgid "Mark as unread" -msgstr "Marcar como no leído" - -#: ../../operation/messages/message_list.php:148 -#: ../../operation/messages/message_list.php:153 -msgid "Message unread - click to read" -msgstr "Mensaje sin leer; pulse para leerlo" - -#: ../../operation/messages/message_list.php:180 -msgid "No Subject" -msgstr "Sin asunto" - -#: ../../operation/netflow/nf_live_view.php:108 -#: ../../operation/netflow/nf_live_view.php:133 -#: ../../operation/netflow/nf_live_view.php:137 -msgid "Netflow live view" -msgstr "Netflow en tiempo real" - -#: ../../operation/netflow/nf_live_view.php:122 -#, php-format -msgid "nfdump binary (%s) not found!" -msgstr "nfdump binary (%s) no encontrada" - -#: ../../operation/netflow/nf_live_view.php:127 -msgid "Make sure nfdump version 1.6.8 or newer is installed!" -msgstr "" -"Asegúrese de que tiene instalada la versión 1.6.8 nfdump o alguna posterior" - -#: ../../operation/netflow/nf_live_view.php:149 -msgid "Error creating filter" -msgstr "Error al crear filtro" - -#: ../../operation/netflow/nf_live_view.php:152 -msgid "Filter created successfully" -msgstr "Filtro creado correctamente" - -#: ../../operation/netflow/nf_live_view.php:167 -msgid "Filter updated successfully" -msgstr "Filtro actualizado correctamente" - -#: ../../operation/netflow/nf_live_view.php:168 -msgid "Error updating filter" -msgstr "Error al actualizar el filtro" - -#: ../../operation/netflow/nf_live_view.php:193 -msgid "Draw live filter" -msgstr "Extrae filtro en directo" - -#: ../../operation/netflow/nf_live_view.php:224 -msgid "Connection" -msgstr "Conexión" - -#: ../../operation/netflow/nf_live_view.php:248 -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:283 -msgid "IP address resolution" -msgstr "Resolución de dirección IP" - -#: ../../operation/netflow/nf_live_view.php:335 -msgid "Select a filter" -msgstr "Selecciona un filtro" - -#: ../../operation/netflow/nf_live_view.php:402 -msgid "Router ip" -msgstr "Ip del router" - -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Bytes per second" -msgstr "Bytes por segundo" - -#: ../../operation/netflow/nf_live_view.php:417 -msgid "Draw" -msgstr "Dibujar" - -#: ../../operation/netflow/nf_live_view.php:421 -msgid "Save as new filter" -msgstr "Guardar nuevo filtro" - -#: ../../operation/netflow/nf_live_view.php:422 -msgid "Update current filter" -msgstr "Actualizar filtro actual" - -#: ../../operation/netflow/nf_live_view.php:436 -msgid "No filter selected" -msgstr "No se ha seleccionado ningún filtro" - -#: ../../operation/reporting/custom_reporting.php:32 -#: ../../operation/reporting/graph_viewer.php:354 -msgid "There are no defined reportings" -msgstr "No hay informes definidos" - -#: ../../operation/reporting/graph_viewer.php:194 -msgid "No data." -msgstr "Sin datos." - -#: ../../operation/reporting/graph_viewer.php:226 -#: ../../operation/reporting/graph_viewer.php:249 -msgid "Graph defined" -msgstr "Gráfico definido" - -#: ../../operation/reporting/graph_viewer.php:233 -#: ../../enterprise/dashboard/widgets/custom_graph.php:45 -msgid "Horizontal Bars" -msgstr "Barras horizontales" - -#: ../../operation/reporting/graph_viewer.php:234 -#: ../../enterprise/dashboard/widgets/custom_graph.php:46 -msgid "Vertical Bars" -msgstr "Barras verticales" - -#: ../../operation/reporting/graph_viewer.php:250 -msgid "Zoom x1" -msgstr "Ampliación x1" - -#: ../../operation/reporting/graph_viewer.php:251 -msgid "Zoom x2" -msgstr "Ampliación x2" - -#: ../../operation/reporting/graph_viewer.php:252 -msgid "Zoom x3" -msgstr "Ampliación x3" - -#: ../../operation/reporting/graph_viewer.php:320 -#: ../../operation/reporting/reporting_viewer.php:314 -msgid "Invalid date selected" -msgstr "Fecha seleccionada inválida" - -#: ../../operation/reporting/graph_viewer.php:327 -msgid "Custom graph viewer" -msgstr "Visor de imágenes personalizadas" - -#: ../../operation/reporting/reporting_viewer.php:147 -msgid "View Report" -msgstr "Ver Informe" - -#: ../../operation/reporting/reporting_viewer.php:186 -msgid "Set initial date" -msgstr "Fijar fecha de inicio" - -#: ../../operation/reporting/reporting_viewer.php:212 -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/search_agents.php:33 ../../operation/search_alerts.php:27 -#: ../../operation/search_graphs.php:24 ../../operation/search_maps.php:22 -#: ../../operation/search_modules.php:26 ../../operation/search_reports.php:29 -#: ../../operation/search_users.php:26 -msgid "Zero results found" -msgstr "No se encontró ningún resultado" - -#: ../../operation/search_helps.php:22 -msgid "Zero results found." -msgstr "Cero resultados" - -#: ../../operation/search_helps.php:23 -#, php-format -msgid "" -"You can find more help in the Pandora's wiki" -msgstr "" -"Puedes encontrar mas ayuda en el wiki de Pandora" - -#: ../../operation/search_helps.php:37 -msgid "Matches" -msgstr "Coincidencias" - -#: ../../operation/search_main.php:52 -msgid "Agents found" -msgstr "Agentes encontrados" - -#: ../../operation/search_main.php:54 ../../operation/search_main.php:57 -#: ../../operation/search_main.php:68 ../../operation/search_main.php:71 -#: ../../operation/search_main.php:74 ../../operation/search_main.php:77 -#: ../../operation/search_main.php:80 -#, php-format -msgid "%s Found" -msgstr "%s encontrados" - -#: ../../operation/search_main.php:55 -msgid "Modules found" -msgstr "Módulos encontrados" - -#: ../../operation/search_main.php:66 -msgid "Users found" -msgstr "Usuarios encontrados" - -#: ../../operation/search_main.php:69 -msgid "Graphs found" -msgstr "Gráficas encontradas" - -#: ../../operation/search_main.php:72 -msgid "Reports found" -msgstr "Informes encontrados" - -#: ../../operation/search_main.php:75 -msgid "Maps found" -msgstr "Mapas encontrados" - -#: ../../operation/search_main.php:78 -msgid "Helps found" -msgstr "Ayudas encontradas" - -#: ../../operation/search_main.php:88 -#, php-format -msgid "Show %s of %s. View all matches" -msgstr "Mostrar %s de %s. Ver todas las coincidencias" - -#: ../../operation/search_maps.php:33 -#: ../../enterprise/godmode/services/services.elements.php:136 -msgid "Elements" -msgstr "Elementos" - -#: ../../operation/search_results.php:124 -#: ../../enterprise/dashboard/widgets/maps_status.php:29 -msgid "Maps" -msgstr "Mapas" - -#: ../../operation/search_results.php:144 -msgid "Helps" -msgstr "Ayudas" - -#: ../../operation/search_users.php:50 -msgid "Profile" -msgstr "Perfil" - -#: ../../operation/servers/recon_view.php:36 -#: ../../operation/servers/recon_view.php:51 -msgid "Recon View" -msgstr "Vista Recon" - -#: ../../operation/servers/recon_view.php:104 -#: ../../operation/servers/recon_view.php:158 -#: ../../enterprise/extensions/ipam/ipam_network.php:151 -#: ../../enterprise/extensions/ipam/ipam_network.php:167 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:613 -#: ../../enterprise/godmode/policies/policy_queue.php:377 -#: ../../enterprise/meta/advanced/policymanager.queue.php:259 -msgid "Progress" -msgstr "Progreso" - -#: ../../operation/servers/recon_view.php:140 -msgid "Pending" -msgstr "Pendiente" - -#: ../../operation/servers/recon_view.php:173 -msgid "has no recon tasks assigned" -msgstr "No tiene tarea de descubrimiento asignado" - -#: ../../operation/snmpconsole/snmp_browser.php:92 -msgid "SNMP Browser" -msgstr "Navegador SNMP" - -#: ../../operation/snmpconsole/snmp_mib_uploader.php:66 -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 "" -"Ficheros MIB se instalarán en el sistema. Por favor, tenga en cuenta que un " -"MIB puede depender de otro MIB. Para personalizar definiciones de trap, se " -"debe usar el editor de trap SNMP." - -#: ../../operation/snmpconsole/snmp_statistics.php:116 -#: ../../operation/snmpconsole/snmp_view.php:468 -msgid "There are no SNMP traps in database" -msgstr "No hay definido ningún agente SNMP" - -#: ../../operation/snmpconsole/snmp_statistics.php:127 -msgid "Traps received by source" -msgstr "Traps recibidos por el origen" - -#: ../../operation/snmpconsole/snmp_statistics.php:141 -#: ../../operation/snmpconsole/snmp_statistics.php:199 -msgid "Number" -msgstr "Número" - -#: ../../operation/snmpconsole/snmp_statistics.php:156 -#: ../../operation/snmpconsole/snmp_view.php:680 -msgid "View agent details" -msgstr "Ver detalles del agente" - -#: ../../operation/snmpconsole/snmp_statistics.php:185 -msgid "Traps received by Enterprise String" -msgstr "Traps recibidos por cadena Enterprise" - -#: ../../operation/snmpconsole/snmp_statistics.php:198 -msgid "Trap Enterprise String" -msgstr "Traps Enterprise de cadena" - -#: ../../operation/snmpconsole/snmp_view.php:414 -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 \t RECUERDE las fuentes de trap tienen que buscarse según dirección IP" - -#: ../../operation/snmpconsole/snmp_view.php:421 -msgid "Search by trap type" -msgstr "Búsqueda por tipo de trap" - -#: ../../operation/snmpconsole/snmp_view.php:435 -msgid "Group by Enterprise String/IP" -msgstr "Agrupado por cadena Enterprise/IP" - -#: ../../operation/snmpconsole/snmp_view.php:495 -#: ../../enterprise/dashboard/full_dashboard.php:147 -msgid "Exit fullscreen" -msgstr "Salir de pantalla completa" - -#: ../../operation/snmpconsole/snmp_view.php:521 -#: ../../enterprise/dashboard/full_dashboard.php:250 -#: ../../enterprise/dashboard/public_dashboard.php:276 -msgid "Refresh every" -msgstr "Refrescar cada" - -#: ../../operation/snmpconsole/snmp_view.php:533 -msgid "SNMP Traps" -msgstr "SNMP Traps" - -#: ../../operation/snmpconsole/snmp_view.php:615 -msgid "Trap subtype" -msgstr "Subtipo trap" - -#: ../../operation/snmpconsole/snmp_view.php:772 -msgid "Variable bindings:" -msgstr "Enlaces variables" - -#: ../../operation/snmpconsole/snmp_view.php:785 -msgid "See more details" -msgstr "Ver más detalles" - -#: ../../operation/snmpconsole/snmp_view.php:798 -msgid "Enterprise String:" -msgstr "Cadena Enterprise" - -#: ../../operation/snmpconsole/snmp_view.php:804 -#: ../../enterprise/godmode/agentes/collections.data.php:379 -msgid "Description:" -msgstr "Descripción:" - -#: ../../operation/snmpconsole/snmp_view.php:836 -msgid "Trap type:" -msgstr "Tipo trap:" - -#: ../../operation/snmpconsole/snmp_view.php:864 -msgid "Count:" -msgstr "Contar" - -#: ../../operation/snmpconsole/snmp_view.php:868 -msgid "First trap:" -msgstr "Primer trap:" - -#: ../../operation/snmpconsole/snmp_view.php:872 -msgid "Last trap:" -msgstr "Ultimo trap:" - -#: ../../operation/snmpconsole/snmp_view.php:892 -msgid "No matching traps found" -msgstr "No se encontraron traps coincidentes" - -#: ../../operation/snmpconsole/snmp_view.php:960 -#: ../../enterprise/dashboard/full_dashboard.php:361 -#: ../../enterprise/dashboard/public_dashboard.php:387 -msgid "Until next" -msgstr "Hasta el próximo" - -#: ../../operation/tree.php:88 -#, php-format -msgid "Sort the agents by %s" -msgstr "Ordenar los agentes por %s" - -#: ../../operation/tree.php:91 -msgid "tags" -msgstr "Etiquetas" - -#: ../../operation/tree.php:97 -msgid "groups" -msgstr "Grupos" - -#: ../../operation/tree.php:100 -msgid "module groups" -msgstr "Grupos de módulos" - -#: ../../operation/tree.php:107 -msgid "policies" -msgstr "Políticas" - -#: ../../operation/tree.php:138 -msgid "Agent status" -msgstr "Estado de agente" - -#: ../../operation/tree.php:140 -msgid "Search agent" -msgstr "Buscar agente" - -#: ../../operation/tree.php:165 -msgid "Search module" -msgstr "Buscar módulo" - -#: ../../operation/tree.php:189 -msgid "Tree search" -msgstr "Búsqueda de árbol" - -#: ../../operation/tree.php:272 -#: ../../enterprise/dashboard/widgets/tree_view.php:196 -#: ../../enterprise/include/functions_reporting_csv.php:459 -msgid "Total modules" -msgstr "Módulos totales" - -#: ../../operation/tree.php:281 -#: ../../enterprise/dashboard/widgets/tree_view.php:205 -msgid "Critical agents" -msgstr "Agentes Críticos" - -#: ../../operation/tree.php:286 -#: ../../enterprise/dashboard/widgets/tree_view.php:210 -msgid "Warning agents" -msgstr "Agentes en advertencia" - -#: ../../operation/tree.php:291 -#: ../../enterprise/dashboard/widgets/tree_view.php:215 -msgid "Unknown agents" -msgstr "Agentes en desconocido" - -#: ../../operation/tree.php:296 -#: ../../enterprise/dashboard/widgets/tree_view.php:220 -msgid "Not init agents" -msgstr "Agentes no inicializados" - -#: ../../operation/tree.php:301 -#: ../../enterprise/dashboard/widgets/tree_view.php:225 -msgid "Normal agents" -msgstr "Agentes en normal" - -#: ../../operation/users/user_edit.php:130 -#: ../../operation/users/user_edit.php:137 -msgid "Password successfully updated" -msgstr "Contraseña actualizada correctamente" - -#: ../../operation/users/user_edit.php:131 -#: ../../operation/users/user_edit.php:138 -#, php-format -msgid "Error updating passwords: %s" -msgstr "Error al actualizar las contraseñas: %s" - -#: ../../operation/users/user_edit.php:143 -msgid "" -"Passwords didn't match or other problem encountered while updating passwords" -msgstr "" -"Las contraseñas no coincidían o se encontró otro problema al actualizar las " -"contraseñas" - -#: ../../operation/users/user_edit.php:155 -#: ../../operation/users/user_edit.php:165 -msgid "Error updating user info" -msgstr "Error al actualizar la información del usuario" - -#: ../../operation/users/user_edit.php:175 -msgid "Edit my User" -msgstr "Editar mi Usuario" - -#: ../../operation/users/user_edit.php:219 -#: ../../enterprise/include/process_reset_pass.php:99 -#: ../../enterprise/meta/include/process_reset_pass.php:76 -msgid "New Password" -msgstr "Contraseña nueva" - -#: ../../operation/users/user_edit.php:229 -msgid "" -"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 " -"autenticación" - -#: ../../operation/users/user_edit.php:238 -msgid "If checkbox is clicked then block size global configuration is used" -msgstr "" -"Si se marca el checkbox entonces el tamaño de bloque de la configuración " -"global será usado" - -#: ../../operation/users/user_edit.php:340 -msgid "Show information" -msgstr "Mostrar información" - -#: ../../operation/users/user_edit.php:346 -msgid "Event filter" -msgstr "Filtro de eventos" - -#: ../../operation/users/user_edit.php:351 -msgid "Newsletter Subscribed" -msgstr "Suscrito al boletín informativo" - -#: ../../operation/users/user_edit.php:353 -msgid "Already subscribed to Pandora FMS newsletter" -msgstr "Ya está suscrito al boletín informativo de Pandora FMS" - -#: ../../operation/users/user_edit.php:359 -msgid "Newsletter Reminder" -msgstr "Recordatorio del boletín informativo" - -#: ../../operation/users/user_edit.php:415 -msgid "Autorefresh" -msgstr "Autorefresco" - -#: ../../operation/users/user_edit.php:415 -msgid "This will activate autorefresh in selected pages" -msgstr "Esto activará el auto refresco en las páginas seleccionadas" - -#: ../../operation/users/user_edit.php:422 -msgid "Full list of pages" -msgstr "Lista entera de páginas" - -#: ../../operation/users/user_edit.php:424 -msgid "List of pages with autorefresh" -msgstr "Lista de páginas con auto refresco" - -#: ../../operation/users/user_edit.php:430 -msgid "Push selected pages into autorefresh list" -msgstr "Añadir las páginas seleccionadas a la lista de auto refresco" - -#: ../../operation/users/user_edit.php:434 -msgid "Pop selected pages out of autorefresh list" -msgstr "Quitar las páginas seleccionadas de la lista de auto refresco" - -#: ../../operation/users/user_edit.php:470 -msgid "" -"You can not change your user info from Pandora FMS under the current " -"authentication scheme" -msgstr "" -"No puede cambiar su información de usuario desde Pandora FMS bajo el actual " -"esquema de autenticación" - -#: ../../operation/users/user_edit.php:542 -msgid "This user doesn't have any assigned profile/group." -msgstr "Esté usuario no tiene asignado ningún perfil/grupo" - -#: ../../operation/users/user_edit.php:711 -msgid "Double autentication information" -msgstr "Información sobre la doble autenticación" - -#: ../../operation/users/user_edit.php:774 -#: ../../operation/users/user_edit.php:850 -msgid "Double autentication activation" -msgstr "Activación de la doble autenticación" - -#: ../../operation/users/user_edit.php:800 -msgid "The double authentication will be deactivated" -msgstr "La doble autenticación se desactivará" - -#: ../../operation/users/user_edit.php:801 -msgid "Deactivate" -msgstr "Desactivado" - -#: ../../operation/users/user_edit.php:833 -msgid "The double autentication was deactivated successfully" -msgstr "La doble autenticación fue desactivada con éxito" - -#: ../../operation/users/user_edit.php:836 -#: ../../operation/users/user_edit.php:840 -msgid "There was an error deactivating the double autentication" -msgstr "Ha habido un error al desactivar la doble autenticación" - -#: ../../operation/users/webchat.php:71 -msgid "Webchat" -msgstr "Chat de la Web" - -#: ../../operation/users/webchat.php:82 -msgid "Users Online" -msgstr "Usuarios en linea" - -#: ../../operation/users/webchat.php:157 -msgid "Connection established...get last 24h messages..." -msgstr "Conexión establecida. Obtener mensajes de las últimas 24 horas" - -#: ../../operation/users/webchat.php:168 -msgid "Error in connection." -msgstr "Error en la conexión" - -#: ../../operation/users/webchat.php:249 -msgid "Error sendding message." -msgstr "Error al enviar mensaje" - -#: ../../operation/users/webchat.php:277 -msgid "Error login." -msgstr "Error al acceder al sistema" - -#: ../../enterprise/dashboard/dashboards.php:33 -#: ../../enterprise/mobile/operation/home.php:35 -msgid "Dashboards" -msgstr "Paneles" - -#: ../../enterprise/dashboard/dashboards.php:60 -msgid "Successfully duplicate" +#: ../../godmode/snmpconsole/snmp_alert.php:540 +msgid "Successfully Duplicate" msgstr "Duplicado con éxito" -#: ../../enterprise/dashboard/dashboards.php:61 -msgid "Could not be duplicate" -msgstr "No se pudo duplicar" +#: ../../godmode/snmpconsole/snmp_alert.php:556 +msgid "There was a problem deleting the alert" +msgstr "Hubo un problema al borrar la alerta" -#: ../../enterprise/dashboard/dashboards.php:85 -#: ../../enterprise/dashboard/main_dashboard.php:289 -#: ../../enterprise/dashboard/main_dashboard.php:298 -msgid "Cells" -msgstr "Celdas" - -#: ../../enterprise/dashboard/dashboards.php:112 -msgid "There are no dashboards defined." -msgstr "No hay paneles definidos" - -#: ../../enterprise/dashboard/dashboards.php:126 +#: ../../godmode/snmpconsole/snmp_alert.php:585 #, php-format -msgid "Private for (%s)" -msgstr "Privado por (%s)" +msgid "Successfully deleted alerts (%s / %s)" +msgstr "Alertas eliminadas correctamente (%s / %s)" -#: ../../enterprise/dashboard/dashboards.php:157 -msgid "New dashboard" -msgstr "Nuevo dashboard" - -#: ../../enterprise/dashboard/full_dashboard.php:47 -#: ../../enterprise/dashboard/public_dashboard.php:70 -msgid "No slides selected" -msgstr "No se han seleccionado diapositivas" - -#: ../../enterprise/dashboard/full_dashboard.php:201 -#: ../../enterprise/dashboard/public_dashboard.php:217 -msgid "Change every" -msgstr "Cambiar cada" - -#: ../../enterprise/dashboard/full_dashboard.php:222 -#: ../../enterprise/dashboard/public_dashboard.php:244 -#: ../../enterprise/operation/agentes/transactional_map.php:307 -msgid "Stop" -msgstr "Parar" - -#: ../../enterprise/dashboard/full_dashboard.php:228 -#: ../../enterprise/dashboard/public_dashboard.php:250 -msgid "Pause" -msgstr "Pausar" - -#: ../../enterprise/dashboard/full_dashboard.php:258 -#: ../../enterprise/dashboard/main_dashboard.php:189 -#: ../../enterprise/dashboard/public_dashboard.php:284 -msgid "Slides mode" -msgstr "Modo diapositivas" - -#: ../../enterprise/dashboard/full_dashboard.php:349 -#: ../../enterprise/dashboard/main_dashboard.php:504 -#: ../../enterprise/dashboard/public_dashboard.php:375 -msgid "Slides" -msgstr "Presentaciones" - -#: ../../enterprise/dashboard/main_dashboard.php:151 -msgid "Show link to public dashboard" -msgstr "Mostrar el link al dashboard publico" - -#: ../../enterprise/dashboard/main_dashboard.php:168 -msgid "Back to dashboards list" -msgstr "Volver a la lista de dashboards" - -#: ../../enterprise/dashboard/main_dashboard.php:174 -msgid "Save the actual layout design" -msgstr "Guardar el diseño actual" - -#: ../../enterprise/dashboard/main_dashboard.php:344 -msgid "Private dashboard" -msgstr "Dashboard privado" - -#: ../../enterprise/dashboard/main_dashboard.php:364 -msgid "Error: there are cells not empty." -msgstr "Error: las celdas no pueden star vacias" - -#: ../../enterprise/dashboard/main_dashboard.php:369 -msgid "Error save conf dashboard" -msgstr "Error al guardar la configuración del dashboard" - -#: ../../enterprise/dashboard/main_dashboard.php:435 -msgid "Add widget" -msgstr "Agregar widget" - -#: ../../enterprise/dashboard/main_dashboard.php:442 -msgid "Add new widget" -msgstr "Añadir nuevo widget" - -#: ../../enterprise/dashboard/main_dashboard.php:444 -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." -msgstr "" -"Error, que están tratando de añadir un widget en una celda vacía. Por favor, " -"guarde el diseño antes de añadir cualquier control en esta celda." - -#: ../../enterprise/dashboard/main_dashboard.php:448 -msgid "There are unsaved changes" -msgstr "Hay cambios sin guardar" - -#: ../../enterprise/dashboard/widget.php:68 -msgid "Empty for a transparent background color or CSS compatible value" -msgstr "Vacío para color de fondo transparente o valor compatible con CSS" - -#: ../../enterprise/dashboard/widget.php:316 -msgid "Configure widget" -msgstr "Configurar widget" - -#: ../../enterprise/dashboard/widget.php:324 -msgid "Delete widget" -msgstr "Eliminar widget" - -#: ../../enterprise/dashboard/widget.php:378 -msgid "Config widget" -msgstr "Configurar el widget" - -#: ../../enterprise/dashboard/widget.php:388 -msgid "Please configure this widget before usage" -msgstr "Por favor, configure este widget antes de su uso" - -#: ../../enterprise/dashboard/widget.php:391 -msgid "Widget cannot be loaded" -msgstr "El widget no se puede cargar" - -#: ../../enterprise/dashboard/widget.php:392 -msgid "Please, configure the widget again to recover it" -msgstr "Por favor, configure el widget otra vez para recuperarlo" - -#: ../../enterprise/dashboard/widget.php:491 -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" - -#: ../../enterprise/dashboard/widgets/agent_module.php:30 -#: ../../enterprise/dashboard/widgets/agent_module.php:32 -msgid "Show Agent/Module View" -msgstr "Mostrar la vista Agentes/Modulos" - -#: ../../enterprise/dashboard/widgets/agent_module.php:375 -#: ../../enterprise/dashboard/widgets/custom_graph.php:72 -#: ../../enterprise/dashboard/widgets/events_list.php:80 -#: ../../enterprise/dashboard/widgets/events_list.php:86 -#: ../../enterprise/dashboard/widgets/events_list.php:94 -#: ../../enterprise/dashboard/widgets/groups_status.php:53 -#: ../../enterprise/dashboard/widgets/groups_status.php:59 -#: ../../enterprise/dashboard/widgets/module_icon.php:116 -#: ../../enterprise/dashboard/widgets/module_icon.php:123 -#: ../../enterprise/dashboard/widgets/module_status.php:111 -#: ../../enterprise/dashboard/widgets/module_status.php:118 -#: ../../enterprise/dashboard/widgets/module_table_value.php:102 -#: ../../enterprise/dashboard/widgets/module_table_value.php:110 -#: ../../enterprise/dashboard/widgets/module_value.php:99 -#: ../../enterprise/dashboard/widgets/module_value.php:106 -#: ../../enterprise/dashboard/widgets/single_graph.php:94 -#: ../../enterprise/dashboard/widgets/single_graph.php:101 -#: ../../enterprise/dashboard/widgets/sla_percent.php:96 -#: ../../enterprise/dashboard/widgets/sla_percent.php:103 -msgid "You don't have access" -msgstr "No tiene acceso" - -#: ../../enterprise/dashboard/widgets/alerts_fired.php:24 -msgid "Alerts Fired" -msgstr "Alertas disparadas" - -#: ../../enterprise/dashboard/widgets/alerts_fired.php:26 -msgid "Alerts Fired report" -msgstr "Informe de alertas lanzadas" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:27 -msgid "Show a defined custom graph" -msgstr "Mostrar una gráfica personalizada definida" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:49 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:202 -msgid "Stacked" -msgstr "Apilado" - -#: ../../enterprise/dashboard/widgets/custom_graph.php:175 -msgid "" -"Could not draw pie with labels contained inside canvas. Resize widget to " -"500px width minimum" -msgstr "" -"No se puede pintar la gráfica de porciones dentro del canvas. Redimensione " -"el elemento a un mínimo de 500px de ancho" - -#: ../../enterprise/dashboard/widgets/events_list.php:28 -msgid "Latest events list" -msgstr "Última lista de eventos" - -#: ../../enterprise/dashboard/widgets/events_list.php:39 -msgid "Limit" -msgstr "Límite" - -#: ../../enterprise/dashboard/widgets/events_list.php:49 -msgid "Only pending" -msgstr "Solo pendientes" - -#: ../../enterprise/dashboard/widgets/example.php:23 -msgid "Welcome message to Pandora FMS" -msgstr "Mensaje de bienvenida de Pandora FMS" - -#: ../../enterprise/dashboard/widgets/example.php:26 -#: ../../enterprise/extensions/vmware/vmware_view.php:1099 -msgid "Welcome" -msgstr "Bienvenido/a" - -#: ../../enterprise/dashboard/widgets/example.php:40 -msgid "" -"This is an example of a dashboard widget. A widget may contain elements" -msgstr "" -"Éste es un ejemplo de un widget del dashboard. Un widget puede contener " -"elementos." - -#: ../../enterprise/dashboard/widgets/example.php:41 -msgid "" -"To add more elements, click on \"Add widgets\" on the top of this " -"page." -msgstr "" -"Para añadir más elementos, haga clic en \"Add widgets\" en la parte " -"superior de esta página." - -#: ../../enterprise/dashboard/widgets/example.php:42 -#: ../../enterprise/dashboard/widgets/example.php:44 -msgid "" -"To delete this message, click on the delete button on top right corner of " -"this element." -msgstr "" -"Para eliminar este mensaje, haga clic sobre el botón de la esquina derecha " -"de este elemento." - -#: ../../enterprise/dashboard/widgets/example.php:43 -msgid "" -"To do so, just click on the title and drag and drop it to the desired place." -msgstr "" -"Para hacer eso, haga clic en el título, arrastre y suelte el elemento en el " -"lugar que desee." - -#: ../../enterprise/dashboard/widgets/example.php:45 -msgid "Thanks for using Pandora FMS" -msgstr "Gracias por usar Pandora FMS" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:30 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:32 -msgid "Graph Module Histogram" -msgstr "Gráfica de histórico de módulo" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:66 -#: ../../enterprise/dashboard/widgets/sla_percent.php:63 -msgid "2 Hours" -msgstr "2 Horas" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:67 -#: ../../enterprise/dashboard/widgets/sla_percent.php:64 -msgid "12 Hours" -msgstr "12 Horas" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:68 -#: ../../enterprise/dashboard/widgets/sla_percent.php:65 -msgid "24 Hours" -msgstr "24 Horas" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:69 -#: ../../enterprise/dashboard/widgets/sla_percent.php:66 -msgid "48 Hours" -msgstr "48 Horas" - -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:74 -#: ../../enterprise/dashboard/widgets/module_icon.php:89 -#: ../../enterprise/dashboard/widgets/module_status.php:86 -#: ../../enterprise/dashboard/widgets/module_value.php:77 -#: ../../enterprise/dashboard/widgets/sla_percent.php:74 -msgid "Text size of label in px" -msgstr "Tamaño de texto de la etiqueta en pixels" - -#: ../../enterprise/dashboard/widgets/url.php:23 -msgid "Show the URL content" -msgstr "Mostrar el contenido URL" - -#: ../../enterprise/dashboard/widgets/url.php:26 -msgid "My URL" -msgstr "Mi URL" - -#: ../../enterprise/dashboard/widgets/url.php:49 -#: ../../enterprise/dashboard/widgets/post.php:36 -#: ../../enterprise/dashboard/widgets/tactical.php:63 -#: ../../enterprise/dashboard/widgets/tactical.php:71 -msgid "Please, configure this widget before use" -msgstr "Por favor, configure este widget antes de usarlo" - -#: ../../enterprise/dashboard/widgets/groups_status.php:24 -msgid "Groups status" -msgstr "Estado de los grupos" - -#: ../../enterprise/dashboard/widgets/groups_status.php:26 -msgid "General and quick group status report" -msgstr "Informe general y rápido del estado de los grupos" - -#: ../../enterprise/dashboard/widgets/groups_status.php:89 -#: ../../enterprise/dashboard/widgets/groups_status.php:161 -msgid "Total nº:" -msgstr "Total:" - -#: ../../enterprise/dashboard/widgets/groups_status.php:219 -msgid "Not agents in this group" -msgstr "No hay agentes en este grupo" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:27 -msgid "Map made by user" -msgstr "Mapa hecho por el usuario" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:29 -msgid "Show a map made by user" -msgstr "Mostrar un mapa hecho por el usuario" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:32 -msgid "WARNING: " -msgstr "ADVERTENCIA: " - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:32 -msgid "" -"If your visual console is bigger than widget size, it will not fit in the " -"widget, instead, both vertical and horizonal scroll bars will be drawn. If " -"you want to \"fit\" a visual console into a widget, create it with the real " -"size you want to be fitter inside the widget." -msgstr "" -"Si tu consola visual es más grande que el tamaño del widget, no encajará en " -"el widget, en su lugar si dibujarán barras de desplazamiento vertical y " -"horizontal. Si desea encajar la consola visual dentro del widget, debe " -"crearlo con el tamaño real que quiera que encaje en el widget." - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:35 -msgid "Layout" -msgstr "Diseño" - -#: ../../enterprise/dashboard/widgets/maps_status.php:25 -msgid "Maps status" -msgstr "Estado de los mapas" - -#: ../../enterprise/dashboard/widgets/maps_status.php:27 -msgid "General and quick visual maps report" -msgstr "Informe rápido y general de los mapas visuales" - -#: ../../enterprise/dashboard/widgets/module_icon.php:28 -msgid "Module with icon" -msgstr "Modulo con icono" - -#: ../../enterprise/dashboard/widgets/module_icon.php:30 -msgid "Show a value of module and icon" -msgstr "Muestra el valor de un modulo e icono" - -#: ../../enterprise/dashboard/widgets/module_icon.php:86 -#: ../../enterprise/dashboard/widgets/module_table_value.php:71 -#: ../../enterprise/dashboard/widgets/module_value.php:74 -#: ../../enterprise/dashboard/widgets/sla_percent.php:71 -msgid "Text size of value in px" -msgstr "Tamaño de texto del valor en pixels" - -#: ../../enterprise/dashboard/widgets/module_icon.php:92 -#: ../../enterprise/dashboard/widgets/module_status.php:89 -msgid "Size of icon" -msgstr "Tamaño del icono" - -#: ../../enterprise/dashboard/widgets/module_status.php:28 -msgid "Status of module" -msgstr "Estado del módulo" - -#: ../../enterprise/dashboard/widgets/module_status.php:30 -msgid "Show status of a module" -msgstr "Mostrar el estado de un módulo" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:28 -msgid "Show module value in a table" -msgstr "Mostrar el valor del módulo en una tabla" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:30 -msgid "Show a value of module in a table" -msgstr "Mostrar un valor de módulo en la tabla" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:74 -msgid "Separator of data" -msgstr "Separador" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:76 -msgid "Carriage Return" -msgstr "Retorno de carro" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:77 -msgid "Vertical Bar" -msgstr "Barra vertical" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:78 -msgid "Semicolon" -msgstr "Punto y coma" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:79 -msgid "Colon" -msgstr "Dos puntos" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:80 -msgid "Commas" -msgstr "Comas" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:81 -msgid "Blank" -msgstr "Blanco" - -#: ../../enterprise/dashboard/widgets/module_value.php:28 -msgid "Show module value" -msgstr "Mostrar el valor del módulo" - -#: ../../enterprise/dashboard/widgets/module_value.php:30 -msgid "Show a value of module" -msgstr "Mostrar el valor de un módulo" - -#: ../../enterprise/dashboard/widgets/monitor_health.php:21 -msgid "Global health" -msgstr "Salud global" - -#: ../../enterprise/dashboard/widgets/monitor_health.php:23 -msgid "Show a list of global monitor health" -msgstr "Mostrar una lista global de la salud de los monitores" - -#: ../../enterprise/dashboard/widgets/network_map.php:30 -msgid "Show a map of the monitored network" -msgstr "Mostrar un mapa de la red monitorizada" - -#: ../../enterprise/dashboard/widgets/network_map.php:42 -msgid "X offset" -msgstr "Desplazamiento en X" - -#: ../../enterprise/dashboard/widgets/network_map.php:45 -msgid "Introduce x-axis data. Right=positive Left=negative" -msgstr "Introducir dato del eje x. Derecha=positivo Izquierda=negativo" - -#: ../../enterprise/dashboard/widgets/network_map.php:47 -msgid "Y offset" -msgstr "Desplazamiento en Y" - -#: ../../enterprise/dashboard/widgets/network_map.php:50 -msgid "Introduce Y-axis data. Top=positive Bottom=negative" -msgstr "Introducir el dato del eje y. Arriba=positivo Abajo=negativo" - -#: ../../enterprise/dashboard/widgets/network_map.php:53 -msgid "Zoom level" -msgstr "Nivel de zoom" - -#: ../../enterprise/dashboard/widgets/network_map.php:56 -msgid "" -"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" -msgstr "" -"Introducir nivel de zoom. 1 = Máxima resolución. Puede incluir decimales" - -#: ../../enterprise/dashboard/widgets/post.php:23 -msgid "Panel with a message" -msgstr "panel con un mensaje" - -#: ../../enterprise/dashboard/widgets/post.php:26 -msgid "My Post" -msgstr "Mi página" - -#: ../../enterprise/dashboard/widgets/reports.php:29 -msgid "Show a report made by user" -msgstr "Mostrar un informe hecho por el usuario" - -#: ../../enterprise/dashboard/widgets/service_map.php:22 -#: ../../enterprise/operation/services/services.service.php:92 -#: ../../enterprise/operation/services/services.service_map.php:102 -msgid "Service Map" -msgstr "Mapa de servicio" - -#: ../../enterprise/dashboard/widgets/service_map.php:24 -msgid "Show a service map" -msgstr "Mostrar mapa de servicios" - -#: ../../enterprise/dashboard/widgets/service_map.php:57 -msgid "The user doesn't have permission to read agents" -msgstr "El usuario no tiene permiso de lectura para agentes" - -#: ../../enterprise/dashboard/widgets/service_map.php:62 -msgid "Missing id" -msgstr "Identificador perdido" - -#: ../../enterprise/dashboard/widgets/single_graph.php:29 -msgid "Single graph" -msgstr "Gráfico simple" - -#: ../../enterprise/dashboard/widgets/single_graph.php:31 -msgid "Show a graph of an agent module" -msgstr "Mostrar una gráfica de un módulo de agente" - -#: ../../enterprise/dashboard/widgets/sla_percent.php:29 -#: ../../enterprise/dashboard/widgets/sla_percent.php:31 -msgid "Show SLA percent" -msgstr "Mostrar porcentaje de SLA" - -#: ../../enterprise/dashboard/widgets/top_n.php:34 -msgid "Show a top n of agents modules." -msgstr "Mostrar el top N de módulos" - -#: ../../enterprise/dashboard/widgets/top_n.php:108 -msgid "" -"Please could you fill the widget data previous to filling the list items." -msgstr "Por favor, rellene el Widget de datos antes de la lista de items." - -#: ../../enterprise/dashboard/widgets/top_n.php:114 -#: ../../enterprise/dashboard/widgets/top_n.php:297 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:73 -msgid "avg" -msgstr "media" - -#: ../../enterprise/dashboard/widgets/top_n.php:272 -msgid "Selection module one by one" -msgstr "Selección de módulos uno en uno" - -#: ../../enterprise/dashboard/widgets/top_n.php:283 -msgid "Selection several modules" -msgstr "Selección múltiple de módulos" - -#: ../../enterprise/dashboard/widgets/top_n.php:311 -msgid "Regex for to filter modules" -msgstr "Expresión regular para filtrar módulos" - -#: ../../enterprise/dashboard/widgets/top_n.php:320 -#: ../../enterprise/dashboard/widgets/tree_view.php:73 -msgid "Filter modules" -msgstr "Filtrar módulos" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:26 -msgid "Top N Events by agent." -msgstr "Top N de eventos por agente" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:28 -msgid "Top N events by agent." -msgstr "Top N de eventos por agente" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:31 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:31 -msgid "Amount to show" -msgstr "Cantidad a mostrar" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:39 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:39 -msgid "Legend Position" -msgstr "Posición de la leyenda" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:43 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:43 -msgid "No legend" -msgstr "Sin leyenda" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:63 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:64 -msgid "Please select one or more groups." -msgstr "Por favor, seleccione uno o más grupos" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:124 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:129 -msgid "There is not data to show." -msgstr "No hay datos que mostrar" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:26 -msgid "Top N Events by module." -msgstr "Top N de eventos por módulo" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:28 -msgid "Top N events by module." -msgstr "Top N de eventos por módulo" - -#: ../../enterprise/dashboard/widgets/tree_view.php:22 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1212 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1416 -msgid "Tree View" -msgstr "Vista de árbol" - -#: ../../enterprise/dashboard/widgets/tree_view.php:24 -msgid "Show the tree view" -msgstr "Mostrar la vista de árbol" - -#: ../../enterprise/dashboard/widgets/tree_view.php:41 -msgid "Tab" -msgstr "Pestaña" - -#: ../../enterprise/dashboard/widgets/tree_view.php:47 -msgid "Open all nodes" -msgstr "Abrir todos los nodos" - -#: ../../enterprise/dashboard/widgets/tree_view.php:58 -msgid "Agents status" -msgstr "Estado de agente" - -#: ../../enterprise/dashboard/widgets/tree_view.php:60 -msgid "Filter agents" -msgstr "Filtrar agentes" - -#: ../../enterprise/dashboard/widgets/tree_view.php:71 -msgid "Modules status" -msgstr "Estado de modulos" - -#: ../../enterprise/dashboard/widgets/tree_view.php:82 -msgid "" -"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 contacte con su " -"administrador de Pandora" - -#: ../../enterprise/dashboard/widgets/tree_view.php:89 -msgid "This widget only working in desktop version." -msgstr "El widget solo funciona en la versión de escritorio" - -#: ../../enterprise/dashboard/widgets/ux_transaction.php:26 -#: ../../enterprise/dashboard/widgets/ux_transaction.php:79 -msgid "Ux transaction" -msgstr "Transacción UX" - -#: ../../enterprise/dashboard/widgets/ux_transaction.php:30 -msgid "Show an agent ux transaction" -msgstr "Mostrar transacción UX del agente" - -#: ../../enterprise/extensions/backup/main.php:63 -msgid "Pandora database backup utility" -msgstr "Utilidad de la copia de seguridad de BD de Pandora FMS" - -#: ../../enterprise/extensions/backup/main.php:70 -msgid "Filter backups" -msgstr "Filtro de copias de seguridad" - -#: ../../enterprise/extensions/backup/main.php:82 -msgid "Path backups" -msgstr "Ruta de copias de seguridad" - -#: ../../enterprise/extensions/backup/main.php:102 -#: ../../enterprise/extensions/cron/main.php:268 -#: ../../enterprise/extensions/cron/main.php:282 -msgid "Path" -msgstr "Ruta" - -#: ../../enterprise/extensions/backup/main.php:168 -msgid "Lost" -msgstr "Perdido" - -#: ../../enterprise/extensions/backup/main.php:198 -msgid "Backups list" -msgstr "Lista de copias de seguridad" - -#: ../../enterprise/extensions/backup/main.php:203 -msgid "Create backup" -msgstr "Crear copia de seguridad" - -#: ../../enterprise/extensions/backup/main.php:217 -msgid "Path to save backup" -msgstr "Ruta para guardar la copia de seguridad" - -#: ../../enterprise/extensions/backup.php:63 -msgid "Backup" -msgstr "Copia de seguridad" - -#: ../../enterprise/extensions/cron/functions.php:17 -#: ../../enterprise/extensions/cron/functions.php:52 -#: ../../enterprise/extensions/cron/functions.php:73 -#: ../../enterprise/extensions/cron/functions.php:104 -#: ../../enterprise/extensions/cron/functions.php:134 -#: ../../enterprise/extensions/cron/functions.php:175 -msgid "Report to build" -msgstr "Informe a construir" - -#: ../../enterprise/extensions/cron/functions.php:23 -#: ../../enterprise/extensions/cron/functions.php:48 -msgid "Send to emails (separated by comma)" -msgstr "Enviar a emails (separados por comas)" - -#: ../../enterprise/extensions/cron/functions.php:27 -#: ../../enterprise/extensions/cron/functions.php:119 -msgid "Template to build" -msgstr "Plantilla" - -#: ../../enterprise/extensions/cron/functions.php:46 -#: ../../enterprise/extensions/cron/main.php:249 -msgid "Report per agent" -msgstr "Informe por agente" - -#: ../../enterprise/extensions/cron/functions.php:58 -#: ../../enterprise/extensions/cron/functions.php:63 -#: ../../enterprise/extensions/cron/functions.php:79 -#: ../../enterprise/extensions/cron/functions.php:135 -#: ../../enterprise/extensions/cron/functions.php:176 -msgid "Save to disk into path" -msgstr "Guardar disco en la ruta" - -#: ../../enterprise/extensions/cron/functions.php:105 -#: ../../enterprise/extensions/cron/functions.php:120 -msgid "Send to email" -msgstr "Enviar a correo-e" - -#: ../../enterprise/extensions/cron/functions.php:106 -msgid "Send custom report by email" -msgstr "Enviar un informe personalizado por correo" - -#: ../../enterprise/extensions/cron/functions.php:121 -msgid "Send custom report (from template) by email" -msgstr "Enviar informe personalizado (desde plantilla) por email" - -#: ../../enterprise/extensions/cron/functions.php:136 -#: ../../enterprise/extensions/cron/functions.php:177 -msgid "Save custom report to disk" -msgstr "Guardar el informe personalizado en el disco" - -#: ../../enterprise/extensions/cron/functions.php:149 -#: ../../enterprise/extensions/cron/functions.php:162 -msgid "Backup Pandora database" -msgstr "Copia de seguridad de la BD de Pandora FMS" - -#: ../../enterprise/extensions/cron/functions.php:192 -msgid "Not scheduled" -msgstr "No programada" - -#: ../../enterprise/extensions/cron/functions.php:193 -#: ../../enterprise/extensions/vmware/functions.php:25 -msgid "Hourly" -msgstr "Cada hora" - -#: ../../enterprise/extensions/cron/functions.php:197 -#: ../../enterprise/extensions/vmware/functions.php:29 -msgid "Yearly" -msgstr "Anualmente" - -#: ../../enterprise/extensions/cron/functions.php:454 -#: ../../enterprise/extensions/cron/functions.php:554 -msgid "Greetings" -msgstr "Saludos" - -#: ../../enterprise/extensions/cron/functions.php:456 -#: ../../enterprise/extensions/cron/functions.php:556 -msgid "Attached to this email there's a PDF file of the" -msgstr "Adjunto a este email hay un archivo del" - -#: ../../enterprise/extensions/cron/functions.php:456 -#: ../../enterprise/extensions/cron/functions.php:556 -msgid "report" -msgstr "informe" - -#: ../../enterprise/extensions/cron/functions.php:460 -#: ../../enterprise/extensions/cron/functions.php:560 -msgid "Thanks for your time." -msgstr "Gracias por su tiempo." - -#: ../../enterprise/extensions/cron/functions.php:462 -#: ../../enterprise/extensions/cron/functions.php:562 -msgid "Best regards, Pandora FMS" -msgstr "Saludos cordiales, Pandora FMS" - -#: ../../enterprise/extensions/cron/functions.php:464 -#: ../../enterprise/extensions/cron/functions.php:564 -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 " -"responda a este email." - -#: ../../enterprise/extensions/cron/main.php:39 -#: ../../enterprise/extensions/cron.php:117 -#: ../../enterprise/extensions/cron.php:123 -msgid "Cron jobs" -msgstr "Tareas programadas" - -#: ../../enterprise/extensions/cron/main.php:45 -msgid "Add new job" -msgstr "Añadir nueva tarea" - -#: ../../enterprise/extensions/cron/main.php:83 -#: ../../enterprise/extensions/cron/main.php:142 -msgid "Path doesn't exists or is not writable" -msgstr "La ruta no existe o no se puede escribir en ella" - -#: ../../enterprise/extensions/cron/main.php:117 -#: ../../enterprise/extensions/cron/main.php:135 -msgid "Edit job" -msgstr "Editar tarea" - -#: ../../enterprise/extensions/cron/main.php:161 -msgid "Cron extension is not running" -msgstr "La extensión de tareas programadas (cron) no está ejecutándose" - -#: ../../enterprise/extensions/cron/main.php:162 -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" - -#: ../../enterprise/extensions/cron/main.php:164 -msgid "" -"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" - -#: ../../enterprise/extensions/cron/main.php:166 -msgid "Please, add the following line to your crontab file" -msgstr "Añada la siguiente linea a su archivo crontab" - -#: ../../enterprise/extensions/cron/main.php:172 -msgid "Last execution" -msgstr "Última ejecución" - -#: ../../enterprise/extensions/cron/main.php:179 -msgid "Cron extension is running" -msgstr "La extensión Cron se está ejecutando" - -#: ../../enterprise/extensions/cron/main.php:188 -msgid "Scheduled jobs" -msgstr "Tareas programadas" - -#: ../../enterprise/extensions/cron/main.php:197 -#: ../../enterprise/extensions/cron/main.php:318 -msgid "Task" -msgstr "Tarea" - -#: ../../enterprise/extensions/cron/main.php:198 -#: ../../enterprise/extensions/cron/main.php:327 -#: ../../enterprise/extensions/vmware/main.php:275 -msgid "Scheduled" -msgstr "Programado" - -#: ../../enterprise/extensions/cron/main.php:199 -#: ../../enterprise/extensions/cron/main.php:330 -msgid "Next execution" -msgstr "Siguiente ejecución" - -#: ../../enterprise/extensions/cron/main.php:200 -msgid "Last run" -msgstr "Última ejecución" - -#: ../../enterprise/extensions/cron/main.php:209 -msgid "Force run" -msgstr "Forzar ejecución" - -#: ../../enterprise/extensions/csv_import/main.php:40 +#: ../../godmode/snmpconsole/snmp_alert.php:589 #, php-format -msgid "Created agent %s" -msgstr "Agente creado %s" - -#: ../../enterprise/extensions/csv_import/main.php:41 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2036 -#, php-format -msgid "Could not create agent %s" -msgstr "No se pudieron crear agentes %s" - -#: ../../enterprise/extensions/csv_import/main.php:46 -#: ../../enterprise/extensions/csv_import_group/main.php:46 -msgid "File processed" -msgstr "Archivo procesado" - -#: ../../enterprise/extensions/csv_import/main.php:56 -#: ../../enterprise/extensions/csv_import_group/main.php:56 -msgid "CSV format" -msgstr "Formato CVS" - -#: ../../enterprise/extensions/csv_import/main.php:57 -#: ../../enterprise/extensions/csv_import_group/main.php:57 -msgid "The CSV file must have the fields in the following order" -msgstr "El archivo CSV tiene que tener los campos en el siguiente orden" - -#: ../../enterprise/extensions/csv_import/main.php:72 -#: ../../enterprise/extensions/csv_import_group/main.php:72 -msgid "Upload file" -msgstr "Subir archivo" - -#: ../../enterprise/extensions/csv_import/main.php:79 -#: ../../enterprise/extensions/csv_import_group/main.php:75 -msgid "Separator" -msgstr "Separador" - -#: ../../enterprise/extensions/csv_import/main.php:83 -#: ../../enterprise/extensions/csv_import_group/main.php:79 -msgid "Upload CSV file" -msgstr "Subir archivo CSV" - -#: ../../enterprise/extensions/csv_import.php:27 -msgid "CSV import" -msgstr "Importar CSV" - -#: ../../enterprise/extensions/csv_import_group/main.php:40 -#, php-format -msgid "Created group %s" -msgstr "Grupo creado %s" - -#: ../../enterprise/extensions/csv_import_group/main.php:41 -#, php-format -msgid "Could not create group %s" -msgstr "No se pudo crear el grupo %s" - -#: ../../enterprise/extensions/csv_import_group.php:27 -msgid "CSV import group" -msgstr "Importar grupos de CSV" - -#: ../../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:100 -msgid "There are no defined users" -msgstr "No hay usuarios definidos" - -#: ../../enterprise/extensions/disabled/check_acls.php:188 -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:198 -msgid "Only admin users can see this section." -msgstr "Solo los usuarios administradores pueden ver esta sección." - -#: ../../enterprise/extensions/disabled/check_acls.php:202 -msgid "Check ACL" -msgstr "Comprobar ACL" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:21 -msgid "Export to Excel" -msgstr "Exportar a Excel" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:59 -msgid "Assign next free IP" -msgstr "Asignar la siguiente IP libre" - -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:73 -msgid "Next available IP" -msgstr "Siguiente IP disponible" - -#: ../../enterprise/extensions/ipam/ipam_action.php:79 -#: ../../enterprise/extensions/ipam/ipam_action.php:115 -msgid "Incorrect format in Subnet field" -msgstr "Formato incorrecto en el campo Subred" - -#: ../../enterprise/extensions/ipam/ipam_action.php:83 -#: ../../enterprise/extensions/ipam/ipam_action.php:120 -msgid "The location is not filled, please add a location." -msgstr "La ubicación no está rellena, por favor, añadir una ubicación." - -#: ../../enterprise/extensions/ipam/ipam_action.php:194 -msgid "Successfully updated." -msgstr "Actualizado con éxito." - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:84 -msgid "There is not an available IP." -msgstr "No hay una IP disponible" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:87 -msgid "Next available IP Address is:" -msgstr "La siguiente IP disponible es:" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:110 -msgid "Reserve this IP now" -msgstr "Reservar esta IP ahora" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:126 -msgid "Manage this IP now" -msgstr "Gestionar esta IP ahora" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:157 -#: ../../enterprise/extensions/ipam/ipam_excel.php:116 -#: ../../enterprise/extensions/ipam/ipam_network.php:274 -#: ../../enterprise/extensions/ipam/ipam_network.php:275 -#: ../../enterprise/extensions/ipam/ipam_network.php:536 -msgid "Hostname" -msgstr "Nombre de máquina" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:167 -msgid "Operating system" -msgstr "Sistema operativo" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:177 -msgid "This agent has other IPs" -msgstr "Este agente tiene otras IPs" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:186 -msgid "Generate events" -msgstr "Generar eventos" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:191 -#: ../../enterprise/extensions/ipam/ipam_massive.php:77 -#: ../../enterprise/extensions/ipam/ipam_network.php:231 -#: ../../enterprise/extensions/ipam/ipam_network.php:540 -msgid "Managed" -msgstr "Gestionado" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:201 -#: ../../enterprise/extensions/ipam/ipam_massive.php:78 -#: ../../enterprise/extensions/ipam/ipam_network.php:237 -#: ../../enterprise/extensions/ipam/ipam_network.php:306 -#: ../../enterprise/extensions/ipam/ipam_network.php:541 -msgid "Reserved" -msgstr "Reservado" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:226 -msgid "Edited" -msgstr "Modificado" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:236 -msgid "Tracking" -msgstr "Seguimiento" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:252 -msgid "Ping" -msgstr "Ping" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:294 -msgid "Ping to host" -msgstr "Ping a una máquina" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:43 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:44 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:52 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:53 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:54 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:55 -msgid "Example:" -msgstr "Ejemplo:" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:46 -msgid "Bit mask" -msgstr "Bit de máscara" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:46 -msgid "Net mask" -msgstr "Máscara de red" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:48 -msgid "Mask format" -msgstr "Formato de máscara" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:50 -msgid "Mask" -msgstr "Máscara" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:63 -msgid "Calculate" -msgstr "Calcular" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:70 -msgid "Address field is empty" -msgstr "El campo Dirección está vacío" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:76 -msgid "Mask field is empty" -msgstr "El campo Máscara está vacío" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:94 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:109 -msgid "Incorrect address format" -msgstr "Formato de dirección incorrecto" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:98 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:102 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:113 -msgid "Incorrect mask format" -msgstr "Formato de máscara incorrecto" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:141 -msgid "Network mask" -msgstr "Máscara de red" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:155 -msgid "Network wildcard" -msgstr "Red wildcard" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:160 -msgid "Network address" -msgstr "Dirección de red" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:165 -msgid "Broadcast address" -msgstr "Dirección de difusión" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:170 -msgid "First valid IP" -msgstr "Primera IP válida" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:175 -msgid "Last valid IP" -msgstr "Última IP válida" - -#: ../../enterprise/extensions/ipam/ipam_calculator.php:181 -msgid "Hosts/Net" -msgstr "Hosts/Red" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:35 -msgid "Network not found" -msgstr "Red no encontrada" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:69 -msgid "Format: IP/Mask" -msgstr "Formato: IP/Máscara" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:71 -msgid "Examples" -msgstr "Ejemplos" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:89 -msgid "For example: Central Data Center" -msgstr "Por ejemplo: Central General de Datos" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:93 -msgid "Scan interval" -msgstr "Comprobar intervalo" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:93 -msgid "0 for manually scan" -msgstr "0 para comprobación manual" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:98 -msgid "Operator users" -msgstr "Usuarios del operador" - -#: ../../enterprise/extensions/ipam/ipam_editor.php:98 -msgid "" -"The list of users can manage the networks in the IPAM. Only the admin users " -"can manage networks and edit the networks." -msgstr "" -"Los usuarios de la lista pueden gestionar las redes en IPAM. Solo los " -"usuarios administradores pueden gestionar y modificar las redes." - -#: ../../enterprise/extensions/ipam/ipam_excel.php:116 -#: ../../enterprise/extensions/ipam/ipam_network.php:225 -#: ../../enterprise/extensions/ipam/ipam_network.php:550 -msgid "Alive" -msgstr "Activo" - -#: ../../enterprise/extensions/ipam/ipam_list.php:133 -msgid "No networks found" -msgstr "No se ha encontrado ninguna red" - -#: ../../enterprise/extensions/ipam/ipam_list.php:175 -msgid "IPs" -msgstr "IPs" - -#: ../../enterprise/extensions/ipam/ipam_list.php:230 -#: ../../enterprise/extensions/ipam.php:189 -msgid "Manage addresses" -msgstr "Administrar direcciones" - -#: ../../enterprise/extensions/ipam/ipam_list.php:233 -#: ../../enterprise/extensions/ipam.php:205 -msgid "Addresses view" -msgstr "Vista de direcciones" - -#: ../../enterprise/extensions/ipam/ipam_list.php:239 -msgid "Edit network" -msgstr "Modificar red" - -#: ../../enterprise/extensions/ipam/ipam_list.php:243 -msgid "Delete network" -msgstr "Eliminar red" - -#: ../../enterprise/extensions/ipam/ipam_massive.php:68 -msgid "Addresses" -msgstr "Direcciones" - -#: ../../enterprise/extensions/ipam/ipam_network.php:104 -msgid "No addresses found on this network" -msgstr "No se han encontrado direcciones en esta red" - -#: ../../enterprise/extensions/ipam/ipam_network.php:121 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:324 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:53 -msgid "Subnet" -msgstr "Subred" - -#: ../../enterprise/extensions/ipam/ipam_network.php:219 -msgid "Total IPs" -msgstr "IPs totales" - -#: ../../enterprise/extensions/ipam/ipam_network.php:227 -#: ../../enterprise/extensions/ipam/ipam_network.php:553 -msgid "Not alive" -msgstr "Inactivo" - -#: ../../enterprise/extensions/ipam/ipam_network.php:233 -msgid "Not managed" -msgstr "No gestionado" - -#: ../../enterprise/extensions/ipam/ipam_network.php:239 -msgid "Not Reserved" -msgstr "No reservado" - -#: ../../enterprise/extensions/ipam/ipam_network.php:272 -msgid "DESC" -msgstr "DESC" - -#: ../../enterprise/extensions/ipam/ipam_network.php:273 -msgid "ASC" -msgstr "ASC" - -#: ../../enterprise/extensions/ipam/ipam_network.php:274 -msgid "A -> Z" -msgstr "A -> Z" - -#: ../../enterprise/extensions/ipam/ipam_network.php:275 -msgid "Z -> A" -msgstr "Z -> A" - -#: ../../enterprise/extensions/ipam/ipam_network.php:276 -#: ../../enterprise/extensions/ipam/ipam_network.php:277 -msgid "Last check" -msgstr "Ultima comprobación" - -#: ../../enterprise/extensions/ipam/ipam_network.php:276 -msgid "Newer -> Older" -msgstr "Actual -> Antiguo" - -#: ../../enterprise/extensions/ipam/ipam_network.php:277 -msgid "Older -> Newer" -msgstr "Antiguo -> Actual" - -#: ../../enterprise/extensions/ipam/ipam_network.php:284 -msgid "Exact address match" -msgstr "Coincide la dirección exacta" - -#: ../../enterprise/extensions/ipam/ipam_network.php:288 -msgid "Big" -msgstr "Grande" - -#: ../../enterprise/extensions/ipam/ipam_network.php:289 -msgid "Tiny" -msgstr "Pequeño" - -#: ../../enterprise/extensions/ipam/ipam_network.php:290 -msgid "Icons style" -msgstr "Estilo de iconos" - -#: ../../enterprise/extensions/ipam/ipam_network.php:297 -msgid "Show not alive hosts" -msgstr "Mostrar máquinas inactivas" - -#: ../../enterprise/extensions/ipam/ipam_network.php:300 -msgid "Show only managed addresses" -msgstr "Mostrar solo direcciones administradas" - -#: ../../enterprise/extensions/ipam/ipam_network.php:303 -msgid "Reserved addresses" -msgstr "Direcciones reservadas" - -#: ../../enterprise/extensions/ipam/ipam_network.php:307 -msgid "Unreserved" -msgstr "No reservado" - -#: ../../enterprise/extensions/ipam/ipam_network.php:332 -msgid "Filter options" -msgstr "Opciones de filtro" - -#: ../../enterprise/extensions/ipam/ipam_network.php:472 -msgid "Edit address" -msgstr "Modificar dirección" - -#: ../../enterprise/extensions/ipam/ipam_network.php:477 -msgid "Disabled address" -msgstr "Deshabilitar direción" - -#: ../../enterprise/extensions/ipam/ipam_network.php:477 -msgid "This address will not be updated by the server" -msgstr "Esta direción no se actualizará por el servidor" - -#: ../../enterprise/extensions/ipam/ipam_network.php:574 -#: ../../enterprise/extensions/ipam/ipam_network.php:609 -#: ../../enterprise/extensions/ipam/ipam_network.php:632 -msgid "Change to automatic mode" -msgstr "Cambiar a modo automático" - -#: ../../enterprise/extensions/ipam/ipam_network.php:575 -#: ../../enterprise/extensions/ipam/ipam_network.php:610 -#: ../../enterprise/extensions/ipam/ipam_network.php:633 -msgid "Change to manual mode" -msgstr "Cambiar a modo manual" - -#: ../../enterprise/extensions/ipam/ipam_network.php:649 -msgid "Add comments" -msgstr "Añadir comentarios" - -#: ../../enterprise/extensions/ipam/ipam_network.php:666 -msgid "Update agent address" -msgstr "Actualizar direción de agente" - -#: ../../enterprise/extensions/ipam/ipam_network.php:783 -msgid "Please, uncheck auto option to set manual agent." -msgstr "Desmarcar la opción auto para establecer agente manual" - -#: ../../enterprise/extensions/ipam.php:168 -#: ../../enterprise/extensions/ipam.php:284 -msgid "Subnetworks calculator" -msgstr "Calculadora de subredes" - -#: ../../enterprise/extensions/ipam.php:240 -#: ../../enterprise/extensions/ipam.php:308 -#: ../../enterprise/extensions/ipam.php:330 -#: ../../enterprise/extensions/ipam.php:331 -msgid "IPAM" -msgstr "IPAM" - -#: ../../enterprise/extensions/resource_exportation/functions.php:19 -msgid "Export agents" -msgstr "Exportar agentes" - -#: ../../enterprise/extensions/resource_registration/functions.php:37 -#, php-format -msgid "Error create '%s' policy, the name exist and there aren't free name." -msgstr "" -"Error al crear política '%s', el nombre ya existe. Ese nombre no está libre." - -#: ../../enterprise/extensions/resource_registration/functions.php:44 -#, php-format -msgid "" -"Warning create '%s' policy, the name exist, the policy have a name %s." -msgstr "" -"Política de advertencia creada '%s', el nombre existe, la política tiene un " -"nombre %s." - -#: ../../enterprise/extensions/resource_registration/functions.php:51 -msgid "Error the policy haven't name." -msgstr "Error la política no tiene nombre." - -#: ../../enterprise/extensions/resource_registration/functions.php:65 -#, php-format -msgid "Success create '%s' policy." -msgstr "Política '%s' creada correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:66 -#, php-format -msgid "Error create '%s' policy." -msgstr "Error al crear la política '%s'." - -#: ../../enterprise/extensions/resource_registration/functions.php:104 -#, php-format -msgid "Error add '%s' agent. The agent does not exist in pandora" -msgstr "Error al añadir el agente '%s'. El agente no existe en pandora" - -#: ../../enterprise/extensions/resource_registration/functions.php:108 -#, php-format -msgid "Success add '%s' agent." -msgstr "Agente '%s' añadido correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:109 -#, php-format -msgid "Error add '%s' agent." -msgstr "Error al añadir agente '%s'." - -#: ../../enterprise/extensions/resource_registration/functions.php:128 -msgid "The collection does not exist in pandora" -msgstr "La colección no existe en pandora" - -#: ../../enterprise/extensions/resource_registration/functions.php:132 -#, php-format -msgid "Success add '%s' collection." -msgstr "Colección '%s' añadida correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:133 -#, php-format -msgid "Error add '%s' collection." -msgstr "Error al añadir colección '%s'." - -#: ../../enterprise/extensions/resource_registration/functions.php:149 -#, php-format -msgid "Success add '%s' agent plugin." -msgstr "Añadido el plugin de agente '%s' con éxito." - -#: ../../enterprise/extensions/resource_registration/functions.php:150 -#, php-format -msgid "Error add '%s' agent plugin." -msgstr "Error al añadir el plugin de agente '%s'." - -#: ../../enterprise/extensions/resource_registration/functions.php:161 -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:269 -#: ../../enterprise/extensions/resource_registration/functions.php:299 -#: ../../enterprise/extensions/resource_registration/functions.php:356 -#: ../../enterprise/extensions/resource_registration/functions.php:402 -msgid "Error add the module, error in tag component." -msgstr "Error al añadir el módulo, error en el componente tag." - -#: ../../enterprise/extensions/resource_registration/functions.php:443 -msgid "Error add the module plugin importation, plugin is not registered" -msgstr "Error al importar el modulo plugin, el plugin no está registrado" - -#: ../../enterprise/extensions/resource_registration/functions.php:454 -#, php-format -msgid "Success add '%s' module." -msgstr "Módulo '%s' añadido correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:455 -#, php-format -msgid "Error add '%s' module." -msgstr "Error al añadir el módulo '%s'" - -#: ../../enterprise/extensions/resource_registration/functions.php:465 -#, 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:473 -#, 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:486 -#, php-format -msgid "Success add '%s' alert." -msgstr "Alerta '%s' añadida correctamente" - -#: ../../enterprise/extensions/resource_registration/functions.php:487 -#, php-format -msgid "Error add '%s' alert." -msgstr "Error al añadir alerta '%s'." - -#: ../../enterprise/extensions/resource_registration/functions.php:503 -#, 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:515 -#, php-format -msgid "Success add '%s' action." -msgstr "Acción añadida correctamente '%s'." - -#: ../../enterprise/extensions/translate_string.php:165 -#: ../../enterprise/extensions/translate_string.php:326 -msgid "Translate string" -msgstr "Traducir cadena" - -#: ../../enterprise/extensions/translate_string.php:271 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:151 -msgid "Please search for anything text." -msgstr "Por favor haga una búsqueda de cualquier cadena de texto" - -#: ../../enterprise/extensions/translate_string.php:280 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:161 -msgid "Original string" -msgstr "Cadena original" - -#: ../../enterprise/extensions/translate_string.php:281 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:162 -msgid "Translation in selected language" -msgstr "Traducción en el idioma seleccionado" - -#: ../../enterprise/extensions/translate_string.php:282 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:163 -msgid "Customize translation" -msgstr "Personalizar traducción" - -#: ../../enterprise/extensions/vmware/vmware_view.php:638 -#: ../../enterprise/extensions/vmware/vmware_view.php:1040 -msgid "Top 5 VMs CPU Usage" -msgstr "Top 5 VMs del uso de CPU" - -#: ../../enterprise/extensions/vmware/vmware_view.php:645 -#: ../../enterprise/extensions/vmware/vmware_view.php:1047 -msgid "Top 5 VMs Memory Usage" -msgstr "Top 5 VMs del uso de memoria" - -#: ../../enterprise/extensions/vmware/vmware_view.php:654 -#: ../../enterprise/extensions/vmware/vmware_view.php:1056 -msgid "Top 5 VMs Disk Usage" -msgstr "Top 5 VMs del uso de disco" - -#: ../../enterprise/extensions/vmware/vmware_view.php:661 -#: ../../enterprise/extensions/vmware/vmware_view.php:1063 -msgid "Top 5 VMs Network Usage" -msgstr "Top 5 VMs del uso de la red" - -#: ../../enterprise/extensions/vmware/vmware_view.php:718 -msgid "Host ESX" -msgstr "Host ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:953 -msgid "CPU Usage" -msgstr "Uso de CPU" - -#: ../../enterprise/extensions/vmware/vmware_view.php:963 -msgid "Memory Usage" -msgstr "Uso de memoria" - -#: ../../enterprise/extensions/vmware/vmware_view.php:973 -msgid "Disk I/O Rate" -msgstr "Ratio lectura/escritura de disco" - -#: ../../enterprise/extensions/vmware/vmware_view.php:983 -msgid "Network Usage" -msgstr "Uso de red" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1115 -msgid "ESX Detail" -msgstr "Detalle de ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1132 -msgid "ESX details" -msgstr "Detalles de ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1143 -msgid "VMware View" -msgstr "Vista VMware" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1231 -msgid "" -"Some ESX Hosts are not up to date, please check vmware plugin configuration." -msgstr "" -"Algunos anfitriones ESX no están al día, por favor compruebe la " -"configuración del plugin vmware." - -#: ../../enterprise/extensions/vmware/vmware_view.php:1234 -msgid "VMWare plugin is working." -msgstr "El plugin VMWare está trabajando" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1243 -msgid "View VMWare map" -msgstr "Mapa VMWare" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1244 -msgid "View VMWare dashboard" -msgstr "Dashboard VMWare" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1245 -msgid "View ESX Host statistics from" -msgstr "Ver las estadísticas del anfitrión ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1253 -msgid "this link" -msgstr "este enlace" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1253 -msgid "administration page" -msgstr "pagina de administración" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1323 -msgid "Show Datastores" -msgstr "Mostrar datastores" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1326 -msgid "Show ESX" -msgstr "Mostrar ESX" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1329 -msgid "Show VM" -msgstr "Mostrar VM" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1347 -msgid "Zoom" -msgstr "Ampliación" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1357 -msgid "View options" -msgstr "Ver opciones" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1404 -msgid "VMware map" -msgstr "Mapa VMware" - -#: ../../enterprise/extensions/vmware/main.php:30 -msgid "WMware Plugin Settings" -msgstr "Opciones del plugin VMware" - -#: ../../enterprise/extensions/vmware/main.php:79 -msgid "VMWare configuration updated." -msgstr "Configuración de VMWare actualizada." - -#: ../../enterprise/extensions/vmware/main.php:142 -msgid "VMWare scheduled execution disabled." -msgstr "Tarea de ejecución VMWare deshabilitada." - -#: ../../enterprise/extensions/vmware/main.php:165 -msgid "There was an error updating the execution data of the plugin" -msgstr "Ha habido un error al actualizar los datos de ejecución del plugin" - -#: ../../enterprise/extensions/vmware/main.php:168 -#: ../../enterprise/extensions/vmware/main.php:178 -msgid "VMWare scheduled execution updated." -msgstr "Tarea de ejecución VMWare actualizada." - -#: ../../enterprise/extensions/vmware/main.php:174 -msgid "There was an error activating the execution of the plugin" -msgstr "Ha habido un error al activar los datos de ejecución del plugin" - -#: ../../enterprise/extensions/vmware/main.php:194 -msgid "Config Path" -msgstr "Ruta de configuración" - -#: ../../enterprise/extensions/vmware/main.php:201 -msgid "Plugin Path" -msgstr "Ruta del plugin" - -#: ../../enterprise/extensions/vmware/main.php:226 -msgid "Config parameters" -msgstr "Parámetros de configuración" - -#: ../../enterprise/extensions/vmware/main.php:233 -msgid "V-Center IP" -msgstr "V-Center IP" - -#: ../../enterprise/extensions/vmware/main.php:238 -msgid "Datacenter Name" -msgstr "Nombre del centro de datos" - -#: ../../enterprise/extensions/vmware/main.php:265 -msgid "Plugin execution" -msgstr "Ejecución del plugin" - -#: ../../enterprise/extensions/vmware/main.php:266 -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" -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" - -#: ../../enterprise/extensions/vmware/main.php:298 -#: ../../enterprise/godmode/agentes/collections.php:269 -msgid "Apply changes" -msgstr "Aplicar Cambios" - -#: ../../enterprise/extensions/vmware/vmware_manager.php:160 -msgid "Power Status: " -msgstr "Estado: " - -#: ../../enterprise/extensions/vmware/vmware_manager.php:206 -msgid "Change Status" -msgstr "Cambiar estado:" - -#: ../../enterprise/extensions/vmware/functions.php:161 -#: ../../enterprise/extensions/vmware/functions.php:189 -msgid "The file does not exists" -msgstr "El archivo seleccionado no existe" - -#: ../../enterprise/extensions/vmware/functions.php:165 -msgid "The file is not readable by HTTP Server" -msgstr "El fichero no puede ser leído por el servidor HTTP" - -#: ../../enterprise/extensions/vmware/functions.php:166 -#: ../../enterprise/extensions/vmware/functions.php:171 -msgid "Please check that the web server has write rights on the file" -msgstr "" -"Por favor, compruebe que el servidor web tenga permisos de escritura sobre " -"este fichero" - -#: ../../enterprise/extensions/vmware/functions.php:170 -msgid "The file is not writable by HTTP Server" -msgstr "El fichero no puede ser escrito por el servidor HTTP" - -#: ../../enterprise/extensions/vmware.php:46 -msgid "VMware" -msgstr "VMware" - -#: ../../enterprise/godmode/admin_access_logs.php:42 -msgid "Show extended info" -msgstr "Mostrar más info" - -#: ../../enterprise/godmode/admin_access_logs.php:61 -msgid "" -"Maybe delete the extended data or the audit data is previous to table " -"tsession_extended." -msgstr "" -"Puede que se haya borrado información exntendida, o que la información de " -"auditoría sea previa a la instalación enterprise." - -#: ../../enterprise/godmode/admin_access_logs.php:71 -msgid "Security check is ok." -msgstr "La comprobación de seguridad está ok" - -#: ../../enterprise/godmode/admin_access_logs.php:78 -msgid "Security check is fail." -msgstr "La comprobación de seguridad ha fallado" - -#: ../../enterprise/godmode/admin_access_logs.php:115 -msgid "Extended info:" -msgstr "Información extendida" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:107 -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:112 -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:150 -#: ../../enterprise/godmode/policies/policy_modules.php:326 -msgid "Add module" -msgstr "Añadir módulo" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:176 -msgid "No module was found" -msgstr "No se encontraron módulos" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:204 -msgid "Delete remote conf agent files in Pandora" -msgstr "" -"Eliminar los archivos de configuración remota de agentes en Pandora FMS" - -#: ../../enterprise/godmode/agentes/collection_manager.php:37 -#: ../../enterprise/operation/agentes/collection_view.php:47 -msgid "This agent have not a remote configuration, please set it." -msgstr "Este agente no se ha configurado remotamente, por favor, configúrelo" - -#: ../../enterprise/godmode/agentes/collection_manager.php:76 -msgid "Succesful add the collection" -msgstr "Añadido a la colección correctamente" - -#: ../../enterprise/godmode/agentes/collection_manager.php:77 -msgid "Unsuccesful add the collection" -msgstr "No se ha podido añadir a la colección" - -#: ../../enterprise/godmode/agentes/collection_manager.php:91 -#: ../../enterprise/godmode/agentes/collections.php:128 -#: ../../enterprise/godmode/agentes/collections.php:143 -msgid "Successful create collection package." -msgstr "Paquete de la colección creado correctamente" - -#: ../../enterprise/godmode/agentes/collection_manager.php:92 -#: ../../enterprise/godmode/agentes/collections.php:144 -msgid "Can not create collection package." -msgstr "No se puede crear paquete de la colección" - -#: ../../enterprise/godmode/agentes/collection_manager.php:106 -#: ../../enterprise/godmode/agentes/collections.php:231 -#: ../../enterprise/godmode/policies/policy_collections.php:122 -#: ../../enterprise/godmode/policies/policy_collections.php:193 -msgid "Short Name" -msgstr "Nombre Corto" - -#: ../../enterprise/godmode/agentes/collection_manager.php:121 -#: ../../enterprise/godmode/agentes/collection_manager.php:204 -#: ../../enterprise/operation/agentes/collection_view.php:91 -#: ../../enterprise/operation/agentes/policy_view.php:154 -msgid "Show files" -msgstr "Mostrar archivos" - -#: ../../enterprise/godmode/agentes/collection_manager.php:138 -#: ../../enterprise/godmode/agentes/collection_manager.php:139 -#: ../../enterprise/godmode/agentes/collection_manager.php:223 -#: ../../enterprise/godmode/agentes/collection_manager.php:224 -#: ../../enterprise/godmode/agentes/collections.data.php:341 -#: ../../enterprise/godmode/agentes/collections.data.php:342 -msgid "Need to regenerate" -msgstr "Necesita volver a regenerarse" - -#: ../../enterprise/godmode/agentes/collection_manager.php:144 -#: ../../enterprise/godmode/agentes/collection_manager.php:145 -#: ../../enterprise/godmode/agentes/collection_manager.php:229 -#: ../../enterprise/godmode/agentes/collection_manager.php:230 -#: ../../enterprise/godmode/agentes/collections.data.php:346 -#: ../../enterprise/godmode/agentes/collections.data.php:347 -#: ../../enterprise/godmode/agentes/collections.php:274 -#: ../../enterprise/godmode/agentes/collections.php:275 -#: ../../enterprise/operation/agentes/collection_view.php:106 -#: ../../enterprise/operation/agentes/collection_view.php:107 -msgid "The collection directory does not exist." -msgstr "El directorio donde se guardan las colecciones no existe." - -#: ../../enterprise/godmode/agentes/collection_manager.php:164 -#: ../../enterprise/operation/agentes/collection_view.php:64 -#: ../../enterprise/operation/agentes/policy_view.php:132 -msgid "Dir" -msgstr "Dir" - -#: ../../enterprise/godmode/agentes/collections.agents.php:38 -msgid "Show Agent >" -msgstr "Mostrar agente >" - -#: ../../enterprise/godmode/agentes/collections.agents.php:113 -msgid "This collection has not been added to any agents" -msgstr "Esta colección no se ha añadido a ningún agente" - -#: ../../enterprise/godmode/agentes/collections.data.php:47 -#: ../../enterprise/godmode/agentes/collections.data.php:125 -#: ../../enterprise/godmode/agentes/collections.data.php:144 -#: ../../enterprise/godmode/agentes/collections.data.php:159 -#: ../../enterprise/godmode/agentes/collections.data.php:181 -#: ../../enterprise/godmode/agentes/collections.data.php:223 -msgid "Manager configuration > New" -msgstr "Gestionar la configuración > New" - -#: ../../enterprise/godmode/agentes/collections.data.php:94 -#: ../../enterprise/godmode/agentes/collections.data.php:200 -#: ../../enterprise/godmode/agentes/collections.data.php:269 -#: ../../enterprise/godmode/agentes/collections.data.php:283 -#: ../../enterprise/godmode/agentes/collections.data.php:289 -#: ../../enterprise/godmode/agentes/collections.editor.php:55 -msgid "Manager configuration > Edit " -msgstr "Gestionar la configuración > Edit " - -#: ../../enterprise/godmode/agentes/collections.data.php:132 -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/godmode/agentes/collections.data.php:150 -#: ../../enterprise/godmode/agentes/collections.data.php:165 -msgid "Unable to create the collection" -msgstr "Imposible crear la colección" - -#: ../../enterprise/godmode/agentes/collections.data.php:150 -msgid "Invalid characters in short name" -msgstr "Caracteres inválidos en el nombre" - -#: ../../enterprise/godmode/agentes/collections.data.php:165 -#: ../../enterprise/include/functions_local_components.php:138 -msgid "Empty name" -msgstr "Nombre vacío" - -#: ../../enterprise/godmode/agentes/collections.data.php:187 -#: ../../enterprise/godmode/agentes/collections.data.php:231 -msgid "Unable to create the collection." -msgstr "Imposible crear la colección" - -#: ../../enterprise/godmode/agentes/collections.data.php:208 -#: ../../enterprise/godmode/agentes/collections.data.php:295 -msgid "Correct create collection" -msgstr "Creado con éxito colección de ficheros." - -#: ../../enterprise/godmode/agentes/collections.data.php:273 -msgid "Unable to edit the collection, empty name." -msgstr "Imposible crear colección. Nombre vacío." - -#: ../../enterprise/godmode/agentes/collections.data.php:286 -msgid "Unable to edit the collection." -msgstr "Imposible editar colección" - -#: ../../enterprise/godmode/agentes/collections.data.php:308 -msgid "Error: The collection directory does not exist." -msgstr "Error: El directorio donde se almacenan las colecciones no existe." - -#: ../../enterprise/godmode/agentes/collections.data.php:325 -msgid "Recreate file" -msgstr "Volver a crear archivo" - -#: ../../enterprise/godmode/agentes/collections.data.php:369 -msgid "Short name:" -msgstr "Nombre corto:" - -#: ../../enterprise/godmode/agentes/collections.data.php:375 -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 " -"attachment y la colección de paquetes." - -#: ../../enterprise/godmode/agentes/collections.data.php:375 -msgid "Short name must contain only alphanumeric characters, - or _ ." -msgstr "" -"Los nombres cortos deben contener sólo caracteres alfanuméricos, - o _." - -#: ../../enterprise/godmode/agentes/collections.data.php:375 -msgid "Empty for default short name fc_X where X is the collection id." -msgstr "" -"Déjelo vacío para el nombre corto por defecto (fc_X) donde X es el ID de la " -"colección." - -#: ../../enterprise/godmode/agentes/collections.editor.php:63 -msgid "Files in " -msgstr "Archivos en " - -#: ../../enterprise/godmode/agentes/collections.editor.php:112 -#: ../../enterprise/godmode/agentes/collections.editor.php:173 -msgid "Back to file explorer" -msgstr "Volver al explorador de archivos" - -#: ../../enterprise/godmode/agentes/collections.editor.php:236 -msgid "Correct update file." -msgstr "Actualización correcta del archivo" - -#: ../../enterprise/godmode/agentes/collections.editor.php:237 -msgid "Incorrect update file." -msgstr "Archivo NO actualizado correctamente" - -#: ../../enterprise/godmode/agentes/collections.editor.php:376 -msgid "Please, first save a new collection before to upload files." -msgstr "Por favor, antes de subir archivos, guarde una nueva colección" - -#: ../../enterprise/godmode/agentes/collections.php:48 -msgid "Success: recreate file" -msgstr "Éxito: al volver a crear el archivo" - -#: ../../enterprise/godmode/agentes/collections.php:51 -msgid "Error: recreate file " -msgstr "Error: volver a crear archivo " - -#: ../../enterprise/godmode/agentes/collections.php:64 -#: ../../enterprise/godmode/agentes/collections.php:86 -#: ../../enterprise/godmode/agentes/collections.php:157 -msgid "Collections Management" -msgstr "Gestión de colecciones" - -#: ../../enterprise/godmode/agentes/collections.php:120 -msgid "Manager collection" -msgstr "Gestor de colecciones" - -#: ../../enterprise/godmode/agentes/collections.php:164 -msgid "Error: The main directory of collections does not exist." -msgstr "Error: El directorio principal de las colecciones no existe." - -#: ../../enterprise/godmode/agentes/collections.php:254 -msgid "Are you sure to delete?" -msgstr "¿Está seguro de que quiere eliminarlo?" - -#: ../../enterprise/godmode/agentes/collections.php:255 -msgid "Delete collection" -msgstr "Eliminar colección" - -#: ../../enterprise/godmode/agentes/collections.php:261 -msgid "Are you sure to re-apply?" -msgstr "Seguro de que deseas re aplicar?" - -#: ../../enterprise/godmode/agentes/collections.php:262 -msgid "Re-Apply changes" -msgstr "Volver a aplicar los cambios" - -#: ../../enterprise/godmode/agentes/collections.php:268 -msgid "Are you sure to apply?" -msgstr "Seguro de que desea aplicar?" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:57 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:81 -msgid "Successfully added inventory module" -msgstr "Módulo añadido al inventario con éxito" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:60 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:85 -msgid "Error adding inventory module" -msgstr "Error al añadir el módulo al inventario" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:69 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:106 -msgid "Successfully deleted inventory module" -msgstr "Módulo del inventario eliminado correctamente" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:72 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:110 -msgid "Error deleting inventory module" -msgstr "Erro al eliminar el módulo del inventario" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:80 -msgid "Successfully forced inventory module" -msgstr "Módulo del inventario forzado correctamente" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:83 -msgid "Error forcing inventory module" -msgstr "Error al forzar un módulo del inventario" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:108 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:92 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:141 -msgid "Successfully updated inventory module" -msgstr "Módulo del inventario actualizado correctamente" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:111 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:96 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:145 -msgid "Error updating inventory module" -msgstr "Error al actualizar el módulo del inventario" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:129 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:54 -msgid "Inventory module error" -msgstr "Error del módulo del inventario" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:172 -#: ../../enterprise/godmode/agentes/inventory_manager.php:235 -#: ../../enterprise/meta/advanced/synchronizing.user.php:532 -msgid "Target" -msgstr "Target" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:182 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:196 -msgid "7 days" -msgstr "7 días" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:195 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:207 -msgid "Update all" -msgstr "Actualizar todo" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:43 -msgid "Data Copy" -msgstr "Copia de datos" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:52 -msgid "No selected agents to copy" -msgstr "No se han seleccionado agentes destino para la copia" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:66 -msgid "No source agent selected" -msgstr "No ha seleccionado ningún agente de origen" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:107 -msgid "Making copy of configuration file for" -msgstr "Creando una copia del archivo de configuración de" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:116 -msgid "Error copying md5 file " -msgstr "Error al copiar fichero MD5 " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:116 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -msgid " md5 file" -msgstr " fichero 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:122 -msgid "Error copying " -msgstr "Error al copiar " - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:122 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:125 -msgid " config file" -msgstr " fichero de configuración" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:138 -msgid "Remote configuration management" -msgstr "Gestión de configuración remota" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:143 -msgid "Source group" -msgstr "Grupo origen" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:185 -msgid "To agent(s):" -msgstr "Agente(s) destino:" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:210 -msgid "Replicate configuration" -msgstr "Replicar configuración" - -#: ../../enterprise/godmode/agentes/module_manager.php:16 -msgid "Create a new web Server module" -msgstr "Crear un nuevo módulo de servidor web" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:42 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:43 -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:48 -msgid "Using local component" -msgstr "Usando componente local" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:121 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:122 -msgid "Show configuration data" -msgstr "Mostrar datos de configuración" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:132 -msgid "Hide configuration data" -msgstr "Ocultar datos de configuración" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:140 -msgid "Data configuration" -msgstr "Configuración de datos" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:146 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:82 -#: ../../enterprise/godmode/modules/configure_local_component.php:315 -#: ../../enterprise/meta/include/functions_wizard_meta.php:552 -msgid "Load basic" -msgstr "cargar básicos" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:146 -#: ../../enterprise/godmode/modules/configure_local_component.php:317 -msgid "Load a basic structure on data configuration" -msgstr "Cargar una estructura básica en la configuración de datos" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:151 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:86 -#: ../../enterprise/godmode/modules/configure_local_component.php:323 -#: ../../enterprise/include/functions_metaconsole.php:1330 -#: ../../enterprise/include/functions_metaconsole.php:1353 -#: ../../enterprise/include/functions_metaconsole.php:1376 -#: ../../enterprise/include/functions_metaconsole.php:1399 -#: ../../enterprise/include/functions_metaconsole.php:1422 -#: ../../enterprise/include/functions_metaconsole.php:1445 -#: ../../enterprise/meta/include/functions_wizard_meta.php:175 -#: ../../enterprise/meta/include/functions_wizard_meta.php:556 -msgid "Check" -msgstr "Comprobar" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:151 -#: ../../enterprise/godmode/modules/configure_local_component.php:324 -msgid "Check the correct structure of the data configuration" -msgstr "Comprobar la estructura correcta de la configuración de datos" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:162 -#: ../../enterprise/godmode/modules/configure_local_component.php:327 -msgid "First line must be \"module_begin\"" -msgstr "La primera línea tiene que ser \"module_begin\"" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:163 -#: ../../enterprise/godmode/modules/configure_local_component.php:328 -msgid "Data configuration is empty" -msgstr "La configuración de datos está vacía" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:164 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:168 -#: ../../enterprise/godmode/modules/configure_local_component.php:329 -#: ../../enterprise/godmode/modules/configure_local_component.php:333 -msgid "Last line must be \"module_end\"" -msgstr "La última línea tiene que ser \"module_end\"" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:165 -#: ../../enterprise/godmode/modules/configure_local_component.php:330 -msgid "" -"Name is missed. Please add a line with \"module_name yourmodulename\" to " -"data configuration" -msgstr "" -"Falta el nombre. Por favor, introduzca una línea con \"module_name " -"yourmodulename\" a la configuración de datos" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 -#: ../../enterprise/godmode/modules/configure_local_component.php:331 -msgid "" -"Type is missed. Please add a line with \"module_type yourmoduletype\" to " -"data configuration" -msgstr "" -"Falta el tipo. Por favor, introduzca una línea con \"module_type " -"yourmoduletype\" a la configuración de datos" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:167 -#: ../../enterprise/godmode/modules/configure_local_component.php:332 -msgid "Type is wrong. Please set a correct type" -msgstr "El tipo es incorrecto. Por favor, introduzca un tipo correcto" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:169 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:136 -#: ../../enterprise/godmode/modules/configure_local_component.php:334 -#: ../../enterprise/meta/include/functions_wizard_meta.php:569 -msgid "There is a line with a unknown token 'token_fail'." -msgstr "Hay una línea con un token desconocido \"token_fail\"." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 -#: ../../enterprise/godmode/modules/configure_local_component.php:335 -msgid "Error in the syntax, please check the data configuration." -msgstr "" -"Error en la sintaxis, compruebe la configuración de datos, por favor." - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171 -#: ../../enterprise/godmode/modules/configure_local_component.php:336 -msgid "Data configuration are built correctly" -msgstr "La configuración de datos se ha construido correctamente" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25 -msgid "Synthetic arithmetic" -msgstr "Aritmética sintética" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28 -msgid "Synthetic average" -msgstr "Media sintética" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:107 -msgid "Fixed value" -msgstr "Valor fijo" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:112 -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:113 -msgid "Add module to operations as deduct" -msgstr "Añadir módulo a la operacion como resta" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 -msgid "Add module to operations as multiplicate " -msgstr "Añadir módulo a la operacion como multiplicador " - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:115 -msgid "Add module to operations as divide" -msgstr "Añadir módulo a la operacion como divisor" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:116 -msgid "Remove selected modules" -msgstr "Eliminar los módulos seleccionados" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 -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:122 -msgid "Remove selected modules from operations stack" -msgstr "Eliminar los módulos de las operaciones" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:137 -msgid "Move down selected modules" -msgstr "Mover hacia abajo los módulos seleccionados" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:138 -msgid "Move up selected modules" -msgstr "Mover hacia arriba los módulos seleccionados" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 -msgid "Select Service" -msgstr "Seleccionar servicio" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:177 -msgid "Netflow filter" -msgstr "Filtro de netflow" - -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 -msgid "Select filter" -msgstr "Seleccionar filtro" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:60 -#: ../../enterprise/include/functions_enterprise.php:295 -#: ../../enterprise/meta/include/functions_wizard_meta.php:493 -#: ../../enterprise/meta/include/functions_wizard_meta.php:544 -msgid "Web checks" -msgstr "Comprobaciones web" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:84 -#: ../../enterprise/meta/include/functions_wizard_meta.php:554 -msgid "Load a basic structure on Web Checks" -msgstr "Cargar una estructura básica en las comprobaciones web" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:88 -#: ../../enterprise/meta/include/functions_wizard_meta.php:558 -msgid "Check the correct structure of the WebCheck" -msgstr "Cargar la estructura correcta de las comprobaciones web" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:94 -msgid "Requests" -msgstr "Peticiones" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:97 -msgid "Agent browser id" -msgstr "ID del navegador (Agent Browser)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:104 -#: ../../enterprise/meta/include/functions_wizard_meta.php:950 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1455 -msgid "Proxy URL" -msgstr "Proxy URL" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:111 -msgid "HTTP auth (login)" -msgstr "HTTP aut. (login)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:115 -msgid "HTTP auth (pass)" -msgstr "HTTP aut. (contraseña)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:122 -msgid "HTTP auth (server)" -msgstr "HTTP aut. (servidor)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:126 -msgid "HTTP auth (realm)" -msgstr "HTTP aut. (campo)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:132 -#: ../../enterprise/meta/include/functions_wizard_meta.php:565 -msgid "First line must be \"task_begin\"" -msgstr "La primera línea tiene que ser \"task_begin\"" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:133 -#: ../../enterprise/meta/include/functions_wizard_meta.php:566 -msgid "Webchecks configuration is empty" -msgstr "La configuración de chequeos web está vacía" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:134 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:135 -#: ../../enterprise/meta/include/functions_wizard_meta.php:567 -#: ../../enterprise/meta/include/functions_wizard_meta.php:568 -msgid "Last line must be \"task_end\"" -msgstr "La última línea tiene que ser \"task_end\"" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:137 -msgid "There isn't get or post" -msgstr "No puede obtener o publicar" - -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:138 -#: ../../enterprise/meta/include/functions_wizard_meta.php:570 -msgid "Web checks are built correctly" -msgstr "Los chequeos webs se han construido correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:67 -msgid "Plug-in updated succesfully" -msgstr "Plug-in actualizado correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:67 -msgid "Plug-in cannot be updated" -msgstr "El plug-in 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 puede eliminar" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:83 -#: ../../enterprise/godmode/policies/policy_plugins.php:55 -msgid "Plug-in added succesfully" -msgstr "Plugin añadido correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:83 -#: ../../enterprise/godmode/policies/policy_plugins.php:56 -msgid "Plug-in cannot be added" -msgstr "El plugin no se puede añadir" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:98 -msgid "Plug-in disabled succesfully" -msgstr "Plugin inhabilitado correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:98 -msgid "Plug-in cannot be disabled" -msgstr "El plugin no puede ser inhabilitado" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:113 -msgid "Plug-in enabled succesfully" -msgstr "Plugin habilitado correctamente" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:113 -msgid "Plug-in cannot be enabled" -msgstr "El plugin no puede ser habilitado" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:124 -#: ../../enterprise/godmode/policies/policy_plugins.php:66 -msgid "New plug-in" -msgstr "Nuevo plugin" - -#: ../../enterprise/godmode/alerts/alert_events.php:45 -#: ../../enterprise/godmode/alerts/alert_events_list.php:55 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:70 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:49 -msgid "List event alerts" -msgstr "Lista de alertas de eventos" - -#: ../../enterprise/godmode/alerts/alert_events.php:50 -#: ../../enterprise/godmode/alerts/alert_events_list.php:59 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:75 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:54 -msgid "Builder event alert" -msgstr "Creador de alertas de eventos" - -#: ../../enterprise/godmode/alerts/alert_events.php:58 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:79 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:58 -msgid "List event rules" -msgstr "Lista de reglas de eventos" - -#: ../../enterprise/godmode/alerts/alert_events.php:71 -msgid "Configure event alert" -msgstr "Configurar alerta de eventos" - -#: ../../enterprise/godmode/alerts/alert_events.php:347 -msgid "Could not be created, please fill alert name" -msgstr "No se pudo crear, por favor, introduzca un nombre de alerta" - -#: ../../enterprise/godmode/alerts/alert_events.php:463 -msgid "Rule evaluation mode" -msgstr "Modo de evaluación de reglas" - -#: ../../enterprise/godmode/alerts/alert_events.php:467 -msgid "Group by" -msgstr "Agrupar por" - -#: ../../enterprise/godmode/alerts/alert_events.php:523 -msgid "Please Read" -msgstr "Por favor, lea" - -#: ../../enterprise/godmode/alerts/alert_events.php:524 -msgid "" -"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, debe editarlas desde " -"la lista de alertas de eventos." - -#: ../../enterprise/godmode/alerts/alert_events_list.php:67 -#: ../../enterprise/godmode/alerts/alert_events_list.php:114 -#: ../../enterprise/godmode/alerts/alert_events_list.php:129 -#: ../../enterprise/godmode/alerts/alert_events_list.php:144 -#: ../../enterprise/godmode/menu.php:134 -#: ../../enterprise/meta/general/main_header.php:263 -msgid "Event alerts" -msgstr "Alertas de eventos" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:328 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:357 -msgid "Error processing action" -msgstr "Error al procesar la acción" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:343 -msgid "Error validating alert(s)" -msgstr "Error al validar la alerta" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:421 -msgid "Ac." -msgstr "Ac." - -#: ../../enterprise/godmode/alerts/alert_events_list.php:426 -msgid "Val." -msgstr "Val." - -#: ../../enterprise/godmode/alerts/alert_events_list.php:486 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:440 -msgid "Move up" -msgstr "Subir" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:498 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:447 -msgid "Move down" -msgstr "Bajar" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:536 -msgid "No associated actions" -msgstr "No hay acciones asociadas" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:640 -msgid "View associated rules" -msgstr "Ver reglas asociadas" - -#: ../../enterprise/godmode/alerts/alert_events_list.php:657 -msgid "There are no defined events alerts" -msgstr "No hay definidas alerta de eventos" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:91 -msgid "Event rules" -msgstr "Reglas de eventos" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:203 -msgid "Error creating rule" -msgstr "Error al crear regla" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:208 -msgid "Successfully created rule" -msgstr "Regla creada correctamente" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:255 -msgid "Error updating rule" -msgstr "Error al actualizar la regla" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:259 -msgid "Successfully updating rule" -msgstr "Regla actualizada correctamente" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:269 -msgid "Error updating rule operators" -msgstr "Error al actualizar los operadores de reglas" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:272 -msgid "Successfully update rule operators" -msgstr "Operadores actualizados correctamente" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:408 -msgid "(Agent)" -msgstr "(Agente)" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:411 -msgid "Operator" -msgstr "Operador" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:492 -msgid "Logic expression for these rules:" -msgstr "Expresión lógica para estas reglas" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:500 -msgid "Update operators" -msgstr "Actualizar operadores" - -#: ../../enterprise/godmode/alerts/alert_events_rules.php:506 -msgid "There are no defined alert event rules" -msgstr "No hay definidas reglas para alerta de eventos" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:69 -msgid "Configure event rule" -msgstr "Configurar regla de evento" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:134 -msgid "User comment" -msgstr "Comentario de usuario" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:134 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:137 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 -msgid "This field will be processed with regexp" -msgstr "Este campo será procesado con regexp" - -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:140 -msgid "Window" -msgstr "ventana" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 -msgid "Success: create the alerts." -msgstr "Alertas creadas exitosamente" - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 -msgid "Failed: create the alerts for this modules, please check." -msgstr "" -"Falló: Creación de alertas para estos modulos, compruebe el problema." - -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:116 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:115 -msgid "Modules agents in policy" -msgstr "Modulos de agentes en la política" - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 -msgid "Success: remove the alerts." -msgstr "Completado: borrado de alertas." - -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 -msgid "Failed: remove the alerts for this modules, please check." -msgstr "Falló: borrado de alertas para estos modulos." - -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:166 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +msgid "Unsuccessfully deleted alerts (%s / %s)" +msgstr "Alertas que no han podido ser eliminadas correctamente (%s / %s)" + +#: ../../godmode/snmpconsole/snmp_alert.php:643 +msgid "Custom Value/OID" +msgstr "Valor/OID personalizado" + +#: ../../godmode/snmpconsole/snmp_alert.php:669 +msgid "Single value" +msgstr "Valor único" + +#: ../../godmode/snmpconsole/snmp_alert.php:676 +#: ../../godmode/snmpconsole/snmp_alert.php:686 +#: ../../godmode/snmpconsole/snmp_alert.php:696 +#: ../../godmode/snmpconsole/snmp_alert.php:708 +#: ../../godmode/snmpconsole/snmp_alert.php:720 +#: ../../godmode/snmpconsole/snmp_alert.php:732 +#: ../../godmode/snmpconsole/snmp_alert.php:744 +#: ../../godmode/snmpconsole/snmp_alert.php:754 +#: ../../godmode/snmpconsole/snmp_alert.php:764 +#: ../../godmode/snmpconsole/snmp_alert.php:774 +#: ../../godmode/snmpconsole/snmp_alert.php:784 +#: ../../godmode/snmpconsole/snmp_alert.php:793 +#: ../../godmode/snmpconsole/snmp_alert.php:802 +#: ../../godmode/snmpconsole/snmp_alert.php:811 +#: ../../godmode/snmpconsole/snmp_alert.php:820 +#: ../../godmode/snmpconsole/snmp_alert.php:829 +#: ../../godmode/snmpconsole/snmp_alert.php:838 +#: ../../godmode/snmpconsole/snmp_alert.php:846 +#: ../../godmode/snmpconsole/snmp_alert.php:854 +#: ../../godmode/snmpconsole/snmp_alert.php:862 +msgid "Variable bindings/Data" +msgstr "Variables enlaces/ Datos" + +#: ../../godmode/snmpconsole/snmp_alert.php:911 +#: ../../godmode/alerts/configure_alert_template.php:553 +msgid "Min. number of alerts" +msgstr "Número mínimo de alertas" + +#: ../../godmode/snmpconsole/snmp_alert.php:914 +#: ../../godmode/alerts/configure_alert_template.php:560 +msgid "Max. number of alerts" +msgstr "Número máximo de alertas" + +#: ../../godmode/snmpconsole/snmp_alert.php:919 +#: ../../godmode/alerts/alert_view.php:306 +#: ../../godmode/alerts/configure_alert_template.php:549 +#: ../../godmode/alerts/alert_templates.php:89 +msgid "Time threshold" +msgstr "Umbral de tiempo" + +#: ../../godmode/snmpconsole/snmp_alert.php:933 +msgid "Other value" +msgstr "Otros valores" + +#: ../../godmode/snmpconsole/snmp_alert.php:946 +#: ../../godmode/snmpconsole/snmp_alert.php:1151 +msgid "Alert action" +msgstr "Acción de alerta" + +#: ../../godmode/snmpconsole/snmp_alert.php:1000 msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " -"Single value, each Custom OIDs/Datas." +"Single value, each Variable bindings/Datas." msgstr "" -"Búsqueda por descripción de los campos, OIS, Valores personalizados, Agentes " -"(IP) SNMP, Valor único, cada OIDs/Datas personalizado." +"Búsqueda por estos campos de descripción , OID , Valor personalizado , " +"Agente SNMP (IP ) , el valor individual , cada uno de enlaces Variables / " +"Datos ." -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:182 -msgid "SNMP Alerts to be deleted" -msgstr "Alertas SNMP para añadir" +#: ../../godmode/snmpconsole/snmp_alert.php:1019 +msgid "Alert SNMP control filter" +msgstr "Filtro de control de alerta SNMP" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:212 -#: ../../enterprise/godmode/policies/policy_agents.php:268 -#: ../../enterprise/godmode/policies/policy_agents.php:276 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:165 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:445 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:361 -msgid "Filter agent" -msgstr "Filtrar agente" +#: ../../godmode/snmpconsole/snmp_alert.php:1112 +msgid "There are no SNMP alerts" +msgstr "No hay definida ninguna alerta SNMP" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:215 -msgid "Filter module" -msgstr "Filtro de módulo" +#: ../../godmode/snmpconsole/snmp_alert.php:1160 +msgid "Custom Value/Enterprise String" +msgstr "Valor personalizado / Cadena Enterprise" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:334 -msgid "Updated modules on database" -msgstr "Módulos actualizados en la base de datos" +#: ../../godmode/snmpconsole/snmp_alert.php:1165 +msgid "TF." +msgstr "TF." -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:336 -msgid "Agent configuration files updated" -msgstr "Actualizado fichero de configuración del agente" +#: ../../godmode/snmpconsole/snmp_alert.php:1226 +#: ../../godmode/alerts/alert_templates.php:338 +#: ../../godmode/modules/manage_network_components.php:613 +#: ../../godmode/agentes/module_manager.php:761 +msgid "Duplicate" +msgstr "Duplicar" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:354 -#: ../../enterprise/godmode/policies/policy_queue.php:378 -#: ../../enterprise/meta/advanced/policymanager.queue.php:260 -msgid "Finished" -msgstr "Terminado" +#: ../../godmode/snmpconsole/snmp_alert.php:1234 +#: ../../godmode/alerts/alert_list.list.php:703 +#: ../../godmode/alerts/alert_list.list.php:707 +#: ../../godmode/alerts/alert_list.list.php:841 +msgid "Add action" +msgstr "Añadir acción" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:62 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:62 -msgid "Successful update the tags" -msgstr "Actualización de etiquetas con éxito" +#: ../../godmode/snmpconsole/snmp_alert.php:1256 +msgid "ID Alert SNMP" +msgstr "ID alerta SNMP" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:63 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:63 -msgid "Unsuccessful update the tags" -msgstr "Actualización de etiquetas sin éxito" +#: ../../godmode/snmpconsole/snmp_alert.php:1487 +msgid "Add action " +msgstr "Añadir acción " -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:102 -msgid "Tags unused" -msgstr "Etiquetas sin usar" +#: ../../godmode/snmpconsole/snmp_filters.php:38 +#: ../../godmode/events/event_filter.php:175 +#: ../../godmode/netflow/nf_edit_form.php:182 +#: ../../godmode/netflow/nf_edit.php:167 +msgid "Create filter" +msgstr "Crear Filtro" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:118 -msgid "Tags used" -msgstr "Etiquetas usadas" +#: ../../godmode/snmpconsole/snmp_filters.php:42 +msgid "Filter overview" +msgstr "Revisión del filtro" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:186 +#: ../../godmode/snmpconsole/snmp_filters.php:51 +msgid "There was a problem updating the filter" +msgstr "Ha habido un problema al actualizar el filtro" + +#: ../../godmode/snmpconsole/snmp_filters.php:63 +msgid "There was a problem creating the filter" +msgstr "Ha habido un problema al crear el filtro" + +#: ../../godmode/snmpconsole/snmp_filters.php:73 +msgid "There was a problem deleting the filter" +msgstr "Ha habido un problema al borrar el filtro" + +#: ../../godmode/snmpconsole/snmp_filters.php:98 +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/alerts/configure_alert_special_days.php:55 +msgid "Configure special day" +msgstr "Configurar dia especial" + +#: ../../godmode/alerts/configure_alert_special_days.php:79 +#: ../../godmode/alerts/alert_special_days.php:235 +msgid "Same day of the week" +msgstr "Mismo día de la semana" + +#: ../../godmode/alerts/alert_special_days.php:44 ../../godmode/menu.php:164 +#: ../../godmode/menu.php:165 +msgid "Special days list" +msgstr "Lista de días especiales" + +#: ../../godmode/alerts/alert_special_days.php:86 +msgid "Skipped dates: " +msgstr "Fechas omitidas: " + +#: ../../godmode/alerts/alert_special_days.php:106 +msgid "Success to upload iCalendar" +msgstr "Éxito al cargar iCalendar" + +#: ../../godmode/alerts/alert_special_days.php:106 +msgid "Fail to upload iCalendar" +msgstr "Error al cargar iCalendar" + +#: ../../godmode/alerts/alert_special_days.php:232 +msgid "iCalendar(.ics) file" +msgstr "Fichero iCalendar (.ics)" + +#: ../../godmode/alerts/alert_special_days.php:254 +msgid "Overwrite" +msgstr "Sobrescribir" + +#: ../../godmode/alerts/alert_special_days.php:255 +msgid "Check this box, if you want to overwrite existing same days." +msgstr "Marque esta casilla, si desea sobrescribir los días existentes." + +#: ../../godmode/alerts/alert_special_days.php:273 +msgid "Display range: " +msgstr "Mostrar rango " + +#: ../../godmode/alerts/alert_special_days.php:347 +msgid "January" +msgstr "Enero" + +#: ../../godmode/alerts/alert_special_days.php:350 +msgid "February" +msgstr "Febrero" + +#: ../../godmode/alerts/alert_special_days.php:353 +msgid "March" +msgstr "Marzo" + +#: ../../godmode/alerts/alert_special_days.php:356 +msgid "April" +msgstr "Abril" + +#: ../../godmode/alerts/alert_special_days.php:359 +msgid "May" +msgstr "Mayo" + +#: ../../godmode/alerts/alert_special_days.php:362 +msgid "June" +msgstr "Junio" + +#: ../../godmode/alerts/alert_special_days.php:365 +msgid "July" +msgstr "Julio" + +#: ../../godmode/alerts/alert_special_days.php:368 +msgid "August" +msgstr "Agosto" + +#: ../../godmode/alerts/alert_special_days.php:371 +msgid "September" +msgstr "Septiembre" + +#: ../../godmode/alerts/alert_special_days.php:374 +msgid "October" +msgstr "Octubre" + +#: ../../godmode/alerts/alert_special_days.php:377 +msgid "November" +msgstr "Noviembre" + +#: ../../godmode/alerts/alert_special_days.php:380 +msgid "December" +msgstr "Diciembre" + +#: ../../godmode/alerts/alert_special_days.php:422 +msgid "Same as " +msgstr "Mismo que " + +#: ../../godmode/alerts/alert_view.php:61 +#: ../../godmode/alerts/alert_view.php:62 +#: ../../godmode/alerts/alert_view.php:63 +#: ../../godmode/alerts/alert_list.php:313 +msgid "List alerts" +msgstr "Lista de alertas" + +#: ../../godmode/alerts/alert_view.php:170 +#: ../../godmode/alerts/configure_alert_template.php:850 +msgid "The alert would fire when the value is below " +msgstr "" +"La alerta se lanzará cuando el valor sea inferior a " + +#: ../../godmode/alerts/alert_view.php:174 +#: ../../godmode/alerts/configure_alert_template.php:851 +msgid "The alert would fire when the value is above " +msgstr "" +"La alerta se lanzará cuando el valor esté por encima de " + +#: ../../godmode/alerts/alert_view.php:179 +#: ../../godmode/alerts/configure_alert_template.php:854 +msgid "The alert would fire when the module value changes" +msgstr "La alerta se iniciara cuando los valores de los módulos cambien" + +#: ../../godmode/alerts/alert_view.php:182 +#: ../../godmode/alerts/configure_alert_template.php:855 +msgid "The alert would fire when the module value does not change" +msgstr "La alerta de iniciara cuando los valores de los módulos no cambien" + +#: ../../godmode/alerts/alert_view.php:192 +#: ../../godmode/alerts/configure_alert_template.php:856 +msgid "The alert would fire when the module is in unknown status" +msgstr "La alerta se lanzará cuando el módulo esté en estado desconocido" + +#: ../../godmode/alerts/alert_view.php:298 +#: ../../godmode/alerts/configure_alert_template.php:536 +msgid "Use special days list" +msgstr "Utilizar lista de días especiales" + +#: ../../godmode/alerts/alert_view.php:310 +msgid "Number of alerts" +msgstr "Número de alertas" + +#: ../../godmode/alerts/alert_view.php:325 +msgid "Firing conditions" +msgstr "Condiciones de disparo" + +#: ../../godmode/alerts/alert_view.php:348 +#: ../../godmode/alerts/alert_view.php:370 +msgid "Every time that the alert is fired" +msgstr "Cada vez que la alerta es disparada" + +#: ../../godmode/alerts/alert_view.php:356 +#: ../../godmode/alerts/alert_list.list.php:505 +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_view.php:414 +msgid "" +"Select the desired action and mode to see the Firing/Recovery fields for " +"this action" +msgstr "" +"Seleccione la acción deseada y el modo para ver los campos de " +"Disparado/Recuperación para dicha acción" + +#: ../../godmode/alerts/alert_view.php:417 +msgid "Select the action" +msgstr "Seleccione la acción" + +#: ../../godmode/alerts/alert_view.php:420 +#: ../../godmode/alerts/configure_alert_action.php:148 +msgid "Firing" +msgstr "Disparado" + +#: ../../godmode/alerts/alert_view.php:421 +msgid "Recovering" +msgstr "Recuperado" + +#: ../../godmode/alerts/alert_view.php:423 +#: ../../godmode/massive/massive_edit_modules.php:545 +#: ../../godmode/servers/manage_recontask_form.php:237 +#: ../../godmode/servers/manage_recontask.php:291 +msgid "Mode" +msgstr "Modo" + +#: ../../godmode/alerts/alert_view.php:438 +#: ../../godmode/alerts/alert_view.php:532 +#: ../../godmode/alerts/configure_alert_template.php:670 +msgid "Firing fields" +msgstr "Campos de disparado" + +#: ../../godmode/alerts/alert_view.php:439 +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" + +#: ../../godmode/alerts/alert_view.php:442 +#: ../../godmode/alerts/alert_view.php:531 +msgid "Fields configured on the command associated to the action" +msgstr "Campos configurados en el comando asociado a la acción" + +#: ../../godmode/alerts/alert_view.php:443 +msgid "Template fields" +msgstr "Campos de la plantilla" + +#: ../../godmode/alerts/alert_view.php:444 +msgid "Triggering fields configured in template" +msgstr "Campos de disparado configurados en la plantilla" + +#: ../../godmode/alerts/alert_view.php:445 +msgid "Action fields" +msgstr "Campos de la acción" + +#: ../../godmode/alerts/alert_view.php:446 +msgid "Triggering fields configured in action" +msgstr "Campos de disparado configurados en la acción" + +#: ../../godmode/alerts/alert_view.php:448 +msgid "Executed on firing" +msgstr "Ejecutado en disparado" + +#: ../../godmode/alerts/alert_view.php:449 +#: ../../godmode/alerts/alert_view.php:532 +msgid "Fields used on execution when the alert is fired" +msgstr "Campos usados en la ejecución cuando la alerta es disparada" + +#: ../../godmode/alerts/alert_view.php:471 +#: ../../godmode/alerts/alert_view.php:548 +#: ../../godmode/alerts/alert_commands.php:105 +#: ../../godmode/alerts/alert_commands.php:109 +#: ../../godmode/alerts/alert_commands.php:127 +#: ../../godmode/alerts/alert_commands.php:135 +#: ../../godmode/alerts/configure_alert_template.php:684 #, php-format -msgid "Successfully updated alerts (%s / %s)" -msgstr "Alertas actualizadas correctamente (%s / %s)" +msgid "Field %s" +msgstr "Campo %s" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:190 +#: ../../godmode/alerts/alert_view.php:508 +#: ../../godmode/alerts/alert_view.php:595 +#: ../../godmode/alerts/configure_alert_action.php:153 +#: ../../godmode/servers/plugin.php:381 +msgid "Command preview" +msgstr "Vista previa del comando" + +#: ../../godmode/alerts/alert_view.php:516 +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:529 +msgid "Recovering fields" +msgstr "Campos de recuperación" + +#: ../../godmode/alerts/alert_view.php:529 +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:533 +msgid "Template recovery fields" +msgstr "Campos de recuperación de la plantilla" + +#: ../../godmode/alerts/alert_view.php:533 +msgid "Recovery fields configured in alert template" +msgstr "Campos de recuperación configurados en la plantilla de la alerta" + +#: ../../godmode/alerts/alert_view.php:534 +msgid "Action recovery fields" +msgstr "Acción en campos de recuperación" + +#: ../../godmode/alerts/alert_view.php:534 +msgid "Recovery fields configured in alert action" +msgstr "Campos de recuperación configurados en una acción de alerta" + +#: ../../godmode/alerts/alert_view.php:535 +msgid "Executed on recovery" +msgstr "Ejecutado en recuperación" + +#: ../../godmode/alerts/alert_view.php:535 +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_actions.php:66 +#: ../../godmode/alerts/alert_actions.php:92 +#: ../../godmode/alerts/alert_actions.php:110 +#: ../../godmode/alerts/alert_actions.php:127 +#: ../../godmode/alerts/alert_actions.php:207 +#: ../../godmode/alerts/alert_actions.php:218 +#: ../../godmode/alerts/alert_actions.php:287 +#: ../../godmode/alerts/alert_actions.php:306 +#: ../../godmode/alerts/alert_actions.php:319 +msgid "Alert actions" +msgstr "Acciones de alerta" + +#: ../../godmode/alerts/alert_actions.php:141 +msgid "Could not be copied" +msgstr "No se ha podido copiar" + +#: ../../godmode/alerts/alert_actions.php:398 +msgid "No alert actions configured" +msgstr "Sin acciones de alertas configuradas" + +#: ../../godmode/alerts/alert_commands.php:149 +#: ../../godmode/alerts/alert_commands.php:159 +#: ../../godmode/alerts/configure_alert_template.php:689 +#: ../../godmode/alerts/configure_alert_template.php:703 +#: ../../godmode/alerts/configure_alert_template.php:775 +#: ../../godmode/users/configure_user.php:532 +#: ../../godmode/modules/manage_network_components_form_common.php:59 +msgid "Basic" +msgstr "Básico" + +#: ../../godmode/alerts/alert_commands.php:249 +msgid "Alert commands" +msgstr "Comandos de alerta" + +#: ../../godmode/alerts/alert_commands.php:372 +msgid "No alert commands configured" +msgstr "Comandos de alertas no configurados" + +#: ../../godmode/alerts/configure_alert_command.php:42 +msgid "Configure alert command" +msgstr "Configurar comando de alerta" + +#: ../../godmode/alerts/configure_alert_command.php:127 +msgid "Update Command" +msgstr "Actualizar comando" + +#: ../../godmode/alerts/configure_alert_command.php:130 +#: ../../godmode/alerts/configure_alert_action.php:136 +msgid "Create Command" +msgstr "Crear comando" + +#: ../../godmode/alerts/configure_alert_command.php:150 +#: ../../godmode/alerts/configure_alert_action.php:128 +#: ../../godmode/events/event_responses.editor.php:114 +#: ../../godmode/events/event_responses.editor.php:121 +#: ../../godmode/events/event_responses.editor.php:124 +#: ../../godmode/massive/massive_edit_plugins.php:437 +#: ../../godmode/servers/recon_script.php:370 +#: ../../godmode/servers/plugin.php:388 ../../godmode/servers/plugin.php:394 +#: ../../godmode/servers/plugin.php:737 +msgid "Command" +msgstr "Comando" + +#: ../../godmode/alerts/configure_alert_command.php:160 #, php-format -msgid "Unsuccessfully updated alerts (%s / %s)" -msgstr "No se han podido actualizar las alertas (%s / %s)" +msgid "Field %s description" +msgstr "Campo de descripción %s" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 -msgid "SNMP Alerts to be edit" -msgstr "Alertas SNMP para editar" - -#: ../../enterprise/godmode/massive/massive_operations.php:27 -#: ../../enterprise/godmode/menu.php:47 -msgid "Satellite operations" -msgstr "Operaciones satélite" - -#: ../../enterprise/godmode/massive/massive_operations.php:47 -#: ../../enterprise/godmode/menu.php:35 -msgid "SNMP operations" -msgstr "Operaciones SNMP" - -#: ../../enterprise/godmode/massive/massive_operations.php:67 -#: ../../enterprise/godmode/menu.php:24 -msgid "Policies operations" -msgstr "Operaciones de las políticas" - -#: ../../enterprise/godmode/massive/massive_operations.php:78 -msgid "Bulk alerts policy add" -msgstr "Añadir políticas de alertas masivamente" - -#: ../../enterprise/godmode/massive/massive_operations.php:79 -msgid "Bulk alerts policy delete" -msgstr "Eliminar políticas de alertas masivamente" - -#: ../../enterprise/godmode/massive/massive_operations.php:80 -msgid "Bulk tags module policy edit" -msgstr "Editar políticas de módulos de etiquetas masivamente" - -#: ../../enterprise/godmode/massive/massive_operations.php:81 -msgid "Bulk modules policy tags edit" -msgstr "Editar etiquetas de políticas de módulos masivamente" - -#: ../../enterprise/godmode/massive/massive_operations.php:89 -msgid "Bulk alert SNMP delete" -msgstr "Eliminar alertas SNMP masivamente" - -#: ../../enterprise/godmode/massive/massive_operations.php:90 -msgid "Bulk alert SNMP edit" -msgstr "Editar alertas SNMP masivamente" - -#: ../../enterprise/godmode/massive/massive_operations.php:98 -msgid "Bulk Satellite modules edit" -msgstr "Editar módulos satélite masivamente" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:100 -msgid "Modules unused" -msgstr "Módulos sin usar" - -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:116 -msgid "Modules used" -msgstr "Módulos usados" - -#: ../../enterprise/godmode/menu.php:16 -msgid "Manage Satellite Server" -msgstr "Usar Satellite Server" - -#: ../../enterprise/godmode/menu.php:58 ../../enterprise/godmode/menu.php:149 -msgid "Duplicate config" -msgstr "Duplicar configuración" - -#: ../../enterprise/godmode/menu.php:66 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:27 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:28 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:47 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 -#: ../../enterprise/include/functions_policies.php:3251 -msgid "Inventory modules" -msgstr "Módulos de inventario" - -#: ../../enterprise/godmode/menu.php:75 -#: ../../enterprise/meta/include/functions_components_meta.php:52 -#: ../../enterprise/meta/include/functions_components_meta.php:69 -msgid "Local components" -msgstr "Componentes locales" - -#: ../../enterprise/godmode/menu.php:83 -msgid "Manage policies" -msgstr "Gestionar políticas" - -#: ../../enterprise/godmode/menu.php:109 -msgid "Enterprise ACL Setup" -msgstr "Configuración ACL Enterprise" - -#: ../../enterprise/godmode/menu.php:116 -msgid "Skins" -msgstr "Skins" - -#: ../../enterprise/godmode/menu.php:125 -#: ../../enterprise/godmode/servers/manage_export.php:41 -#: ../../enterprise/godmode/servers/manage_export_form.php:56 -msgid "Export targets" -msgstr "Servidores de exportación" - -#: ../../enterprise/godmode/menu.php:143 -msgid "Log Collector" -msgstr "Colector de Logs" - -#: ../../enterprise/godmode/menu.php:156 -msgid "Password policy" -msgstr "Política de contraseñas" - -#: ../../enterprise/godmode/modules/configure_local_component.php:135 -msgid "Update Local Component" -msgstr "Actualizar Componente Local" - -#: ../../enterprise/godmode/modules/configure_local_component.php:138 -msgid "Create Local Component" -msgstr "Crear Componente Local" - -#: ../../enterprise/godmode/modules/configure_local_component.php:176 -msgid "Throw unknown events" -msgstr "Generar eventos desconocidos" - -#: ../../enterprise/godmode/modules/configure_local_component.php:410 -msgid "Macros" -msgstr "Macros" - -#: ../../enterprise/godmode/modules/local_components.php:89 -msgid "Local component management" -msgstr "Gestión de componentes locales" - -#: ../../enterprise/godmode/modules/local_components.php:441 -msgid "Search by name, description or data, list matches." -msgstr "Búsqueda por nombre, descripción o datos, lista las concidencias." - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:67 -msgid "Successfully created inventory module" -msgstr "Inventario de módulo creado correctamente" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:71 -msgid "Error creating inventory module" -msgstr "Error al crear módulo del inventario" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:157 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:86 -msgid "Interpreter" -msgstr "Intérprete" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:200 -msgid "No inventory modules defined" -msgstr "No hay módulos de inventario definidos" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217 -msgid "Local module" -msgstr "Módulo local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:220 -msgid "Remote/Local" -msgstr "Remoto/Local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:88 -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:90 -msgid "Block Mode" -msgstr "Modo bloqueo" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:94 -msgid "separate fields with " -msgstr "Separar campos con " - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:98 -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/policies/configure_policy.php:43 -msgid "Add policy" -msgstr "Añadir política" - -#: ../../enterprise/godmode/policies/policies.php:114 -msgid "Policy name already exists" -msgstr "El nombre de la política ya existe." - -#: ../../enterprise/godmode/policies/policies.php:170 -msgid "Policies Management" -msgstr "Gestión de políticas" - -#: ../../enterprise/godmode/policies/policies.php:186 -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:187 -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:237 -msgid "a" -msgstr "a" - -#: ../../enterprise/godmode/policies/policies.php:360 -msgid "Policy updated" -msgstr "Política actualizada" - -#: ../../enterprise/godmode/policies/policies.php:364 -msgid "Pending update policy only database" -msgstr "" -"Pendiente de actualizar política, sólo para cambios en base de datos." - -#: ../../enterprise/godmode/policies/policies.php:368 -msgid "Pending update policy" -msgstr "Pendiente actualizar política" - -#: ../../enterprise/godmode/policies/policies.php:381 -#: ../../enterprise/godmode/policies/policy_linking.php:122 -#: ../../enterprise/include/functions_policies.php:3280 -msgid "Linking" -msgstr "Enlazando" - -#: ../../enterprise/godmode/policies/policies.php:393 -msgid "Agent Wizard" -msgstr "Asistente de agente" - -#: ../../enterprise/godmode/policies/policies.php:401 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:37 -#: ../../enterprise/include/functions_policies.php:3270 -msgid "External alerts" -msgstr "Alertas externas" - -#: ../../enterprise/godmode/policies/policies.php:405 -#: ../../enterprise/godmode/policies/policy.php:46 -#: ../../enterprise/include/functions_policies.php:3298 -msgid "Queue" -msgstr "Cola" - -#: ../../enterprise/godmode/policies/policies.php:449 -msgid "A policy with agents cannot be deleted. Purge it first" -msgstr "Una política con agentes no se puede eliminar. Púrguela primero." - -#: ../../enterprise/godmode/policies/policies.php:455 -msgid "Deleting all policy agents" -msgstr "Eliminando todas los agentes de las políticas" - -#: ../../enterprise/godmode/policies/policies.php:458 -msgid "All the policy agents will be deleted" -msgstr "Todos los agentes de las políticas serán eliminados" - -#: ../../enterprise/godmode/policies/policies.php:462 -msgid "Delete all agents" -msgstr "Eliminar todos los agentes" - -#: ../../enterprise/godmode/policies/policy.php:114 -#: ../../enterprise/godmode/policies/policy.php:137 -#: ../../enterprise/meta/advanced/policymanager.apply.php:142 -#: ../../enterprise/meta/advanced/policymanager.apply.php:146 -msgid "Operation successfully added to the queue" -msgstr "Operación añadida correctamente a la cola" - -#: ../../enterprise/godmode/policies/policy.php:117 -#: ../../enterprise/godmode/policies/policy.php:138 -#: ../../enterprise/meta/advanced/policymanager.apply.php:150 -#: ../../enterprise/meta/advanced/policymanager.apply.php:154 -#: ../../enterprise/meta/advanced/policymanager.apply.php:158 -msgid "Operation cannot be added to the queue" -msgstr "La operación no se puede añadir a la cola" - -#: ../../enterprise/godmode/policies/policy.php:120 -#: ../../enterprise/godmode/policies/policy.php:141 -#: ../../enterprise/meta/advanced/policymanager.apply.php:135 -msgid "Duplicated or incompatible operation in the queue" -msgstr "Operación duplicada o incompatible en la cola" - -#: ../../enterprise/godmode/policies/policy_agents.php:90 -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:95 -#: ../../enterprise/godmode/policies/policy_alerts.php:169 -#: ../../enterprise/godmode/policies/policy_collections.php:73 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:100 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:100 -#: ../../enterprise/godmode/policies/policy_modules.php:1101 -#: ../../enterprise/godmode/policies/policy_plugins.php:42 -msgid "Successfully reverted deletion" -msgstr "Eliminación revertida correctamente" - -#: ../../enterprise/godmode/policies/policy_agents.php:96 -#: ../../enterprise/godmode/policies/policy_alerts.php:170 -#: ../../enterprise/godmode/policies/policy_collections.php:74 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:101 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:103 -#: ../../enterprise/godmode/policies/policy_modules.php:1102 -#: ../../enterprise/godmode/policies/policy_plugins.php:43 -msgid "Could not be reverted" -msgstr "No pudo ser revertido" - -#: ../../enterprise/godmode/policies/policy_agents.php:121 -msgid "Successfully added to delete queue" -msgstr "Correctamente añadido a la lista de eliminación" - -#: ../../enterprise/godmode/policies/policy_agents.php:122 -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:157 -msgid "Successfully deleted from delete pending agents" -msgstr "Eliminado correctamente de los agentes pendientes de eliminación" - -#: ../../enterprise/godmode/policies/policy_agents.php:158 -msgid "Could not be deleted from delete pending agents" -msgstr "No se pudo eliminar de los agentes pendientes de eliminación" - -#: ../../enterprise/godmode/policies/policy_agents.php:285 -msgid "Agents in Policy" -msgstr "Agentes en la política" - -#: ../../enterprise/godmode/policies/policy_agents.php:322 -msgid "Add agents to policy" -msgstr "Añadir agentes a la política" - -#: ../../enterprise/godmode/policies/policy_agents.php:328 -msgid "Delete agents from policy" -msgstr "Eliminar agentes de la política" - -#: ../../enterprise/godmode/policies/policy_agents.php:368 -msgid "Applied" -msgstr "Aplicado" - -#: ../../enterprise/godmode/policies/policy_agents.php:369 -msgid "Not applied" -msgstr "No aplicado" - -#: ../../enterprise/godmode/policies/policy_agents.php:378 -#: ../../enterprise/operation/agentes/policy_view.php:304 -msgid "R." -msgstr "R." - -#: ../../enterprise/godmode/policies/policy_agents.php:380 -msgid "Unlinked modules" -msgstr "Módulos sin enlazar" - -#: ../../enterprise/godmode/policies/policy_agents.php:380 -msgid "U." -msgstr "U." - -#: ../../enterprise/godmode/policies/policy_agents.php:382 -#: ../../enterprise/operation/agentes/policy_view.php:50 -msgid "Last application" -msgstr "Última aplicación" - -#: ../../enterprise/godmode/policies/policy_agents.php:383 -msgid "Add to delete queue" -msgstr "Añadir a la lista de eliminación" - -#: ../../enterprise/godmode/policies/policy_agents.php:433 -msgid "This agent can not be remotely configured" -msgstr "Este agente no puede ser configurado remotamente" - -#: ../../enterprise/godmode/policies/policy_agents.php:457 -#: ../../enterprise/godmode/policies/policy_queue.php:176 -msgid "Add to apply queue" -msgstr "Añadir para aplicar cola" - -#: ../../enterprise/godmode/policies/policy_agents.php:474 -#: ../../enterprise/godmode/policies/policy_alerts.php:417 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:252 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:264 -#: ../../enterprise/godmode/policies/policy_modules.php:1264 -msgid "Undo deletion" -msgstr "Deshacer eliminación" - -#: ../../enterprise/godmode/policies/policy_agents.php:488 -#: ../../enterprise/operation/agentes/policy_view.php:62 -msgid "Policy applied" -msgstr "Política aplicada" - -#: ../../enterprise/godmode/policies/policy_agents.php:492 -msgid "Need apply" -msgstr "Necesita aplicar" - -#: ../../enterprise/godmode/policies/policy_agents.php:500 -msgid "Applying policy" -msgstr "Aplicando política" - -#: ../../enterprise/godmode/policies/policy_agents.php:506 -msgid "Deleting from policy" -msgstr "Eliminando de la política" - -#: ../../enterprise/godmode/policies/policy_alerts.php:148 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:73 -msgid "Created successfuly" -msgstr "Creado correctamente" - -#: ../../enterprise/godmode/policies/policy_alerts.php:164 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:95 -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:188 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:120 -msgid "Added action successfuly" -msgstr "Acción añadida correctamente" - -#: ../../enterprise/godmode/policies/policy_alerts.php:206 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:140 -msgid "Deleted action successfuly" -msgstr "Acción eliminada correctamente" - -#: ../../enterprise/godmode/policies/policy_alerts.php:511 -msgid "Policy module" -msgstr "Módulo de la política" - -#: ../../enterprise/godmode/policies/policy_collections.php:68 -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:161 -#: ../../enterprise/godmode/policies/policy_collections.php:213 -#: ../../enterprise/operation/agentes/collection_view.php:102 -#: ../../enterprise/operation/agentes/policy_view.php:164 -msgid "Outdate" -msgstr "Obsoleto" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 -msgid "Duplicated alert" -msgstr "Alerta duplicada" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:170 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:299 -msgid "Modules in policy agents" -msgstr "Modulos en agentes de política" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:315 -msgid "Alert Template" -msgstr "Plantilla de alerta" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:65 -msgid "Module is not selected" -msgstr "No ha seleccionado ningún módulo" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:93 -#: ../../enterprise/godmode/policies/policy_modules.php:1082 -#: ../../enterprise/godmode/policies/policy_modules.php:1096 -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_inventory_modules.php:186 -msgid "Select inventory module" -msgstr "Seleccionar módulo de inventario" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:235 -msgid "There are no defined inventory modules" -msgstr "No hay definidos módulos de inventario" - -#: ../../enterprise/godmode/policies/policy_linking.php:26 -msgid "Linking modules" -msgstr "Modulos enlazados" - -#: ../../enterprise/godmode/policies/policy_linking.php:53 -msgid "Error: Update linking modules to policy" -msgstr "Error: Actualizando modulos enlazados a la política" - -#: ../../enterprise/godmode/policies/policy_linking.php:56 -msgid "Success: Update linking modules to policy" -msgstr "Completado: Actualizando modulos enlazados a la política" - -#: ../../enterprise/godmode/policies/policy_linking.php:66 -msgid "Free text for filter (*)" -msgstr "Texto libre para filtro (*)" - -#: ../../enterprise/godmode/policies/policy_linking.php:67 -msgid "Free text for filter" -msgstr "Texto libre para filtro" - -#: ../../enterprise/godmode/policies/policy_linking.php:110 -msgid "List of modules unlinked" -msgstr "Lista de módulos sin enlazar" - -#: ../../enterprise/godmode/policies/policy_linking.php:143 -msgid "There are no defined modules unlinked" -msgstr "No hay módulos definidos desvinculados" - -#: ../../enterprise/godmode/policies/policy_modules.php:262 -msgid "" -"If you change this description, you must change into the text of Data " -"configuration." -msgstr "" -"Si cambia esta descripción, tiene que cambiarla en el texto de la " -"configuración de datos." - -#: ../../enterprise/godmode/policies/policy_modules.php:320 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1417 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:101 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:87 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 -msgid "Edit module" -msgstr "Editar módulo" - -#: ../../enterprise/godmode/policies/policy_modules.php:351 -msgid "Module macros" -msgstr "Macros de módulos" - -#: ../../enterprise/godmode/policies/policy_modules.php:448 -msgid "Could not be added module(s). You must select a policy" -msgstr "El módulo no se pudo añadir. Debe seleccionar una política." - -#: ../../enterprise/godmode/policies/policy_modules.php:476 +#: ../../godmode/alerts/configure_alert_command.php:175 #, php-format -msgid "Successfully added module(s) (%s/%s) to policy %s" -msgstr "Módulo añadido correctamente (%s/%s) a la política %s" - -#: ../../enterprise/godmode/policies/policy_modules.php:478 -#, php-format -msgid "Could not be added module(s) (%s/%s) to policy %s" -msgstr "El módulo no se pudo añadir (%s/%s) a la política %s" - -#: ../../enterprise/godmode/policies/policy_modules.php:768 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1908 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2002 -msgid "Successfully added module." -msgstr "Módulo añadido correctamente" - -#: ../../enterprise/godmode/policies/policy_modules.php:769 -msgid "Could not be added module." -msgstr "El módulo no se pudo añadir" - -#: ../../enterprise/godmode/policies/policy_modules.php:1052 -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, elija uno del combo del " -"formulario." - -#: ../../enterprise/godmode/policies/policy_modules.php:1055 -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, elija uno del combo del " -"formulario." - -#: ../../enterprise/godmode/policies/policy_modules.php:1086 -msgid "Could not be added to deleted all modules." -msgstr "No podría ser añadido a eliminar todos los módulos." - -#: ../../enterprise/godmode/policies/policy_modules.php:1172 -msgid "Successfully duplicate the module." -msgstr "Módulo duplicado con éxito" - -#: ../../enterprise/godmode/policies/policy_modules.php:1232 -msgid "Local component" -msgstr "Componente local" - -#: ../../enterprise/godmode/policies/policy_modules.php:1298 -msgid "There are no defined modules" -msgstr "No hay módulos definidos" - -#: ../../enterprise/godmode/policies/policy_modules.php:1316 -msgid "Copy selected modules to policy: " -msgstr "Copiar módulos seleccionados a la política: " - -#: ../../enterprise/godmode/policies/policy_modules.php:1494 -msgid "Are you sure to copy modules into policy?\\n" -msgstr "¿Está seguro de que quiere copiar los módulos en la política?\\n" - -#: ../../enterprise/godmode/policies/policy_modules.php:1514 -msgid "Please select any module to copy" -msgstr "Por favor, seleccione algún modulo para copiar" - -#: ../../enterprise/godmode/policies/policy_plugins.php:33 -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:34 -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:116 -msgid "There are no defined plugins" -msgstr "No hay plugins definidos" - -#: ../../enterprise/godmode/policies/policy_queue.php:59 -#: ../../enterprise/meta/advanced/policymanager.queue.php:60 -msgid "Operation successfully deleted from the queue" -msgstr "Operación eliminada correctamente de la cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:60 -#: ../../enterprise/meta/advanced/policymanager.queue.php:61 -msgid "Operation cannot be deleted from the queue" -msgstr "La operación no puede ser eliminada de la cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:101 -msgid "Operations successfully deleted from the queue" -msgstr "Operaciones eliminadas correctamente de la cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:102 -msgid "Operations cannot be deleted from the queue" -msgstr "Las operaciones no pueden ser eliminadas de la cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:160 -msgid "Update pending" -msgstr "Actualización pendiente" - -#: ../../enterprise/godmode/policies/policy_queue.php:162 -msgid "Update pending agents" -msgstr "Actualizar agentes pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:180 -msgid "Add to apply queue only for database" -msgstr "Añadir a la cola de aplicación, sólo de cambios de base de datos" - -#: ../../enterprise/godmode/policies/policy_queue.php:186 -msgid "Link pending modules" -msgstr "Enlazar módulos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:192 -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:195 -msgid "Unlink pending modules" -msgstr "Desenlazar módulos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:201 -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:206 -msgid "Delete pending" -msgstr "Eliminación pendiente" - -#: ../../enterprise/godmode/policies/policy_queue.php:208 -msgid "Delete pending agents" -msgstr "Eliminar agentes pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:214 -#: ../../enterprise/godmode/policies/policy_queue.php:223 -#: ../../enterprise/godmode/policies/policy_queue.php:232 -#: ../../enterprise/godmode/policies/policy_queue.php:241 -#: ../../enterprise/godmode/policies/policy_queue.php:250 -#: ../../enterprise/godmode/policies/policy_queue.php:259 -#: ../../enterprise/godmode/policies/policy_queue.php:268 -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:217 -msgid "Delete pending modules" -msgstr "Eliminar módulos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:226 -msgid "Delete pending inventory modules" -msgstr "Eliminar módulos de inventario pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:235 -msgid "Delete pending alerts" -msgstr "Eliminar alertas pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:244 -msgid "Delete pending external alerts" -msgstr "Eliminar alertas externas pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:253 -msgid "Delete pending file collections" -msgstr "Eliminar colecciones de archivos pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:262 -msgid "Delete pending plugins" -msgstr "Eliminar plugins pendientes" - -#: ../../enterprise/godmode/policies/policy_queue.php:274 -msgid "Advices" -msgstr "Consejos" - -#: ../../enterprise/godmode/policies/policy_queue.php:277 -msgid "Queue summary" -msgstr "Resumen de cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:344 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -msgid "Apply (database and files)" -msgstr "Aplicar (base de datos y archivos)" - -#: ../../enterprise/godmode/policies/policy_queue.php:344 -#: ../../enterprise/godmode/policies/policy_queue.php:418 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:309 -msgid "Apply (only database)" -msgstr "Aplicar (sólo en la base de datos)" - -#: ../../enterprise/godmode/policies/policy_queue.php:350 -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -msgid "Complete" -msgstr "Completo" - -#: ../../enterprise/godmode/policies/policy_queue.php:350 -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -msgid "Incomplete" -msgstr "Incompleto" - -#: ../../enterprise/godmode/policies/policy_queue.php:364 -msgid "Queue filter" -msgstr "Filtros de cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:446 -#: ../../enterprise/meta/advanced/policymanager.queue.php:334 -msgid "Delete from queue" -msgstr "Eliminar de la cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:459 -msgid "Empty queue" -msgstr "Vaciar cola" - -#: ../../enterprise/godmode/policies/policy_queue.php:476 -msgid "This operation could take a long time" -msgstr "Esta operación podría tardar bastante tiempo" - -#: ../../enterprise/godmode/policies/policy_queue.php:487 -msgid "Apply all" -msgstr "Aplicar a todo" - -#: ../../enterprise/godmode/policies/policy_queue.php:493 -msgid "Delete all" -msgstr "Eliminar todo" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:73 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:49 -msgid "Graph template editor" -msgstr "Editor de plantillas gráficas" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:136 -msgid "Template updated successfully" -msgstr "Plantilla actualizada con éxito" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:137 -msgid "Error updating template" -msgstr "Error al actualizar la plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:183 -msgid "3 hours" -msgstr "3 horas" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:188 -msgid "4 days" -msgstr "días" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:149 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1948 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2012 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2105 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2179 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2450 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2548 -msgid "Exact match" -msgstr "Coincidencia exacta" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:165 -msgid "Decrease Weight" -msgstr "Reducir el peso" - -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:168 -msgid "Increase Weight" -msgstr "Incrementar el peso" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:73 -msgid "Graph template management" -msgstr "Gestión de plantillas gráficas" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:166 -msgid "There are no defined graph templates" -msgstr "No hay plantillas gráficas definidas" - -#: ../../enterprise/godmode/reporting/graph_template_list.php:171 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:118 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:389 -msgid "Create template" -msgstr "Crear plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:64 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:151 -msgid "Cleanup sucessfully" -msgstr "Limpieza correcta" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:67 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:154 -msgid "Cleanup error" -msgstr "Error al borrar contenido" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:100 -msgid "Wizard template" -msgstr "Plantilla de Wizard" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:145 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:256 -msgid "Clean up template" -msgstr "Vaciar la plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:176 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:463 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:381 -msgid "Agents available" -msgstr "Agentes disponibles" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:176 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:182 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:464 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:467 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:380 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:386 -msgid "Select all" -msgstr "Seleccionar todo" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:182 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:466 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:387 -msgid "Agents to apply" -msgstr "Agentes para aplicar" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:408 -msgid "Add agents to template" -msgstr "Añadir agentes a la plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412 -msgid "Undo agents to template" -msgstr "Deshacer añadir agentes a la plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:230 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:430 -msgid "Apply template" -msgstr "Aplicar plantilla" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:392 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:424 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:755 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:786 -msgid "Please set template distinct than " -msgstr "Por favor, introduzca una plantilla distinta a " - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:419 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:781 -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. ¿Quiere continuar?" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:28 -#: ../../enterprise/godmode/reporting/mysql_builder.php:122 -msgid "Custom Mysql template builder" -msgstr "Creador de plantillas personailizadas para MySQL" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:59 -msgid "Create custom SQL" -msgstr "Crear SQL personalizado" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:70 -msgid ": Create new custom" -msgstr ": Crear nueva consulta personalizada" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:90 -msgid "Create new custom" -msgstr "Crear personalizada nueva" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:125 -msgid "Successfully operation" -msgstr "Operación realizada con éxito" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:125 -msgid "Could not be operation" -msgstr "La operación no puedo completarse" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:68 -msgid "Advance Reporting" -msgstr "Informes Avanzados" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:73 -#: ../../enterprise/include/functions_reporting.php:39 -msgid "Global" -msgstr "Global" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:101 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:161 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:206 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:169 -msgid "Elements to apply" -msgstr "Elementos para aplicar" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:189 -msgid "Sum" -msgstr "Suma" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:284 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1620 -msgid ">=" -msgstr ">=" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:286 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1622 -msgid "<" -msgstr "<" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:304 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1653 -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.php:81 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:90 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:134 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:100 -msgid "Edit template" -msgstr "Editar plantilla" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:130 -msgid "List templates" -msgstr "Lista de plantillas" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:291 -#: ../../enterprise/operation/reporting/custom_reporting.php:17 -msgid "PDF" -msgstr "PDF" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:292 -#: ../../enterprise/operation/reporting/custom_reporting.php:19 -msgid "JSON" -msgstr "JSON" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:346 -#: ../../enterprise/operation/reporting/custom_reporting.php:50 -msgid "Export to PDF" -msgstr "Exportar a PDF" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:348 -#: ../../enterprise/operation/reporting/custom_reporting.php:54 -msgid "Export to JSON" -msgstr "Exportar a JSON" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:384 -msgid "You haven't created templates yet." -msgstr "No tienen creado plantillas aun." - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:397 -msgid "Generate a dynamic report\"" -msgstr "Generar un informe dinámico" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:475 -msgid "Add agents" -msgstr "Añadir agentes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:478 -msgid "Undo agents" -msgstr "Anular agentes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:486 -msgid "Generate" -msgstr "Generar" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:769 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:759 -msgid "Please set agent distinct than " -msgstr "Por favor escoga un agente distinto a " - -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:105 -msgid "Advance Options" -msgstr "Opciones avanzadas" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1464 -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" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1478 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2058 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2229 -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 usa este campo con \"Coincidencia exacta de modulo\" " -"activado, entonces este campo tiene que rellenarse con la cadena literal del " -"nombre del modulo, sino, usará una expresion regular, p.e: .*usage.* " -"coincidiría con : cpu_usage, vram usage in machine 1." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1489 -msgid "Module exact match" -msgstr "Coincidencia exacta de modulo" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1489 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1995 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2060 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2158 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2233 -msgid "Check it if you want to match module name literally" -msgstr "" -"Actívela si desea que haya una coincidencia exacta y literal en el nombre " -"del módulo" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1529 -msgid "Query SQL" -msgstr "Consulta SQL" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1544 -msgid "SQL preview" -msgstr "Previsualización del SQL" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1606 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:374 -msgid "" -"If this option was checked, only adding in elements that type of modules " -"support this option." -msgstr "" -"Si esta casilla está activa, solo la adición de este tipo de módulos " -"soportan esta opción" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1772 -msgid "Modules to match" -msgstr "Módulos a comparar" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1774 -msgid "Select the modules to match when create a report for agents" -msgstr "" -"Seleccione los módulos a comparar cuando cree el informe para cada agente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1855 -msgid "Modules to match (Free text)" -msgstr "Modulos a comparar (Texto libre)" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1857 -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 use esta " -"plantilla" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1871 -msgid "Create a graph for each agent" -msgstr "Crear una gráfica por cada agente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1873 -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 modulo hará coincidencia " -"en cada módulo de cada agente, y creará una gráfica que contenga módulos de " -"todos los agentes." - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1960 -msgid "Please save the SLA template for start to add items in this list." -msgstr "" -"Por favor, guarde la plantilla SLA para empezar a añadir elementos a la lista" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2009 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2176 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2453 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2551 -msgid "Not literally" -msgstr "No literal" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2053 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2223 -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:2120 -msgid "Please save the template to start adding items into the list." -msgstr "" -"Por favor, guarde la plantilla para empezar a añadir elementos a la lista" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2472 -msgid "Name and SLA limit should not be empty" -msgstr "Nombre y límite SLA no deberían estar vacíos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:194 -msgid "Sucessfully applied" -msgstr "Aplicado correctamente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:194 -msgid "reports" -msgstr "Informes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:194 -msgid "items" -msgstr "elementos" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:196 -msgid "Could not be applied" -msgstr "No se pudo aplicar" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:216 -msgid "Create template report wizard" -msgstr "Asistente de creación de plantillas de informes" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:263 -msgid "Create report per agent" -msgstr "Crear informe por agente" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:272 -msgid "" -"Left in blank if you want to use default name: Template name - agents (num " -"agents) - Date" -msgstr "" -"Dejar en blanco si quieres usar el nombre por defecto: Nombre plantilla - " -"agentes (num agentes) - Fecha" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:278 -msgid "Target group" -msgstr "Grupo objetivo" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:305 -msgid "Filter by" -msgstr "Filtrar por" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:368 -msgid "Filter tag" -msgstr "Filtro por tag" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:244 -msgid "Order:" -msgstr "Orden:" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:264 -msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom:" -msgstr "" -"Muestra una tabla de resumen con el max, min y media del total de módulos en " -"la parte inferior del informe:" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:279 -msgid "Show address instead module name" -msgstr "Mostrar la dirección en lugar del nombre del módulo" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:89 -#: ../../enterprise/include/functions_reporting.php:36 -msgid "Wizard SLA" -msgstr "Wizard SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:115 -msgid "hourly S.L.A." -msgstr "S.L.A. por horas" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:116 -msgid "Availability Graph S.L.A." -msgstr "Gráfica de disponibilidad S.L.A." - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:203 -msgid "SLA min value" -msgstr "Valor mínimo de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:204 -msgid "SLA min Value" -msgstr "Valor mínimo de SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 -msgid "SLA max value" -msgstr "Valor máximo SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:208 -msgid "SLA max Value" -msgstr "Valor máximo SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 -msgid "SLA Limit %" -msgstr "Límite % SLA" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:212 -msgid "SLA Limit Value" -msgstr "Valor límite SLA" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:104 -msgid "Available" -msgstr "Disponible" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:113 -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:118 -msgid "Remove the services from the list" -msgstr "Elimina los servicios de la lista" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:172 -msgid "Icon preview" -msgstr "Pre visualización del icono" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:238 -msgid "The services list is empty" -msgstr "La lista de servicios esta vacía" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:30 -msgid "Credential Boxes List" -msgstr "Lista de cajas de crecenciales" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:33 -msgid "Credential Boxes" -msgstr "Cajas de credenciales" - -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:374 -#: ../../enterprise/godmode/servers/list_satellite.php:69 -msgid "No Data" -msgstr "No hay datos" - -#: ../../enterprise/godmode/servers/list_satellite.php:26 -msgid "Satellite Server" -msgstr "Servidor satélite" - -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 -msgid "Add Credential Box" -msgstr "Añadir caja de credenciales" - -#: ../../enterprise/godmode/servers/manage_export.php:61 -msgid "Error updating export target" -msgstr "Error al actualizar el servidor de exportación" - -#: ../../enterprise/godmode/servers/manage_export.php:64 -msgid "Successfully updated export target" -msgstr "Servidor de exportación actualizado correctamente" - -#: ../../enterprise/godmode/servers/manage_export.php:73 -msgid "Error deleting export target" -msgstr "Error al borrar el servidor de exportación" - -#: ../../enterprise/godmode/servers/manage_export.php:76 -msgid "Successfully deleted export target" -msgstr "Servidor de exportación borrado correctamente" - -#: ../../enterprise/godmode/servers/manage_export.php:98 -msgid "" -"Can't be created export target: User and password must be filled with FTP " -"mode" -msgstr "" -"No puede crearse target de exportación: El usuario y la contraseña deben ser " -"completadas con el modo de FTP" - -#: ../../enterprise/godmode/servers/manage_export.php:121 -msgid "There are no defined export targets" -msgstr "No hay objetivos a exportar definidos" - -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:76 -msgid "Preffix" -msgstr "Prefijo" - -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:88 -msgid "Transfer mode" -msgstr "Modo de transferencia" - -#: ../../enterprise/godmode/servers/manage_export_form.php:109 -msgid "Target directory" -msgstr "Directorio objetivo" - -#: ../../enterprise/godmode/servers/manage_export_form.php:113 -msgid "Extra options" -msgstr "Opciones adicionales" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:130 -msgid "Error: The conf file of server is not readble." -msgstr "Error: El fichero de configuración del servidor no se puede leer" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:135 -msgid "Error: The conf file of server is not writable." -msgstr "" -"Error: En el fichero de configuración del servidor no se puede escribir" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:160 -msgid "Delete remote conf server files in Pandora" -msgstr "Borrar los servidores de configuración remota en Pandora" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:164 -msgid "" -"Delete this conf file implies that Pandora will send back local config to " -"console" -msgstr "" -"Borrar este fichero de configuración implicará que Pandora enviará la " -"configuración local a la consola" - -#: ../../enterprise/godmode/services/services.elements.php:70 -#: ../../enterprise/godmode/services/services.service.php:266 -msgid "" -"This values are by default because the service is auto calculate mode." -msgstr "" -"Estos valores están por defecto porque el servicio está en modo auto-cálculo" - -#: ../../enterprise/godmode/services/services.elements.php:82 -msgid "Invalid service" -msgstr "Servicio inválido" - -#: ../../enterprise/godmode/services/services.elements.php:96 -#: ../../enterprise/godmode/services/services.service.php:171 -#: ../../enterprise/operation/services/services.service.php:55 -#: ../../enterprise/operation/services/services.service_map.php:63 -#: ../../enterprise/operation/services/services.table_services.php:39 -msgid "Services list" -msgstr "Lista de servicios" - -#: ../../enterprise/godmode/services/services.elements.php:102 -#: ../../enterprise/godmode/services/services.service.php:177 -#: ../../enterprise/operation/services/services.service.php:61 -#: ../../enterprise/operation/services/services.service_map.php:69 -msgid "Services table view" -msgstr "Vista de tabla de servicios" - -#: ../../enterprise/godmode/services/services.elements.php:109 -#: ../../enterprise/godmode/services/services.service.php:182 -#: ../../enterprise/operation/services/services.service.php:66 -#: ../../enterprise/operation/services/services.service_map.php:75 -msgid "Config Service" -msgstr "Configurar Servicios" - -#: ../../enterprise/godmode/services/services.elements.php:115 -#: ../../enterprise/godmode/services/services.service.php:187 -#: ../../enterprise/operation/services/services.service.php:71 -#: ../../enterprise/operation/services/services.service_map.php:81 -msgid "Config Elements" -msgstr "Configurar Elementos" - -#: ../../enterprise/godmode/services/services.elements.php:123 -#: ../../enterprise/godmode/services/services.service.php:194 -#: ../../enterprise/operation/services/services.service.php:79 -#: ../../enterprise/operation/services/services.service_map.php:89 -msgid "View Service" -msgstr "Ver Servicio" - -#: ../../enterprise/godmode/services/services.elements.php:130 -#: ../../enterprise/godmode/services/services.service.php:200 -#: ../../enterprise/operation/services/services.service.php:85 -#: ../../enterprise/operation/services/services.service_map.php:95 -msgid "Service map" -msgstr "Mapa del Servicio" - -#: ../../enterprise/godmode/services/services.elements.php:142 -#: ../../enterprise/include/functions_services.php:1647 -msgid "Edit service elements" -msgstr "Editar elementos del servicio" - -#: ../../enterprise/godmode/services/services.elements.php:156 -msgid "Error empty module" -msgstr "Error al vaciar los módulos" - -#: ../../enterprise/godmode/services/services.elements.php:165 -msgid "Error empty agent" -msgstr "Error al vaciar el agente" - -#: ../../enterprise/godmode/services/services.elements.php:174 -msgid "Error empty service" -msgstr "Error al vaciar el servicio" - -#: ../../enterprise/godmode/services/services.elements.php:196 -msgid "Service element created successfully" -msgstr "Elemento del servicio creado correctamente" - -#: ../../enterprise/godmode/services/services.elements.php:197 -msgid "Error creating service element" -msgstr "Error al crear elemento de servicio" - -#: ../../enterprise/godmode/services/services.elements.php:271 -msgid "Service element updated successfully" -msgstr "Elemento de servicio actualizado correctamente" - -#: ../../enterprise/godmode/services/services.elements.php:272 -msgid "Error updating service element" -msgstr "Error al actualizar el elemento de sevicio" - -#: ../../enterprise/godmode/services/services.elements.php:279 -msgid "Service element deleted successfully" -msgstr "Elemento de servicio eliminado correctamente" - -#: ../../enterprise/godmode/services/services.elements.php:280 -msgid "Error deleting service element" -msgstr "Error al eliminar el elemento de servicio" - -#: ../../enterprise/godmode/services/services.elements.php:318 -msgid "Edit element service" -msgstr "Editar elemento de servicio" - -#: ../../enterprise/godmode/services/services.elements.php:321 -msgid "Create element service" -msgstr "Crear elemento de sevicio" - -#: ../../enterprise/godmode/services/services.elements.php:371 -msgid "First select an agent" -msgstr "Primero, seleccione un agente" - -#: ../../enterprise/godmode/services/services.elements.php:389 -msgid "Critical weight" -msgstr "Peso crítico" - -#: ../../enterprise/godmode/services/services.elements.php:394 -msgid "Warning weight" -msgstr "Advertencia de peso" - -#: ../../enterprise/godmode/services/services.elements.php:399 -msgid "Unknown weight" -msgstr "Peso desconocido" - -#: ../../enterprise/godmode/services/services.elements.php:404 -msgid "Ok weight" -msgstr "Peso correcto" - -#: ../../enterprise/godmode/services/services.elements.php:412 -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" - -#: ../../enterprise/godmode/services/services.service.php:54 -#: ../../enterprise/operation/services/services.list.php:507 -#: ../../enterprise/operation/services/services.table_services.php:375 -msgid "Create Service" -msgstr "Crear Servicio" - -#: ../../enterprise/godmode/services/services.service.php:62 -msgid "Service created successfully" -msgstr "Servicio creado correctamente" - -#: ../../enterprise/godmode/services/services.service.php:63 -msgid "Error creating service" -msgstr "Error al crear servicio" - -#: ../../enterprise/godmode/services/services.service.php:85 -msgid "No name and description specified for the service" -msgstr "Ningún nombre y descripción especificados para el servicio" - -#: ../../enterprise/godmode/services/services.service.php:90 -msgid "No name specified for the service" -msgstr "Ningún nombre especificado para el servicio" - -#: ../../enterprise/godmode/services/services.service.php:95 -msgid "No description specified for the service" -msgstr "Ninguna descripción especificada para el servicio" - -#: ../../enterprise/godmode/services/services.service.php:109 -msgid "Error updating service" -msgstr "Error al actualizar el sevicio" - -#: ../../enterprise/godmode/services/services.service.php:113 -msgid "Service updated successfully" -msgstr "Servicio actualizado correctamente" - -#: ../../enterprise/godmode/services/services.service.php:126 -#: ../../enterprise/godmode/services/services.service.php:153 -#: ../../enterprise/operation/services/services.service.php:37 -#: ../../enterprise/operation/services/services.service_map.php:44 -msgid "Not found" -msgstr "No encontrado" - -#: ../../enterprise/godmode/services/services.service.php:130 -msgid "New Service" -msgstr "Nuevo servicio" - -#: ../../enterprise/godmode/services/services.service.php:229 -msgid "No Services or concrete action" -msgstr "Sin Servicios o acción concreta" - -#: ../../enterprise/godmode/services/services.service.php:240 -msgid "General Data" -msgstr "Datos Generales" - -#: ../../enterprise/godmode/services/services.service.php:256 -msgid "You should set the weights manually" -msgstr "Debe establecer los pesos de forma manual" - -#: ../../enterprise/godmode/services/services.service.php:259 -msgid "The weights have default values" -msgstr "Los pesos tienen valores por defecto" - -#: ../../enterprise/godmode/services/services.service.php:261 -#: ../../enterprise/operation/services/services.list.php:191 -#: ../../enterprise/operation/services/services.table_services.php:160 -msgid "Simple" -msgstr "Simple" - -#: ../../enterprise/godmode/services/services.service.php:262 -msgid "" -"Only the elements configured as 'critical element' are used to calculate the " -"service status" -msgstr "" -"Sólo los elementos configurados como \"elemento crítico\" se utilizan para " -"calcular el estado del servicio" - -#: ../../enterprise/godmode/services/services.service.php:282 -msgid "Agent to store data" -msgstr "Agentes para almacenar datos" - -#: ../../enterprise/godmode/services/services.service.php:305 -msgid "S.L.A. interval" -msgstr "Intervalo SLA" - -#: ../../enterprise/godmode/services/services.service.php:310 -msgid "S.L.A. limit" -msgstr "Límite SLA" - -#: ../../enterprise/godmode/services/services.service.php:312 -msgid "Please set limit between 0 to 100." -msgstr "Por favor, introduzca un límite de 0 a 100" - -#: ../../enterprise/godmode/services/services.service.php:320 -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:334 -msgid "Warning Service alert" -msgstr "Alerta de advertencia del servicio" - -#: ../../enterprise/godmode/services/services.service.php:345 -msgid "Critical Service alert" -msgstr "Alerta crítica del servicio" - -#: ../../enterprise/godmode/services/services.service.php:363 -msgid "SLA critical service alert" -msgstr "Alerta crítica de servicio SLA." - -#: ../../enterprise/godmode/setup/edit_skin.php:42 -#: ../../enterprise/godmode/setup/setup_skins.php:36 -msgid "Skins configuration" -msgstr "Configuración skins" - -#: ../../enterprise/godmode/setup/edit_skin.php:45 -msgid "Successfully updated skin" -msgstr "Skin actualizada correctamente" - -#: ../../enterprise/godmode/setup/edit_skin.php:48 -#: ../../enterprise/godmode/setup/edit_skin.php:60 -msgid "Error updating skin" -msgstr "Error al actualizar skin" - -#: ../../enterprise/godmode/setup/edit_skin.php:171 -msgid "Error creating skin" -msgstr "Error al crear skin" - -#: ../../enterprise/godmode/setup/edit_skin.php:176 -msgid "Successfully created skin" -msgstr "Skin creado correctamente" - -#: ../../enterprise/godmode/setup/edit_skin.php:216 -#: ../../enterprise/godmode/setup/setup_skins.php:118 -msgid "Relative path" -msgstr "Ruta relativa" - -#: ../../enterprise/godmode/setup/edit_skin.php:217 -msgid "" -"Zip file with skin subdirectory. The name of the zip file only can have " -"alphanumeric characters." -msgstr "" -"Archivo zip con subdirectorio skin. El nombre del archivo zip solo puede " -"tener caracteres alfanuméricos." - -#: ../../enterprise/godmode/setup/edit_skin.php:239 -msgid "Group/s" -msgstr "Grupo/s" - -#: ../../enterprise/godmode/setup/setup.php:38 -msgid "" -"Before activating this option check your ACL Setup. You may lose access to " -"the console." -msgstr "" -"Antes de activar esta opción compruebe su configuración ACL. Puede que " -"pierda el acceso a la consola." - -#: ../../enterprise/godmode/setup/setup.php:48 -msgid " Bytes" -msgstr " Bytes" - -#: ../../enterprise/godmode/setup/setup.php:64 -msgid "Seconds" -msgstr "Segundos" - -#: ../../enterprise/godmode/setup/setup.php:72 -msgid "" -"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." - -#: ../../enterprise/godmode/setup/setup.php:78 -msgid "Last replication at" -msgstr "Última replicación a" - -#: ../../enterprise/godmode/setup/setup.php:80 -msgid "No replication yet" -msgstr "Sin replicación todavía" - -#: ../../enterprise/godmode/setup/setup.php:90 -msgid "Only validated events" -msgstr "Sólo eventos validados" - -#: ../../enterprise/godmode/setup/setup.php:96 -msgid "Metaconsole DB engine" -msgstr "Motor BD de la metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:97 -msgid "MySQL" -msgstr "MySQL" - -#: ../../enterprise/godmode/setup/setup.php:97 -msgid "Oracle" -msgstr "Oracle" - -#: ../../enterprise/godmode/setup/setup.php:103 -msgid "Metaconsole DB host" -msgstr "Host BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:110 -msgid "Metaconsole DB name" -msgstr "Nombre BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:117 -msgid "Metaconsole DB user" -msgstr "Usuario BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:124 -msgid "Metaconsole DB password" -msgstr "Password BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:131 -msgid "Metaconsole DB port" -msgstr "Puerto BD Metaconsola" - -#: ../../enterprise/godmode/setup/setup.php:147 -msgid "" -"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." - -#: ../../enterprise/godmode/setup/setup.php:178 -msgid "Out of black list" -msgstr "Fuera de la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:180 -msgid "In black list" -msgstr "En la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:186 -msgid "Push selected modules into blacklist" -msgstr "Mover los módulos seleccionados a la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:190 -msgid "Pop selected modules out of blacklist" -msgstr "Sacar los módulos seleccionados de la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:216 -msgid "Enterprise options" -msgstr "Opciones Enterprise" - -#: ../../enterprise/godmode/setup/setup.php:229 -#: ../../enterprise/meta/advanced/metasetup.mail.php:79 -msgid "Mail configuration" -msgstr "Configuración de Mail" - -#: ../../enterprise/godmode/setup/setup.php:283 -#: ../../enterprise/meta/advanced/metasetup.password.php:85 -msgid " Caracters" -msgstr " Caracteres" - -#: ../../enterprise/godmode/setup/setup.php:296 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -msgid "Set 0 if never expire." -msgstr "Introduzca 0 para que nunca expire" - -#: ../../enterprise/godmode/setup/setup.php:297 -#: ../../enterprise/meta/advanced/metasetup.password.php:102 -msgid " Days" -msgstr " Días" - -#: ../../enterprise/godmode/setup/setup.php:306 -#: ../../enterprise/meta/advanced/metasetup.password.php:113 -msgid " Minutes" -msgstr " Minutos" - -#: ../../enterprise/godmode/setup/setup.php:310 -#: ../../enterprise/meta/advanced/metasetup.password.php:117 -msgid "Two attempts minimum" -msgstr "2 intentos mínimo" - -#: ../../enterprise/godmode/setup/setup.php:311 -#: ../../enterprise/meta/advanced/metasetup.password.php:118 -msgid " Attempts" -msgstr " Intentos" - -#: ../../enterprise/godmode/setup/setup.php:351 -msgid "Enterprise password policy" -msgstr "Política de contraseña Enterprise" - -#: ../../enterprise/godmode/setup/setup.php:352 -msgid "" -"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" - -#: ../../enterprise/godmode/setup/setup_acl.php:40 -msgid "Enterprise ACL setup" -msgstr "Configuración ACL Enterprise" - -#: ../../enterprise/godmode/setup/setup_acl.php:147 -#: ../../enterprise/godmode/setup/setup_acl.php:179 -msgid "Add new ACL element to profile" -msgstr "Añadir nuevo elemento ACL al perfil" - -#: ../../enterprise/godmode/setup/setup_acl.php:152 -#: ../../enterprise/godmode/setup/setup_acl.php:224 -msgid "Section" -msgstr "Sección" - -#: ../../enterprise/godmode/setup/setup_acl.php:157 -#: ../../enterprise/godmode/setup/setup_acl.php:313 -msgid "Mobile" -msgstr "Móvil" - -#: ../../enterprise/godmode/setup/setup_acl.php:161 -#: ../../enterprise/godmode/setup/setup_acl.php:225 -msgid "Section 2" -msgstr "Sección 2" - -#: ../../enterprise/godmode/setup/setup_acl.php:166 -#: ../../enterprise/godmode/setup/setup_acl.php:226 -msgid "Section 3" -msgstr "Sección 3" - -#: ../../enterprise/godmode/setup/setup_acl.php:178 -msgid "Hidden" -msgstr "Oculto" - -#: ../../enterprise/godmode/setup/setup_acl.php:184 -msgid "Page" -msgstr "Página" - -#: ../../enterprise/godmode/setup/setup_acl.php:203 -msgid "Filter by profile" -msgstr "Filtrar por perfil" - -#: ../../enterprise/godmode/setup/setup_auth.php:31 -msgid "Active directory" -msgstr "Directorio activo" - -#: ../../enterprise/godmode/setup/setup_auth.php:32 -msgid "Remote Pandora FMS" -msgstr "Pandora FMS remota" - -#: ../../enterprise/godmode/setup/setup_auth.php:33 -msgid "Remote Babel Enterprise" -msgstr "Babel Enterprise remoto" - -#: ../../enterprise/godmode/setup/setup_auth.php:34 -msgid "Remote Integria" -msgstr "Integria IMs remoto" - -#: ../../enterprise/godmode/setup/setup_auth.php:35 -msgid "SAML" -msgstr "SAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:154 -msgid "You must select a profile from the list of profiles." -msgstr "Debe seleccionar un perfil de la lista de perfiles" - -#: ../../enterprise/godmode/setup/setup_auth.php:346 -msgid "SimpleSAML path" -msgstr "Ruta de SimpleSAML" - -#: ../../enterprise/godmode/setup/setup_auth.php:346 -msgid "" -"Select the path where SimpleSAML has been installed (by default '/opt/')" -msgstr "" -"Seleccione la ruta donde haya sido instalado SimpleSAML (por defecto " -"\"/opt/\")" - -#: ../../enterprise/godmode/setup/setup_auth.php:355 -msgid "" -"Enable this option to assign profiles, groups and tags to users from " -"specific AD groups (updated at the next login)" -msgstr "" -"Al habilitar esta opción podrá asignar perfiles, grupos y etiquetas a " -"usuarios que provengan de ciertos grupos del AD (se actualiza en el " -"siguiente login)" - -#: ../../enterprise/godmode/setup/setup_auth.php:389 -#: ../../enterprise/meta/include/functions_meta.php:744 -msgid "Auto enable node access" -msgstr "Auto habilitar acceso a nodo" - -#: ../../enterprise/godmode/setup/setup_auth.php:390 -msgid "New users will be able to log in to the nodes." -msgstr "Los nuevos usuarios serán capaces de hacer login en los nodos" - -#: ../../enterprise/godmode/setup/setup_auth.php:427 -#: ../../enterprise/godmode/setup/setup_auth.php:468 -msgid "AD Groups" -msgstr "Grupos AD" - -#: ../../enterprise/godmode/setup/setup_auth.php:470 -msgid "Select profile" -msgstr "Seleccionar perfil" - -#: ../../enterprise/godmode/setup/setup_auth.php:479 -msgid "Add new permissions" -msgstr "Agregar nuevos permisos" - -#: ../../enterprise/godmode/setup/setup_history.php:49 -msgid "Enable event history" -msgstr "Activar histórico de eventos" - -#: ../../enterprise/godmode/setup/setup_history.php:49 -msgid "" -"Event history is ONLY used for event reports, is not used in graphs or event " -"viewer." -msgstr "" -"El histórico de eventos SOLO será usado para los informes de eventos, no así " -"para gráficas o visor de eventos." - -#: ../../enterprise/godmode/setup/setup_history.php:68 -msgid "Number of days before data is transfered to history database." -msgstr "" -"Número de días antes de que los datos se transfieran a la base de datos " -"histórica." - -#: ../../enterprise/godmode/setup/setup_history.php:71 -msgid "" -"Data size of mechanism used to transfer data (similar to a data buffer.)" -msgstr "Tamaño del sistema de transferencia de datos (similar al un buffer)" - -#: ../../enterprise/godmode/setup/setup_history.php:74 -msgid "Time interval between data transfer." -msgstr "Intervalo de tiempo entre transferencias de datos" - -#: ../../enterprise/godmode/setup/setup_history.php:77 -msgid "Event days" -msgstr "Días de eventos" - -#: ../../enterprise/godmode/setup/setup_history.php:77 -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 de " -"histórico" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:44 -msgid "Log storage directory" -msgstr "Directorio de almacenamiento de logs" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:45 -msgid "Directory where log data will be stored." -msgstr "Directorio donde los datos de log se almacenarán" - -#: ../../enterprise/godmode/setup/setup_log_collector.php:48 -msgid "Sets the maximum lifetime for log data in days." -msgstr "Establece la duración máxima de los datos de registro en días" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:29 -msgid "Metaconsole setup" -msgstr "Configuración de la Metaconsola" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:76 -#: ../../enterprise/meta/advanced/metasetup.auth.php:53 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:138 -#: ../../enterprise/meta/advanced/metasetup.password.php:53 -#: ../../enterprise/meta/advanced/metasetup.performance.php:53 -#: ../../enterprise/meta/advanced/metasetup.setup.php:85 -#: ../../enterprise/meta/advanced/metasetup.visual.php:56 -msgid "Successfully update" -msgstr "Actualizado correctamente" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:77 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:139 -msgid "Could not be update" -msgstr "No se pudo actualizar" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:168 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:301 -msgid "Pandora FMS Metaconsole item edition" -msgstr "Edición de elementos de la metaconsola de Pandora FMS" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:175 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:310 -msgid "Auth token" -msgstr "Aut. token" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:175 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:312 -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 autentificación delegada." - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:179 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:248 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:315 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:389 -msgid "Console URL" -msgstr "Consola URL" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:188 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:249 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:321 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:390 -msgid "DB Host" -msgstr "Host DB" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:192 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 -msgid "DB Name" -msgstr "Nombre BD" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:197 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:327 -msgid "DB User" -msgstr "Usuario de base de datos" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:201 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:330 -msgid "DB Password" -msgstr "Contraseña BD" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:206 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:336 -msgid "Console User" -msgstr "Usuario de la consola" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:210 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:339 -msgid "Console Password" -msgstr "Contraseña de la consola" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:244 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:381 -msgid "DB" -msgstr "BD" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:245 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 -msgid "API" -msgstr "API" - -#: ../../enterprise/godmode/setup/setup_metaconsole.php:246 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:383 -msgid "Compatibility" -msgstr "Compatibilidad" - -#: ../../enterprise/godmode/setup/setup_skins.php:71 -msgid "Error deleting skin" -msgstr "Error al borrar skin" - -#: ../../enterprise/godmode/setup/setup_skins.php:74 -msgid "Successfully deleted skin" -msgstr "Skin eliminado correctamente" - -#: ../../enterprise/godmode/setup/setup_skins.php:117 -msgid "Skin name" -msgstr "Nombre del skin" - -#: ../../enterprise/godmode/setup/setup_skins.php:143 -msgid "There are no defined skins" -msgstr "No hay skins definidas" - -#: ../../enterprise/godmode/setup/setup_skins.php:148 -msgid "Create skin" -msgstr "Crear skin" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:174 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:187 -msgid "Successfully added trap custom values" -msgstr "Añadidos correctamente a los valores personalizados trap" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:177 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:190 -msgid "Error adding trap custom values" -msgstr "Error al añadir los valores personalizados trap" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:194 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:256 -msgid "This custom OID is preexistent." -msgstr "El OID personalizado ya existe" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225 -msgid "No change in data" -msgstr "No hay cambios en los datos" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:228 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:249 -msgid "Successfully updated trap custom values" -msgstr "Los valores personalizados trap se han añadido correctamente" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:231 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:252 -msgid "Error updating trap custom values" -msgstr "Error al actualizar los valores personalizados trap" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:268 -msgid "Successfully deleted trap custom values" -msgstr "Valores personalizados trap eliminados correctamente" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:272 -msgid "Error deleting trap custom values" -msgstr "Error al eliminar valores personalizados trap" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:279 -#, php-format -msgid "Uploaded %s/%s traps" -msgstr "Actualizados %s/%s traps" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283 -msgid "Fail uploaded file" -msgstr "Fallo al subir el archivo" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287 -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 ficheros MIB se cargarán y buscaron las definiciones de SNMP trap. ¡No " -"van a ser instalados en el sistema! Puede usar el cargador de MIB para ese " -"propósito." - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:296 -msgid "Load MIB" -msgstr "Cargar MIB" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:298 -msgid "Upload MIB" -msgstr "Actualizar MIB" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:319 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:65 -msgid "Custom OID" -msgstr "OID personalizado" - -#: ../../enterprise/include/ajax/dashboard.ajax.php:297 -msgid "Only one service map widget is supported at this moment" -msgstr "Solo un widget de mapa de servicios es soportado actualmente" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:251 -msgid "Error accesing to API, auth error." -msgstr "Error al acceder a la API. Error de autenticación." - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:255 -msgid "Error accesing to API." -msgstr "Error al acceder a la API" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:259 -msgid "Error could not resolve the host." -msgstr "Error no pudo resolver el host." - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:270 -msgid "Database credentials not found" -msgstr "Los credenciales de la base de datos no se han encontrado" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:274 -msgid "Error connecting to the specified host" -msgstr "Error al conectar con el host especificado" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:278 -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" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:289 -#: ../../enterprise/include/ajax/metaconsole.ajax.php:313 -msgid "Server connection failed" -msgstr "Falló la conexión con el servidor" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:293 -msgid "" -"\"Translate string\" extension is missed in the server. This extension is " -"mandatory to be configured on metaconsole." -msgstr "" -"En el servidor, falta la extensión \"Translate string\". Esta extensión es " -"imprescindible para configurar la metaconsola." - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:297 -msgid "" -"Server name doesnt match. Check the node server name and configure the same " -"one on metasetup" -msgstr "" -"El nombre del servidor no coincide. Compruebe el nombre del servidor del " -"nodo y configure el mismo nombre en el metasetup" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:308 -msgid "Last event replication" -msgstr "Replicación del último evento" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:322 -msgid "Agent cache activated" -msgstr "Cache de agente activado" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:326 -msgid "Agent cache failed" -msgstr "Cache de agente falló" - -#: ../../enterprise/include/ajax/transactional.ajax.php:178 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:151 -msgid "The phase does not have a defined script" -msgstr "La fase no tiene un script definido" - -#: ../../enterprise/include/ajax/transactional.ajax.php:217 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:201 -msgid "Edit Data" -msgstr "Editar datos" - -#: ../../enterprise/include/reset_pass.php:99 -#: ../../enterprise/meta/include/reset_pass.php:76 -msgid "User to reset password" -msgstr "Nombre de usuario" - -#: ../../enterprise/include/reset_pass.php:102 -#: ../../enterprise/meta/include/reset_pass.php:79 -#: ../../enterprise/meta/index.php:536 ../../index.php:650 -msgid "Reset password" -msgstr "Restablecer la contraseña" - -#: ../../enterprise/include/reset_pass.php:109 -#: ../../enterprise/include/process_reset_pass.php:120 -#: ../../enterprise/meta/general/noaccess.php:17 -#: ../../enterprise/meta/include/process_reset_pass.php:97 -#: ../../enterprise/meta/include/reset_pass.php:86 -msgid "Back to login" -msgstr "Volver a identificarse" - -#: ../../enterprise/include/reset_pass.php:163 -#: ../../enterprise/include/reset_pass.php:166 -#: ../../enterprise/meta/include/reset_pass.php:122 -#: ../../enterprise/meta/include/reset_pass.php:125 -msgid "Reset password failed" -msgstr "Restablecimiento de contraseña fallido" - -#: ../../enterprise/include/functions_alert_event.php:925 -msgid "Module alert" -msgstr "Alerta de módulos" - -#: ../../enterprise/include/functions_backup.php:135 -msgid "No description" -msgstr "Sin descripción" - -#: ../../enterprise/include/functions_backup.php:242 -#: ../../enterprise/include/functions_backup.php:324 -msgid "Restoring a backup" -msgstr "Restaurar una copia de seguridad" - -#: ../../enterprise/include/functions_backup.php:244 -#: ../../enterprise/include/functions_backup.php:326 -msgid "Restoring a Pandora database backup must be done manually" -msgstr "" -"Debe restaurar la copia de seguridad de la base de datos de Pandora FMS " -"manualmente." - -#: ../../enterprise/include/functions_backup.php:245 -#: ../../enterprise/include/functions_backup.php:327 -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:246 -#: ../../enterprise/include/functions_backup.php:328 -msgid "To restore the selected backup, please follow these steps" -msgstr "" -"Para restaurar la copia de seguridad seleccionada, por favor, siga los " -"siguientes pasos" - -#: ../../enterprise/include/functions_backup.php:252 -#: ../../enterprise/include/functions_backup.php:334 -msgid "Open a root shell in your system located at " -msgstr "Abra un root shell en su sistema localizado en " - -#: ../../enterprise/include/functions_backup.php:256 -msgid "Connect to MySQL database using the following command" -msgstr "Use el siguiente comando para conectar con la base de datos de MySQL" - -#: ../../enterprise/include/functions_backup.php:263 -msgid "Create a new database" -msgstr "Crear una nueva base de datos" - -#: ../../enterprise/include/functions_backup.php:276 -msgid "Restore the backup" -msgstr "Restaurar la copia de seguridad" - -#: ../../enterprise/include/functions_backup.php:284 -#: ../../enterprise/include/functions_backup.php:349 -msgid "Modify console configuration to use this new database" -msgstr "" -"Modifique la configuración de la consola para usar esta nueva base de datos" - -#: ../../enterprise/include/functions_backup.php:285 -#: ../../enterprise/include/functions_backup.php:350 -msgid "Open configuration file" -msgstr "Abrir el archivo de configuración" - -#: ../../enterprise/include/functions_backup.php:289 -#: ../../enterprise/include/functions_backup.php:301 -#: ../../enterprise/include/functions_backup.php:354 -#: ../../enterprise/include/functions_backup.php:366 -msgid "Find" -msgstr "Encontrar" - -#: ../../enterprise/include/functions_backup.php:291 -#: ../../enterprise/include/functions_backup.php:304 -#: ../../enterprise/include/functions_backup.php:356 -#: ../../enterprise/include/functions_backup.php:369 -msgid "and replace with" -msgstr "y reemplazar con" - -#: ../../enterprise/include/functions_backup.php:298 -#: ../../enterprise/include/functions_backup.php:363 -msgid "Modify servers configuration to use this new database" -msgstr "" -"Modifique la configuración de los servidores para usar esta nueva base de " -"datos" - -#: ../../enterprise/include/functions_backup.php:299 -#: ../../enterprise/include/functions_backup.php:364 -msgid "Find servers configuration file and replace the following lines" -msgstr "" -"Acceda al archivo de configuración de los servidores y reemplácelo por las " -"siguientes líneas" - -#: ../../enterprise/include/functions_backup.php:311 -#: ../../enterprise/include/functions_backup.php:376 -msgid "Restart the servers and login again into the console" -msgstr "Reinicie los servidores y vuelva a identificarse en la consola" - -#: ../../enterprise/include/functions_backup.php:341 -msgid "Run import command using the following command" -msgstr "Ejecute el comando de importación mediante el siguiente comando" - -#: ../../enterprise/include/functions_backup.php:345 -msgid "Into your destination database." -msgstr "En su base de datos de destino" - -#: ../../enterprise/include/functions_collection.php:42 -#, php-format -msgid "Fail create the directory: %s" -msgstr "Fallo al crear el directorio: %s" - -#: ../../enterprise/include/functions_collection.php:69 -msgid "No files in collection" -msgstr "No hay archivos en la colección" - -#: ../../enterprise/include/functions_collection.php:77 -msgid "File of collection is bigger than the limit (" -msgstr "El archivo de la colección es mayor que el límite" - -#: ../../enterprise/include/functions_dashboard.php:408 -#, php-format -msgid "Copy of %s" -msgstr "Copia de %s" - -#: ../../enterprise/include/functions_enterprise.php:298 -msgid "Tree view by tags" -msgstr "Vista de árbol por tags" - -#: ../../enterprise/include/functions_enterprise.php:321 -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" -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." - -#: ../../enterprise/include/functions_enterprise.php:323 -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:331 -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:333 -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 a " -"histórico" - -#: ../../enterprise/include/functions_events.php:164 -#: ../../enterprise/include/functions_reporting_csv.php:1450 -msgid "Hours" -msgstr "Horas" - -#: ../../enterprise/include/functions_events.php:177 -#: ../../enterprise/include/functions_events.php:194 -msgid "More than 5 tags" -msgstr "Más de 5 tags" - -#: ../../enterprise/include/functions_events.php:212 -msgid "Active filter" -msgstr "Filtro activo" - -#: ../../enterprise/include/functions_events.php:213 -msgid "Active filters" -msgstr "Filtros activos" - -#: ../../enterprise/include/functions_groups.php:47 -msgid "Metaconsole" -msgstr "Metaconsola" - -#: ../../enterprise/include/functions_inventory.php:54 -#: ../../enterprise/include/functions_inventory.php:494 -msgid "No changes found" -msgstr "No se han encontrado cambios" - -#: ../../enterprise/include/functions_inventory.php:64 -msgid "Agent alias" -msgstr "Alias de agente" - -#: ../../enterprise/include/functions_inventory.php:80 -msgid "Get CSV file" -msgstr "Obtener archivo CSV" - -#: ../../enterprise/include/functions_license.php:49 -msgid "Client" -msgstr "Cliente" - -#: ../../enterprise/include/functions_license.php:49 -msgid "Trial" -msgstr "Prueba" - -#: ../../enterprise/include/functions_local_components.php:142 -msgid "Empty configuration" -msgstr "Configuración vacía" - -#: ../../enterprise/include/functions_local_components.php:146 -msgid "Empty OS" -msgstr "SO vacío" - -#: ../../enterprise/include/functions_log.php:349 -msgid "Lines" -msgstr "Líneas" - -#: ../../enterprise/include/functions_login.php:22 -msgid "You must change password:" -msgstr "Debe 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 de los tres cambios previos." - -#: ../../enterprise/include/functions_login.php:48 -msgid "Old pass: " -msgstr "Contraseña antigua: " - -#: ../../enterprise/include/functions_login.php:51 -msgid "New pass: " -msgstr "Nueva contraseña: " - -#: ../../enterprise/include/functions_login.php:55 -msgid "Confirm: " -msgstr "Confirmar: " - -#: ../../enterprise/include/functions_login.php:61 -msgid "Change" -msgstr "Cambiar" - -#: ../../enterprise/include/functions_login.php:92 -msgid "Login blocked" -msgstr "Login bloqueado" - -#: ../../enterprise/include/functions_login.php:100 -msgid "User has been blocked. Try again in " -msgstr "Su usuario ha sido bloqueado. Vuelva a intentarlo en " - -#: ../../enterprise/include/functions_login.php:100 -msgid " minutes" -msgstr " minutos" - -#: ../../enterprise/include/functions_login.php:129 -msgid "Login successfully" -msgstr "Login correcto" - -#: ../../enterprise/include/functions_login.php:136 -msgid "Successfully" -msgstr "Éxito" - -#: ../../enterprise/include/functions_login.php:137 -msgid "User pass successfully updated" -msgstr "La contraseña se ha actualizado correctamente" - -#: ../../enterprise/include/functions_login.php:238 -msgid "Password must be different from the " -msgstr "La contraseña debe ser diferente de " - -#: ../../enterprise/include/functions_login.php:238 -msgid " previous changes." -msgstr " Cambios anteriores" - -#: ../../enterprise/include/functions_login.php:252 -msgid "Password must be different" -msgstr "La contraseña tiene que ser diferente" - -#: ../../enterprise/include/functions_login.php:262 -msgid "Password too short" -msgstr "La contraseña es demasiado corta" - -#: ../../enterprise/include/functions_login.php:273 -msgid "Password must contain numbers" -msgstr "La contraseña tiene que contener números" - -#: ../../enterprise/include/functions_login.php:285 -msgid "Password must contain symbols" -msgstr "La contraseña tiene que contener símbolos" - -#: ../../enterprise/include/functions_login.php:305 -msgid "Invalid old password" -msgstr "Password antigua inválida." - -#: ../../enterprise/include/functions_login.php:340 -msgid "Password confirm does not match" -msgstr "Las contraseñas no coinciden" - -#: ../../enterprise/include/functions_login.php:348 -msgid "Password empty" -msgstr "La contraseña está vacía" - -#: ../../enterprise/include/functions_metaconsole.php:842 -msgid "Group does not exist. Agent " -msgstr "El grupo no existe. Agente " - -#: ../../enterprise/include/functions_metaconsole.php:848 -msgid "Created group in destination DB" -msgstr "Creado el grupo en la base de datos destino" - -#: ../../enterprise/include/functions_metaconsole.php:852 -msgid "Error creating group. Agent " -msgstr "Error creando grupo. Agente " - -#: ../../enterprise/include/functions_metaconsole.php:858 -msgid "Group already exists in destination DB" -msgstr "El grupo ya existe en la base de datos destino" - -#: ../../enterprise/include/functions_netflow_pdf.php:45 -#: ../../enterprise/include/functions_reporting_pdf.php:51 -msgid "Automated Pandora FMS report for user defined report" -msgstr "Informe automatizado de Pandora FMS para informes personalizados." - -#: ../../enterprise/include/functions_netflow_pdf.php:56 -#: ../../enterprise/include/functions_reporting_pdf.php:2190 -msgid "Contents" -msgstr "Contenido" - -#: ../../enterprise/include/functions_netflow_pdf.php:160 -#: ../../enterprise/operation/log/log_viewer.php:215 -msgid "Start date" -msgstr "Fecha de inicio" - -#: ../../enterprise/include/functions_policies.php:3035 -msgid "Policy linkation" -msgstr "Vinculación de políticas" - -#: ../../enterprise/include/functions_policies.php:3040 -msgid "Module linked" -msgstr "Módulo enlazado" - -#: ../../enterprise/include/functions_policies.php:3042 -#: ../../enterprise/include/functions_policies.php:3052 -msgid "Unlink from policy" -msgstr "Módulo desenlazado de la política" - -#: ../../enterprise/include/functions_policies.php:3045 -msgid "Module unlinked" -msgstr "Módulo desenlazado" - -#: ../../enterprise/include/functions_policies.php:3047 -#: ../../enterprise/include/functions_policies.php:3057 -msgid "Relink to policy" -msgstr "Volver a unir a la política" - -#: ../../enterprise/include/functions_policies.php:3050 -msgid "Module pending to link" -msgstr "Módulo pendiente para enlazar" - -#: ../../enterprise/include/functions_policies.php:3055 -msgid "Module pending to unlink" -msgstr "Módulo pendiente para desenlazar" - -#: ../../enterprise/include/functions_policies.php:3781 -msgid "Create a new policy map" -msgstr "Crear un nuevo mapa de políticas" - -#: ../../enterprise/include/functions_policies.php:4100 -#, php-format -msgid "" -"This extension makes registration of policies enterprise.
    You can get " -"more policies in our Public Resource Library" -msgstr "" -"Esta extensión hace registra las politicas enterprise.
    Puedes conseguir " -"más politicas en nuestra Librería de recursos publica" - -#: ../../enterprise/include/functions_reporting.php:42 -msgid "Advance options" -msgstr "Opciones avanzadas" - -#: ../../enterprise/include/functions_reporting.php:60 -msgid "Templates list" -msgstr "Lista de Plantillas" - -#: ../../enterprise/include/functions_reporting.php:66 -#: ../../enterprise/meta/general/main_header.php:165 -msgid "Templates wizard" -msgstr "Asistente de plantillas" - -#: ../../enterprise/include/functions_reporting.php:86 -msgid "Templates Wizard" -msgstr "Asistente de plantillas" - -#: ../../enterprise/include/functions_reporting.php:1016 -msgid "Availability item created from wizard." -msgstr "Elemento disponible creado desde el asistente." - -#: ../../enterprise/include/functions_reporting.php:1683 -#: ../../enterprise/include/functions_reporting.php:2475 -#: ../../enterprise/include/functions_reporting.php:3252 -#: ../../enterprise/include/functions_reporting_pdf.php:1653 -msgid "Planned Downtimes" -msgstr "Paradas Planificadas" - -#: ../../enterprise/include/functions_reporting.php:1689 -#: ../../enterprise/include/functions_reporting.php:2481 -#: ../../enterprise/include/functions_reporting.php:3258 -#: ../../enterprise/include/functions_reporting_pdf.php:1659 -msgid "Ignore Time" -msgstr "Ignorar tiempo" - -#: ../../enterprise/include/functions_reporting.php:1709 -#: ../../enterprise/include/functions_reporting_pdf.php:1674 -msgid "SLA Compliance per days" -msgstr "Cumplimiento de SLA por días" - -#: ../../enterprise/include/functions_reporting.php:1776 -#: ../../enterprise/include/functions_reporting_pdf.php:1753 -msgid "Summary of SLA Failures" -msgstr "Resumen de los Fallos de SLA" - -#: ../../enterprise/include/functions_reporting.php:1778 -#: ../../enterprise/include/functions_reporting_csv.php:1086 -#: ../../enterprise/include/functions_reporting_pdf.php:1757 -msgid "Day" -msgstr "Día" - -#: ../../enterprise/include/functions_reporting.php:2518 -msgid "T. Total" -msgstr "Tiempo total" - -#: ../../enterprise/include/functions_reporting.php:2519 -#: ../../enterprise/include/functions_reporting.php:3282 -msgid "T. OK" -msgstr "Tiempo OK" - -#: ../../enterprise/include/functions_reporting.php:2520 -#: ../../enterprise/include/functions_reporting.php:3283 -msgid "T. Error" -msgstr "Tiempo error" - -#: ../../enterprise/include/functions_reporting.php:2521 -#: ../../enterprise/include/functions_reporting.php:3284 -msgid "T. Unknown" -msgstr "Tiempo desconocido" - -#: ../../enterprise/include/functions_reporting.php:2522 -#: ../../enterprise/include/functions_reporting.php:3285 -msgid "T. Not_init" -msgstr "Tiempo no iniciado" - -#: ../../enterprise/include/functions_reporting.php:2523 -#: ../../enterprise/include/functions_reporting.php:3286 -msgid "T. Downtime" -msgstr "Tiempo en parada planificada" - -#: ../../enterprise/include/functions_reporting.php:2524 -#: ../../enterprise/include/functions_reporting.php:3287 -msgid "SLA %" -msgstr "SLA %" - -#: ../../enterprise/include/functions_reporting.php:3911 -msgid "Module Histogram Graph" -msgstr "Gráfica de histórico de módulos" - -#: ../../enterprise/include/functions_reporting.php:4421 -msgid "There are no SLAs defined." -msgstr "No hay SLAs definidos." - -#: ../../enterprise/include/functions_reporting.php:4535 -#: ../../enterprise/include/functions_reporting.php:5154 -#: ../../enterprise/include/functions_services.php:1216 -#: ../../enterprise/include/functions_services.php:1218 -#: ../../enterprise/include/functions_services.php:1239 -#: ../../enterprise/include/functions_services.php:1240 -#: ../../enterprise/include/functions_services.php:1242 -#: ../../enterprise/include/functions_services.php:1276 -#: ../../enterprise/include/functions_services.php:1278 -msgid "Nonexistent" -msgstr "No existe" - -#: ../../enterprise/include/functions_reporting.php:5691 -#: ../../enterprise/include/functions_reporting.php:6177 -#, php-format -msgid "Graph agents(%s) - %s" -msgstr "Gráficas de agentes (%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:6125 -#, php-format -msgid "Graph agent(%s) - %s" -msgstr "Gráfica de agente(%s) - %s" - -#: ../../enterprise/include/functions_reporting.php:6436 -msgid "There is not data for setted conditions" -msgstr "No hay datos para las condiciones establecidas" - -#: ../../enterprise/include/functions_reporting.php:6586 -#: ../../enterprise/include/functions_reporting.php:6636 -msgid "Template editor" -msgstr "Editor de Plantillas" - -#: ../../enterprise/include/functions_reporting.php:6650 -msgid "Get PDF file" -msgstr "Obtener archivo PDF" - -#: ../../enterprise/include/functions_reporting_csv.php:364 -msgid "Serialized data " -msgstr "Datos serializados " - -#: ../../enterprise/include/functions_reporting_csv.php:456 -#: ../../enterprise/include/functions_reporting_csv.php:524 -#: ../../enterprise/include/functions_reporting_csv.php:559 -#: ../../enterprise/include/functions_reporting_csv.php:595 -#: ../../enterprise/include/functions_reporting_csv.php:632 -#: ../../enterprise/include/functions_reporting_csv.php:700 -#: ../../enterprise/include/functions_reporting_csv.php:736 -#: ../../enterprise/include/functions_reporting_csv.php:772 -#: ../../enterprise/include/functions_reporting_csv.php:808 -#: ../../enterprise/include/functions_reporting_csv.php:844 -msgid "Report type" -msgstr "Tipo de informe" - -#: ../../enterprise/include/functions_reporting_csv.php:458 -msgid "Uknown agents" -msgstr "Agentes desconocidos" - -#: ../../enterprise/include/functions_reporting_csv.php:467 -msgid "Last 8 hours events" -msgstr "Eventos en las últimas 8 horas" - -#: ../../enterprise/include/functions_reporting_csv.php:669 -msgid "Illegal query or any other error" -msgstr "consulta ilegal o cualquier otro error" - -#: ../../enterprise/include/functions_reporting_csv.php:844 -msgid "% OK" -msgstr "% OK" - -#: ../../enterprise/include/functions_reporting_csv.php:844 -msgid "% Wrong" -msgstr "% Mal" - -#: ../../enterprise/include/functions_reporting_csv.php:868 -msgid "Simple Graph" -msgstr "Gráfica simple" - -#: ../../enterprise/include/functions_reporting_csv.php:930 -#: ../../enterprise/include/functions_reporting_csv.php:977 -#: ../../enterprise/include/functions_reporting_csv.php:1049 -#: ../../enterprise/include/functions_reporting_csv.php:1165 -#: ../../enterprise/include/functions_reporting_csv.php:1377 -msgid "SLA Max" -msgstr "SLA Máximo" - -#: ../../enterprise/include/functions_reporting_csv.php:931 -#: ../../enterprise/include/functions_reporting_csv.php:978 -#: ../../enterprise/include/functions_reporting_csv.php:1050 -#: ../../enterprise/include/functions_reporting_csv.php:1166 -#: ../../enterprise/include/functions_reporting_csv.php:1378 -msgid "SLA Min" -msgstr "SLA Mínimo" - -#: ../../enterprise/include/functions_reporting_csv.php:933 -#: ../../enterprise/include/functions_reporting_csv.php:980 -msgid "Time Total " -msgstr "Tiempo total " - -#: ../../enterprise/include/functions_reporting_csv.php:934 -#: ../../enterprise/include/functions_reporting_csv.php:981 -msgid "Time OK " -msgstr "Tiempo OK " - -#: ../../enterprise/include/functions_reporting_csv.php:935 -#: ../../enterprise/include/functions_reporting_csv.php:982 -msgid "Time Error " -msgstr "Tiempo de error " - -#: ../../enterprise/include/functions_reporting_csv.php:936 -#: ../../enterprise/include/functions_reporting_csv.php:983 -msgid "Time Unknown " -msgstr "Tiempo en desconocido " - -#: ../../enterprise/include/functions_reporting_csv.php:937 -#: ../../enterprise/include/functions_reporting_csv.php:984 -msgid "Time Not Init " -msgstr "Tiempo no inicializado " - -#: ../../enterprise/include/functions_reporting_csv.php:938 -#: ../../enterprise/include/functions_reporting_csv.php:985 -msgid "Time Downtime " -msgstr "Tiempo en parada planificada " - -#: ../../enterprise/include/functions_reporting_csv.php:939 -#: ../../enterprise/include/functions_reporting_csv.php:986 -msgid "Checks Total " -msgstr "Comprobaciones totales " - -#: ../../enterprise/include/functions_reporting_csv.php:940 -#: ../../enterprise/include/functions_reporting_csv.php:987 -msgid "Checks OK " -msgstr "Comprobaciones OK " - -#: ../../enterprise/include/functions_reporting_csv.php:941 -#: ../../enterprise/include/functions_reporting_csv.php:988 -msgid "Checks Error " -msgstr "Comprobaciones en error " - -#: ../../enterprise/include/functions_reporting_csv.php:942 -#: ../../enterprise/include/functions_reporting_csv.php:989 -msgid "Checks Unknown " -msgstr "Comprobaciones en desconocido " - -#: ../../enterprise/include/functions_reporting_csv.php:943 -#: ../../enterprise/include/functions_reporting_csv.php:990 -msgid "Checks Not Init " -msgstr "Comprobaciones en no inicializado " - -#: ../../enterprise/include/functions_reporting_csv.php:944 -#: ../../enterprise/include/functions_reporting_csv.php:991 -msgid "SLA " -msgstr "SLA " - -#: ../../enterprise/include/functions_reporting_csv.php:945 -#: ../../enterprise/include/functions_reporting_csv.php:992 -msgid "Status " -msgstr "Estado " - -#: ../../enterprise/include/functions_reporting_csv.php:1037 -#: ../../enterprise/include/functions_reporting_csv.php:1150 -#: ../../enterprise/include/functions_reporting_csv.php:1297 -#: ../../enterprise/include/functions_reporting_csv.php:1362 -msgid "Subtitle" -msgstr "Subtítulo" - -#: ../../enterprise/include/functions_reporting_csv.php:1052 -#: ../../enterprise/include/functions_reporting_csv.php:1181 -#: ../../enterprise/include/functions_reporting_csv.php:1393 -msgid "Time Total Month" -msgstr "Tiempo total del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1053 -#: ../../enterprise/include/functions_reporting_csv.php:1182 -#: ../../enterprise/include/functions_reporting_csv.php:1394 -msgid "Time OK Month" -msgstr "Tiempo OK del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1054 -#: ../../enterprise/include/functions_reporting_csv.php:1183 -#: ../../enterprise/include/functions_reporting_csv.php:1395 -msgid "Time Error Month" -msgstr "Tiempo en error del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1055 -#: ../../enterprise/include/functions_reporting_csv.php:1184 -#: ../../enterprise/include/functions_reporting_csv.php:1396 -msgid "Time Unknown Month" -msgstr "Tiempo en desconocido del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1056 -#: ../../enterprise/include/functions_reporting_csv.php:1185 -#: ../../enterprise/include/functions_reporting_csv.php:1397 -msgid "Time Downtime Month" -msgstr "Tiempo en parada planificada del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1057 -#: ../../enterprise/include/functions_reporting_csv.php:1186 -#: ../../enterprise/include/functions_reporting_csv.php:1398 -msgid "Time Not Init Month" -msgstr "Tiempo en no inicializado del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1058 -#: ../../enterprise/include/functions_reporting_csv.php:1187 -#: ../../enterprise/include/functions_reporting_csv.php:1399 -msgid "Checks Total Month" -msgstr "Comprobaciones totales del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1059 -#: ../../enterprise/include/functions_reporting_csv.php:1188 -#: ../../enterprise/include/functions_reporting_csv.php:1400 -msgid "Checks OK Month" -msgstr "Comprobaciones OK del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1060 -#: ../../enterprise/include/functions_reporting_csv.php:1189 -#: ../../enterprise/include/functions_reporting_csv.php:1401 -msgid "Checks Error Month" -msgstr "Comprobaciones en error del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1061 -#: ../../enterprise/include/functions_reporting_csv.php:1190 -#: ../../enterprise/include/functions_reporting_csv.php:1402 -msgid "Checks Unknown Month" -msgstr "Comprobaciones en desconocido del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1062 -#: ../../enterprise/include/functions_reporting_csv.php:1191 -#: ../../enterprise/include/functions_reporting_csv.php:1403 -msgid "Checks Not Init Month" -msgstr "Comprobaciones en no inicializado del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1063 -#: ../../enterprise/include/functions_reporting_csv.php:1192 -#: ../../enterprise/include/functions_reporting_csv.php:1404 -msgid "SLA Month" -msgstr "SLA Mensual" - -#: ../../enterprise/include/functions_reporting_csv.php:1064 -#: ../../enterprise/include/functions_reporting_csv.php:1193 -#: ../../enterprise/include/functions_reporting_csv.php:1405 -msgid "Status Month" -msgstr "Estado del mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1087 -#: ../../enterprise/include/functions_reporting_csv.php:1239 -msgid "Time Total Day" -msgstr "Tiempo total del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1088 -#: ../../enterprise/include/functions_reporting_csv.php:1240 -msgid "Time OK Day" -msgstr "Tiempo en OK del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1089 -#: ../../enterprise/include/functions_reporting_csv.php:1241 -msgid "Time Error Day" -msgstr "Tiempo en error del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1090 -#: ../../enterprise/include/functions_reporting_csv.php:1242 -msgid "Time Unknown Day" -msgstr "Tiempo en desconocido del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1091 -#: ../../enterprise/include/functions_reporting_csv.php:1243 -msgid "Time Not Init Day" -msgstr "Tiempo en no inicializado del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1092 -#: ../../enterprise/include/functions_reporting_csv.php:1244 -msgid "Time Downtime Day" -msgstr "Tiempo en parada planificada del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1093 -#: ../../enterprise/include/functions_reporting_csv.php:1245 -msgid "Time Out Day" -msgstr "Tiempo fuera del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1094 -#: ../../enterprise/include/functions_reporting_csv.php:1246 -msgid "Checks Total Day" -msgstr "Comprobaciones totales del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1095 -#: ../../enterprise/include/functions_reporting_csv.php:1247 -msgid "Checks OK Day" -msgstr "Comprobaciones en OK del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1096 -#: ../../enterprise/include/functions_reporting_csv.php:1248 -msgid "Checks Error Day" -msgstr "Comprobaciones en error del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1097 -#: ../../enterprise/include/functions_reporting_csv.php:1249 -msgid "Checks Unknown Day" -msgstr "Comprobaciones en desconocido del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1098 -#: ../../enterprise/include/functions_reporting_csv.php:1250 -msgid "Checks Not Init Day" -msgstr "Comprobaciones en no inicializado del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1099 -#: ../../enterprise/include/functions_reporting_csv.php:1251 -msgid "SLA Day" -msgstr "SLA Diario" - -#: ../../enterprise/include/functions_reporting_csv.php:1100 -#: ../../enterprise/include/functions_reporting_csv.php:1252 -msgid "SLA Fixed Day" -msgstr "SLA de Día Fijo" - -#: ../../enterprise/include/functions_reporting_csv.php:1101 -#: ../../enterprise/include/functions_reporting_csv.php:1253 -msgid "Date From Day" -msgstr "Fecha desde día" - -#: ../../enterprise/include/functions_reporting_csv.php:1102 -#: ../../enterprise/include/functions_reporting_csv.php:1254 -msgid "Date To Day" -msgstr "Decha hasta día" - -#: ../../enterprise/include/functions_reporting_csv.php:1103 -#: ../../enterprise/include/functions_reporting_csv.php:1255 -msgid "Status Day" -msgstr "Estado del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1161 -#: ../../enterprise/include/functions_reporting_csv.php:1373 -msgid "Month Number" -msgstr "Número de mes" - -#: ../../enterprise/include/functions_reporting_csv.php:1162 -#: ../../enterprise/include/functions_reporting_csv.php:1374 -msgid "Year" -msgstr "Año" - -#: ../../enterprise/include/functions_reporting_csv.php:1212 -msgid "Time Total week" -msgstr "Tiempo total de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1213 -msgid "Time OK week" -msgstr "Tiempo en OK de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1214 -msgid "Time Error week" -msgstr "Tiempo en error de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1215 -msgid "Time Unknown week" -msgstr "Tiempo en desconocido de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1216 -msgid "Time Downtime week" -msgstr "Tiempo en parada planificada de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1217 -msgid "Time Not Init week" -msgstr "Tiempo en no inicializado de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1218 -msgid "Checks Total week" -msgstr "Comprobaciones totales de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1219 -msgid "Checks OK week" -msgstr "Comprobaciones en OK de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1220 -msgid "Checks Error week" -msgstr "Comprobaciones en error de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1221 -msgid "Checks Unknown week" -msgstr "Comprobaciones en desconocido de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1222 -msgid "Status week" -msgstr "Estado de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1238 -msgid "Day Week" -msgstr "Día de la semana" - -#: ../../enterprise/include/functions_reporting_csv.php:1307 -msgid "SLA max" -msgstr "SLA Máximo" - -#: ../../enterprise/include/functions_reporting_csv.php:1308 -msgid "SLA min" -msgstr "SLA Mínimo" - -#: ../../enterprise/include/functions_reporting_csv.php:1309 -msgid "SLA limit" -msgstr "Límite de SLA" - -#: ../../enterprise/include/functions_reporting_csv.php:1312 -msgid "Time Error" -msgstr "Tiempo de error" - -#: ../../enterprise/include/functions_reporting_csv.php:1318 -msgid "Checks Error" -msgstr "Comprobaciones en error" - -#: ../../enterprise/include/functions_reporting_csv.php:1320 -msgid "Checks Not Init" -msgstr "Comprobaciones en no inicializado" - -#: ../../enterprise/include/functions_reporting_csv.php:1322 -msgid "SLA Fixed" -msgstr "SLA FIjo" - -#: ../../enterprise/include/functions_reporting_csv.php:1424 -msgid "Time Total day" -msgstr "Tiempo total del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1425 -msgid "Time OK day" -msgstr "Tiempo en OK del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1426 -msgid "Time Error day" -msgstr "Tiempo en error del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1427 -msgid "Time Unknown day" -msgstr "Tiempo en desconocido del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1428 -msgid "Time Downtime day" -msgstr "Tiempo en parada planificada del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1429 -msgid "Time Not Init day" -msgstr "Tiempo en no inicializado del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1430 -msgid "Checks Total day" -msgstr "Comprobaciones totales del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1431 -msgid "Checks OK day" -msgstr "Comprobaciones en OK del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1432 -msgid "Checks Error day" -msgstr "Comprobaciones en error del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1433 -msgid "Checks Unknown day" -msgstr "Comprobaciones en desconocido del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1434 -msgid "Status day" -msgstr "Estado del día" - -#: ../../enterprise/include/functions_reporting_csv.php:1451 -msgid "Time Total hours" -msgstr "TIempo total en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1452 -msgid "Time OK hours" -msgstr "Tiempo en OK en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1453 -msgid "Time Error hours" -msgstr "Tiempo en error en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1454 -msgid "Time Unknown hours" -msgstr "Tiempo en desconocido en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1455 -msgid "Time Not Init hours" -msgstr "Tiempo en no inicializado en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1456 -msgid "Time Downtime hours" -msgstr "Tiempo en parada planificada en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1457 -msgid "Time Out hours" -msgstr "Tiempo fuera de horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1458 -msgid "Checks Total hours" -msgstr "Comprobaciones totales en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1459 -msgid "Checks OK hours" -msgstr "Comprobaciones en OK en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1460 -msgid "Checks Error hours" -msgstr "Comprobaciones en error en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1461 -msgid "Checks Unknown hours" -msgstr "Comprobaciones en desconocido en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1462 -msgid "Checks Not Init hours" -msgstr "Comprobaciones en no inicializado en horas" - -#: ../../enterprise/include/functions_reporting_csv.php:1463 -msgid "SLA hours" -msgstr "SLA Horario" - -#: ../../enterprise/include/functions_reporting_csv.php:1464 -msgid "SLA Fixed hours" -msgstr "SLA fijo horario" - -#: ../../enterprise/include/functions_reporting_csv.php:1465 -msgid "Date From hours" -msgstr "Desde" - -#: ../../enterprise/include/functions_reporting_csv.php:1466 -msgid "Date To hours" +msgid "Field %s values" +msgstr "Campos %s valores" + +#: ../../godmode/alerts/configure_alert_action.php:57 +#: ../../godmode/alerts/configure_alert_action.php:66 +msgid "Configure alert action" +msgstr "Configurar acción de alerta" + +#: ../../godmode/alerts/configure_alert_action.php:98 +msgid "Update Action" +msgstr "Actualizar Acción" + +#: ../../godmode/alerts/configure_alert_action.php:101 +#: ../../godmode/alerts/alert_list.builder.php:109 +msgid "Create Action" +msgstr "Crear Acción" + +#: ../../godmode/alerts/configure_alert_action.php:149 +msgid "Recovery" +msgstr "Recuperación" + +#: ../../godmode/alerts/alert_list.list.php:58 +msgid "Template name" +msgstr "Nombre de la plantilla" + +#: ../../godmode/alerts/alert_list.list.php:124 +msgid "Field content" +msgstr "Contenido del campo" + +#: ../../godmode/alerts/alert_list.list.php:133 +msgid "Enabled / Disabled" +msgstr "Habilitado / Deshabilitado" + +#: ../../godmode/alerts/alert_list.list.php:135 +#: ../../godmode/alerts/alert_list.list.php:793 +#: ../../godmode/extensions.php:273 ../../godmode/users/user_list.php:466 +msgid "Enable" +msgstr "Activar" + +#: ../../godmode/alerts/alert_list.list.php:412 +#: ../../godmode/massive/massive_copy_modules.php:133 +msgid "Operations" +msgstr "Operaciones" + +#: ../../godmode/alerts/alert_list.list.php:526 +msgid "On" +msgstr "Activado" + +#: ../../godmode/alerts/alert_list.list.php:530 +msgid "Until" msgstr "Hasta" -#: ../../enterprise/include/functions_reporting_csv.php:1467 -msgid "Status hours" -msgstr "Status horario" +#: ../../godmode/alerts/alert_list.list.php:552 +msgid "Delete action" +msgstr "Eliminar acción" -#: ../../enterprise/include/functions_reporting_pdf.php:1498 -msgid "Legend Graph" -msgstr "Leyenda de la gráfica" +#: ../../godmode/alerts/alert_list.list.php:559 +#: ../../godmode/alerts/alert_list.list.php:871 +msgid "Update action" +msgstr "Actualizar acción" -#: ../../enterprise/include/functions_reporting_pdf.php:1849 -msgid "Total Time" -msgstr "Tiempo total" +#: ../../godmode/alerts/alert_list.list.php:718 +msgid "View alert advanced details" +msgstr "Ver detalles avanzados de la alerta" -#: ../../enterprise/include/functions_reporting_pdf.php:1853 -msgid "Time Not init" -msgstr "Tiempo no inicializado" +#: ../../godmode/alerts/alert_list.list.php:729 +msgid "No alerts defined" +msgstr "No hay alertas definidas" -#: ../../enterprise/include/functions_reporting_pdf.php:1854 -msgid "Time Downtimes" -msgstr "TIempo en paradas planificadas" +#: ../../godmode/alerts/alert_list.list.php:802 +msgid "Set off standby" +msgstr "Desactivar standby" -#: ../../enterprise/include/functions_reporting_pdf.php:1869 -msgid "Total Checks" -msgstr "Comprobaciones totales" +#: ../../godmode/alerts/alert_list.list.php:811 +msgid "Set standby" +msgstr "Activar modo standby" -#: ../../enterprise/include/functions_reporting_pdf.php:1991 -msgid "Agent min" -msgstr "Minimo agente" - -#: ../../enterprise/include/functions_reporting_pdf.php:1992 -msgid "Agent min Value" -msgstr "Valor mínimo del agente" - -#: ../../enterprise/include/functions_reporting_pdf.php:2316 -msgid "SO" -msgstr "SO" - -#: ../../enterprise/include/functions_reporting_pdf.php:2357 -msgid "There are no modules." -msgstr "No hay módulos" - -#: ../../enterprise/include/functions_services.php:23 -msgid "Service does not exist." -msgstr "El servicio no existe" - -#: ../../enterprise/include/functions_services.php:30 -msgid "Module store the service does not exist." -msgstr "El módulo que almacena los servicios no existe" - -#: ../../enterprise/include/functions_services.php:35 -msgid "Module store SLA service does not exist." -msgstr "El módulo que almacena el servicio SLA no existe" - -#: ../../enterprise/include/functions_services.php:41 -msgid "Agent store the service does not exist." -msgstr "El agente que almacena el servicio no existe" - -#: ../../enterprise/include/functions_services.php:47 -msgid "Agent store SLA service does not exist." -msgstr "El agente que almacena el sevicio de SLA no existe" - -#: ../../enterprise/include/functions_services.php:57 -msgid "Alert critical SLA service does not exist." -msgstr "El servicio de alerta crítica de SLA no existe" - -#: ../../enterprise/include/functions_services.php:68 -msgid "Alert warning service does not exist." -msgstr "El servicio de alerta de advertencia no existe" - -#: ../../enterprise/include/functions_services.php:79 -msgid "Alert critical service does not exist." -msgstr "El servicio de alertas críticas no existe" - -#: ../../enterprise/include/functions_services.php:90 -msgid "Alert unknown service does not exist." -msgstr "El servicio de alertas desconocidas no existe" - -#: ../../enterprise/include/functions_services.php:328 +#: ../../godmode/alerts/configure_alert_template.php:118 +#: ../../godmode/modules/manage_network_components.php:160 #, php-format -msgid "Module automatic create for the service %s" -msgstr "Módulo automático creado para el servicio %s" +msgid "Successfully created from %s" +msgstr "Creado correctamente desde %s" -#: ../../enterprise/include/functions_services.php:1261 -msgid "Critical (Alert)" -msgstr "Crítica (Alerta)" +#: ../../godmode/alerts/configure_alert_template.php:168 +#: ../../godmode/alerts/configure_alert_template.php:173 +msgid "Conditions" +msgstr "Condiciones" -#: ../../enterprise/include/functions_services.php:1391 -msgid "There are no service elements defined" -msgstr "No hay servicios de elementos definidos" +#: ../../godmode/alerts/configure_alert_template.php:188 +#: ../../godmode/alerts/configure_alert_template.php:193 +msgid "Advanced fields" +msgstr "Campos avanzados" -#: ../../enterprise/include/functions_services.php:1417 -msgid "Weight Critical" -msgstr "Peso crítico" +#: ../../godmode/alerts/configure_alert_template.php:499 +#: ../../godmode/alerts/alert_list.builder.php:131 +msgid "Create Template" +msgstr "Crear Plantilla" -#: ../../enterprise/include/functions_services.php:1418 -msgid "Weight Warning" -msgstr "Peso de advertencia" +#: ../../godmode/alerts/configure_alert_template.php:520 +msgid "Days of week" +msgstr "Días de la semana" -#: ../../enterprise/include/functions_services.php:1419 -msgid "Weight Unknown" -msgstr "Peso desconocido" +#: ../../godmode/alerts/configure_alert_template.php:539 +#: ../../godmode/reporting/reporting_builder.item_editor.php:847 +msgid "Time from" +msgstr "Hora desde" -#: ../../enterprise/include/functions_services.php:1420 -msgid "Weight Ok" -msgstr "Peso Ok" +#: ../../godmode/alerts/configure_alert_template.php:543 +#: ../../godmode/reporting/reporting_builder.item_editor.php:856 +msgid "Time to" +msgstr "Hora hasta" -#: ../../enterprise/include/functions_services.php:1446 -#: ../../enterprise/include/functions_services.php:1461 -#: ../../enterprise/include/functions_services.php:1496 -msgid "Nonexistent. This element should be deleted" -msgstr "Inexistente. Este elemento debería eliminarse" +#: ../../godmode/alerts/configure_alert_template.php:557 +msgid "Reset counter for non-sustained alerts" +msgstr "Reiniciar el contador para las alertas no sostenidas" -#: ../../enterprise/include/functions_services.php:1661 -msgid "Delete service element" -msgstr "Eliminar elemento de servicio" +#: ../../godmode/alerts/configure_alert_template.php:557 +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 inicie de forma consecutiva, incluso si está dentro del umbral" -#: ../../enterprise/include/functions_services.php:1703 -msgid "FAIL" -msgstr "FALLO" +#: ../../godmode/alerts/configure_alert_template.php:564 +#: ../../godmode/alerts/alert_list.builder.php:94 +msgid "Default action" +msgstr "Acción predeterminada" -#: ../../enterprise/include/functions_setup.php:37 -#: ../../enterprise/include/functions_setup.php:68 -msgid "Log collector" -msgstr "Colector de logs" +#: ../../godmode/alerts/configure_alert_template.php:588 +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" -#: ../../enterprise/include/functions_setup.php:80 -msgid "Auto provisioning into Metaconsole" -msgstr "Auto provisionamiendo en Metaconsola" +#: ../../godmode/alerts/configure_alert_template.php:590 +msgid "Condition type" +msgstr "Tipo de condición" -#: ../../enterprise/include/functions_setup.php:90 -msgid "URL Metaconsole Api" -msgstr "URL de la API de la Metaconsola" +#: ../../godmode/alerts/configure_alert_template.php:597 +msgid "Trigger when matches the value" +msgstr "Disparar cuando coincida con el valor" -#: ../../enterprise/include/functions_setup.php:95 -msgid "Api pass" -msgstr "Contraseña de API" +#: ../../godmode/alerts/configure_alert_template.php:609 +msgid "The regular expression is valid" +msgstr "La expresión regular es válida" -#: ../../enterprise/include/functions_setup.php:99 -msgid "Meta user" -msgstr "Usuario de la meta" +#: ../../godmode/alerts/configure_alert_template.php:614 +msgid "The regular expression is not valid" +msgstr "La expresión regular no es válida" -#: ../../enterprise/include/functions_setup.php:103 -msgid "Meta pass" -msgstr "Contraseña de la meta" +#: ../../godmode/alerts/configure_alert_template.php:662 +msgid "Alert recovery" +msgstr "Recuperación de alerta" -#: ../../enterprise/include/functions_setup.php:107 -msgid "Metaconsole APi Online" -msgstr "API de la metaconsola" +#: ../../godmode/alerts/configure_alert_template.php:671 +msgid "Recovery fields" +msgstr "Campos de recuperación" -#: ../../enterprise/include/functions_setup.php:109 -#: ../../enterprise/include/functions_setup.php:139 -msgid "Please click in the dot to re-check" -msgstr "Por favor, pincha en el círculo para volver a comprobar" +#: ../../godmode/alerts/configure_alert_template.php:772 +#: ../../godmode/modules/manage_network_components_form_common.php:58 +msgid "Wizard level" +msgstr "Nivel Wizard" -#: ../../enterprise/include/functions_setup.php:115 -msgid "Pandora user" -msgstr "Usuario de pandora" +#: ../../godmode/alerts/configure_alert_template.php:774 +msgid "No wizard" +msgstr "No hay Wizard" -#: ../../enterprise/include/functions_setup.php:116 -msgid "Normally the admin user" -msgstr "Normalmente el usuario administrador" +#: ../../godmode/alerts/configure_alert_template.php:821 +#: ../../godmode/alerts/configure_alert_template.php:825 +msgid "Next" +msgstr "Siguiente" -#: ../../enterprise/include/functions_setup.php:120 -msgid "Pandora pass" -msgstr "Contraseña de pandora" - -#: ../../enterprise/include/functions_setup.php:124 -msgid "Public url console" -msgstr "Url de la consola pública" - -#: ../../enterprise/include/functions_setup.php:125 -msgid "Without the index.php such as http://domain/pandora_url" -msgstr "Sin el index.php como http://dominio/url_pandora" - -#: ../../enterprise/include/functions_setup.php:131 -msgid "Register your node in metaconsole" -msgstr "Registrar tu nodo en metaconsola" - -#: ../../enterprise/include/functions_setup.php:133 -msgid "Register the node" -msgstr "Registrar el nodo" - -#: ../../enterprise/include/functions_setup.php:138 -msgid "Status your node in metaconsole" -msgstr "Establece tu nodo en metaconsola" - -#: ../../enterprise/include/functions_transactional.php:496 -msgid "Error in dependencies field" -msgstr "Error en el campo de dependencias" - -#: ../../enterprise/include/functions_transactional.php:505 -msgid "Error in enables field" -msgstr "Error en el campo de habilitados" - -#: ../../enterprise/include/functions_update_manager.php:147 -#: ../../enterprise/include/functions_update_manager.php:320 +#: ../../godmode/alerts/configure_alert_template.php:845 #, php-format -msgid "There is a error: %s" -msgstr "Hay un error: %s" +msgid "The alert would fire when the value doesn\\'t match %s" +msgstr "La alerta se lanzará cuando el valor no coincida %s" -#: ../../enterprise/include/functions_update_manager.php:161 -#, php-format -msgid "There are %s updates, and the first to update is:" -msgstr "Hay %s actualizaciones y la primera actualización es:" - -#: ../../enterprise/include/functions_update_manager.php:169 -msgid "Version number:" -msgstr "Número de versión:" - -#: ../../enterprise/include/functions_update_manager.php:170 -msgid "Show details" -msgstr "Ver detalles" - -#: ../../enterprise/include/functions_update_manager.php:207 -msgid "Update to the next version" -msgstr "Actualizar a la siguiente versión" - -#: ../../enterprise/include/functions_visual_map.php:182 -#: ../../enterprise/include/functions_visual_map.php:235 -msgid "Crit:" -msgstr "Crit." - -#: ../../enterprise/include/functions_visual_map.php:184 -#: ../../enterprise/include/functions_visual_map.php:237 -msgid "Warn:" -msgstr "Advert." - -#: ../../enterprise/include/functions_visual_map.php:186 -#: ../../enterprise/include/functions_visual_map.php:239 -msgid "Ok:" -msgstr "Ok:" - -#: ../../enterprise/include/functions_visual_map.php:188 -#: ../../enterprise/include/functions_visual_map.php:241 -msgid "Value:" -msgstr "Valor:" - -#: ../../enterprise/include/functions_visual_map.php:615 -msgid "None of the services was added" -msgstr "Ninguno de los servicios se añadió" - -#: ../../enterprise/include/functions_visual_map.php:618 -#, php-format -msgid "%d services couldn't be added" -msgstr "%d servicios no se han podido añadir" - -#: ../../enterprise/include/functions_visual_map.php:626 -msgid "There was an error retrieving the visual map information" -msgstr "Se ha producido un error al recuperar la información del mapa visual" - -#: ../../enterprise/include/functions_visual_map.php:630 -msgid "No services selected" -msgstr "Ningún servicio seleccionado" - -#: ../../enterprise/include/process_reset_pass.php:106 -#: ../../enterprise/meta/include/process_reset_pass.php:83 -msgid "Repeat password" -msgstr "Repetir contraseña" - -#: ../../enterprise/include/process_reset_pass.php:109 -#: ../../enterprise/meta/include/process_reset_pass.php:86 -msgid "Change password" -msgstr "Cambiar contraseña" - -#: ../../enterprise/include/process_reset_pass.php:112 -#: ../../enterprise/meta/include/process_reset_pass.php:89 -#: ../../enterprise/meta/index.php:459 ../../index.php:573 -msgid "Passwords must be the same" -msgstr "La contraseña debe ser la misma" - -#: ../../enterprise/load_enterprise.php:1 -msgid "Invalid licence." -msgstr "Licencia inválida" - -#: ../../enterprise/load_enterprise.php:1 -msgid "Please contact your system administrator." -msgstr "Por favor contacte con el administrador de su sistema." - -#: ../../enterprise/load_enterprise.php:1 -msgid "Please contact Artica at info@artica.es for a valid licence." -msgstr "" -"Por favor contacte con Ártica en info@artica.es para una licencia válida." - -#: ../../enterprise/load_enterprise.php:1 -msgid "Or disable Pandora FMS enterprise" -msgstr "O desactive Pandora FMS Enterprise" - -#: ../../enterprise/load_enterprise.php:1 -msgid "Request new licence" -msgstr "Solicitar una nueva licencia" - -#: ../../enterprise/load_enterprise.php:1 +#: ../../godmode/alerts/configure_alert_template.php:849 msgid "" -"Metaconsole unreached

    " -"This node has a metaconsole license and cannot contact with the metaconsole." +"The alert would fire when the value is not between and " msgstr "" -"Metaconsola no alcanzada " -"

    Este nodo tiene una licencia de metaconsola y no puede contactar con " -"la metaconsola." +"La alerta se disparará cuando no esté entre and " +"" -#: ../../enterprise/load_enterprise.php:1 -#, php-format +#: ../../godmode/alerts/configure_alert_template.php:857 msgid "" -"License out of limits

    " -"This node has a metaconsole license and it allows %d agents and you have %d " -"agents cached." +"The alert template cannot have the same value for min and max thresholds." msgstr "" -"Licencia fuera de límites " -"

    Este nodo tiene una licencia de metaconsola que permite %d agentes, " -"y actualmente tiene %d agentes." +"La plantilla de alerta no puede tener el mismo valor para los umbrales max y " +"min." -#: ../../enterprise/load_enterprise.php:1 -#, php-format -msgid "" -"License out of limits

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

    Esta licencia es para %d agentes y tiene %d agentes configurados." +#: ../../godmode/alerts/alert_list.php:80 +msgid "Already added" +msgstr "Ya añadido" -#: ../../enterprise/load_enterprise.php:1 -#, php-format -msgid "" -"License out of limits

    " -"This license allows %d modules and you have %d modules configured." -msgstr "" -" Licencia fuera de límites
    " -"Esta licencia permite %d módulos y tiene módulos %d configurados." +#: ../../godmode/alerts/alert_list.php:264 +#: ../../godmode/massive/massive_standby_alerts.php:96 +msgid "Successfully set standby" +msgstr "Modo standby activado" -#: ../../enterprise/load_enterprise.php:1 -msgid "" -"This license has expired. " -"

    You can not get updates until you renew the license." -msgstr "" -"This license has expired. " -"

    No podrá actualizar Pandora FMS hasta que no renueve la licencia." +#: ../../godmode/alerts/alert_list.php:264 +#: ../../godmode/massive/massive_standby_alerts.php:96 +msgid "Could not be set standby" +msgstr "No se pudo establecer el modo standby" -#: ../../enterprise/load_enterprise.php:1 -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:" -msgstr "" -"Para continuar usando Pandora FMS, por favor, desactive Pandora FMS " -"Enterprise cambiando el nombre de la Enteprise en el directorio de la " -"consola.

    o contacte con Ártica ST para obtener una licencia válida " -"(info@artica.es)" +#: ../../godmode/alerts/alert_list.php:281 +#: ../../godmode/massive/massive_standby_alerts.php:78 +msgid "Successfully set off standby" +msgstr "Se ha desactivado el modo standby" -#: ../../enterprise/load_enterprise.php:1 -msgid "Please contact Artica at info@artica.es to renew the license." -msgstr "" -"Por favor, contacte con Ártica ST (info@artica.es) para renovar la licencia." +#: ../../godmode/alerts/alert_list.php:281 +#: ../../godmode/massive/massive_standby_alerts.php:78 +msgid "Could not be set off standby" +msgstr "No se pudo desactivar el modo standby" -#: ../../enterprise/load_enterprise.php:1 -msgid "Renew" -msgstr "Renovar" +#: ../../godmode/alerts/alert_list.php:317 +msgid "Builder alert" +msgstr "Creador de alerta" -#: ../../enterprise/load_enterprise.php:1 -msgid "Activate license" -msgstr "Activar licencia" +#: ../../godmode/alerts/alert_list.php:326 +#: ../../godmode/alerts/alert_list.php:329 +#: ../../godmode/users/configure_profile.php:268 +msgid "Manage alerts" +msgstr "Gestionar alertas" -#: ../../enterprise/load_enterprise.php:1 -msgid "Your request key is:" -msgstr "Su clave es:" +#: ../../godmode/alerts/alert_list.builder.php:78 +msgid "Latest value" +msgstr "Último valor" -#: ../../enterprise/load_enterprise.php:1 -#, php-format -msgid "" -"You can activate it manually here or " -"automatically filling the form below:" -msgstr "" -"Lo puede activar manualmente aqui o " -"automáticamente rellenando el siguiente formulario:" +#: ../../godmode/alerts/alert_list.builder.php:144 +msgid "Add alert" +msgstr "Añadir alerta" -#: ../../enterprise/load_enterprise.php:1 -msgid "Auth Key:" -msgstr "Clave de autenticación" +#: ../../godmode/alerts/alert_templates.php:62 +msgid "Everyday" +msgstr "Cada día" -#: ../../enterprise/load_enterprise.php:1 -msgid "Online validation" -msgstr "Validación en línea" +#: ../../godmode/alerts/alert_templates.php:73 +msgid "Every" +msgstr "Cada" -#: ../../enterprise/load_enterprise.php:1 -msgid "ERROR:" -msgstr "ERROR:" +#: ../../godmode/alerts/alert_templates.php:83 +msgid "and" +msgstr "y" -#: ../../enterprise/load_enterprise.php:1 -msgid "When connecting to Artica server." -msgstr "Cuando se conecta al servidor de Ártica." +#: ../../godmode/alerts/alert_templates.php:359 +msgid "No alert templates defined" +msgstr "No hay plantillas de alerta definidas" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:83 -msgid "redirected ip server in conf into source DB" -msgstr "Servidor IP redirigido en la configuración a la BD de origen" +#: ../../godmode/menu.php:29 +msgid "Manage agents" +msgstr "Gestionar agentes" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:85 -msgid "created agent in destination DB" -msgstr "Agente creado en la BD de destino" +#: ../../godmode/menu.php:39 +msgid "Component groups" +msgstr "Grupos de componentes" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:86 -msgid "created agent modules in destination DB" -msgstr "Módulos de agente creados en la BD de destino" +#: ../../godmode/menu.php:42 +msgid "Module categories" +msgstr "Categorias de modulos" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:87 -msgid "created agent alerts in destination DB" -msgstr "Alertas de agentes creadas en la BD de destino" +#: ../../godmode/menu.php:46 +msgid "Module types" +msgstr "Tipos de módulos" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:88 -msgid "created alerts actions in destination DB" -msgstr "Acciones de alertas en la BD de destino" +#: ../../godmode/menu.php:56 ../../godmode/netflow/nf_edit_form.php:66 +#: ../../godmode/netflow/nf_edit_form.php:71 +#: ../../godmode/netflow/nf_edit.php:48 ../../godmode/netflow/nf_edit.php:52 +msgid "Netflow filters" +msgstr "Filtros Netflow" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:89 -msgid "disabled agent in source DB" -msgstr "Agente desactivado en la BD de origen" +#: ../../godmode/menu.php:62 +msgid "Resources" +msgstr "Recursos" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:90 -msgid "" -"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" +#: ../../godmode/menu.php:70 +msgid "Manage agents groups" +msgstr "Configuración de grupos de agentes" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:98 -msgid "Successfully moved" -msgstr "Movido satisfactoriamente" +#: ../../godmode/menu.php:76 +msgid "Module tags" +msgstr "Etiquetas de modulos" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:98 -msgid "Could not be moved" -msgstr "No se puede mover" +#: ../../godmode/menu.php:83 ../../godmode/users/profile_list.php:312 +msgid "Users management" +msgstr "Gestión de usuarios" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 -msgid "Move Agents" -msgstr "Mover Agentes" +#: ../../godmode/menu.php:85 ../../godmode/users/configure_profile.php:45 +#: ../../godmode/users/configure_user.php:86 +#: ../../godmode/users/profile_list.php:49 +#: ../../godmode/users/user_list.php:117 +msgid "Profile management" +msgstr "Gestionar perfiles" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:140 -msgid "Source Server" -msgstr "Servidor de origen" +#: ../../godmode/menu.php:91 ../../godmode/users/profile_list.php:302 +msgid "Profiles" +msgstr "Perfiles" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:142 -msgid "Destination Server" -msgstr "Servidor de destino" +#: ../../godmode/menu.php:98 +msgid "Network components" +msgstr "Componentes de red" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:150 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:152 -msgid "Group filter" -msgstr "Filtro de grupo" +#: ../../godmode/menu.php:101 ../../godmode/agentes/configurar_agente.php:322 +msgid "Module templates" +msgstr "Plantillas de módulos" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:152 -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" -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." +#: ../../godmode/menu.php:111 +msgid "Bulk operations" +msgstr "Operaciones masivas" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:158 -msgid "Create group if doesn’t exist in destination" -msgstr "Crear grupo si no existe en destino" +#: ../../godmode/menu.php:116 ../../godmode/massive/massive_operations.php:165 +msgid "Agents operations" +msgstr "Operaciones sobre agentes" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:158 -msgid "Based on name" -msgstr "Basado en el nombre" +#: ../../godmode/menu.php:117 ../../godmode/massive/massive_operations.php:170 +msgid "Modules operations" +msgstr "Operaciones sobre módulos" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:167 -msgid "Add agents to destination server" -msgstr "Añadir agentes al servidor de destino" +#: ../../godmode/menu.php:118 ../../godmode/massive/massive_operations.php:175 +msgid "Plugins operations" +msgstr "Operaciones de plugins" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:169 -msgid "Remove agents to doesn't move to destination server" -msgstr "Eliminar los agentes no se desplace al servidor de destino" +#: ../../godmode/menu.php:120 ../../godmode/massive/massive_operations.php:160 +msgid "Users operations" +msgstr "Operaciones sobre usuarios" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:179 -msgid "Move" -msgstr "Mover" +#: ../../godmode/menu.php:122 ../../godmode/massive/massive_operations.php:155 +msgid "Alerts operations" +msgstr "Operaciones sobre alertas" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:282 -msgid "Please choose other server." -msgstr "Por favor elija otro servidor." +#: ../../godmode/menu.php:145 +msgid "List of Alerts" +msgstr "Lista de alertas" -#: ../../enterprise/meta/advanced/agents_setup.php:37 -msgid "Propagation" -msgstr "Propagación" +#: ../../godmode/menu.php:151 ../../godmode/agentes/configurar_agente.php:542 +msgid "Templates" +msgstr "Plantillas" -#: ../../enterprise/meta/advanced/component_management.php:60 -msgid "Module groups Management" -msgstr "Gestor de grupos de modulo" +#: ../../godmode/menu.php:160 +msgid "Commands" +msgstr "Comandos" -#: ../../enterprise/meta/advanced/component_management.php:64 -msgid "OS Management" -msgstr "Administración de SO" +#: ../../godmode/menu.php:180 +msgid "Event filters" +msgstr "Filtro de eventos" -#: ../../enterprise/meta/advanced/license_meta.php:40 -msgid "Metaconsole and all nodes license updated" -msgstr "Licencias de metaconsola y de todos los nodos actualizada" +#: ../../godmode/menu.php:185 +msgid "Custom events" +msgstr "Eventos personalizados" -#: ../../enterprise/meta/advanced/license_meta.php:43 -#, php-format -msgid "Metaconsole license updated but %d of %d node synchronization failed" -msgstr "" -"Licencia de la metaconsola actualizada pero la sincronización de nodos %d a " -"%d ha fallado." +#: ../../godmode/menu.php:187 ../../godmode/events/events.php:48 +msgid "Event responses" +msgstr "Respuestas de evento" -#: ../../enterprise/meta/advanced/license_meta.php:72 -msgid "Licence" +#: ../../godmode/menu.php:207 +msgid "Manage servers" +msgstr "Gestionar servidores" + +#: ../../godmode/menu.php:215 +msgid "Plugins" +msgstr "Plugins" + +#: ../../godmode/menu.php:218 +#: ../../godmode/servers/manage_recontask_form.php:274 +msgid "Recon script" +msgstr "Recon script" + +#: ../../godmode/menu.php:244 +msgid "General Setup" +msgstr "Configuracion general" + +#: ../../godmode/menu.php:253 ../../godmode/setup/setup.php:82 +#: ../../godmode/setup/setup.php:116 +msgid "Authentication" +msgstr "Autentificación" + +#: ../../godmode/menu.php:256 ../../godmode/setup/setup.php:86 +#: ../../godmode/setup/setup.php:120 +msgid "Performance" +msgstr "Rendimiento" + +#: ../../godmode/menu.php:259 ../../godmode/setup/setup.php:90 +#: ../../godmode/setup/setup.php:125 +msgid "Visual styles" +msgstr "Estilos visuales" + +#: ../../godmode/menu.php:273 ../../godmode/setup/gis.php:32 +msgid "Map conections GIS" +msgstr "Conexión de mapa GIS" + +#: ../../godmode/menu.php:277 ../../godmode/setup/os.php:143 +msgid "Edit OS" +msgstr "Editar SO" + +#: ../../godmode/menu.php:279 +msgid "License" msgstr "Licencia" -#: ../../enterprise/meta/advanced/license_meta.php:113 -msgid "Validate and sync" -msgstr "Validado y sincronizado" +#: ../../godmode/menu.php:288 +msgid "Admin tools" +msgstr "Herramientas administrativas" -#: ../../enterprise/meta/advanced/metasetup.auth.php:47 -#: ../../enterprise/meta/advanced/metasetup.password.php:47 -#: ../../enterprise/meta/advanced/metasetup.performance.php:47 -#: ../../enterprise/meta/advanced/metasetup.setup.php:79 -#: ../../enterprise/meta/advanced/metasetup.visual.php:50 -#, php-format -msgid "Could not be update: Error in %s" -msgstr "No se puede actualizar: error en %s" +#: ../../godmode/menu.php:296 +msgid "System audit log" +msgstr "Auditoría del sistema" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:87 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:155 -msgid "Could not be create, duplicated server name." -msgstr "No puede ser creado, el nombre del servidor está duplicado" +#: ../../godmode/menu.php:300 +msgid "Diagnostic info" +msgstr "Información de diagnostico" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:128 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:206 -msgid "Node synchronization process failed" -msgstr "Proceso de sincronización del nodo fallido" +#: ../../godmode/menu.php:302 +msgid "Site news" +msgstr "Noticias del sistema" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:227 -msgid "Could not be delete" -msgstr "No se puede eliminar" +#: ../../godmode/menu.php:304 ../../godmode/setup/file_manager.php:30 +msgid "File manager" +msgstr "Gestor de archivos" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:316 +#: ../../godmode/menu.php:309 +msgid "DB maintenance" +msgstr "Gestión BBDD" + +#: ../../godmode/menu.php:315 +msgid "DB information" +msgstr "Información BBDD" + +#: ../../godmode/menu.php:316 ../../godmode/db/db_purge.php:38 +msgid "Database purge" +msgstr "Purgar BBDD" + +#: ../../godmode/menu.php:318 +msgid "Database audit" +msgstr "Auditoría BBDD" + +#: ../../godmode/menu.php:319 +msgid "Database event" +msgstr "Evento de la base de datos" + +#: ../../godmode/menu.php:401 +msgid "Extension manager view" +msgstr "Vista del gestor de extensiones" + +#: ../../godmode/menu.php:405 +msgid "Extension manager" +msgstr "Gerente de extensión" + +#: ../../godmode/menu.php:433 +msgid "Update manager" +msgstr "Update manager" + +#: ../../godmode/menu.php:439 +msgid "Update Manager offline" +msgstr "Update Manager sin conexión" + +#: ../../godmode/menu.php:442 +msgid "Update Manager online" +msgstr "Update Manager con conexión" + +#: ../../godmode/menu.php:444 +msgid "Update Manager options" +msgstr "Opciones de Update Manager" + +#: ../../godmode/extensions.php:27 +msgid "Extensions" +msgstr "Extensiones" + +#: ../../godmode/extensions.php:27 +msgid "Defined extensions" +msgstr "Extensiones definidas" + +#: ../../godmode/extensions.php:32 +msgid "There are no extensions defined" +msgstr "No hay extensiones definidas" + +#: ../../godmode/extensions.php:145 +msgid "Enterprise" +msgstr "Enterprise" + +#: ../../godmode/extensions.php:146 +msgid "Godmode Function" +msgstr "Función Administrador" + +#: ../../godmode/extensions.php:147 +msgid "Godmode Menu" +msgstr "Menú Administrador" + +#: ../../godmode/extensions.php:148 +msgid "Operation Menu" +msgstr "Menú Operación" + +#: ../../godmode/extensions.php:149 +msgid "Operation Function" +msgstr "Función Operación" + +#: ../../godmode/extensions.php:150 +msgid "Login Function" +msgstr "Función Login" + +#: ../../godmode/extensions.php:151 +msgid "Agent operation tab" +msgstr "Pestaña operaciones de agente" + +#: ../../godmode/extensions.php:152 +msgid "Agent godmode tab" +msgstr "Pestaña administración de agente" + +#: ../../godmode/setup/performance.php:49 msgid "" -"Complete path to Pandora console without last \"/\" character. Example " +"If the compaction or purge of the data is more frequent than the events " +"deletion, anomalies in module graphs could appear" msgstr "" -"Completar ruta a la consola de Pandora FMS sin el último \"/\" carácter. " -"Ejemplo " +"Si la compactación o purgado de datos es más frecuente que el borrado de " +"eventos, pueden aparecer anomalías en las gráficas de módulo" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:333 -msgid "DB port" -msgstr "Puerto de la DB" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:385 -msgid "Agent cache" -msgstr "Caché de agente" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:386 -#: ../../enterprise/meta/advanced/policymanager.sync.php:311 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:351 -#: ../../enterprise/meta/advanced/synchronizing.component.php:327 -#: ../../enterprise/meta/advanced/synchronizing.group.php:164 -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:92 -#: ../../enterprise/meta/advanced/synchronizing.os.php:92 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:108 -#: ../../enterprise/meta/advanced/synchronizing.user.php:587 -msgid "Sync" -msgstr "Sincr." - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:472 -msgid "There aren't server added to metaconsole" -msgstr "No hay servidores añadidos a la metaconsola" - -#: ../../enterprise/meta/advanced/metasetup.password.php:73 -msgid "Passwords" -msgstr "Contraseñas" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:82 -#: ../../enterprise/meta/include/functions_meta.php:1281 -msgid "Active events history" -msgstr "Historial de eventos activo" - -#: ../../enterprise/meta/advanced/metasetup.php:55 -msgid "Consoles Setup" -msgstr "Configuración de consolas" - -#: ../../enterprise/meta/advanced/metasetup.php:60 -#: ../../enterprise/meta/advanced/metasetup.php:121 -msgid "General setup" -msgstr "Configuración general" - -#: ../../enterprise/meta/advanced/metasetup.php:65 -#: ../../enterprise/meta/advanced/metasetup.php:124 -msgid "Passwords setup" -msgstr "Configuración de contraseñas" - -#: ../../enterprise/meta/advanced/metasetup.php:75 -#: ../../enterprise/meta/advanced/metasetup.php:130 -msgid "Visual setup" -msgstr "Configuración visual" - -#: ../../enterprise/meta/advanced/metasetup.php:80 -#: ../../enterprise/meta/advanced/metasetup.php:133 -msgid "Performance setup" -msgstr "Configuración del rendimiento" - -#: ../../enterprise/meta/advanced/metasetup.php:90 -#: ../../enterprise/meta/advanced/metasetup.php:139 -msgid "Strings translation" -msgstr "Traducción de cadenas" - -#: ../../enterprise/meta/advanced/metasetup.php:95 -#: ../../enterprise/meta/advanced/metasetup.php:142 -msgid "Mail" -msgstr "Mail" - -#: ../../enterprise/meta/advanced/metasetup.php:100 -msgid "Options Update Manager" -msgstr "Opciones del gestor de actualizaciones" - -#: ../../enterprise/meta/advanced/metasetup.php:105 -#: ../../enterprise/meta/advanced/metasetup.php:148 -msgid "Offline Update Manager" -msgstr "Gestionar actualización offline" - -#: ../../enterprise/meta/advanced/metasetup.php:110 -#: ../../enterprise/meta/advanced/metasetup.php:151 -msgid "Online Update Manager" -msgstr "Gestor de actualizaciones online" - -#: ../../enterprise/meta/advanced/metasetup.php:117 -msgid "Consoles setup" -msgstr "Configuración de las consolas" - -#: ../../enterprise/meta/advanced/metasetup.php:145 -msgid "Online Update Options" -msgstr "Opciones del gestor de actualizaciones online" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:192 -msgid "Customize sections" -msgstr "Personalizar secciones" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:214 -msgid "Disabled sections" -msgstr "Secciones desactivadas" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:216 -msgid "Enabled sections" -msgstr "Activar secciones" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:222 -msgid "Push selected sections to enable it" -msgstr "Apriete las secciones elegidas para activarlo" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:226 -msgid "Pop selected sections to disable it" -msgstr "Desapriete la secciones seleccionadas para desactivarlo" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:76 -msgid "Visual" -msgstr "visual" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:108 -msgid "Precision must be a integer number between 0 and 5" -msgstr "La precisión debe ser un numero entero entre 0 y 5" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:136 -#: ../../enterprise/meta/include/functions_meta.php:1101 -msgid "Metaconsole elements" -msgstr "Elementos de la Metaconsola" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:136 -msgid "The number of elements retrieved for each instance in some views." +#: ../../godmode/setup/performance.php:64 +msgid "" +"Configure a purge period more frequent than a compact data period has no " +"sense" msgstr "" -"El número de elementos recuperados para cada instancia en algunas vistas." +"Configurar un periodo de purgado con más frecuencia que el periodo de " +"compactación de datos no tiene sentido" -#: ../../enterprise/meta/advanced/policymanager.apply.php:146 -#: ../../enterprise/meta/advanced/policymanager.apply.php:154 -msgid "Only database" -msgstr "Sólo bases de datos" +#: ../../godmode/setup/performance.php:73 +msgid "Max. days before delete autodisabled agents" +msgstr "Días máximos antes de la eliminación de los agentes deshabilitados" -#: ../../enterprise/meta/advanced/policymanager.apply.php:188 -msgid "Apply Policies" -msgstr "Aplicar politicas" +#: ../../godmode/setup/performance.php:76 +msgid "This number is days to keep past special days. 0 means never remove." +msgstr "" +"Este número son los días para mantener los días especiales pasados. 0 " +"significa que no se borren nunca." -#: ../../enterprise/meta/advanced/policymanager.php:37 -msgid "Policy Manager" -msgstr "Gestor de políticas" +#: ../../godmode/setup/performance.php:79 +msgid "Number of macro fields in alerts and templates between 1 and 15" +msgstr "" +"Número de campos de macro en alertas y plantillas, debe ser entre 1 y 15" -#: ../../enterprise/meta/advanced/policymanager.php:66 -msgid "Apply policies" -msgstr "Aplicar políticas" +#: ../../godmode/setup/performance.php:96 +msgid "Item limit for realtime reports" +msgstr "Límite del elemento para informes en tiempo real" -#: ../../enterprise/meta/advanced/policymanager.php:70 -#: ../../enterprise/meta/advanced/policymanager.php:84 -msgid "Policies queue" -msgstr "Cola de políticas" +#: ../../godmode/setup/performance.php:96 +msgid "" +"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 des aceleración en la consola y " +"una penalización de rendimiento en el sistema." -#: ../../enterprise/meta/advanced/policymanager.php:81 -msgid "Policies apply" -msgstr "Aplicar políticas" +#: ../../godmode/setup/performance.php:100 +msgid "Data will be compacted in intervals of the specified length." +msgstr "Los datos se compactarán en intervalos de la longitud especificada." -#: ../../enterprise/meta/advanced/policymanager.queue.php:352 -msgid "Empty queue." -msgstr "Cola vacia" +#: ../../godmode/setup/performance.php:107 +msgid "Last day" +msgstr "Último día" -#: ../../enterprise/meta/advanced/policymanager.sync.php:235 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:286 -#: ../../enterprise/meta/advanced/synchronizing.component.php:289 -#: ../../enterprise/meta/advanced/synchronizing.user.php:498 -#: ../../enterprise/meta/advanced/synchronizing.user.php:578 -#: ../../enterprise/meta/include/functions_groups_meta.php:130 -#: ../../enterprise/meta/include/functions_meta.php:99 -#: ../../enterprise/meta/include/functions_meta.php:195 -#: ../../enterprise/meta/include/functions_meta.php:285 +#: ../../godmode/setup/performance.php:109 +msgid "10 days" +msgstr "10 días" + +#: ../../godmode/setup/performance.php:111 +msgid "2 weeks" +msgstr "semana" + +#: ../../godmode/setup/performance.php:121 +msgid "" +"If realtime statistics are disabled, statistics interval resfresh will be " +"set here." +msgstr "" +"Si las estadísticas en tiempo real son deshabilitadas, el intervalo de " +"refresco de las estadísticas será definido aquí." + +#: ../../godmode/setup/performance.php:128 +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." +msgstr "" +"Número máximo de archivos en el directorio attachment. Si se alcanza el " +"número se mostrará un mensaje en el área de notificaciones de la cabecera." + +#: ../../godmode/setup/performance.php:135 +msgid "Big Operation Step to purge old data" +msgstr "Gran operación para la purga de datos antiguos" + +#: ../../godmode/setup/performance.php:135 +msgid "" +"The number of blocks that a time interval is split into. A bigger value " +"means bigger blocks, which is faster but heavier on the database. Default is " +"100." +msgstr "" +"El número de bloques en los que se divide un intervalo de tiempo. Un valor " +"mayor significa bloques más grandes, será más rápido pero más pesado en base " +"de datos. El valor predeterminado es 100." + +#: ../../godmode/setup/performance.php:138 +msgid "" +"The number of rows that are processed in a single query in deletion. Default " +"is 1000. Increase to 3000-5000 in fast systems. Decrease to 500 or 250 on " +"systems with locks." +msgstr "" +"El número de filas que se procesan en una sola consulta en supresión. El " +"valor predeterminado es 1000. Aumente a 3000-5000 en sistemas rápidos. " +"Disminuir a 500 o 250 en sistemas con cerraduras." + +#: ../../godmode/setup/performance.php:143 +msgid "Database maintenance options" +msgstr "Opciones de mantenimiento de la base de datos" + +#: ../../godmode/setup/news.php:28 +msgid "Site news management" +msgstr "Gestionar noticias" + +#: ../../godmode/setup/news.php:88 +#: ../../godmode/events/event_edit_filter.php:174 +#: ../../godmode/netflow/nf_edit_form.php:132 +#: ../../godmode/modules/manage_nc_groups.php:99 +msgid "Not updated. Error updating data" +msgstr "No se ha podido actualizar. Error al actualizar los datos." + +#: ../../godmode/setup/news.php:130 ../../godmode/setup/links.php:86 +msgid "Name error" +msgstr "Error de nombre" + +#: ../../godmode/setup/news.php:167 +msgid "Modal screen" +msgstr "Pantalla modal" + +#: ../../godmode/setup/news.php:170 +msgid "Expire" +msgstr "Caduca" + +#: ../../godmode/setup/news.php:173 ../../godmode/setup/news.php:224 +msgid "Expiration" +msgstr "Vencimiento" + +#: ../../godmode/setup/news.php:215 +msgid "There are no defined news" +msgstr "No hay noticias definidas" + +#: ../../godmode/setup/news.php:242 +msgid "Modal" +msgstr "Modal" + +#: ../../godmode/setup/news.php:245 +msgid "Board" +msgstr "Tablero" + +#: ../../godmode/setup/news.php:256 +msgid "Expired" +msgstr "Caducado" + +#: ../../godmode/setup/snmp_wizard.php:30 +#: ../../godmode/agentes/configurar_agente.php:392 +#: ../../godmode/agentes/configurar_agente.php:558 +msgid "SNMP Wizard" +msgstr "Wizard SNMP" + +#: ../../godmode/setup/snmp_wizard.php:42 +#: ../../godmode/massive/massive_edit_modules.php:475 +#: ../../godmode/modules/manage_network_components_form_network.php:80 +#: ../../godmode/modules/manage_network_components_form_plugin.php:27 +#: ../../godmode/modules/manage_network_components_form_wmi.php:56 +#: ../../godmode/agentes/module_manager_editor_common.php:412 +msgid "Post process" +msgstr "Posprocesado" + +#: ../../godmode/setup/snmp_wizard.php:43 +msgid "OP" +msgstr "OP" + +#: ../../godmode/setup/snmp_wizard.php:166 +msgid "Unsucessful update the snmp translation" +msgstr "No se pudo actualizar la traducción snmp" + +#: ../../godmode/setup/snmp_wizard.php:173 +msgid "Unsucessful update the snmp translation." +msgstr "No se pudo actualizar la traducción SNMP" + +#: ../../godmode/setup/snmp_wizard.php:221 +msgid "Unsucessful delete the snmp translation" +msgstr "No se pudo borrar la traducción de SNMP" + +#: ../../godmode/setup/snmp_wizard.php:228 +msgid "Unsucessful delete the snmp translation." +msgstr "No se pudo borrar la traducción de SNMP" + +#: ../../godmode/setup/snmp_wizard.php:289 +msgid "Unsucessful save the snmp translation" +msgstr "No se pudo guardar la traducción de SNMP" + +#: ../../godmode/setup/snmp_wizard.php:298 +msgid "Unsucessful save the snmp translation." +msgstr "No se pudo guardar la traducción de SNMP" + +#: ../../godmode/setup/gis.php:62 +msgid "Map connection name" +msgstr "Nombre de la conexión" + +#: ../../godmode/setup/gis.php:83 +msgid "Do you wan delete this connection?" +msgstr "Desea borrar esta conexión?" + +#: ../../godmode/setup/os.php:73 +msgid "Fail creating OS" +msgstr "Error al crear SO" + +#: ../../godmode/setup/os.php:80 +msgid "Success creating OS" +msgstr "Éxito al crear SO" + +#: ../../godmode/setup/os.php:100 +msgid "Success updatng OS" +msgstr "Éxito al actualizar SO" + +#: ../../godmode/setup/os.php:100 +msgid "Error updating OS" +msgstr "Error al actualizar SO" + +#: ../../godmode/setup/os.php:119 +msgid "There are agents with this OS." +msgstr "Existen agentes con este Sistema Operativo." + +#: ../../godmode/setup/os.php:124 +msgid "Success deleting" +msgstr "Éxito al borrar" + +#: ../../godmode/setup/os.php:124 +msgid "Error deleting" +msgstr "Error al borrar" + +#: ../../godmode/setup/os.php:133 +msgid "List OS" +msgstr "Listar SS. OO." + +#: ../../godmode/setup/os.php:137 +msgid "Builder OS" +msgstr "Creador de registros de sistema operativo." + +#: ../../godmode/setup/setup_ehorus.php:85 +msgid "API Hostname" +msgstr "Nombre del propietario de la API" + +#: ../../godmode/setup/setup_ehorus.php:87 +msgid "Hostname of the eHorus API" +msgstr "Nombre del propietario de la API de eHorus" + +#: ../../godmode/setup/setup_ehorus.php:87 +msgid "Without protocol and port" +msgstr "Sin protocolo y puerto" + +#: ../../godmode/setup/setup_ehorus.php:87 +msgid "e.g., portal.ehorus.com" +msgstr "e.g., portal.ehorus.com" + +#: ../../godmode/setup/setup_ehorus.php:92 +msgid "API Port" +msgstr "Puerto de la API" + +#: ../../godmode/setup/setup_ehorus.php:94 +msgid "e.g., 18080" +msgstr "e.g., 18080" + +#: ../../godmode/setup/setup_ehorus.php:99 +msgid "Request timeout" +msgstr "Tiempo de espera excedido para la solicitud" + +#: ../../godmode/setup/setup_ehorus.php:101 +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" + +#: ../../godmode/setup/setup_ehorus.php:101 +msgid "0 to disable" +msgstr "0 para deshabilitar" + +#: ../../godmode/setup/setup_ehorus.php:106 +msgid "Test" +msgstr "Probar" + +#: ../../godmode/setup/setup_ehorus.php:107 +msgid "Start" +msgstr "Inicio" + +#: ../../godmode/setup/setup_ehorus.php:122 +msgid "Remote Management System" +msgstr "Sistema de gestión remota" + +#: ../../godmode/setup/setup_ehorus.php:130 +msgid "Custom field eHorusID created" +msgstr "Campo personalizado eHorusID creado" + +#: ../../godmode/setup/setup_ehorus.php:130 +msgid "Error creating custom field" +msgstr "Error al crear campo personalizado" + +#: ../../godmode/setup/setup_ehorus.php:133 +msgid "eHorus has his own agent identifiers" +msgstr "eHorus tiene sus propios identificadores de agente" + +#: ../../godmode/setup/setup_ehorus.php:134 +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:135 +msgid "" +"Possibly the eHorus id will have to be filled in by hand for every agent" +msgstr "" +"Posiblemente el id de eHorus tendrá que ser rellenado a mano por cada agente" + +#: ../../godmode/setup/setup_ehorus.php:140 +msgid "The custom field does not exists already" +msgstr "El campo personalizado no existe aún" + +#: ../../godmode/setup/setup_ehorus.php:154 +msgid "eHorus API" +msgstr "eHorus API" + +#: ../../godmode/setup/setup_ehorus.php:186 +msgid "Connection timeout" +msgstr "La conexión ha expirado" + +#: ../../godmode/setup/setup_ehorus.php:187 +msgid "Empty user or password" +msgstr "Usuario o contraseña vacío" + +#: ../../godmode/setup/setup_ehorus.php:188 +msgid "User not found" +msgstr "Usuario no encontrado" + +#: ../../godmode/setup/setup_ehorus.php:189 +msgid "Invalid password" +msgstr "Contraseña incorrecta" + +#: ../../godmode/setup/license.php:27 +msgid "License management" +msgstr "Gestión de licencias" + +#: ../../godmode/setup/license.php:37 +msgid "License updated" +msgstr "Licencia actualizada" + +#: ../../godmode/setup/license.php:64 +msgid "Customer key" +msgstr "Clave del cliente" + +#: ../../godmode/setup/license.php:67 +msgid "Expires" +msgstr "Expira" + +#: ../../godmode/setup/license.php:70 +msgid "Platform Limit" +msgstr "Límite de la plataforma" + +#: ../../godmode/setup/license.php:71 ../../godmode/setup/license.php:74 +#: ../../godmode/setup/license.php:77 ../../godmode/setup/license.php:80 +msgid "agents" +msgstr "Agentes" + +#: ../../godmode/setup/license.php:73 +msgid "Current Platform Count" +msgstr "Cómputo de la plataforma actual" + +#: ../../godmode/setup/license.php:76 +msgid "Current Platform Count (enabled: items)" +msgstr "Cuenta de la plataforma actual (activado: elementos)" + +#: ../../godmode/setup/license.php:79 +msgid "Current Platform Count (disabled: items)" +msgstr "Cuenta de la plataforma actual (desactivado: elementos)" + +#: ../../godmode/setup/license.php:82 +msgid "License Mode" +msgstr "Modalidad de licencia" + +#: ../../godmode/setup/license.php:85 +msgid "NMS" +msgstr "NMS" + +#: ../../godmode/setup/license.php:86 ../../godmode/setup/license.php:89 +msgid "enabled" +msgstr "Habilitado" + +#: ../../godmode/setup/license.php:86 ../../godmode/setup/license.php:89 +msgid "disabled" +msgstr "desactivado" + +#: ../../godmode/setup/license.php:88 +msgid "Satellite" +msgstr "Satélite" + +#: ../../godmode/setup/license.php:91 +msgid "Licensed to" +msgstr "Con licencia para" + +#: ../../godmode/setup/license.php:100 ../../godmode/setup/license.php:104 +msgid "Request new license" +msgstr "Solicitar nueva licencia" + +#: ../../godmode/setup/license.php:108 +msgid "To get your Pandora FMS Enterprise License:" +msgstr "Para obtener su Licencia de Pandora FMS Enteprise" + +#: ../../godmode/setup/license.php:111 #, php-format -msgid "Error connecting to %s" -msgstr "Error al conectar con %s" +msgid "Go to %s" +msgstr "Ir a %s" -#: ../../enterprise/meta/advanced/policymanager.sync.php:244 -#, php-format -msgid "Error creating %s policies" -msgstr "Error al crear políticas %s" +#: ../../godmode/setup/license.php:114 +msgid "Enter the auth key and the following request key:" +msgstr "Introduce la auth key y la siguiente request key:" -#: ../../enterprise/meta/advanced/policymanager.sync.php:247 -#, php-format -msgid "Created %s policies" -msgstr "Políticas %s creadas" +#: ../../godmode/setup/license.php:120 +msgid "Enter your name (or a company name) and a contact email address." +msgstr "Introduzca su nombre (o empresa) y un email de contacto." -#: ../../enterprise/meta/advanced/policymanager.sync.php:252 -#, php-format -msgid "Error creating/updating %s/%s policy modules" -msgstr "Error al crear/actualizar %s/%s módulos de políticas" +#: ../../godmode/setup/license.php:123 +msgid "Click on Generate." +msgstr "Haga click en Generar" -#: ../../enterprise/meta/advanced/policymanager.sync.php:255 -#, php-format -msgid "Created/Updated %s/%s policy modules" -msgstr "Creadas/actualizadas %s/%s módulos de políticas" +#: ../../godmode/setup/license.php:126 +msgid "" +"Click here, enter " +"the generated license key and click on Validate." +msgstr "" +"Haga click aquí, e " +"introduzca la licence key generada y pulse en Validar." -#: ../../enterprise/meta/advanced/policymanager.sync.php:260 -#, php-format -msgid "Error deleting %s policy modules" -msgstr "Error al eliminar %s módulos de políticas" +#: ../../godmode/setup/links.php:27 +msgid "Link management" +msgstr "Gestionar enlaces" -#: ../../enterprise/meta/advanced/policymanager.sync.php:263 -#, php-format -msgid "Deleted %s policy modules" -msgstr "Eliminadas %s módulos de políticas" +#: ../../godmode/setup/links.php:39 +msgid "There was a problem creating link" +msgstr "Ha habido un problema al crear el enlace" -#: ../../enterprise/meta/advanced/policymanager.sync.php:268 -#, php-format -msgid "Error creating %s policy alerts" -msgstr "Error al crear %s alertas de políticas" +#: ../../godmode/setup/links.php:56 +msgid "There was a problem modifying link" +msgstr "Ha habido un problema al modificar el enlace" -#: ../../enterprise/meta/advanced/policymanager.sync.php:271 -#, php-format -msgid "Created %s policy alerts" -msgstr "Creadas %s alertas de políticas" +#: ../../godmode/setup/links.php:67 +msgid "There was a problem deleting link" +msgstr "Ha habido un problema al borrar el enlace" -#: ../../enterprise/meta/advanced/policymanager.sync.php:276 -#, php-format -msgid "Error deleting %s policy alerts" -msgstr "Error al eliminar %s alertas de políticas" +#: ../../godmode/setup/links.php:106 ../../godmode/setup/links.php:136 +msgid "Link name" +msgstr "Nombre enlace" -#: ../../enterprise/meta/advanced/policymanager.sync.php:279 -#, php-format -msgid "Deleted %s policy alerts" -msgstr "Eliminadas %s alertas de políticas" +#: ../../godmode/setup/links.php:109 +msgid "Link" +msgstr "Enlace" -#: ../../enterprise/meta/advanced/policymanager.sync.php:292 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:333 -#: ../../enterprise/meta/advanced/synchronizing.component.php:311 -#: ../../enterprise/meta/advanced/synchronizing.group.php:148 -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:76 -#: ../../enterprise/meta/advanced/synchronizing.os.php:76 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:92 -#: ../../enterprise/meta/advanced/synchronizing.user.php:518 -msgid "This metaconsole" -msgstr "Esta metaconsola" +#: ../../godmode/setup/links.php:132 +msgid "There isn't links" +msgstr "No existen enlaces" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:294 -#, php-format -msgid "Error creating/updating %s/%s comamnds" -msgstr "Error al crear/actualizar %s/%s comandos" +#: ../../godmode/setup/setup_general.php:58 +msgid "Directory where agent remote configuration is stored." +msgstr "Directorio en el que se almacena la configuración remota del agente." -#: ../../enterprise/meta/advanced/synchronizing.alert.php:297 -#, php-format -msgid "Created/Updated %s/%s commands" -msgstr "Creados/actualizados %s/%s comandos" +#: ../../godmode/setup/setup_general.php:67 +msgid "Database" +msgstr "Base de datos" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:302 -#, php-format -msgid "Error creating/updating %s/%s actions" -msgstr "Error al crear/actualizar %s/%s acciones" +#: ../../godmode/setup/setup_general.php:75 +msgid "" +"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 SSL correctamente, puede perder el acceso a la " +"consola de Pandora FMS. ¿Desea continuar?" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:305 -#, php-format -msgid "Created/Updated %s/%s actions" -msgstr "Creados/actualizados %s/%s acciones" +#: ../../godmode/setup/setup_general.php:78 +msgid "Use cert of SSL" +msgstr "Usar el certificado SSL" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:310 -#, php-format -msgid "Error creating/updating %s/%s templates" -msgstr "Error al crear/actualizar %s/%s plantillas" +#: ../../godmode/setup/setup_general.php:83 +msgid "Path of SSL Cert." +msgstr "Ruta del certificado SSL" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:313 -#, php-format -msgid "Created/Updated %s/%s templates" -msgstr "Creadas/actualizadas %s/%s plantillas" +#: ../../godmode/setup/setup_general.php:83 +msgid "" +"Path where you put your cert and name of this cert. Remember your cert only " +"in .pem extension." +msgstr "" +"Ruta donde se ubica su certificado y el nombre del mismo. Recuerde que su " +"certificado debe ir únicamente con la extensión .pem" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:325 -msgid "Synchronizing Alerts" -msgstr "Sincronizar alertas" +#: ../../godmode/setup/setup_general.php:86 +msgid "Directory where temporary data is stored." +msgstr "Directorio donde los datos temporales son almacenados." -#: ../../enterprise/meta/advanced/synchronizing.component.php:263 -#, php-format -msgid "Error creating %s components groups " -msgstr "Error al crear %s grupos de componentes " +#: ../../godmode/setup/setup_general.php:99 +msgid "Please be careful if you put a password put https access." +msgstr "" +"Por favor, tenga cuidado. Si tiene que introducir una contraseña ponga " +"acceso https." -#: ../../enterprise/meta/advanced/synchronizing.component.php:266 -#, php-format -msgid "Created %s component groups" -msgstr "Creados %s componentes de grupos" +#: ../../godmode/setup/setup_general.php:140 +msgid "Change timezone" +msgstr "Cambiar zona horaria" -#: ../../enterprise/meta/advanced/synchronizing.component.php:271 -#, php-format -msgid "Error creating/updating %s/%s local components " -msgstr "Error al crear/actualizar %s/%s componentes locales " +#: ../../godmode/setup/setup_general.php:148 +#: ../../godmode/setup/setup_general.php:153 +#: ../../godmode/setup/setup_general.php:158 +msgid "Play sound" +msgstr "Reproducir sonido" -#: ../../enterprise/meta/advanced/synchronizing.component.php:274 -#, php-format -msgid "Created/Updated %s/%s local components" -msgstr "Creados/actualizados %s/%s componentes locales" +#: ../../godmode/setup/setup_general.php:162 +msgid "" +"Set this value when your PandoraFMS across inverse proxy or for example with " +"mod_proxy of Apache." +msgstr "" +"Fije este valor cuando su Pandora llegue al proxy inverso o por ejemplo con " +"mod_proxy de Apache." -#: ../../enterprise/meta/advanced/synchronizing.component.php:279 -#, php-format -msgid "Error creating/updating %s/%s network components " -msgstr "Error al crear/actualizar %s/%s componentes de red " +#: ../../godmode/setup/setup_general.php:166 +msgid "" +"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" -#: ../../enterprise/meta/advanced/synchronizing.component.php:282 -#, php-format -msgid "Created/Updated %s/%s network components" -msgstr "Creados/actualizados %s/%s componentes de red" +#: ../../godmode/setup/setup_general.php:174 +msgid "" +"If set to yes no events or alerts will be generated, but agents will " +"continue receiving data." +msgstr "" +"Si se configura afirmativo ningún evento o alerta se generará, pero los " +"agentes continuarán recibiendo datos." -#: ../../enterprise/meta/advanced/synchronizing.component.php:303 -msgid "Synchronizing Components" -msgstr "Sincronizar componentes" +#: ../../godmode/setup/setup_general.php:183 +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/synchronizing.group.php:74 -#: ../../enterprise/meta/advanced/synchronizing.group.php:75 -#: ../../enterprise/meta/advanced/synchronizing.group.php:87 -#: ../../enterprise/meta/advanced/synchronizing.group.php:88 -msgid "Open for more details" -msgstr "Abrir para obtener más detalles" +#: ../../godmode/setup/setup_general.php:187 +msgid "Directory where the server logs are stored." +msgstr "Directorio donde se guardan los logs del servidor" -#: ../../enterprise/meta/advanced/synchronizing.group.php:78 -#, php-format -msgid "Error creating %s groups" -msgstr "Error creando %s grupos" +#: ../../godmode/setup/setup_general.php:192 +msgid "Full mode" +msgstr "Modo total" -#: ../../enterprise/meta/advanced/synchronizing.group.php:91 -#, php-format -msgid "Error updating %s groups" -msgstr "Error actualizando %s grupos" +#: ../../godmode/setup/setup_general.php:193 +msgid "On demand" +msgstr "Por demanda" -#: ../../enterprise/meta/advanced/synchronizing.group.php:100 -#: ../../enterprise/meta/advanced/synchronizing.group.php:101 -msgid "Open for more details in creation" -msgstr "Abrir para obtener más detalles de creación" +#: ../../godmode/setup/setup_general.php:194 +msgid "Expert" +msgstr "Experta/o" -#: ../../enterprise/meta/advanced/synchronizing.group.php:106 -#: ../../enterprise/meta/advanced/synchronizing.group.php:107 -msgid "Open for more details in update" -msgstr "Abrir para obtener más detalles de actualización" +#: ../../godmode/setup/setup_general.php:197 +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." +msgstr "" +"La configuración del asistente, 'modo total' muestra el icono en la cabecera " +"y en las ayudas contextual ademas sera proactivo, 'bajo demanda' es igual " +"que el modo total pero no sera proactivo, y 'experto' no se mostrara los " +"iconos ni en la cabecera ni como ayuda contextual." -#: ../../enterprise/meta/advanced/synchronizing.group.php:110 -#, php-format -msgid "Error creating/updating %s/%s groups" -msgstr "Error al crear/actualizar grupos %s/%s" +#: ../../godmode/setup/setup_general.php:204 +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" -#: ../../enterprise/meta/advanced/synchronizing.group.php:122 -#, php-format -msgid "Created/Updated %s/%s groups" -msgstr "Creados/actualizados grupos %s/%s" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:129 -msgid "None update or create group" -msgstr "Ninguna actualización o creación de grupo" - -#: ../../enterprise/meta/advanced/synchronizing.group.php:140 -msgid "Synchronizing Groups" -msgstr "Sincronizar grupos" - -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:53 -#, php-format -msgid "Error creating/updating %s/%s module groups" -msgstr "Error al crear/actualizar %s/%s los grupos de modulo" - -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:56 -#, php-format -msgid "Created/Updated %s/%s module groups" -msgstr "Creados/Actualizados %s/%s los grupos de modulos" - -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:68 -msgid "Synchronizing Module Groups" -msgstr "Sincronizando grupos de modulos" - -#: ../../enterprise/meta/advanced/synchronizing.os.php:53 -#, php-format -msgid "Error creating/updating %s/%s OS" -msgstr "Error al crear/actualizar %s/%s SO" - -#: ../../enterprise/meta/advanced/synchronizing.os.php:56 -#, php-format -msgid "Created/Updated %s/%s OS" -msgstr "Creado/Actualizado %s/%s SO" - -#: ../../enterprise/meta/advanced/synchronizing.os.php:68 -msgid "Synchronizing OS" -msgstr "Sincronizando SO" - -#: ../../enterprise/meta/advanced/synchronizing.php:35 -#: ../../enterprise/meta/general/main_header.php:238 -msgid "Synchronizing" -msgstr "Sincronizando" - -#: ../../enterprise/meta/advanced/synchronizing.php:60 -#: ../../enterprise/meta/advanced/synchronizing.php:91 -msgid "Users synchronization" -msgstr "Sincronización de usuarios" - -#: ../../enterprise/meta/advanced/synchronizing.php:64 -#: ../../enterprise/meta/advanced/synchronizing.php:94 -msgid "Groups synchronization" -msgstr "Sincronización de grupos" - -#: ../../enterprise/meta/advanced/synchronizing.php:68 -#: ../../enterprise/meta/advanced/synchronizing.php:97 -msgid "Alerts synchronization" -msgstr "Sincronización de alertas" - -#: ../../enterprise/meta/advanced/synchronizing.php:72 -#: ../../enterprise/meta/advanced/synchronizing.php:100 -msgid "Components synchronization" -msgstr "Sincronización de componentes" - -#: ../../enterprise/meta/advanced/synchronizing.php:76 -#: ../../enterprise/meta/advanced/synchronizing.php:103 -msgid "Tags synchronization" -msgstr "Sincronización de tags" - -#: ../../enterprise/meta/advanced/synchronizing.php:80 -#: ../../enterprise/meta/advanced/synchronizing.php:106 -msgid "OS synchronization" -msgstr "Sincronización de SO" - -#: ../../enterprise/meta/advanced/synchronizing.php:84 -#: ../../enterprise/meta/advanced/synchronizing.php:109 -msgid "Module Groups synchronization" -msgstr "Sincronización de grupos de modulo" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:69 -#, php-format -msgid "Error creating/updating %s/%s tags" -msgstr "Error al crear/actualizar %s/%s tags" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:72 -#, php-format -msgid "Created/Updated %s/%s tags" -msgstr "Creados/actualizados %s/%s tags" - -#: ../../enterprise/meta/advanced/synchronizing.tag.php:84 -msgid "Synchronizing Tags" -msgstr "Sincronizar tags" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:273 -#, php-format -msgid "Error updating user %s" -msgstr "Error al actualizar usuario %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:277 -#, php-format -msgid "Updated user %s" -msgstr "Usuario actualizado %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:288 -#, php-format -msgid "Error creating user %s" -msgstr "Error al crear usuario %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:292 -#, php-format -msgid "Created user %s" -msgstr "Usuario creado %s" - -#: ../../enterprise/meta/advanced/synchronizing.user.php:487 +#: ../../godmode/setup/setup_general.php:209 #, php-format msgid "" -"Error creating/updating the followings elements groups/profiles/user " -"profiles (%d/%d/%d)" +"Your PHP environment is setted with %d max_input_vars. Maybe you must not " +"set this value with upper values." msgstr "" -"Error al crear/actualizar los siguientes elementos grupos/perfiles/usuarios " -"(%d/%d/%d)" +"Su entorno PHP fue establecido con %d max_input_vars. Tal vez no deba " +"establecer valores superiores en este parámetro." -#: ../../enterprise/meta/advanced/synchronizing.user.php:492 +#: ../../godmode/setup/setup_general.php:213 +msgid "Include agents manually disabled" +msgstr "Incluir agentes deshabilitados manualmente" + +#: ../../godmode/setup/setup_general.php:217 +msgid "audit log directory" +msgstr "Directorio de log" + +#: ../../godmode/setup/setup_general.php:218 +msgid "Directory where audit log is stored." +msgstr "Directorio donde se guarda el log." + +#: ../../godmode/setup/setup_general.php:224 +msgid "General options" +msgstr "Opciones generales" + +#: ../../godmode/setup/setup_general.php:283 +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 el sistema ACL Enterprise es activado sin reglas, perderá el acceso a la " +"consola de Pandora FMS (incluso siendo administrador). ¿Desea continuar?" + +#: ../../godmode/setup/setup_netflow.php:42 +msgid "Directory where netflow data will be stored." +msgstr "Directorio donde los datos netflow se almacenarán" + +#: ../../godmode/setup/setup_netflow.php:46 +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" + +#: ../../godmode/setup/setup_netflow.php:58 +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." +msgstr "" +"Máximo número de puntos que una tabla de area netflow puede mostrar. Cuanto " +"más alta la resolución mejor la ejecución. Se recomiendan los valores entre " +"50 y 100" + +#: ../../godmode/setup/setup_netflow.php:62 +msgid "" +"Disable the definition of custom filters in the live view. Only existing " +"filters can be used." +msgstr "" +"Desactive la definición de filtros personalizados en la vista activa. Sólo " +"los filtros existentes pueden usarse." + +#: ../../godmode/setup/setup_netflow.php:65 +msgid "Sets the maximum lifetime for netflow data in days." +msgstr "Fijar el tiempo máximo para los datos netflow en dias" + +#: ../../godmode/setup/gis_step_2.php:39 +msgid "Create new map connection" +msgstr "Crear nueva conexión de mapas" + +#: ../../godmode/setup/gis_step_2.php:58 +msgid "Edit map connection" +msgstr "Editar la conexión de mapas" + +#: ../../godmode/setup/gis_step_2.php:150 +msgid "Connection Name" +msgstr "Nombre de conexión" + +#: ../../godmode/setup/gis_step_2.php:150 +msgid "Descriptive name for the connection" +msgstr "Descripción para la conexión" + +#: ../../godmode/setup/gis_step_2.php:153 +msgid "Group that owns the connection" +msgstr "Grupo asignado a la conexión" + +#: ../../godmode/setup/gis_step_2.php:156 +msgid "Number of zoom levels" +msgstr "Número de niveles de Zoom" + +#: ../../godmode/setup/gis_step_2.php:160 +msgid "Default zoom level" +msgstr "Nivel de zoom por defecto" + +#: ../../godmode/setup/gis_step_2.php:160 +msgid "Zoom level used when the map is opened" +msgstr "Nivel de zoom por defecto cuando se abre el mapa" + +#: ../../godmode/setup/gis_step_2.php:163 +msgid "Basic configuration" +msgstr "Configuración básica" + +#: ../../godmode/setup/gis_step_2.php:168 +msgid "Open Street Maps" +msgstr "Open Street Maps" + +#: ../../godmode/setup/gis_step_2.php:169 +msgid "Google Maps" +msgstr "Google Maps" + +#: ../../godmode/setup/gis_step_2.php:170 +msgid "Static Image" +msgstr "Imagen estática" + +#: ../../godmode/setup/gis_step_2.php:172 +msgid "Please select the connection type" +msgstr "Tipo de conexión" + +#: ../../godmode/setup/gis_step_2.php:174 +msgid "Map connection type" +msgstr "Tipo de conexión de mapa" + +#: ../../godmode/setup/gis_step_2.php:210 +msgid "Tile Server URL" +msgstr "URL del servidor de «tiles»" + +#: ../../godmode/setup/gis_step_2.php:216 +msgid "Google Physical" +msgstr "Google Physical" + +#: ../../godmode/setup/gis_step_2.php:217 +msgid "Google Hybrid" +msgstr "Google Hybrid" + +#: ../../godmode/setup/gis_step_2.php:218 +msgid "Google Satelite" +msgstr "Google Satelite" + +#: ../../godmode/setup/gis_step_2.php:222 +msgid "Google Map Type" +msgstr "Tipo de mapa de Google" + +#: ../../godmode/setup/gis_step_2.php:226 +msgid "Google Maps Key" +msgstr "Key de google maps" + +#: ../../godmode/setup/gis_step_2.php:235 +msgid "Image URL" +msgstr "URL de Imagen" + +#: ../../godmode/setup/gis_step_2.php:239 +msgid "Corners of the area of the image" +msgstr "Esquinas del área de la imagen" + +#: ../../godmode/setup/gis_step_2.php:242 +msgid "Left" +msgstr "Izquierda" + +#: ../../godmode/setup/gis_step_2.php:244 +msgid "Bottom" +msgstr "Inferior" + +#: ../../godmode/setup/gis_step_2.php:248 +msgid "Right" +msgstr "Derecha" + +#: ../../godmode/setup/gis_step_2.php:250 +msgid "Top" +msgstr "Superior" + +#: ../../godmode/setup/gis_step_2.php:254 +msgid "Image Size" +msgstr "Tamaño de imagen" + +#: ../../godmode/setup/gis_step_2.php:259 +#: ../../godmode/events/event_responses.editor.php:106 +#: ../../godmode/reporting/visual_console_builder.wizard.php:137 +#: ../../godmode/reporting/graph_builder.main.php:141 +msgid "Height" +msgstr "Altura" + +#: ../../godmode/setup/gis_step_2.php:279 +msgid "" +"Preview to select the center of the map and the default position of an agent " +"without gis data" +msgstr "" +"Previsualización 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:280 +msgid "Load preview map" +msgstr "Previsualizar mapa" + +#: ../../godmode/setup/gis_step_2.php:289 +msgid "Map Center" +msgstr "Centro del mapa" + +#: ../../godmode/setup/gis_step_2.php:289 +msgid "Position to center the map when the map is opened" +msgstr "Posición para centrar el mapa cuando este es abierto" + +#: ../../godmode/setup/gis_step_2.php:290 +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:292 +msgid "Change in the map" +msgstr "Cambiar en el mapa" + +#: ../../godmode/setup/gis_step_2.php:292 +msgid "This selects what to change by clicking on the map" +msgstr "Seleccionar qué cambiar pinchando en el mapa" + +#: ../../godmode/setup/gis_step_2.php:353 +#: ../../godmode/setup/gis_step_2.php:446 +msgid "Center" +msgstr "Centro" + +#: ../../godmode/setup/gis_step_2.php:413 +msgid "Refresh preview map" +msgstr "Refrescar previsualización" + +#: ../../godmode/setup/setup_visuals.php:76 +msgid "This interval will affect to Visual Console pages" +msgstr "Este intervalo afectará a todas las páginas de la consola visual" + +#: ../../godmode/setup/setup_visuals.php:80 +msgid "Paginated module view" +msgstr "Vista del módulo paginada" + +#: ../../godmode/setup/setup_visuals.php:104 +msgid "Click to display lateral menus" +msgstr "Haz clic para mostrar el menú lateral" + +#: ../../godmode/setup/setup_visuals.php:105 +msgid "" +"When enabled, the lateral menus are shown when left clicking them, instead " +"of hovering over them" +msgstr "" +"Cuando está activo, el menú lateral se mostrará al hacer clic, en lugar de " +"mostrarse de forma automática al pasar por encima" + +#: ../../godmode/setup/setup_visuals.php:121 +msgid "Space between items in Service maps" +msgstr "Espacio entre nodos para el mapa de servicios" + +#: ../../godmode/setup/setup_visuals.php:127 +msgid "Text menu options always visible, don't hide" +msgstr "Menú siempre visible" + +#: ../../godmode/setup/setup_visuals.php:138 +msgid "Behaviour configuration" +msgstr "Configuración del comportamiento" + +#: ../../godmode/setup/setup_visuals.php:159 +msgid "Colors" +msgstr "Colores" + +#: ../../godmode/setup/setup_visuals.php:160 +msgid "Faces" +msgstr "Caras" + +#: ../../godmode/setup/setup_visuals.php:161 +msgid "Colors and text" +msgstr "Colores y texto" + +#: ../../godmode/setup/setup_visuals.php:169 +msgid "You can place your custom images into the folder images/backgrounds/" +msgstr "" +"Puedes poner tus propias imágenes en el directorio images/backgrounds/" + +#: ../../godmode/setup/setup_visuals.php:188 +msgid "Custom logo (header)" +msgstr "Logo personalizado (cabecera)" + +#: ../../godmode/setup/setup_visuals.php:207 +msgid "Custom logo (login)" +msgstr "Logo personalizado (login)" + +#: ../../godmode/setup/setup_visuals.php:224 +msgid "Disable logo in graphs" +msgstr "Deshabilitar el logo en las gráficas" + +#: ../../godmode/setup/setup_visuals.php:259 +msgid "Style configuration" +msgstr "Configuración de estilo" + +#: ../../godmode/setup/setup_visuals.php:275 +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." +msgstr "" +"Habilitando esto obtinen una etiqueta con el nombre del agente en los mapas " +"GIS. Si tiene muchos agentes en el mapa puede ser ilegible. Deshabilitado " +"por defecto." + +#: ../../godmode/setup/setup_visuals.php:287 +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" + +#: ../../godmode/setup/setup_visuals.php:296 +msgid "GIS configuration" +msgstr "Configuración GIS" + +#: ../../godmode/setup/setup_visuals.php:342 +msgid "" +"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." + +#: ../../godmode/setup/setup_visuals.php:343 +#: ../../godmode/setup/setup_visuals.php:351 +msgid "Small:" +msgstr "Pequeño:" + +#: ../../godmode/setup/setup_visuals.php:345 +#: ../../godmode/setup/setup_visuals.php:353 +msgid "Normal:" +msgstr "Normal:" + +#: ../../godmode/setup/setup_visuals.php:350 +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 modulo sea muy largo, en algunos lugares de la consola, " +"será necesario truncar su longitud a N caracteres." + +#: ../../godmode/setup/setup_visuals.php:357 +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." + +#: ../../godmode/setup/setup_visuals.php:362 +msgid "" +"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." + +#: ../../godmode/setup/setup_visuals.php:367 +msgid "Show unit along with value in reports" +msgstr "Mostrar la unidad junto con el valor en los informes" + +#: ../../godmode/setup/setup_visuals.php:368 +msgid "This enabling this, max, min and avg values will be shown with units." +msgstr "" +"Si activas esta opción, el máximo, mínimo y la media aparecerá con unidades" + +#: ../../godmode/setup/setup_visuals.php:376 +msgid "Font and Text configuration" +msgstr "Configuración Fuente y Texto" + +#: ../../godmode/setup/setup_visuals.php:431 +msgid "Graph resolution (1-low, 5-high)" +msgstr "Resolución gráfica (1-baja, 5-alta)" + +#: ../../godmode/setup/setup_visuals.php:445 +msgid "" +"Number of decimals shown in reports. It must be a number between 0 and 5" +msgstr "" +"Número de decimales a mostrar en los informes. Debe ser un entero entre 0 y 5" + +#: ../../godmode/setup/setup_visuals.php:470 +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á" + +#: ../../godmode/setup/setup_visuals.php:480 +msgid "Type of module charts" +msgstr "Tipo de gráficas de módulos" + +#: ../../godmode/setup/setup_visuals.php:489 +msgid "Type of interface charts" +msgstr "Tipo de las gráficas de interfaces" + +#: ../../godmode/setup/setup_visuals.php:498 +msgid "Show only average" +msgstr "Mostrar solo la media" + +#: ../../godmode/setup/setup_visuals.php:499 +msgid "Hide Max and Min values in graphs" +msgstr "Ocultar el máximo y el mínimo en las gráficas" + +#: ../../godmode/setup/setup_visuals.php:506 +#: ../../godmode/reporting/visual_console_builder.wizard.php:218 +msgid "Percentile" +msgstr "Percentil" + +#: ../../godmode/setup/setup_visuals.php:507 +msgid "Show percentile 95 in graphs" +msgstr "Mostrar el percentil 95 en las gráficas" + +#: ../../godmode/setup/setup_visuals.php:512 +msgid "Charts configuration" +msgstr "Configuración de gráficas" + +#: ../../godmode/setup/setup_visuals.php:528 +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" + +#: ../../godmode/setup/setup_visuals.php:533 +msgid "Show report info with description" +msgstr "Mostrar la información del informe con la descripción" + +#: ../../godmode/setup/setup_visuals.php:535 +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." + +#: ../../godmode/setup/setup_visuals.php:543 +msgid "Custom report front page" +msgstr "Portada de informe personalizado" + +#: ../../godmode/setup/setup_visuals.php:545 +msgid "" +"Custom report front page. It will be applied to all reports and templates by " +"default." +msgstr "" +"Portada de informe personalizado. Será aplicada por defecto a todos los " +"informes y plantillas" + +#: ../../godmode/setup/setup_visuals.php:576 +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." +msgstr "" +"El directorio de logotipos personalizados está en tu www Pandora consola en " +"\"images / custom_logo\". Puede cargar más archivos (sólo JPEG) en la " +"herramienta de carga de la consola." + +#: ../../godmode/setup/setup_visuals.php:614 +msgid "Show QR Code icon in the header" +msgstr "Mostrar icono código QR en la cabecera" + +#: ../../godmode/setup/setup_visuals.php:626 +msgid "Custom directory where the graphviz binaries are stored." +msgstr "" +"Directorio personalizado donde se almacenan los ficheros binarios de graphviz" + +#: ../../godmode/setup/setup_visuals.php:639 +msgid "Show only the group name" +msgstr "Mostrar solo el nombre del grupo" + +#: ../../godmode/setup/setup_visuals.php:652 +msgid "Example" +msgstr "Ejemplo" + +#: ../../godmode/setup/setup_visuals.php:665 +msgid "Comparation in rollover" +msgstr "Fecha en comparación" + +#: ../../godmode/setup/setup_visuals.php:667 +msgid "Timestamp in rollover" +msgstr "Fecha literal" + +#: ../../godmode/setup/setup_visuals.php:675 +msgid "Custom values post process" +msgstr "Valores personalizados para postprocesado" + +#: ../../godmode/setup/setup_visuals.php:689 +msgid "Delete custom values" +msgstr "Eliminar valores personalizados" + +#: ../../godmode/setup/setup_visuals.php:709 +msgid "Interval values" +msgstr "Valores del intervalo" + +#: ../../godmode/setup/setup_visuals.php:717 +msgid "Add new custom value to intervals" +msgstr "Añadir nuevo valor personalizado para intervalos" + +#: ../../godmode/setup/setup_visuals.php:734 +msgid "Other configuration" +msgstr "Otra configuración" + +#: ../../godmode/setup/setup_visuals.php:922 +#: ../../godmode/setup/setup_visuals.php:962 +msgid "Logo preview" +msgstr "Logo de previsualización" + +#: ../../godmode/setup/setup_visuals.php:1002 +msgid "Background preview" +msgstr "Vista previa del fondo" + +#: ../../godmode/setup/setup_visuals.php:1046 +msgid "Gis icons preview" +msgstr "Vista previa de los iconos GIS" + +#: ../../godmode/setup/setup_visuals.php:1101 +msgid "Status set preview" +msgstr "Fijar el estado de la vista previa." + +#: ../../godmode/setup/os.list.php:75 +msgid "There are no defined operating systems" +msgstr "No hay sistemas operativos definidos" + +#: ../../godmode/setup/os.list.php:81 +msgid "Create OS" +msgstr "Crear SO" + +#: ../../godmode/setup/setup.php:145 +msgid "Correct update the setup options" +msgstr "Actualización correcta de las opciones de configuración" + +#: ../../godmode/setup/setup_auth.php:50 +msgid "" +"Enable this option if you want to fallback to local authentication when " +"remote (ldap etc...) authentication failed." +msgstr "" +"Activa esta opción si quieres autenticación local si falla la autenticación " +"remota (ldap, etc)" + +#: ../../godmode/setup/setup_auth.php:129 +msgid "" +"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 " +"autenticación con sus cuentas." + +#: ../../godmode/setup/setup_auth.php:141 +msgid "Session timeout (mins)" +msgstr "Fin de la sesión" + +#: ../../godmode/setup/setup_auth.php:142 +#: ../../godmode/users/configure_user.php:548 +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 desea una sesión permanente ponga -1 en " +"este campo." + +#: ../../godmode/setup/setup_auth.php:177 +msgid "Local Pandora FMS" +msgstr "Pandora FMS local" + +#: ../../godmode/setup/setup_auth.php:177 +msgid "ldap" +msgstr "LDAP" + +#: ../../godmode/setup/os.builder.php:34 +#: ../../godmode/reporting/visual_console_builder.data.php:102 +msgid "Name:" +msgstr "Nombre:" + +#: ../../godmode/events/event_filter.php:167 +#: ../../godmode/netflow/nf_edit.php:162 +msgid "There are no defined filters" +msgstr "No hay filtros definidos" + +#: ../../godmode/events/custom_events.php:131 +msgid "Show event fields" +msgstr "Mostrar campos de eventos" + +#: ../../godmode/events/custom_events.php:133 +msgid "Load default event fields" +msgstr "Cargar campos de evento por defecto" + +#: ../../godmode/events/custom_events.php:133 +msgid "Default event fields will be loaded. Do you want to continue?" +msgstr "Se cargarán campos de evento por defecto. ¿Desea continuar?" + +#: ../../godmode/events/custom_events.php:181 +msgid "Fields available" +msgstr "Campos disponibles" + +#: ../../godmode/events/custom_events.php:185 +msgid "Add fields to select" +msgstr "Añadir campos para seleccionar" + +#: ../../godmode/events/custom_events.php:189 +msgid "Delete fields to select" +msgstr "Eliminar campos para seleccionar" + +#: ../../godmode/events/custom_events.php:193 +msgid "Fields selected" +msgstr "Campos seleccionados" + +#: ../../godmode/events/event_edit_filter.php:166 +#: ../../godmode/netflow/nf_edit_form.php:110 +#: ../../godmode/modules/manage_nc_groups.php:83 +msgid "Not updated. Blank name" +msgstr "No actualizado. Nombre en blanco" + +#: ../../godmode/events/event_edit_filter.php:203 +msgid "Update Filter" +msgstr "Actualizar Filtro" + +#: ../../godmode/events/event_edit_filter.php:206 +msgid "Create Filter" +msgstr "Crear filtro" + +#: ../../godmode/events/event_edit_filter.php:219 +msgid "Save in group" +msgstr "Guardar en grupo" + +#: ../../godmode/events/event_edit_filter.php:220 +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:286 +msgid "Choose between the users who have validated an event. " +msgstr "Escoja entre los usuarios que tienen validado un evento " + +#: ../../godmode/events/event_responses.editor.php:63 +msgid "Edit event responses" +msgstr "Editar respuestas de eventos" + +#: ../../godmode/events/event_responses.editor.php:93 +msgid "For Command type Modal Window mode is enforced" +msgstr "Para tipo comando , se aplica el modo Modal Window" + +#: ../../godmode/events/event_responses.editor.php:94 +msgid "Modal window" +msgstr "Modal window" + +#: ../../godmode/events/event_responses.editor.php:94 +msgid "New window" +msgstr "Nueva ventana" + +#: ../../godmode/events/events.php:42 +#: ../../godmode/netflow/nf_edit_form.php:55 +msgid "Filter list" +msgstr "Lista de filtros" + +#: ../../godmode/events/events.php:65 ../../godmode/events/events.php:80 +#: ../../godmode/reporting/reporting_builder.list_items.php:179 +msgid "Filters" +msgstr "Filtros" + +#: ../../godmode/events/event_responses.list.php:38 +msgid "No responses found" +msgstr "No se encontraron respuestas" + +#: ../../godmode/events/event_responses.list.php:76 +msgid "Create response" +msgstr "Crear respuesta" + +#: ../../godmode/events/event_responses.php:52 +msgid "Response added succesfully" +msgstr "Respuesta añadida con éxito" + +#: ../../godmode/events/event_responses.php:55 +msgid "Response cannot be added" +msgstr "La respuesta no se puede añadir" + +#: ../../godmode/events/event_responses.php:81 +msgid "Response updated succesfully" +msgstr "Repuesta actualizada con éxito" + +#: ../../godmode/events/event_responses.php:84 +msgid "Response cannot be updated" +msgstr "La respuesta no se puede actualizar" + +#: ../../godmode/events/event_responses.php:93 +msgid "Response deleted succesfully" +msgstr "Respuesta eliminada con éxito" + +#: ../../godmode/events/event_responses.php:96 +msgid "Response cannot be deleted" +msgstr "La respuesta no se puede eliminar" + +#: ../../godmode/massive/massive_add_action_alerts.php:96 +msgid "No alerts selected" +msgstr "No se seleccionó ninguna alerta" + +#: ../../godmode/massive/massive_add_action_alerts.php:120 +msgid "No actions selected" +msgstr "No hay acciones seleccionadas" + +#: ../../godmode/massive/massive_add_action_alerts.php:154 +#: ../../godmode/massive/massive_add_alerts.php:154 +#: ../../godmode/massive/massive_edit_agents.php:210 +#: ../../godmode/massive/massive_delete_action_alerts.php:154 +#: ../../godmode/massive/massive_enable_disable_alerts.php:138 +#: ../../godmode/massive/massive_delete_agents.php:108 +#: ../../godmode/massive/massive_standby_alerts.php:139 +#: ../../godmode/massive/massive_delete_modules.php:441 +#: ../../godmode/massive/massive_copy_modules.php:74 +#: ../../godmode/massive/massive_copy_modules.php:185 +#: ../../godmode/massive/massive_edit_modules.php:285 +#: ../../godmode/massive/massive_delete_alerts.php:215 +msgid "Group recursion" +msgstr "Recursión de grupos" + +#: ../../godmode/massive/massive_add_action_alerts.php:157 +#: ../../godmode/massive/massive_delete_action_alerts.php:158 +msgid "Agents with templates" +msgstr "Agentes con plantillas" + +#: ../../godmode/massive/massive_add_action_alerts.php:168 +#: ../../godmode/massive/massive_add_alerts.php:167 +#: ../../godmode/massive/massive_delete_action_alerts.php:169 +#: ../../godmode/massive/massive_delete_modules.php:499 +#: ../../godmode/massive/massive_edit_modules.php:346 +#: ../../godmode/massive/massive_delete_alerts.php:227 +msgid "When select agents" +msgstr "Al seleccionar agentes" + +#: ../../godmode/massive/massive_add_action_alerts.php:172 +#: ../../godmode/massive/massive_delete_action_alerts.php:173 +#: ../../godmode/massive/massive_delete_modules.php:501 +#: ../../godmode/massive/massive_edit_modules.php:350 +msgid "Show unknown and not init modules" +msgstr "Mostrar módulos desconocidos y no inicializados" + +#: ../../godmode/massive/massive_add_action_alerts.php:228 +#: ../../godmode/massive/massive_add_alerts.php:213 +#: ../../godmode/massive/massive_edit_agents.php:553 +#: ../../godmode/massive/massive_delete_agents.php:163 +#: ../../godmode/massive/massive_delete_modules.php:727 +#: ../../godmode/massive/massive_copy_modules.php:424 +#: ../../godmode/massive/massive_edit_modules.php:653 +#: ../../godmode/massive/massive_delete_alerts.php:266 +msgid "" +"Unsucessful sending the data, please contact with your administrator or make " +"with less elements." +msgstr "" +"El envio de datos no ha tenido éxito, por favor contacte con su " +"administrador o hágalo con menos elementos" + +#: ../../godmode/massive/massive_add_alerts.php:78 +#: ../../godmode/massive/massive_delete_alerts.php:78 +msgid "No alert selected" +msgstr "No se seleccionó ninguna alerta" + +#: ../../godmode/massive/massive_edit_agents.php:97 +msgid "No values changed" +msgstr "No se han cambiado valores" + +#: ../../godmode/massive/massive_edit_agents.php:126 +msgid "Configuration files deleted successfully" +msgstr "Los archivos de configuracion se borraron satisfactoriamente" + +#: ../../godmode/massive/massive_edit_agents.php:127 +msgid "Configuration files cannot be deleted" +msgstr "Los archivos de configuración no se pudieron borrar" + +#: ../../godmode/massive/massive_edit_agents.php:185 +msgid "Agents updated successfully" +msgstr "Los agentes se actualizaron correctamente" + +#: ../../godmode/massive/massive_edit_agents.php:186 +msgid "Agents cannot be updated" +msgstr "Los agentes no se pudieron actualizar" + +#: ../../godmode/massive/massive_edit_agents.php:225 +#: ../../godmode/massive/massive_delete_agents.php:123 +msgid "Show agents" +msgstr "Mostrar agentes" + +#: ../../godmode/massive/massive_edit_agents.php:291 +#: ../../godmode/agentes/agent_manager.php:266 +msgid "Cascade protection" +msgstr "Protección en cascada" + +#: ../../godmode/massive/massive_edit_agents.php:294 +#: ../../godmode/massive/massive_edit_agents.php:299 +#: ../../godmode/massive/massive_edit_agents.php:303 +#: ../../godmode/massive/massive_edit_agents.php:307 +#: ../../godmode/massive/massive_edit_agents.php:318 +#: ../../godmode/massive/massive_edit_agents.php:357 +#: ../../godmode/massive/massive_edit_agents.php:363 +#: ../../godmode/massive/massive_edit_agents.php:402 +#: ../../godmode/massive/massive_edit_agents.php:411 +#: ../../godmode/massive/massive_edit_agents.php:418 +#: ../../godmode/massive/massive_edit_modules.php:406 +#: ../../godmode/massive/massive_edit_modules.php:451 +#: ../../godmode/massive/massive_edit_modules.php:466 +#: ../../godmode/massive/massive_edit_modules.php:470 +#: ../../godmode/massive/massive_edit_modules.php:490 +#: ../../godmode/massive/massive_edit_modules.php:496 +#: ../../godmode/massive/massive_edit_modules.php:504 +#: ../../godmode/massive/massive_edit_modules.php:508 +#: ../../godmode/massive/massive_edit_modules.php:511 +#: ../../godmode/massive/massive_edit_modules.php:524 +#: ../../godmode/massive/massive_edit_modules.php:537 +#: ../../godmode/massive/massive_edit_modules.php:545 +#: ../../godmode/massive/massive_edit_modules.php:558 +#: ../../godmode/massive/massive_edit_modules.php:566 +#: ../../godmode/massive/massive_edit_modules.php:572 +#: ../../godmode/massive/massive_edit_modules.php:584 +#: ../../godmode/massive/massive_edit_modules.php:603 +msgid "No change" +msgstr "Sin cambios" + +#: ../../godmode/massive/massive_edit_agents.php:352 +#: ../../godmode/groups/configure_group.php:178 +#: ../../godmode/agentes/module_manager_editor_common.php:361 +#: ../../godmode/agentes/agent_manager.php:323 +msgid "Custom ID" +msgstr "ID Personalizado" + +#: ../../godmode/massive/massive_edit_agents.php:356 +#: ../../godmode/agentes/agent_manager.php:327 +msgid "Module definition" +msgstr "Definición de módulos" + +#: ../../godmode/massive/massive_edit_agents.php:358 +#: ../../godmode/agentes/agent_manager.php:329 +msgid "Learning mode" +msgstr "Modo de aprendizaje" + +#: ../../godmode/massive/massive_edit_agents.php:359 +#: ../../godmode/agentes/agent_manager.php:332 +msgid "Normal mode" +msgstr "Modo normal" + +#: ../../godmode/massive/massive_edit_agents.php:365 +#: ../../godmode/agentes/agent_manager.php:343 +msgid "Active" +msgstr "Activo" + +#: ../../godmode/massive/massive_edit_agents.php:371 +msgid "Delete available remote configurations" +msgstr "Borrar las configuraciones remotas disponibles" + +#: ../../godmode/massive/massive_edit_agents.php:375 +#: ../../godmode/agentes/agent_manager.php:350 +#: ../../godmode/agentes/agent_manager.php:372 +msgid "Not available" +msgstr "No disponible" + +#: ../../godmode/massive/massive_edit_agents.php:401 +#: ../../godmode/agentes/agent_manager.php:381 +msgid "Agent icon" +msgstr "Icono de agente" + +#: ../../godmode/massive/massive_edit_agents.php:403 +msgid "Without status" +msgstr "Sin estatus" + +#: ../../godmode/massive/massive_edit_agents.php:406 +msgid "Bad" +msgstr "Mal" + +#: ../../godmode/massive/massive_edit_agents.php:410 +#: ../../godmode/agentes/agent_conf_gis.php:78 +#: ../../godmode/agentes/agent_manager.php:410 +msgid "Ignore new GIS data:" +msgstr "Ignorar nuevos datos GIS" + +#: ../../godmode/massive/massive_edit_agents.php:417 +#: ../../godmode/agentes/agent_manager.php:425 +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:446 +#: ../../godmode/agentes/agent_manager.php:448 +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" + +#: ../../godmode/massive/massive_edit_agents.php:448 +#: ../../godmode/agentes/agent_manager.php:450 +msgid "The format is: [url='url to navigate']'text to show'[/url]" +msgstr "El formato es: [url='url para navegar']'texto para mostrar'[/url]" + +#: ../../godmode/massive/massive_edit_agents.php:450 +#: ../../godmode/agentes/agent_manager.php:452 +msgid "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" +msgstr "e.g.: [url=pandorafms.org]Comunidad de Pandora FMS[/url]" + +#: ../../godmode/massive/massive_delete_action_alerts.php:56 +msgid "Could not be deleted. No agents selected" +msgstr "No se puede borrar. Ningún agente seleccionado" + +#: ../../godmode/massive/massive_delete_action_alerts.php:81 +msgid "Could not be deleted. No alerts selected" +msgstr "No se puede borrar. No hay alertas seleccionadas" + +#: ../../godmode/massive/massive_delete_action_alerts.php:124 +msgid "Could not be deleted. No action selected" +msgstr "No se puede eliminar. No hay acciones seleccionadas" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:154 +msgid "Enabled alerts" +msgstr "Alertas activadas" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:154 +#: ../../godmode/massive/massive_enable_disable_alerts.php:171 +#: ../../godmode/massive/massive_standby_alerts.php:154 +#: ../../godmode/massive/massive_standby_alerts.php:171 +msgid "Format" +msgstr "Formato" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:165 +msgid "Disable selected alerts" +msgstr "Desactivar alertas seleccionadas" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:169 +msgid "Enable selected alerts" +msgstr "Activar alertas seleccionadas" + +#: ../../godmode/massive/massive_enable_disable_alerts.php:171 +msgid "Disabled alerts" +msgstr "Deshabilitar alertas" + +#: ../../godmode/massive/massive_operations.php:36 +msgid "Bulk alert add" +msgstr "Añadir alerta masiva" + +#: ../../godmode/massive/massive_operations.php:37 +msgid "Bulk alert delete" +msgstr "Eliminar alerta masiva" + +#: ../../godmode/massive/massive_operations.php:38 +msgid "Bulk alert actions add" +msgstr "Añadir acciones de alerta masiva" + +#: ../../godmode/massive/massive_operations.php:39 +msgid "Bulk alert actions delete" +msgstr "Eliminar acciones de alerta masiva" + +#: ../../godmode/massive/massive_operations.php:40 +msgid "Bulk alert enable/disable" +msgstr "Habilitar/Deshabilitar alerta masiva" + +#: ../../godmode/massive/massive_operations.php:41 +msgid "Bulk alert setting standby" +msgstr "Configuración de espera de alertas masiva" + +#: ../../godmode/massive/massive_operations.php:44 +msgid "Bulk agent edit" +msgstr "Edición agentes masiva" + +#: ../../godmode/massive/massive_operations.php:45 +msgid "Bulk agent delete" +msgstr "Eliminar agentes masivamente" + +#: ../../godmode/massive/massive_operations.php:49 +msgid "Bulk profile add" +msgstr "Añadir perfiles masivamente" + +#: ../../godmode/massive/massive_operations.php:50 +msgid "Bulk profile delete" +msgstr "Eliminar perfiles masivamente" + +#: ../../godmode/massive/massive_operations.php:57 +msgid "Bulk module delete" +msgstr "Eliminar módulos masivamente" + +#: ../../godmode/massive/massive_operations.php:58 +msgid "Bulk module edit" +msgstr "Editar módulos masivamente" + +#: ../../godmode/massive/massive_operations.php:59 +msgid "Bulk module copy" +msgstr "Copiar módulos masivamente" + +#: ../../godmode/massive/massive_operations.php:62 +msgid "Bulk plugin edit" +msgstr "Editar plugin masivamente" + +#: ../../godmode/massive/massive_operations.php:215 +msgid "Massive operations" +msgstr "Operaciones masivas" + +#: ../../godmode/massive/massive_operations.php:223 +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 necesita una correcta " +"configuración de los parámetros de timeout. Por favor, abra su archivo de " +"configuración PHP (php.ini) por ejemplo: sudo vi " +"/etc/php5/apache2/php.ini;
    Y fije sus parámetros de timeout en un " +"valor correcto:
    max_execution_time = 0 y max_input_time = -" +"1" + +#: ../../godmode/massive/massive_operations.php:239 +msgid "Please wait..." +msgstr "Por favor, espere..." + +#: ../../godmode/massive/massive_operations.php:276 +msgid "The blank fields will not be updated" +msgstr "Los campos en blanco no se actualizarán" + +#: ../../godmode/massive/massive_edit_plugins.php:151 +msgid "Error retrieving the plugin macros" +msgstr "Error al recuperar las macros de plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:158 +msgid "Error retrieving the modified macros" +msgstr "Error al recuperar las macros modificadas" + +#: ../../godmode/massive/massive_edit_plugins.php:172 +msgid "Error retrieving the module plugin macros" +msgstr "Error al recuperar las macros del módulo de plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:190 +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:224 +msgid "Error building the new macros" +msgstr "Error al construir las nuevas macros" + +#: ../../godmode/massive/massive_edit_plugins.php:253 +#, php-format +msgid "%d modules updated" +msgstr "%d módulos actualizados" + +#: ../../godmode/massive/massive_edit_plugins.php:272 +msgid "There are not registered plugins" +msgstr "No hay plugins registrados" + +#: ../../godmode/massive/massive_edit_plugins.php:421 +msgid "Invalid plugin data" +msgstr "Dato de plugin inválido" + +#: ../../godmode/massive/massive_edit_plugins.php:528 +msgid "Clear" +msgstr "Vaciar" + +#: ../../godmode/massive/massive_edit_plugins.php:556 +msgid "Invalid macros array" +msgstr "Array de macros inválida" + +#: ../../godmode/massive/massive_edit_plugins.php:581 +msgid "Multiple values" +msgstr "Valores múltiples" + +#: ../../godmode/massive/massive_edit_plugins.php:613 +#: ../../godmode/massive/massive_edit_plugins.php:750 +#: ../../godmode/massive/massive_edit_plugins.php:766 +msgid "Invalid agents array" +msgstr "Array de agentes inválida" + +#: ../../godmode/massive/massive_edit_plugins.php:629 +msgid "Invalid agent element" +msgstr "Elemento de agente inválido" + +#: ../../godmode/massive/massive_edit_plugins.php:640 +msgid "Invalid modules array" +msgstr "Array de módulos inválido" + +#: ../../godmode/massive/massive_edit_plugins.php:668 +msgid "Invalid module element" +msgstr "Elemento de módulo inválido" + +#: ../../godmode/massive/massive_edit_plugins.php:876 +msgid "There are no modules using this plugin" +msgstr "No hay módulos usando este plugin" + +#: ../../godmode/massive/massive_edit_plugins.php:955 +msgid "There was a problem loading the module plugin macros data" +msgstr "" +"Hubo un problema al cargar los datos de las macros del módulo de plugin" + +#: ../../godmode/massive/massive_delete_agents.php:57 #, php-format msgid "" -"The followings elements groups/profiles/user profiles were created/updated " -"sucessfully (%d/%d/%d)" +"There was an error deleting the agent, the operation has been cancelled " +"Could not delete agent %s" msgstr "" -"Los perfiles de los siguientes elementos grupos/perfiles/usuarios han sido " -"actualizados correctamente (%d/%d/%d)" +"Se produjo un error al eliminar el agente. La operación ha sido cancelada. " +"No se pudo eliminar el agente %s" -#: ../../enterprise/meta/advanced/synchronizing.user.php:510 -msgid "Synchronizing Users" -msgstr "Sincronizar usuarios" +#: ../../godmode/massive/massive_delete_agents.php:63 +#, php-format +msgid "Successfully deleted (%s)" +msgstr "Borrado correctamente (%s)" -#: ../../enterprise/meta/advanced/synchronizing.user.php:542 -msgid "Profile mode" -msgstr "Modo de perfil" +#: ../../godmode/massive/massive_standby_alerts.php:154 +msgid "Not standby alerts" +msgstr "Alertas sin standby" -#: ../../enterprise/meta/advanced/synchronizing.user.php:542 -msgid "Profile synchronization mode." -msgstr "Modo de perfil de sincronización" +#: ../../godmode/massive/massive_standby_alerts.php:165 +#: ../../godmode/massive/massive_standby_alerts.php:169 +msgid "Set standby selected alerts" +msgstr "Poner en standby las alertas seleccionadas" -#: ../../enterprise/meta/advanced/synchronizing.user.php:543 -msgid "New profile" -msgstr "Nuevo perfil" +#: ../../godmode/massive/massive_standby_alerts.php:171 +msgid "Standby alerts" +msgstr "Alertas en standby" -#: ../../enterprise/meta/advanced/synchronizing.user.php:545 +#: ../../godmode/massive/massive_delete_modules.php:56 +msgid "No module selected" +msgstr "No se seleccionó ningún módulo" + +#: ../../godmode/massive/massive_delete_modules.php:230 msgid "" -"The selected user profile will be added to the selected users into the target" +"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:396 +#: ../../godmode/massive/massive_edit_modules.php:239 +msgid "Selection mode" +msgstr "Modo de seleccion" + +#: ../../godmode/massive/massive_delete_modules.php:397 +#: ../../godmode/massive/massive_edit_modules.php:240 +msgid "Select modules first " +msgstr "Seleccionar primero los módulos " + +#: ../../godmode/massive/massive_delete_modules.php:399 +#: ../../godmode/massive/massive_edit_modules.php:242 +msgid "Select agents first " +msgstr "Seleccionar primero los agentes " + +#: ../../godmode/massive/massive_delete_modules.php:405 +#: ../../godmode/massive/massive_edit_modules.php:249 +msgid "Module type" +msgstr "Tipo módulo" + +#: ../../godmode/massive/massive_delete_modules.php:414 +#: ../../godmode/massive/massive_edit_modules.php:258 +msgid "Select all modules of this type" +msgstr "Seleccionar todos los módulos de este tipo" + +#: ../../godmode/massive/massive_delete_modules.php:435 +#: ../../godmode/massive/massive_edit_modules.php:279 +msgid "Agent group" +msgstr "Grupo de agentes" + +#: ../../godmode/massive/massive_delete_modules.php:443 +#: ../../godmode/massive/massive_edit_modules.php:287 +msgid "Select all modules of this group" +msgstr "Seleccionar todos los modulos de este grupo" + +#: ../../godmode/massive/massive_delete_modules.php:464 +#: ../../godmode/massive/massive_edit_modules.php:293 +msgid "Module Status" +msgstr "Estado de módulo" + +#: ../../godmode/massive/massive_delete_modules.php:483 +#: ../../godmode/massive/massive_edit_modules.php:311 +msgid "When select modules" +msgstr "Cuando se seleccionan módulos" + +#: ../../godmode/massive/massive_delete_modules.php:486 +#: ../../godmode/massive/massive_edit_modules.php:314 +msgid "Show common agents" +msgstr "Mostrar agentes comunes" + +#: ../../godmode/massive/massive_delete_modules.php:487 +#: ../../godmode/massive/massive_edit_modules.php:315 +msgid "Show all agents" +msgstr "Mostrar todos los agentes" + +#: ../../godmode/massive/massive_copy_modules.php:136 +msgid "Copy modules" +msgstr "Copiar módulos" + +#: ../../godmode/massive/massive_copy_modules.php:141 +msgid "Copy alerts" +msgstr "Copiar alertas" + +#: ../../godmode/massive/massive_copy_modules.php:150 +msgid "No modules for this agent" +msgstr "No existen módulos para este agente" + +#: ../../godmode/massive/massive_copy_modules.php:159 +msgid "No alerts for this agent" +msgstr "Ninguna alerta para este agente" + +#: ../../godmode/massive/massive_copy_modules.php:168 +msgid "Targets" +msgstr "Destinos" + +#: ../../godmode/massive/massive_copy_modules.php:217 +msgid "To agent(s)" +msgstr "A los agentes" + +#: ../../godmode/massive/massive_copy_modules.php:442 +msgid "No operation selected" +msgstr "No se seleccionó ninguna operación" + +#: ../../godmode/massive/massive_delete_profiles.php:61 +msgid "Not deleted. You must select an existing user" +msgstr "No borrado. Debe seleccionar un usuario existente" + +#: ../../godmode/massive/massive_delete_profiles.php:87 +msgid "Profiles deleted successfully" +msgstr "Perfiles borrados satisfactoriamente" + +#: ../../godmode/massive/massive_delete_profiles.php:88 +msgid "Profiles cannot be deleted" +msgstr "No se pudieron borrar los perfiles" + +#: ../../godmode/massive/massive_edit_modules.php:324 +msgid "Agent Status" +msgstr "Estado de agente" + +#: ../../godmode/massive/massive_edit_modules.php:357 +#: ../../godmode/modules/manage_network_components_form_common.php:107 +msgid "Dynamic Interval" +msgstr "Intervalo dinámico" + +#: ../../godmode/massive/massive_edit_modules.php:359 +msgid "Dynamic Min." +msgstr "Mínimo dinámico" + +#: ../../godmode/massive/massive_edit_modules.php:362 +#: ../../godmode/modules/manage_network_components_form_common.php:113 +msgid "Dynamic Max." +msgstr "Dinámico máximo." + +#: ../../godmode/massive/massive_edit_modules.php:365 +#: ../../godmode/modules/manage_network_components_form_common.php:115 +msgid "Dynamic Two Tailed: " +msgstr "El segundo rango dínámico falla: " + +#: ../../godmode/massive/massive_edit_modules.php:400 +#: ../../godmode/massive/massive_edit_modules.php:446 +#: ../../godmode/modules/manage_network_components_form_common.php:128 +#: ../../godmode/modules/manage_network_components_form_common.php:145 +#: ../../godmode/agentes/module_manager_editor_common.php:292 +#: ../../godmode/agentes/module_manager_editor_common.php:314 +msgid "Inverse interval" +msgstr "Intervalo inverso" + +#: ../../godmode/massive/massive_edit_modules.php:479 +msgid "SMNP community" +msgstr "Comunidad SMNP" + +#: ../../godmode/massive/massive_edit_modules.php:485 +#: ../../godmode/agentes/module_manager_editor_network.php:86 +msgid "Force primary key" +msgstr "Forzar clave primaria" + +#: ../../godmode/massive/massive_edit_modules.php:494 +#: ../../godmode/modules/manage_network_components_form_network.php:40 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:356 +#: ../../godmode/agentes/module_manager_editor_network.php:132 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:717 +msgid "SNMP version" +msgstr "Versión SNMP" + +#: ../../godmode/massive/massive_edit_modules.php:501 +#: ../../godmode/massive/massive_edit_modules.php:505 +#: ../../godmode/agentes/module_manager_editor_network.php:219 +#: ../../godmode/agentes/module_manager_editor_network.php:229 +msgid "The pass length must be eight character minimum." +msgstr "La longitud de la password debe ser mínimo de ocho caracteres" + +#: ../../godmode/massive/massive_edit_modules.php:526 +#: ../../godmode/modules/manage_network_components_form_wmi.php:48 +#: ../../godmode/agentes/module_manager_editor_wmi.php:54 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:261 +msgid "Username" +msgstr "Usuario" + +#: ../../godmode/massive/massive_edit_modules.php:532 +#: ../../godmode/agentes/module_manager_editor_common.php:427 +msgid "Export target" +msgstr "Servidor de exportación" + +#: ../../godmode/massive/massive_edit_modules.php:543 +#: ../../godmode/modules/manage_network_components_form_common.php:148 +#: ../../godmode/agentes/module_manager_editor_common.php:318 +msgid "FF threshold" +msgstr "Umbral Flip-Flop" + +#: ../../godmode/massive/massive_edit_modules.php:545 +#: ../../godmode/massive/massive_edit_modules.php:547 +#: ../../godmode/modules/manage_network_components_form_common.php:153 +#: ../../godmode/agentes/module_manager_editor_common.php:324 +msgid "Each state changing" +msgstr "Cada cambio de estado" + +#: ../../godmode/massive/massive_edit_modules.php:545 +#: ../../godmode/massive/massive_edit_modules.php:546 +#: ../../godmode/modules/manage_network_components_form_common.php:150 +#: ../../godmode/agentes/module_manager_editor_common.php:321 +msgid "All state changing" +msgstr "Todo cambio de estado" + +#: ../../godmode/massive/massive_edit_modules.php:548 +#: ../../godmode/modules/manage_network_components_form_common.php:154 +#: ../../godmode/agentes/module_manager_editor_common.php:325 +msgid "To normal" +msgstr "A normal" + +#: ../../godmode/massive/massive_edit_modules.php:549 +#: ../../godmode/modules/manage_network_components_form_common.php:156 +#: ../../godmode/agentes/module_manager_editor_common.php:328 +msgid "To warning" +msgstr "A advertencia" + +#: ../../godmode/massive/massive_edit_modules.php:550 +#: ../../godmode/modules/manage_network_components_form_common.php:158 +#: ../../godmode/agentes/module_manager_editor_common.php:331 +msgid "To critical" +msgstr "A crítico" + +#: ../../godmode/massive/massive_edit_modules.php:552 +#: ../../godmode/agentes/module_manager_editor_common.php:456 +msgid "FF interval" +msgstr "Intervalo FF" + +#: ../../godmode/massive/massive_edit_modules.php:553 +#: ../../godmode/agentes/module_manager_editor_common.php:459 +msgid "Module execution flip flop time interval (in secs)." msgstr "" -"El perfil de usuario seleccionado se añadirá a los usuarios seleccionados en " -"el objetivo" +"Tiempo del intervalo de FlipFlip de ejecución del modulo (en segundos)" -#: ../../enterprise/meta/advanced/synchronizing.user.php:546 -msgid "Copy profile" -msgstr "Copiar perfil" +#: ../../godmode/massive/massive_edit_modules.php:554 +#: ../../godmode/agentes/module_manager_editor_common.php:462 +msgid "FF timeout" +msgstr "FF tiempo de espera" -#: ../../enterprise/meta/advanced/synchronizing.user.php:548 +#: ../../godmode/massive/massive_edit_modules.php:555 +#: ../../godmode/agentes/module_manager_editor_common.php:468 msgid "" -"The target user profiles will be replaced with the source user profiles" +"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 "" -"Los perfiles de usuario de destino se reemplazarán con los perfiles de " -"usuario de origen" +"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/meta/agentsearch.php:80 -msgid "Search results for" -msgstr "Buscar resultados para" +#: ../../godmode/massive/massive_edit_modules.php:565 +#: ../../godmode/modules/manage_network_components_form_common.php:190 +#: ../../godmode/agentes/module_manager_editor_common.php:629 +msgid "Category" +msgstr "Categoría" -#: ../../enterprise/meta/agentsearch.php:205 -msgid "There are no agents included in this group" -msgstr "No hay ningún agente incluido en este grupo" +#: ../../godmode/massive/massive_edit_modules.php:571 +msgid "Policy linking status" +msgstr "Estado de enlaces de la política" -#: ../../enterprise/meta/event/custom_events.php:89 -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" +#: ../../godmode/massive/massive_edit_modules.php:571 +msgid "This field only has sense in modules adopted by a policy." +msgstr "" +"Este campo sólo tiene sentido en los módulos aprobados por una política." -#: ../../enterprise/meta/event/custom_events.php:129 -msgid "Succesful updated" -msgstr "Actualizado correctamente" +#: ../../godmode/massive/massive_edit_modules.php:572 +msgid "Linked" +msgstr "Enlazado" -#: ../../enterprise/meta/event/custom_events.php:130 -msgid "Unsucessful updated" -msgstr "Actualización fallida" +#: ../../godmode/massive/massive_edit_modules.php:581 +#: ../../godmode/modules/manage_network_components_form_common.php:171 +#: ../../godmode/agentes/module_manager_editor_common.php:451 +msgid "Discard unknown events" +msgstr "Descartar eventos desconocidos" -#: ../../enterprise/meta/event/custom_events.php:154 -msgid "Fields" -msgstr "Campos" +#: ../../godmode/massive/massive_edit_modules.php:589 +#: ../../godmode/modules/manage_network_components_form_common.php:175 +#: ../../godmode/agentes/module_manager_editor_common.php:572 +msgid "Critical instructions" +msgstr "Intrucciónes de crítico" -#: ../../enterprise/meta/general/login_page.php:43 -#: ../../enterprise/meta/include/process_reset_pass.php:41 -#: ../../enterprise/meta/include/reset_pass.php:41 -msgid "Go to pandorafms.com" -msgstr "Ir a pandorafms.com" +#: ../../godmode/massive/massive_edit_modules.php:589 +#: ../../godmode/modules/manage_network_components_form_common.php:175 +#: ../../godmode/agentes/module_manager_editor_common.php:573 +msgid "Instructions when the status is critical" +msgstr "Instrucciones en caso de que esté en estado crítico" -#: ../../enterprise/meta/general/login_page.php:48 -#: ../../enterprise/meta/include/process_reset_pass.php:46 -#: ../../enterprise/meta/include/reset_pass.php:46 -msgid "Go to Pandora FMS Wiki" -msgstr "Ir a Wiki Pandora FMS" +#: ../../godmode/massive/massive_edit_modules.php:593 +#: ../../godmode/modules/manage_network_components_form_common.php:179 +#: ../../godmode/agentes/module_manager_editor_common.php:578 +msgid "Warning instructions" +msgstr "Instrucciones de advertencia" -#: ../../enterprise/meta/general/logon_ok.php:32 -msgid "Network traffic" -msgstr "Tráfico de la red" +#: ../../godmode/massive/massive_edit_modules.php:593 +#: ../../godmode/modules/manage_network_components_form_common.php:179 +#: ../../godmode/agentes/module_manager_editor_common.php:579 +msgid "Instructions when the status is warning" +msgstr "Instrucciones en caso de que el estado sea de advertencia" -#: ../../enterprise/meta/general/logon_ok.php:60 -#: ../../enterprise/meta/general/main_header.php:180 -#: ../../enterprise/meta/screens/screens.php:35 -msgid "Screens" -msgstr "Pantallas" +#: ../../godmode/massive/massive_edit_modules.php:597 +#: ../../godmode/modules/manage_network_components_form_common.php:183 +#: ../../godmode/agentes/module_manager_editor_common.php:583 +msgid "Unknown instructions" +msgstr "Instrucciones de desconocido" -#: ../../enterprise/meta/general/main_header.php:98 -msgid "Groups view" -msgstr "Vista de grupos" +#: ../../godmode/massive/massive_edit_modules.php:597 +#: ../../godmode/modules/manage_network_components_form_common.php:183 +#: ../../godmode/agentes/module_manager_editor_common.php:583 +msgid "Instructions when the status is unknown" +msgstr "Instrucciones en caso de que el estado sea desconocido" -#: ../../enterprise/meta/general/main_header.php:108 -msgid "Monitors view" -msgstr "Vista de monitores" +#: ../../godmode/massive/massive_edit_modules.php:602 +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/meta/general/main_header.php:144 -msgid "Create new report" -msgstr "Crear un nuevo informe" +#: ../../godmode/massive/massive_edit_modules.php:606 +#: ../../godmode/agentes/module_manager_editor_common.php:621 +msgid "Timeout" +msgstr "Tiempo de expiración" -#: ../../enterprise/meta/general/main_header.php:157 -msgid "Report templates" -msgstr "Plantillas de informes" +#: ../../godmode/massive/massive_edit_modules.php:610 +#: ../../godmode/agentes/module_manager_editor_common.php:622 +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/meta/general/main_header.php:205 -msgid "Live view" -msgstr "Vista en vivo" +#: ../../godmode/massive/massive_delete_tags.php:107 +msgid "No tag selected" +msgstr "Ninguna etiqueta seleccionada" -#: ../../enterprise/meta/general/main_header.php:248 -msgid "Agent management" -msgstr "Gestión de agentes" +#: ../../godmode/massive/massive_add_tags.php:43 +msgid "No tags selected" +msgstr "Ninguna etiqueta seleccionada" -#: ../../enterprise/meta/general/main_header.php:258 -msgid "Alert management" +#: ../../godmode/massive/massive_add_profiles.php:72 +msgid "Profiles added successfully" +msgstr "Perfiles agregados con éxito" + +#: ../../godmode/massive/massive_add_profiles.php:73 +msgid "Profiles cannot be added" +msgstr "Los perfiles no se han podido agregar" + +#: ../../godmode/users/configure_profile.php:41 +#: ../../godmode/users/configure_profile.php:49 +#: ../../godmode/users/configure_user.php:82 +#: ../../godmode/users/profile_list.php:45 +#: ../../godmode/users/profile_list.php:53 +#: ../../godmode/users/user_list.php:113 ../../godmode/users/user_list.php:121 +msgid "User management" +msgstr "Gestión de usuarios" + +#: ../../godmode/users/configure_profile.php:49 +#: ../../godmode/users/profile_list.php:53 +msgid "Profiles defined in Pandora" +msgstr "Perfiles definidos en Pandora" + +#: ../../godmode/users/configure_profile.php:113 +msgid "Create profile" +msgstr "Crear perfil" + +#: ../../godmode/users/configure_profile.php:119 +msgid "There was a problem loading profile" +msgstr "Hubo un problema al cargar el perfil" + +#: ../../godmode/users/configure_profile.php:219 +msgid "Update profile" +msgstr "Actualizar perfil" + +#: ../../godmode/users/configure_profile.php:229 +msgid "Update Profile" +msgstr "Actualizar Perfil" + +#: ../../godmode/users/configure_profile.php:231 +msgid "Create Profile" +msgstr "Crear Perfil" + +#: ../../godmode/users/configure_profile.php:249 +msgid "View agents" +msgstr "Ver agentes" + +#: ../../godmode/users/configure_profile.php:253 +msgid "Disable agents" +msgstr "Desactivar agentes" + +#: ../../godmode/users/configure_profile.php:257 +msgid "Edit agents" +msgstr "Editar agentes" + +#: ../../godmode/users/configure_profile.php:264 +msgid "Edit alerts" +msgstr "Editar alertas" + +#: ../../godmode/users/configure_profile.php:279 +msgid "Edit events" +msgstr "Editar eventos" + +#: ../../godmode/users/configure_profile.php:290 +msgid "View reports" +msgstr "Ver informes" + +#: ../../godmode/users/configure_profile.php:294 +msgid "Edit reports" +msgstr "Editar informes" + +#: ../../godmode/users/configure_profile.php:298 +msgid "Manage reports" +msgstr "Gestionar informes" + +#: ../../godmode/users/configure_profile.php:305 +msgid "View network maps" +msgstr "Ver mapas de red" + +#: ../../godmode/users/configure_profile.php:309 +msgid "Edit network maps" +msgstr "Editar mapas de red" + +#: ../../godmode/users/configure_profile.php:313 +msgid "Manage network maps" +msgstr "Gestionar mapas de red" + +#: ../../godmode/users/configure_profile.php:324 +msgid "Edit visual console" +msgstr "Editar consola visual" + +#: ../../godmode/users/configure_profile.php:335 +msgid "View incidents" +msgstr "Ver incidentes" + +#: ../../godmode/users/configure_profile.php:339 +msgid "Edit incidents" +msgstr "Editar incidentes" + +#: ../../godmode/users/configure_profile.php:343 +msgid "Manage incidents" +msgstr "Gestionar incidentes" + +#: ../../godmode/users/configure_profile.php:350 +msgid "Manage users" +msgstr "Gestionar usuarios" + +#: ../../godmode/users/configure_profile.php:357 +msgid "Manage database" +msgstr "Gestión de la base de datos" + +#: ../../godmode/users/configure_profile.php:364 +msgid "Pandora management" +msgstr "Gestionar Pandora FMS" + +#: ../../godmode/users/configure_user.php:145 +#: ../../godmode/users/user_list.php:492 +msgid "" +"The current authentication scheme doesn't support creating users from " +"Pandora FMS" +msgstr "" +"El esquema actual de autenticación no soporta la creación de usuarios desde " +"Pandora FMS." + +#: ../../godmode/users/configure_user.php:182 +msgid "User ID cannot be empty" +msgstr "El ID de usuario no puede estar vacío." + +#: ../../godmode/users/configure_user.php:189 +msgid "Passwords cannot be empty" +msgstr "Las contraseñas no pueden estar vacías" + +#: ../../godmode/users/configure_user.php:196 +msgid "Passwords didn't match" +msgstr "Las contraseñas no coinciden" + +#: ../../godmode/users/configure_user.php:245 +msgid "" +"Strict ACL is not recommended for admin users because performance could be " +"affected." +msgstr "" +"ACL Estricto no está recomendado para usuarios admin porque el rendimiento " +"podría verse afectado." + +#: ../../godmode/users/configure_user.php:304 +#: ../../godmode/users/configure_user.php:314 +#: ../../godmode/users/configure_user.php:342 +#: ../../godmode/users/configure_user.php:348 +#: ../../godmode/users/configure_user.php:376 +msgid "Error updating user info (no change?)" +msgstr "Error al actualizar la información del usuario (¿no hubo cambios?)" + +#: ../../godmode/users/configure_user.php:318 +msgid "Passwords does not match" +msgstr "Las contraseñas no coinciden" + +#: ../../godmode/users/configure_user.php:366 +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:398 +msgid "Profile added successfully" +msgstr "Perfil añadído con éxito" + +#: ../../godmode/users/configure_user.php:399 +msgid "Profile cannot be added" +msgstr "El perfil no se puede añadir" + +#: ../../godmode/users/configure_user.php:425 +msgid "Update User" +msgstr "Actualizar Usuario" + +#: ../../godmode/users/configure_user.php:428 +msgid "Create User" +msgstr "Crear Usuario" + +#: ../../godmode/users/configure_user.php:464 +msgid "Global Profile" +msgstr "Perfil global" + +#: ../../godmode/users/configure_user.php:469 +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:474 +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:516 +msgid "Use global conf" +msgstr "Usar configuración global" + +#: ../../godmode/users/configure_user.php:531 +msgid "Metaconsole access" +msgstr "Acceso a la metaconsola" + +#: ../../godmode/users/configure_user.php:539 +msgid "Not Login" +msgstr "No se logea" + +#: ../../godmode/users/configure_user.php:540 +msgid "The user with not login set only can access to API." +msgstr "El usuario sin permiso de acceso solo puede tener acceso al API" + +#: ../../godmode/users/configure_user.php:543 +msgid "Strict ACL" +msgstr "ACL Estricto" + +#: ../../godmode/users/configure_user.php:544 +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" +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" + +#: ../../godmode/users/configure_user.php:547 +msgid "Session Time" +msgstr "TIempo de sesión" + +#: ../../godmode/users/configure_user.php:554 +msgid "Enable agents managment" +msgstr "Habilitar gestión de agentes" + +#: ../../godmode/users/configure_user.php:561 +msgid "Assigned node" +msgstr "Nodo asignado" + +#: ../../godmode/users/configure_user.php:561 +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:573 +msgid "Enable node access" +msgstr "Habilitar el acceso al nodo" + +#: ../../godmode/users/configure_user.php:573 +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/profile_list.php:80 +msgid "" +"Unsucessful delete profile. Because the profile is used by some admin users." +msgstr "" +"La eliminación del perfil no ha tenido éxito. Porque el perfil está siendo " +"usado por algunos usuarios administradores." + +#: ../../godmode/users/profile_list.php:88 +#: ../../godmode/users/user_list.php:189 +msgid "There was a problem deleting the profile" +msgstr "Hubo un problema al borrar el perfil" + +#: ../../godmode/users/profile_list.php:226 +msgid "There was a problem updating this profile" +msgstr "Hubo un problema al borrar el perfil" + +#: ../../godmode/users/profile_list.php:230 +msgid "Profile name cannot be empty" +msgstr "El nombre de perfil no puede estar vacío" + +#: ../../godmode/users/profile_list.php:282 +#: ../../godmode/users/profile_list.php:286 +msgid "There was a problem creating this profile" +msgstr "Hubo un problema al crear el perfil" + +#: ../../godmode/users/profile_list.php:304 +msgid "System incidents reading" +msgstr "Lectura de incidentes del sistema" + +#: ../../godmode/users/profile_list.php:305 +msgid "System incidents writing" +msgstr "Escritura de incidentes del sistema" + +#: ../../godmode/users/profile_list.php:306 +msgid "System incidents management" +msgstr "Gestión de incidentes del sistema" + +#: ../../godmode/users/profile_list.php:307 +msgid "Agents reading" +msgstr "Lectura de agentes" + +#: ../../godmode/users/profile_list.php:309 +msgid "Agents disable" +msgstr "Deshabilitar agentes" + +#: ../../godmode/users/profile_list.php:310 +msgid "Alerts editing" +msgstr "Edición de alertas" + +#: ../../godmode/users/profile_list.php:311 +msgid "Alerts management" msgstr "Gestión de alertas" -#: ../../enterprise/meta/general/main_header.php:268 -msgid "Component management" -msgstr "Gestor de componentes" +#: ../../godmode/users/profile_list.php:313 +msgid "Database management" +msgstr "Gestión de la BB. DD." -#: ../../enterprise/meta/general/main_header.php:273 -msgid "Policy management" -msgstr "Gestión de políticas" +#: ../../godmode/users/profile_list.php:314 +msgid "Events reading" +msgstr "Lectura de eventos" -#: ../../enterprise/meta/general/main_header.php:278 -msgid "Category management" -msgstr "Gestión de categorías" +#: ../../godmode/users/profile_list.php:315 +msgid "Events writing" +msgstr "Escritura de eventos" -#: ../../enterprise/meta/general/main_header.php:283 -msgid "Server management" -msgstr "Administración de servidores" +#: ../../godmode/users/profile_list.php:316 +msgid "Events management" +msgstr "Gestión de eventos" -#: ../../enterprise/meta/general/main_header.php:293 -msgid "Metasetup" -msgstr "Metasetup" +#: ../../godmode/users/profile_list.php:317 +msgid "Reports reading" +msgstr "Lectura de informes" -#: ../../enterprise/meta/general/metaconsole_no_activated.php:25 +#: ../../godmode/users/profile_list.php:318 +msgid "Reports writing" +msgstr "Escritura de informes" + +#: ../../godmode/users/profile_list.php:319 +msgid "Reports management" +msgstr "Gestión de informes" + +#: ../../godmode/users/profile_list.php:320 +msgid "Network maps reading" +msgstr "Lectura de mapas de red" + +#: ../../godmode/users/profile_list.php:321 +msgid "Network maps writing" +msgstr "Escritura de mapas de red" + +#: ../../godmode/users/profile_list.php:322 +msgid "Network maps management" +msgstr "Gestión de mapas de red" + +#: ../../godmode/users/profile_list.php:323 +msgid "Visual console reading" +msgstr "Lectura de consola visual" + +#: ../../godmode/users/profile_list.php:324 +msgid "Visual console writing" +msgstr "Escritura de consola visual" + +#: ../../godmode/users/profile_list.php:325 +msgid "Visual console management" +msgstr "Gestión de consola visual" + +#: ../../godmode/users/profile_list.php:326 +msgid "Systems management" +msgstr "Gestión de sistemas" + +#: ../../godmode/users/profile_list.php:398 +msgid "There are no defined profiles" +msgstr "No hay perfiles definidos" + +#: ../../godmode/users/user_list.php:121 +msgid "Users defined in Pandora" +msgstr "Usuarios definidos en Pandora" + +#: ../../godmode/users/user_list.php:143 +#, php-format +msgid "Deleted user %s" +msgstr "Usuario eliminado %s" + +#: ../../godmode/users/user_list.php:148 ../../godmode/users/user_list.php:181 +msgid "There was a problem deleting the user" +msgstr "Hubo un problema al borrar el usuario" + +#: ../../godmode/users/user_list.php:163 +#, php-format +msgid "Deleted user %s from metaconsole" +msgstr "Usuario eliminado %s de la metaconsola" + +#: ../../godmode/users/user_list.php:172 +#, php-format +msgid "Deleted user %s from %s" +msgstr "Uuario eliminado %s de %s" + +#: ../../godmode/users/user_list.php:175 +#, php-format +msgid "Successfully deleted from %s" +msgstr "Eliminado correctamente de %s" + +#: ../../godmode/users/user_list.php:176 +#, php-format +msgid "There was a problem deleting the user from %s" +msgstr "Se produjo un problema al eliminar al usuario de %s" + +#: ../../godmode/users/user_list.php:204 +msgid "There was a problem disabling user" +msgstr "Hubo un problema al deshabilitar el usuario" + +#: ../../godmode/users/user_list.php:209 +msgid "There was a problem enabling user" +msgstr "Hubo un problema al habilitar el usuario" + +#: ../../godmode/users/user_list.php:231 ../../godmode/users/user_list.php:233 +msgid "Search by username, fullname or email" +msgstr "Buscar por nombre de usuario, nombre completo o email" + +#: ../../godmode/users/user_list.php:249 +msgid "Users control filter" +msgstr "Filtro de usuarios" + +#: ../../godmode/users/user_list.php:276 +msgid "Profile / Group" +msgstr "Perfil / Grupo" + +#: ../../godmode/users/user_list.php:406 ../../godmode/tag/tag.php:204 +#: ../../godmode/tag/edit_tag.php:205 +msgid "Phone" +msgstr "Teléfono" + +#: ../../godmode/users/user_list.php:470 +msgid "Deleting User" +msgstr "Borrando usuario." + +#: ../../godmode/users/user_list.php:472 +msgid "Delete from all consoles" +msgstr "Eliminar de todas las consolas" + +#: ../../godmode/users/user_list.php:472 +#, php-format +msgid "Deleting User %s from all consoles" +msgstr "Eliminando usuario %s de todas las consolas" + +#: ../../godmode/users/user_list.php:488 +msgid "Create user" +msgstr "Crear usuario" + +#: ../../godmode/reporting/graph_builder.graph_editor.php:87 +#: ../../godmode/reporting/graph_builder.graph_editor.php:156 +msgid "Weight" +msgstr "Peso" + +#: ../../godmode/reporting/graph_builder.graph_editor.php:185 +msgid "Please, select a module" +msgstr "Por favor, seleccione un módulo" + +#: ../../godmode/reporting/reporting_builder.main.php:85 +msgid "Only the group can view the report" +msgstr "Sólo el grupo puede ver el informe" + +#: ../../godmode/reporting/reporting_builder.main.php:86 +msgid "The next group can edit the report" +msgstr "El siguiente grupo puede editar el informe" + +#: ../../godmode/reporting/reporting_builder.main.php:87 +msgid "Only the user and admin user can edit the report" +msgstr "Sólo el usuario y el usuario administrador pueden editar el informe" + +#: ../../godmode/reporting/reporting_builder.main.php:89 +msgid "Write Access" +msgstr "Permisos de escritura" + +#: ../../godmode/reporting/reporting_builder.main.php:90 msgid "" -"Metaconsole needs previous activation from regular console, please contact " -"system administrator if you need assistance.
    " +"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 "" -"La metaconsola necesita una activación previa desde una consola regular, por " -"favor, contacte con su administrador de sistemas si necesita asistencia.
    " +"Por ejemplo, si usted quiere un informe donde la gente de \"Todos\" los " +"grupos puedan ver, pero quiere editarlo solo para usted o para su grupo" -#: ../../enterprise/meta/general/noaccess.php:33 +#: ../../godmode/reporting/reporting_builder.main.php:110 +msgid "Non interactive report" +msgstr "Informe no interactivo" + +#: ../../godmode/reporting/graph_builder.php:224 +msgid "Graph builder" +msgstr "Constructor de gráficos" + +#: ../../godmode/reporting/graph_builder.php:244 +msgid "Graph stored successfully" +msgstr "Gráfica almacenada correctamente" + +#: ../../godmode/reporting/graph_builder.php:244 +msgid "There was a problem storing Graph" +msgstr "Hubo un problema al almacenar la gráfica" + +#: ../../godmode/reporting/graph_builder.php:247 +#: ../../godmode/agentes/configurar_agente.php:1393 +msgid "Module added successfully" +msgstr "Módulo añadido correctamente" + +#: ../../godmode/reporting/graph_builder.php:247 +msgid "There was a problem adding Module" +msgstr "Ha habido un problema al añadir el módulo" + +#: ../../godmode/reporting/graph_builder.php:250 +msgid "Update the graph" +msgstr "Actualizar la gráfica" + +#: ../../godmode/reporting/graph_builder.php:250 +msgid "Bad update the graph" +msgstr "No se pudo actualizar la gráfica" + +#: ../../godmode/reporting/graph_builder.php:253 +msgid "Graph deleted successfully" +msgstr "Gráfico borrado correctamente" + +#: ../../godmode/reporting/graph_builder.php:253 +msgid "There was a problem deleting Graph" +msgstr "Ha habido un problema al borrar el gráfico" + +#: ../../godmode/reporting/map_builder.php:187 +#: ../../godmode/reporting/map_builder.php:197 +msgid "Not copied. Error copying data" +msgstr "Se ha producido un error la copiar los datos" + +#: ../../godmode/reporting/map_builder.php:207 +msgid "Map name" +msgstr "Nombre de mapa" + +#: ../../godmode/reporting/map_builder.php:209 +msgid "Items" +msgstr "Elementos" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:125 +msgid "Range between elements (px)" +msgstr "Rango entre elementos (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:132 +msgid "Size (px)" +msgstr "Tamaño (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:170 +msgid "Font" +msgstr "Fuente" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:204 +msgid "Width (px)" +msgstr "Ancho (px)" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:223 +msgid "Bubble" +msgstr "Burbuja" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:232 +msgid "Percent" +msgstr "Porcentaje" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:267 +msgid "One item per agent" +msgstr "Un elemento por agente" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:301 +#: ../../godmode/reporting/visual_console_builder.wizard.php:604 +msgid "Agent - Module" +msgstr "Agente-Modulo" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:310 +msgid "Enable link agent" +msgstr "Habilitar el link del agente" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:322 +msgid "Set Parent" +msgstr "Establecer padre" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:324 +msgid "Item created in the visualmap" +msgstr "Elemento creado en visualmap" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:325 +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:328 +msgid "Item in the map" +msgstr "Elemento en el mapa" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:331 +msgid "The parent relationships in Pandora will be drawn in the map." +msgstr "Las relaciones de jerarquía en Pandora serán dibujadas en el mapa" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:344 +#: ../../godmode/reporting/visual_console_builder.wizard.php:349 +msgid "Are you sure to add many elements\\nin visual map?" +msgstr "Está seguro de añadir tantos elementos en la consola visual ?" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:525 +msgid "Please select any module or modules." +msgstr "Por favor, seleccione cualquier módulo o módulos" + +#: ../../godmode/reporting/visual_console_builder.elements.php:79 +msgid "Width x Height
    Max value" +msgstr "Ancho x Alto
    Valor máximo" + +#: ../../godmode/reporting/visual_console_builder.elements.php:143 +msgid "Percentile Bar" +msgstr "Barra de progreso" + +#: ../../godmode/reporting/visual_console_builder.elements.php:148 +msgid "Percentile Bubble" +msgstr "Burbuja Porcentaje" + +#: ../../godmode/reporting/visual_console_builder.elements.php:163 +msgid "Simple Value (Process Max)" +msgstr "Valor simple (Maximo)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:168 +msgid "Simple Value (Process Min)" +msgstr "Valor simple (Minimo)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:173 +msgid "Simple Value (Process Avg)" +msgstr "Valor simple (Media)" + +#: ../../godmode/reporting/visual_console_builder.elements.php:226 +#: ../../godmode/reporting/visual_console_builder.elements.php:619 +msgid "Edit label" +msgstr "Editar etiqueta" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:35 +msgid "Only table" +msgstr "Solo tabla" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:36 +msgid "Table & Graph" +msgstr "Tabla y Gráfico" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:37 +msgid "Only graph" +msgstr "Solo gráfico" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:41 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1257 +msgid "Ascending" +msgstr "Ascendente" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:42 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1260 +msgid "Descending" +msgstr "Descendente" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:611 +msgid "Item Editor" +msgstr "Editor de ítem" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:639 +msgid "Not valid" +msgstr "No válida" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:644 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" +"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 "" -"El acceso a esta página está restringido a usuarios autorizados solamente, " -"por favor póngase en contacto con el administrador del sistema si necesita " -"ayuda.\n" -"\t \t \t \t \t
    Por favor, sepan que todos los intentos de acceso a esta " -"página son registrados en los registros de seguridad de la base de datos del " -"Sistema de Pandora" +"Este tipo de informes tienen muchos datos que cargar, recomendamos su uso " +"para informes programados y no para informes de tiempo real." -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1202 -msgid "Go to agent detail" -msgstr "Ir al detalle del agente" +#: ../../godmode/reporting/reporting_builder.item_editor.php:705 +#: ../../godmode/reporting/reporting_builder.list_items.php:302 +msgid "Time lapse" +msgstr "Intervalo de tiempo" -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1209 -msgid "Create new module" -msgstr "Crear nuevo módulo" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1270 -msgid "Group name" -msgstr "Nombre del grupo" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1410 -msgid "Go to module detail" -msgstr "Ir al detalle del módulo" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1428 -msgid "Create new alert" -msgstr "Crear nueva alerta" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1469 -msgid "There was a problem loading alert" -msgstr "Ha habido un error al cargar la configuración de la alerta" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1560 -msgid "Stand By" -msgstr "En espera" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1586 -msgid "Go to Alert detail" -msgstr "Ir a los detalles de la alerta" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1592 -msgid "Delete alert" -msgstr "Eliminar alerta" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1636 -msgid "There was a problem loading tag" -msgstr "Se produjo un problema al cargar tags" - -#: ../../enterprise/meta/include/functions_agents_meta.php:1204 -#: ../../enterprise/meta/include/functions_agents_meta.php:1215 -msgid "Agents movement" -msgstr "Movimiento de agentes" - -#: ../../enterprise/meta/include/functions_agents_meta.php:1209 -#: ../../enterprise/meta/include/functions_agents_meta.php:1218 -msgid "Group management" -msgstr "Gestionar grupos" - -#: ../../enterprise/meta/include/functions_components_meta.php:60 -#: ../../enterprise/meta/include/functions_components_meta.php:75 -msgid "Plugin management" -msgstr "Gestión de plugins" - -#: ../../enterprise/meta/include/functions_components_meta.php:81 -msgid "Create plugin" -msgstr "Crear plugin" - -#: ../../enterprise/meta/include/functions_components_meta.php:84 -msgid "Edit plugin" -msgstr "Editar plugin" - -#: ../../enterprise/meta/include/functions_groups_meta.php:77 -#, php-format -msgid "(Error Duplicate ID (%d) ) " -msgstr "(Error ID Duplicado (%d) ) " - -#: ../../enterprise/meta/include/functions_groups_meta.php:99 -msgid "Different parent" -msgstr "Diferente padre" - -#: ../../enterprise/meta/include/functions_groups_meta.php:104 -msgid "Different name" -msgstr "Diferente nombre" - -#: ../../enterprise/meta/include/functions_meta.php:311 -msgid "No admin user" -msgstr "No hay usuario administrador" - -#: ../../enterprise/meta/include/functions_meta.php:407 -msgid "Netflow disable custom live view filters" -msgstr "Desactivar filtros personalizados en la vista en vivo de netflow" - -#: ../../enterprise/meta/include/functions_meta.php:466 -msgid "Customizable section" -msgstr "Sección personalizable" - -#: ../../enterprise/meta/include/functions_meta.php:819 -msgid "Pandora FMS host" -msgstr "Servidor de Pandora FMS" - -#: ../../enterprise/meta/include/functions_meta.php:1091 -msgid "Type of charts" -msgstr "Tipo de gráficos" - -#: ../../enterprise/meta/include/functions_meta.php:1171 -msgid "Custom background login" -msgstr "Fondo personalizado del login" - -#: ../../enterprise/meta/include/functions_users_meta.php:184 -msgid "User synchronization" -msgstr "Sincronización de usuarios" - -#: ../../enterprise/meta/include/functions_users_meta.php:196 -msgid "Group synchronization" -msgstr "Sincronización de grupos" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:241 -msgid "Agent modules" -msgstr "Modulos de agentes" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:284 -msgid "Add selected modules to agent" -msgstr "Añadir los módulos seleccionados al agente" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:298 -msgid "Undo changes" -msgstr "Deshacer los cambios" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:473 -msgid "Latency" -msgstr "Latencia" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:474 -msgid "Response" -msgstr "Respuesta" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:476 -msgid "Check type" -msgstr "Compruebe el tipo" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:525 -msgid "String to check" -msgstr "Cadena a comprobar" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:530 -msgid "Add check" -msgstr "Añadir comprobación" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:538 -msgid "Delete check" -msgstr "Eliminar comprobación" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:818 -#: ../../enterprise/meta/include/functions_wizard_meta.php:910 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1120 -msgid "Various" -msgstr "Varios" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:858 -#: ../../enterprise/meta/include/functions_wizard_meta.php:944 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1161 -msgid "Thresholds" -msgstr "Thresholds" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:955 -msgid "Web configuration" -msgstr "Configuración web" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1147 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1153 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1560 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1567 -msgid "Str: " -msgstr "Cadena " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1149 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1155 -msgid " Inverse interval " -msgstr " Intervalo inverso " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1216 -msgid "Alerts in module" -msgstr "Alertas en el módulo" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1379 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1469 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1589 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1660 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:86 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:104 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:74 -msgid "Preview" -msgstr "Vista previa" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1451 -msgid "Checks" -msgstr "Comprobaciones" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1654 -msgid "Deleted modules" -msgstr "Módulos eliminados" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1866 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1963 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2438 -#, php-format -msgid "Error adding module %s" -msgstr "Error al añadir módulo %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1876 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1973 +#: ../../godmode/reporting/reporting_builder.item_editor.php:706 msgid "" -"There was an error creating the alerts, the operation has been cancelled" +"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 "" -"Se produjo un error al crear las alertas, la operación ha sido cancelada" +"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. " -#: ../../enterprise/meta/include/functions_wizard_meta.php:2040 -msgid "Agent successfully added" -msgstr "Agentes añadidos correctamente" +#: ../../godmode/reporting/reporting_builder.item_editor.php:720 +msgid "Last value" +msgstr "Último valor" -#: ../../enterprise/meta/include/functions_wizard_meta.php:2056 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2138 -#, php-format -msgid "%s Modules created" -msgstr "%s Módulos creados" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2094 -#, php-format -msgid "Could not update agent %s" -msgstr "No se pudo actualizar el agente %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2098 -msgid "Agent successfully updated" -msgstr "Agente actualizado correctamente" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2144 -#, php-format -msgid "%s Modules deleted" -msgstr "%s Módulos eliminados" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2449 +#: ../../godmode/reporting/reporting_builder.item_editor.php:721 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3198 msgid "" -"There was an error creating the alerts, the operation has been cancelled ." +"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 "" -"Ha habido un error creando las alertas, la operación ha sido cancelada." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2480 -msgid "Module successfully added." -msgstr "Módulo añadido con éxito." - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2552 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2641 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2852 -#, php-format -msgid "Error updating module %s" -msgstr "Erro al actualizar el módulo %s" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2575 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2664 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2875 -msgid "" -"There was an error updating the alerts, the operation has been cancelled" -msgstr "" -"Se produjo un error al actualizar las alertas, la operación ha sido cancelada" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2597 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2686 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2897 -msgid "Successfully updated module." -msgstr "Módulo actualizado correctamente" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:3250 -msgid "Manage agent modules" -msgstr "Gestionar módulos de agentes" - -#: ../../enterprise/meta/index.php:250 ../../index.php:264 -msgid "The code shouldn't be empty" -msgstr "El código no debería estar vacío" - -#: ../../enterprise/meta/index.php:262 ../../index.php:276 -msgid "Expired login" -msgstr "Inicio de sesión caducado" - -#: ../../enterprise/meta/index.php:270 ../../enterprise/meta/index.php:276 -#: ../../index.php:284 ../../index.php:290 -msgid "Login error" -msgstr "Error de conexión" - -#: ../../enterprise/meta/index.php:452 ../../index.php:566 -msgid "Password changed successfully" -msgstr "La contraseña se ha cambiado con éxito." - -#: ../../enterprise/meta/index.php:455 ../../index.php:569 -msgid "Failed to change password" -msgstr "Fallo en el cambio de contraseña" - -#: ../../enterprise/meta/index.php:474 ../../index.php:588 -msgid "Too much time since password change request" -msgstr "Tiempo de espera para el cambio de contraseña sobrepasado" - -#: ../../enterprise/meta/index.php:484 ../../index.php:598 -msgid "This user has not requested a password change" -msgstr "Este usuario no tiene ninguna petición de cambio de contraseña" - -#: ../../enterprise/meta/index.php:502 ../../index.php:616 -msgid "Id user cannot be empty" -msgstr "El id de usuario no puede estar vacía" - -#: ../../enterprise/meta/index.php:510 ../../index.php:624 -msgid "User doesn't exist in database" -msgstr "El usuario no existe en la base de datos" - -#: ../../enterprise/meta/index.php:518 ../../index.php:632 -msgid "This user doesn't have a valid email address" -msgstr "El usuario no tiene una dirección de correo válida" - -#: ../../enterprise/meta/index.php:537 ../../index.php:651 -msgid "This is an automatically sent message for user " -msgstr "Este es un mensaje automático para el usuario " - -#: ../../enterprise/meta/index.php:540 ../../index.php:654 -msgid "Please click the link below to reset your password" -msgstr "Por favor, haga click en el enlace para restablecer su contraseña" - -#: ../../enterprise/meta/index.php:542 ../../index.php:656 -msgid "Reset your password" -msgstr "Restablecer su contraseña" - -#: ../../enterprise/meta/index.php:546 ../../index.php:660 -msgid "Please do not reply to this email." -msgstr "Por favor no responda a este email" - -#: ../../enterprise/meta/index.php:552 ../../index.php:666 -msgid "Error at sending the email" -msgstr "Error al enviar el email" - -#: ../../enterprise/meta/index.php:656 ../../enterprise/meta/index.php:667 -#: ../../index.php:946 -msgid "Sorry! I can't find the page!" -msgstr "No se puede encontrar la página." - -#: ../../enterprise/meta/monitoring/group_view.php:33 -msgid "Group View" -msgstr "Vista de grupo" - -#: ../../enterprise/meta/monitoring/group_view.php:95 -msgid "Summary by status" -msgstr "Resumen por estados" - -#: ../../enterprise/meta/monitoring/group_view.php:103 -msgid "% Agents Unknown" -msgstr "% Monitores en desconocido" - -#: ../../enterprise/meta/monitoring/group_view.php:104 -#: ../../enterprise/meta/monitoring/group_view.php:105 -msgid "% Agents not init" -msgstr "% Agentes no iniciados" - -#: ../../enterprise/meta/monitoring/group_view.php:108 -msgid "% Monitors Critical" -msgstr "% Monitores en critico" - -#: ../../enterprise/meta/monitoring/group_view.php:109 -msgid "% Monitors Warning" -msgstr "% Monitores en alarma" - -#: ../../enterprise/meta/monitoring/group_view.php:110 -msgid "% Monitors OK" -msgstr "% Monitores en ok" - -#: ../../enterprise/meta/monitoring/group_view.php:111 -msgid "% Monitors Unknown" -msgstr "% Módulos desconocidos" - -#: ../../enterprise/meta/monitoring/group_view.php:112 -msgid "% Monitors Not init" -msgstr "% Módulos no iniciados" - -#: ../../enterprise/meta/monitoring/group_view.php:136 -#: ../../enterprise/meta/monitoring/group_view.php:137 -msgid "This data doesn't show in realtime" -msgstr "Estos datos no se muestran en tiempo real" - -#: ../../enterprise/meta/monitoring/group_view.php:144 -msgid "Group or Tag" -msgstr "Grupo o Etiqueta" - -#: ../../enterprise/meta/monitoring/group_view.php:148 -msgid "critical" -msgstr "crítico" - -#: ../../enterprise/meta/monitoring/tactical.php:37 -msgid "Tactical View" -msgstr "Vista táctica" - -#: ../../enterprise/meta/monitoring/tactical.php:291 -msgid "Report of state" -msgstr "Informe de estado" - -#: ../../enterprise/meta/monitoring/tactical.php:320 -msgid "Report of events" -msgstr "Informe de eventos" - -#: ../../enterprise/meta/monitoring/tactical.php:325 -msgid "Info of state in events" -msgstr "Información de estado en eventos" - -#: ../../enterprise/meta/monitoring/tactical.php:341 -msgid "More events" -msgstr "Más eventos" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:78 -msgid "Edit agent" -msgstr "Editar agente" - -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:212 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:227 -msgid "Please, set a valid IP/Name address" -msgstr "Por favor, introduzca una IP/Nombre de dirección válido" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:116 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:290 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:98 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:116 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:84 -msgid "Create module" -msgstr "Crear módulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:124 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:127 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:154 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:112 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:178 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:49 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 -msgid "Can't connect to Pandora FMS instance" -msgstr "No se puede conectar a la instancia de Pandora FMS" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 -msgid "Web check" -msgstr "Comprobación web" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:228 -msgid "Module description" -msgstr "Descripción del módulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:244 -msgid "Step by step wizard" -msgstr "Wizard paso a paso" - -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:251 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:255 -msgid "Click Create to continue" -msgstr "haga clic en Crear para continuar" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:249 -msgid "Select the agent to be edited or deleted" -msgstr "Seleccionar el agente que quiera editar o eliminar" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:291 -msgid "Manage modules" -msgstr "Gestionar módulos" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:339 -msgid "Select the agent where the module will be created" -msgstr "Seleccione el agente donde crear el modulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:353 -msgid "Create Module" -msgstr "Crear módulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 -msgid "Select the module to be edited or deleted" -msgstr "Seleccione el módulo para editar o borrar" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:519 -msgid "Select the module where the alert will be created" -msgstr "Seleccione el módulo donde se creará la alerta" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:603 -msgid "Select the alert to be edited or deleted" -msgstr "Seleccione la alerta que quiere editar o eliminar" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:84 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:102 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:72 -msgid "Advanced configuration" -msgstr "Configuración avanzada" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:198 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:231 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:196 -msgid "Invalid characters founded in module name" -msgstr "Se han encontrado caracteres inválidos en el nombre del módulo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:189 -msgid "Please, set a name" -msgstr "Por favor, introduzca un nombre" - -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:210 -msgid "Please, set an interval" -msgstr "Por favor, introduzca un intervalo" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:92 -msgid "The alert you are trying to add is already in the list of alerts" -msgstr "La alerta que está intentando añadir está ya en la lista de alertas" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:103 -msgid "Please, select an alert" -msgstr "Por favor, seleccione una alerta" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:104 -msgid "Please, select an agent" -msgstr "Por favor, seleccione un agente" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:109 -msgid "String" -msgstr "Cadena" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:110 -msgid "No agent name specified" -msgstr "No se especificó el nombre del agente" - -#: ../../enterprise/meta/monitoring/wizard/wizard.php:111 -msgid "Another agent already exists with the same name" -msgstr "Ya hay otro agente con ese nombre" - -#: ../../enterprise/meta/screens/screens.visualmap.php:60 -msgid "Create visualmap" -msgstr "Crear mapa visual" - -#: ../../enterprise/mobile/operation/dashboard.php:59 -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" - -#: ../../enterprise/mobile/operation/dashboard.php:87 -msgid "Dashboards list" -msgstr "Lista de paneles" - -#: ../../enterprise/mobile/operation/dashboard.php:107 -msgid "No Dashboards" -msgstr "No hay paneles" - -#: ../../enterprise/mobile/operation/dashboard.php:140 -msgid "Dashboard name" -msgstr "Nombre del panel" - -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:40 -msgid "Unsucessful get module inventory data." -msgstr "No se han podido obtener datos del módulo de inventario" - -#: ../../enterprise/operation/agentes/agent_inventory.php:56 -msgid "This agent has not modules inventory" -msgstr "Este agente no tiene módulos de inventario" - -#: ../../enterprise/operation/agentes/agent_inventory.php:160 -#: ../../enterprise/operation/agentes/agent_inventory.php:161 -msgid "Diff view" -msgstr "Vista de diferencia" - -#: ../../enterprise/operation/agentes/collection_view.php:54 -msgid "No collection assigned to this agent" -msgstr "No se ha asignado ninguna colección a este agente" - -#: ../../enterprise/operation/agentes/manage_transmap.php:27 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:257 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:319 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:33 -msgid "Transactions List" -msgstr "Lista de transacciones" - -#: ../../enterprise/operation/agentes/manage_transmap.php:50 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:89 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:326 -msgid "Edit main data" -msgstr "Editar datos principales" - -#: ../../enterprise/operation/agentes/manage_transmap.php:57 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:96 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:333 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:39 -msgid "Edit Transaction" -msgstr "Editar transacción" - -#: ../../enterprise/operation/agentes/manage_transmap.php:65 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:104 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:341 -msgid "View Transaction" -msgstr "Ver transacción" - -#: ../../enterprise/operation/agentes/manage_transmap.php:98 -msgid "Return to windowed mode" -msgstr "Volver al modo ventana" - -#: ../../enterprise/operation/agentes/manage_transmap.php:102 -msgid "Transactional Map - " -msgstr "Mapa transaccional - " - -#: ../../enterprise/operation/agentes/manage_transmap.php:106 -msgid "Transaction not found" -msgstr "Transacción no encontrada" - -#: ../../enterprise/operation/agentes/manage_transmap.php:110 -msgid "Master lock file not found (No data to show)" -msgstr "Fichero lock no encontrado (No hay datos para mostrar)" - -#: ../../enterprise/operation/agentes/manage_transmap.php:114 -msgid "Transaction is stopped" -msgstr "La transacción se ha parado" - -#: ../../enterprise/operation/agentes/manage_transmap.php:118 -msgid "Error, please check the transaction phases" -msgstr "Error, por favor comprueba las fases de la transacción" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:36 -msgid "Please, reset the transaction" -msgstr "Por favor, reinicie la transacción" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:71 -msgid "Successfully data updated" -msgstr "Actualización de los datos con éxito" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:72 -msgid "Could not be data updated" -msgstr "No se pudieron actualizar los datos" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:107 -msgid "Transactional Map - Create Phase - " -msgstr "Mapa transaccional - Crear fase - " - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:117 -msgid "Index" -msgstr "Índice" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:120 -msgid "Dependencies" -msgstr "Dependencias" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:121 -msgid "Enables" -msgstr "Activaciones" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:181 -msgid "Not valid dependencies field" -msgstr "Campo de dependencias no válido" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187 -msgid "Not valid enables field" -msgstr "Campo de activaciones no valido" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:345 -msgid "Transactional Map - Create Transaction" -msgstr "Mapa transaccional - Crear transacción" - -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:272 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:361 -msgid "Loop interval" -msgstr "Intervalo de loop" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:45 -msgid "Go back to phases list" -msgstr "Volver a la lista de fases" - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:49 -msgid "Transactional Map - Phase - " -msgstr "Mapa transaccional - Fase - " - -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:62 -msgid "Launch script" -msgstr "Script a lanzar" - -#: ../../enterprise/operation/agentes/policy_view.php:37 -msgid "This agent has no policy assigned" -msgstr "Este agente no tiene ninguna política asignada" - -#: ../../enterprise/operation/agentes/policy_view.php:65 -msgid "Policy outdate" -msgstr "Política obsoleta" - -#: ../../enterprise/operation/agentes/policy_view.php:130 -#: ../../enterprise/operation/agentes/policy_view.php:137 -msgid "Toggle the collection table" -msgstr "Cambiar la tabla de la colección" - -#: ../../enterprise/operation/agentes/policy_view.php:133 -msgid "Descripttion" -msgstr "Descripción" - -#: ../../enterprise/operation/agentes/policy_view.php:138 -msgid "Show Collection" -msgstr "Mostrar colecciones" - -#: ../../enterprise/operation/agentes/policy_view.php:192 -#: ../../enterprise/operation/agentes/policy_view.php:201 -msgid "Toggle the alert table" -msgstr "Cambie a la tabla de alertas" - -#: ../../enterprise/operation/agentes/policy_view.php:202 -msgid "Show Alert" -msgstr "Mostrar alertas" - -#: ../../enterprise/operation/agentes/policy_view.php:303 -#: ../../enterprise/operation/agentes/policy_view.php:312 -msgid "Toggle the module table" -msgstr "Cambiar a la tabla de alertas" - -#: ../../enterprise/operation/agentes/policy_view.php:304 -msgid "Relationship" -msgstr "Relación" - -#: ../../enterprise/operation/agentes/policy_view.php:313 -msgid "Show Modules" +"Advertencia: período 0 los informes no pueden ser usados para enseñar la " +"información devuelta en tiempo. La información contenida en este tipo de " +"informes va a mostrar siempre la información más reciente." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:766 +msgid "Projection period" +msgstr "Periodo de proyección" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:776 +msgid "Data range" +msgstr "Rango de datos" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:787 +msgid "Only display wrong SLAs" +msgstr "Mostrar solo aquellas SLA que no cumplen." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:796 +msgid "Working time" +msgstr "Tiempo de trabajo" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1011 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1679 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1714 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1875 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1903 +msgid "Select an Agent first" +msgstr "Debe seleccionar primero un agente" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1042 +msgid "Show modules" msgstr "Mostrar módulos" -#: ../../enterprise/operation/agentes/policy_view.php:333 -msgid "(Un-adopted)" -msgstr "(Des-adoptados)" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1175 +msgid "Target server" +msgstr "Servidor Target" -#: ../../enterprise/operation/agentes/policy_view.php:337 -msgid "(Adopted)" -msgstr "(Adoptados)" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1203 +msgid "Custom SQL template" +msgstr "Plantilla SQL personalizada" -#: ../../enterprise/operation/agentes/policy_view.php:343 -msgid "(Un-adopted) (Unlinked)" -msgstr "(Des-adoptados)(Desvinculados)" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1224 +msgid "Select server" +msgstr "Seleccionar servidor" -#: ../../enterprise/operation/agentes/policy_view.php:347 -msgid "(Adopted) (Unlinked)" -msgstr "(Adoptados)(Desvinculados)" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1233 +msgid "Serialized header" +msgstr "Cabedera serializada" -#: ../../enterprise/operation/agentes/transactional_map.php:31 -msgid "Transactions list" -msgstr "Lista de transacciones" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1233 +msgid "The separator character is |" +msgstr "El carácter separador es |" -#: ../../enterprise/operation/agentes/transactional_map.php:100 -msgid "Name can't be empty" -msgstr "El nombre no se puede quedar en blanco" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1242 +msgid "Field separator" +msgstr "Separador de campo" -#: ../../enterprise/operation/agentes/transactional_map.php:148 -msgid "Transaction name" -msgstr "Nombre de la transacción" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1242 +msgid "Separator for different fields in the serialized text chain" +msgstr "Separador para diferentes campos en la cadena de texto serializada" -#: ../../enterprise/operation/agentes/transactional_map.php:151 -msgid "Running status" -msgstr "En proceso" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1246 +msgid "Line separator" +msgstr "Separador de línea" -#: ../../enterprise/operation/agentes/transactional_map.php:153 -msgid "Time spent" -msgstr "Tiempo dedicado" - -#: ../../enterprise/operation/agentes/transactional_map.php:183 -msgid "Stopped" -msgstr "Parado" - -#: ../../enterprise/operation/agentes/transactional_map.php:189 -msgid "Starting" -msgstr "Iniciando" - -#: ../../enterprise/operation/agentes/transactional_map.php:192 -msgid "Stopping" -msgstr "Parando" - -#: ../../enterprise/operation/agentes/transactional_map.php:260 -#: ../../enterprise/operation/agentes/ux_console_view.php:202 -#: ../../enterprise/operation/agentes/ux_console_view.php:322 -msgid "Failed" -msgstr "Fallido" - -#: ../../enterprise/operation/agentes/transactional_map.php:314 -msgid "Edit phases" -msgstr "Editar fases" - -#: ../../enterprise/operation/agentes/transactional_map.php:323 -msgid "Error in phases section" -msgstr "Error en la sección de fases" - -#: ../../enterprise/operation/agentes/transactional_map.php:342 -msgid "Create Transaction" -msgstr "Crear transacción" - -#: ../../enterprise/operation/agentes/ux_console_view.php:43 -msgid "No ux transaction selected." -msgstr "No hay ninguna transacción UX seleccionada" - -#: ../../enterprise/operation/agentes/ux_console_view.php:122 -msgid "No ux transactions found." -msgstr "No se encontraron transacciones UX" - -#: ../../enterprise/operation/agentes/ux_console_view.php:132 -msgid "Transaction" -msgstr "Transacción" - -#: ../../enterprise/operation/agentes/ux_console_view.php:141 -msgid "Show transaction" -msgstr "Mostrar transacción" - -#: ../../enterprise/operation/agentes/ux_console_view.php:167 -msgid "Execution results for transaction " -msgstr "Resultados de la ejecución para la transacción " - -#: ../../enterprise/operation/agentes/ux_console_view.php:241 -msgid "Global results" -msgstr "Resultados globales" - -#: ../../enterprise/operation/agentes/ux_console_view.php:302 -msgid "Transaction history" -msgstr "Histórico de la transacción" - -#: ../../enterprise/operation/agentes/ver_agente.php:225 -msgid "UX Console" -msgstr "Consola UX" - -#: ../../enterprise/operation/inventory/inventory.php:266 -msgid "Export this list to CSV" -msgstr "Exportar esta lista a CSV" - -#: ../../enterprise/operation/log/log_viewer.php:150 -#: ../../enterprise/operation/menu.php:128 -msgid "Log viewer" -msgstr "Visor de logs" - -#: ../../enterprise/operation/log/log_viewer.php:350 -msgid "The start date cannot be greater than the end date" -msgstr "La fecha de inicio no puede ser después que la fecha de finalización" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:36 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:74 -msgid "List of networkmaps" -msgstr "Lista de mapas de red" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:42 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:80 -msgid "Edit networkmap" -msgstr "Editar mapa de red" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:48 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:86 -msgid "Deleted list" -msgstr "Lista de eliminados" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:54 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:92 -msgid "View networkmap" -msgstr "Ver mapa de red" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:61 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:66 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:95 -msgid "List deleted items" -msgstr "Lista de elementos eliminados" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:108 -msgid "Successfully restore the item" -msgstr "Elemento restaurado con éxito" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:109 -msgid "Could not be restore the item" -msgstr "No se pudo restaurar el elemento" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:130 -msgid "Successfully restore the items" -msgstr "Elementos restaurados con éxito" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:132 -msgid "Could not be restore the " -msgstr "No se pudo restaurar el " - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:136 -msgid "Not found networkmap" -msgstr "Mapa de red no encontrado" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:140 -msgid "The items restored will be appear in the holding area." -msgstr "Los elementos restaurados aparecerán en el área de espera" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:160 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:227 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:256 -msgid "Restore" -msgstr "Recuperar" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:170 -msgid "There are not nodes in the networkmap." -msgstr "No hay nodos en el mapa de red" - -#: ../../enterprise/operation/menu.php:100 -msgid "Transactional map" -msgstr "Mapa transaccional" - -#: ../../enterprise/operation/menu.php:111 -msgid "Custom SQL" -msgstr "SQL personalizado" - -#: ../../enterprise/operation/reporting/custom_reporting.php:22 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1246 msgid "" -"All the items are not available in CSV, only the previous versions ones." +"Separator in different lines (composed by fields) of the serialized text " +"chain" msgstr "" -"Todos los ítems no están disponibles en CSV, solo en la versión previa" +"Separador en diferentes líneas (compuestas por campos) de la cadena de texto " +"serializada" -#: ../../enterprise/operation/reporting/custom_reporting.php:62 -#: ../../enterprise/operation/reporting/custom_reporting.php:85 -msgid "Send by email" -msgstr "Enviar por correo-e" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1250 +msgid "Group by agent" +msgstr "Agrupar por agente" -#: ../../enterprise/operation/reporting/custom_reporting.php:70 -msgid "ID Report" -msgstr "ID Informe" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1468 +#: ../../godmode/netflow/nf_item_list.php:147 +msgid "Order" +msgstr "Orden" -#: ../../enterprise/operation/reporting/custom_reporting.php:109 -msgid "Send by email " -msgstr "Enviar por correo-e " +#: ../../godmode/reporting/reporting_builder.item_editor.php:1263 +msgid "By agent name" +msgstr "Por nombre de agente" -#: ../../enterprise/operation/services/services.list.php:44 -#: ../../enterprise/operation/services/services.list.php:52 -msgid "Service table view" -msgstr "Vista de tabla de servicios" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1271 +msgid "Quantity (n)" +msgstr "Cantidad (n)" -#: ../../enterprise/operation/services/services.list.php:73 -msgid "Service deleted successfully" -msgstr "Servicio eliminado correctamente" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1304 +msgid "Only average" +msgstr "Solo media" -#: ../../enterprise/operation/services/services.list.php:74 -msgid "Error deleting service" -msgstr "Error al eliminar el servicio" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1308 +#: ../../godmode/reporting/graph_builder.main.php:177 +msgid "Percentil" +msgstr "Percentil" -#: ../../enterprise/operation/services/services.list.php:79 -msgid "Service forced successfully" -msgstr "Forzado servicio con éxito" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1321 +msgid "Condition" +msgstr "Condición" -#: ../../enterprise/operation/services/services.list.php:80 -msgid "Error service forced" -msgstr "Error forzando servicio" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1327 +msgid "Greater or equal (>=)" +msgstr "Mayor o igual (>=)" -#: ../../enterprise/operation/services/services.list.php:288 -#: ../../enterprise/operation/services/services.list.php:295 -#: ../../enterprise/operation/services/services.table_services.php:256 -#: ../../enterprise/operation/services/services.table_services.php:263 -msgid "No services defined." -msgstr "No hay servicios definidos" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1328 +msgid "Less or equal (<=)" +msgstr "Menor o igual (<=)" -#: ../../enterprise/operation/services/services.list.php:436 -#: ../../enterprise/operation/services/services.service.php:206 -msgid "SLA graph" -msgstr "Gráfica SLA" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1329 +msgid "Less (<)" +msgstr "Menor de (<)" -#: ../../enterprise/operation/services/services.service.php:102 -msgid "No Services" -msgstr "Sin servicios" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1330 +msgid "Greater (>)" +msgstr "Mayor de (>)" -#: ../../enterprise/operation/services/services.service.php:216 -msgid "List of elements" -msgstr "Lista de elementos" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1331 +msgid "Equal (=)" +msgstr "Igual a" -#: ../../index.php:694 -msgid "User doesn\\'t exist." -msgstr "El usuario no existe" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1332 +msgid "Not equal (!=)" +msgstr "No igual a" -#: ../../index.php:710 -msgid "User only can use the API." -msgstr "El usuario solo puede usar la API" +#: ../../godmode/reporting/reporting_builder.item_editor.php:1356 +msgid "Show graph" +msgstr "Mostrar gráfico" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1364 +msgid "Show address instead module name." +msgstr "Mostrar la dirección en vez del nombre del módulo" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1365 +msgid "Show the main address of agent." +msgstr "Muestra la dirección principal del agente." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1377 +msgid "Show resume" +msgstr "Mostrar resumen" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1377 +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:1387 +msgid "Show Summary group" +msgstr "Mostrar el sumario del grupo" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1420 +msgid "Event Status" +msgstr "Estado del evento" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1432 +msgid "Event graphs" +msgstr "Gráficas de eventos" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1436 +msgid "By agent" +msgstr "Por agente" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1442 +msgid "By user validator" +msgstr "Por usuario que validó" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1448 +msgid "By criticity" +msgstr "Por criticidad" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1454 +msgid "Validated vs unvalidated" +msgstr "Validados vs sin validar" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1462 +msgid "Show in two columns" +msgstr "Mostrar en dos columnas" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1468 +msgid "SLA items sorted by fulfillment value" +msgstr "Objetos de SLA ordenados por valor rellenado" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1473 +msgid "Show in landscape" +msgstr "Mostrar en landscape" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1484 +msgid "Hide not init agents" +msgstr "Ocultar agentes no inicializados" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1509 +#: ../../godmode/netflow/nf_item_list.php:260 +msgid "Create item" +msgstr "Crear item" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1542 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:415 +msgid "Service" +msgstr "Servicio" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1543 +msgid "SLA Min. (value)" +msgstr "Valor mínimo para el SLA" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1544 +msgid "SLA Max. (value)" +msgstr "Valor máximo para el SLA" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1545 +msgid "SLA Limit (%)" +msgstr "Límite (%) para el SLA" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1554 +msgid "Please save the SLA for start to add items in this list." +msgstr "" +"Por favor guarde primero el SLA antes de intentar añadir elementos a la " +"misma." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1726 +msgid "rate" +msgstr "tasa" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1727 +msgid "max" +msgstr "máx" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1728 +msgid "min" +msgstr "mín" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1729 +msgid "sum" +msgstr "suma" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1749 +msgid "" +"Please be careful, when the module have diferent intervals in their life, " +"the summatory maybe get bad result." +msgstr "" +"Por favor, tenga cuidado, cuando el modulo tiene diferentes intervalos a lo " +"largo de su historia, el sumatorio puede conseguir malos resultados" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1763 +msgid "Please save the report to start adding items into the list." +msgstr "" +"Por favor guarde el informe para empezar a añadir objetos en la lista." + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2072 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2092 +msgid "Please select Agent" +msgstr "Pro favor seleccione el agente" + +#: ../../godmode/reporting/visual_console_builder.data.php:91 +msgid "Create visual console" +msgstr "Crear consola visual" + +#: ../../godmode/reporting/visual_console_builder.data.php:103 +msgid "" +"Use [ or ( as first character, for example '[*] Map name', to render this " +"map name in main menu" +msgstr "" +"Use [ 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:122 +msgid "Group:" +msgstr "Grupo:" + +#: ../../godmode/reporting/visual_console_builder.data.php:142 +msgid "Background image" +msgstr "Imagen de fondo" + +#: ../../godmode/reporting/visual_console_builder.data.php:164 +msgid "Layout size" +msgstr "Tamaño del diseño" + +#: ../../godmode/reporting/visual_console_builder.data.php:168 +msgid "Set custom size" +msgstr "Especificar tamaño personalizado" + +#: ../../godmode/reporting/visual_console_builder.data.php:177 +msgid "Get default image size" +msgstr "Establecer el tamaño de imagen por defecto" + +#: ../../godmode/reporting/visual_console_builder.editor.php:134 +msgid "Min allowed size is 1024x768" +msgstr "El tamaño mínimo permitido es 1024x768" + +#: ../../godmode/reporting/visual_console_builder.editor.php:138 +#: ../../godmode/reporting/visual_console_builder.editor.php:143 +#: ../../godmode/reporting/visual_console_builder.editor.php:148 +msgid "Action in progress" +msgstr "Acción en curso" + +#: ../../godmode/reporting/visual_console_builder.editor.php:139 +msgid "Loading in progress" +msgstr "Carga en curso" + +#: ../../godmode/reporting/visual_console_builder.editor.php:144 +msgid "Saving in progress" +msgstr "Guardando en curso" + +#: ../../godmode/reporting/visual_console_builder.editor.php:149 +msgid "Deletion in progress" +msgstr "Eliminando en curso" + +#: ../../godmode/reporting/reporting_builder.php:80 +msgid "" +"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" + +#: ../../godmode/reporting/reporting_builder.php:81 +msgid "An error has ocurred" +msgstr "Ha ocurrido un error" + +#: ../../godmode/reporting/reporting_builder.php:335 +#: ../../godmode/reporting/reporting_builder.php:1902 +#: ../../godmode/reporting/reporting_builder.php:1954 +msgid "Reports list" +msgstr "Lista de informes" + +#: ../../godmode/reporting/reporting_builder.php:435 +msgid "Free text for search: " +msgstr "Texto libre de búsqueda " + +#: ../../godmode/reporting/reporting_builder.php:436 +msgid "Search by report name or description, list matches." +msgstr "Búsqueda por nombre del informe o descripción, lista los resultados." + +#: ../../godmode/reporting/reporting_builder.php:446 +msgid "Show Option" +msgstr "Mostrar Opciones" + +#: ../../godmode/reporting/reporting_builder.php:554 +msgid "Private" +msgstr "Privado" + +#: ../../godmode/reporting/reporting_builder.php:610 +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:615 +msgid "HTML view" +msgstr "Vista HTML" + +#: ../../godmode/reporting/reporting_builder.php:616 +msgid "Export to XML" +msgstr "Exportar a XML" + +#: ../../godmode/reporting/reporting_builder.php:735 +msgid "Create report" +msgstr "Crear informe" + +#: ../../godmode/reporting/reporting_builder.php:2020 +msgid "Successfull action" +msgstr "Acción completada" + +#: ../../godmode/reporting/reporting_builder.php:2020 +msgid "Unsuccessfull action

    " +msgstr "Acciones fallidas" + +#: ../../godmode/reporting/reporting_builder.list_items.php:288 +#: ../../godmode/reporting/reporting_builder.list_items.php:293 +#: ../../godmode/reporting/reporting_builder.list_items.php:299 +msgid "Ascendent" +msgstr "Ascencente" + +#: ../../godmode/reporting/reporting_builder.list_items.php:289 +#: ../../godmode/reporting/reporting_builder.list_items.php:294 +#: ../../godmode/reporting/reporting_builder.list_items.php:300 +msgid "Descent" +msgstr "Descendente" + +#: ../../godmode/reporting/reporting_builder.list_items.php:307 +#: ../../godmode/reporting/reporting_builder.list_items.php:507 +msgid "Sort" +msgstr "Ordenar" + +#: ../../godmode/reporting/reporting_builder.list_items.php:493 +#: ../../godmode/reporting/reporting_builder.list_items.php:498 +msgid "Sort items" +msgstr "Ordenar elementos" + +#: ../../godmode/reporting/reporting_builder.list_items.php:500 +msgid "Sort selected items from position: " +msgstr "Ordenar elementos desde posición: " + +#: ../../godmode/reporting/reporting_builder.list_items.php:502 +msgid "Move before to" +msgstr "Mover antes de" + +#: ../../godmode/reporting/reporting_builder.list_items.php:502 +msgid "Move after to" +msgstr "Mover despues de" + +#: ../../godmode/reporting/reporting_builder.list_items.php:524 +#: ../../godmode/reporting/reporting_builder.list_items.php:529 +msgid "Delete items" +msgstr "Borrar elementos" + +#: ../../godmode/reporting/reporting_builder.list_items.php:531 +msgid "Delete selected items from position: " +msgstr "Borrar los elementos seleccionados desde la posición: " + +#: ../../godmode/reporting/reporting_builder.list_items.php:533 +msgid "Delete above to" +msgstr "Borrar lo que está encima de" + +#: ../../godmode/reporting/reporting_builder.list_items.php:533 +msgid "Delete below to" +msgstr "Borrar lo que está debajo de" + +#: ../../godmode/reporting/reporting_builder.list_items.php:561 +msgid "" +"Are you sure to sort the items into the report?\\nThis action change the " +"sorting of items into data base." +msgstr "" +"Esta seguro de ordenar los items en el informe?\\n Esta acción cambiará el " +"orden the los items en la base de datos" + +#: ../../godmode/reporting/reporting_builder.list_items.php:582 +msgid "Please select any item to order" +msgstr "Por favor, seleccione cualquier item para ordenar" + +#: ../../godmode/reporting/reporting_builder.list_items.php:612 +msgid "Are you sure to delete the items into the report?\\n" +msgstr "¿Está seguro de borrar los items en el informe \\n" + +#: ../../godmode/reporting/reporting_builder.list_items.php:634 +msgid "Please select any item to delete" +msgstr "Por favor, seleccione cualquier item para borrar" + +#: ../../godmode/reporting/graph_builder.main.php:163 +msgid "Horizontal bars" +msgstr "Barras horizontales" + +#: ../../godmode/reporting/graph_builder.main.php:164 +msgid "Vertical bars" +msgstr "Barras verticales" + +#: ../../godmode/reporting/graphs.php:154 +msgid "Number of Graphs" +msgstr "Número de Gráficos" + +#: ../../godmode/reporting/graphs.php:213 +msgid "Create graph" +msgstr "Crear gráfica" + +#: ../../godmode/reporting/visual_console_builder.php:159 +msgid "This file isn't image" +msgstr "El fichero no es una imagen" + +#: ../../godmode/reporting/visual_console_builder.php:160 +msgid "This file isn't image." +msgstr "El archivo no es una imagen." + +#: ../../godmode/reporting/visual_console_builder.php:164 +#: ../../godmode/reporting/visual_console_builder.php:165 +msgid "File already are exists." +msgstr "El archivo ya existe." + +#: ../../godmode/reporting/visual_console_builder.php:171 +#: ../../godmode/reporting/visual_console_builder.php:172 +msgid "The file have not image extension." +msgstr "El archivo no tiene una extensión válida." + +#: ../../godmode/reporting/visual_console_builder.php:183 +#: ../../godmode/reporting/visual_console_builder.php:184 +#: ../../godmode/reporting/visual_console_builder.php:191 +#: ../../godmode/reporting/visual_console_builder.php:194 +msgid "Problems with move file to target." +msgstr "Problemas al mover el fichero al objetivo" + +#: ../../godmode/reporting/visual_console_builder.php:223 +msgid "Successfully update." +msgstr "Actualizado correctamente." + +#: ../../godmode/reporting/visual_console_builder.php:235 +msgid "Could not be update." +msgstr "No se puede actualizar" + +#: ../../godmode/reporting/visual_console_builder.php:250 +msgid "Successfully created." +msgstr "Creado correctamente." + +#: ../../godmode/reporting/visual_console_builder.php:263 +msgid "Could not be created." +msgstr "No se puede crear" + +#: ../../godmode/reporting/visual_console_builder.php:304 +msgid "Successfully multiple delete." +msgstr "Múltiple eliminación realizada con éxito" + +#: ../../godmode/reporting/visual_console_builder.php:305 +msgid "Unsuccessfull multiple delete." +msgstr "La eliminación múltiple no ha tenido éxito" + +#: ../../godmode/reporting/visual_console_builder.php:387 +msgid "Successfully delete." +msgstr "Borrado satisfactoriamente" + +#: ../../godmode/reporting/visual_console_builder.php:693 +msgid "New visual console" +msgstr "Nueva consola visual" + +#: ../../godmode/netflow/nf_item_list.php:44 +#: ../../godmode/netflow/nf_item_list.php:54 +msgid "Report items" +msgstr "Elementos de informe" + +#: ../../godmode/netflow/nf_item_list.php:49 +msgid "Edit report" +msgstr "Editar informe" + +#: ../../godmode/netflow/nf_item_list.php:58 +msgid "Netflow reports" +msgstr "Informes Netflow" + +#: ../../godmode/netflow/nf_item_list.php:59 +msgid "Item list" +msgstr "Lista de items" + +#: ../../godmode/netflow/nf_item_list.php:151 +msgid "Chart type" +msgstr "Tipo de gráfico" + +#: ../../godmode/netflow/nf_item_list.php:203 +#: ../../godmode/netflow/nf_item_list.php:210 +msgid "Move to down" +msgstr "Bajar" + +#: ../../godmode/netflow/nf_item_list.php:206 +#: ../../godmode/netflow/nf_item_list.php:209 +msgid "Move to up" +msgstr "Subir" + +#: ../../godmode/netflow/nf_item_list.php:255 +msgid "There are no defined items" +msgstr "No hay items definidos" + +#: ../../godmode/netflow/nf_edit_form.php:59 +#: ../../godmode/netflow/nf_edit_form.php:67 +msgid "Add filter" +msgstr "Añadir filtro" + +#: ../../godmode/netflow/nf_edit_form.php:62 +msgid "Netflow Filter" +msgstr "Filtro Netflow" + +#: ../../godmode/netflow/nf_edit_form.php:206 +msgid "Filter:" +msgstr "Filtrar:" + +#: ../../godmode/netflow/nf_edit.php:39 +msgid "Manage Netflow Filter" +msgstr "Filtro de gestión Netflow" + +#: ../../godmode/gis_maps/configure_gis_map.php:111 +msgid "Map successfully created" +msgstr "Mapa creado exitosamente" + +#: ../../godmode/gis_maps/configure_gis_map.php:112 +msgid "Map could not be created" +msgstr "El mapa no puso ser creado" + +#: ../../godmode/gis_maps/configure_gis_map.php:201 +msgid "Map successfully update" +msgstr "Mapa exitosamente actualizado" + +#: ../../godmode/gis_maps/configure_gis_map.php:202 +msgid "Map could not be updated" +msgstr "El mapa no ha podido ser actualizado" + +#: ../../godmode/gis_maps/configure_gis_map.php:219 +msgid "View GIS" +msgstr "Ver GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:222 +msgid "GIS Maps builder" +msgstr "Mapas GIS" + +#: ../../godmode/gis_maps/configure_gis_map.php:329 +msgid "Map Name" +msgstr "Nombre del mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:329 +msgid "Descriptive name for the map" +msgstr "nombre descriptivo para el mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:348 +msgid "Add Map connection" +msgstr "Añadir conexión a mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:348 +msgid "" +"At least one map connection must be defined, it will be possible to change " +"between the connections in the map" +msgstr "" +"Como mínimo una conexion de mapa debe definirse. Será posible intercambiar " +"las conexiones del mapa." + +#: ../../godmode/gis_maps/configure_gis_map.php:366 +msgid "Group that owns the map" +msgstr "Grupo dueño del mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:369 +msgid "Default zoom" +msgstr "Zoom por defecto" + +#: ../../godmode/gis_maps/configure_gis_map.php:369 +msgid "Default zoom level when opening the map" +msgstr "Nivel de zoom por defecto al abrir el mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:372 +msgid "Center Latitude" +msgstr "Latitud central" + +#: ../../godmode/gis_maps/configure_gis_map.php:375 +msgid "Center Longitude" +msgstr "Longitud central" + +#: ../../godmode/gis_maps/configure_gis_map.php:378 +msgid "Center Altitude" +msgstr "Altitud central" + +#: ../../godmode/gis_maps/configure_gis_map.php:381 +msgid "Default Latitude" +msgstr "Latitud por defecto" + +#: ../../godmode/gis_maps/configure_gis_map.php:384 +msgid "Default Longitude" +msgstr "Longitud por defecto" + +#: ../../godmode/gis_maps/configure_gis_map.php:387 +msgid "Default Altitude" +msgstr "Altitud por defecto" + +#: ../../godmode/gis_maps/configure_gis_map.php:392 +msgid "Layers" +msgstr "Capas" + +#: ../../godmode/gis_maps/configure_gis_map.php:392 +msgid "" +"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" + +#: ../../godmode/gis_maps/configure_gis_map.php:398 +msgid "List of layers" +msgstr "Lista de capas" + +#: ../../godmode/gis_maps/configure_gis_map.php:398 +msgid "It is possible to edit, delete and reorder the layers." +msgstr "Es posible editar, borrar y reordenar las capas" + +#: ../../godmode/gis_maps/configure_gis_map.php:399 +msgid "New layer" +msgstr "Nueva capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:407 +msgid "Layer name" +msgstr "Nombre capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:409 +msgid "Visible" +msgstr "Visible" + +#: ../../godmode/gis_maps/configure_gis_map.php:413 +msgid "Show agents from group" +msgstr "Mostrar agentes del grupo" + +#: ../../godmode/gis_maps/configure_gis_map.php:425 +msgid "Add agent" +msgstr "Añadir agente" + +#: ../../godmode/gis_maps/configure_gis_map.php:441 +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:448 +#: ../../godmode/gis_maps/configure_gis_map.php:624 +#: ../../godmode/gis_maps/configure_gis_map.php:635 +msgid "Save Layer" +msgstr "Guardar capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:464 +#: ../../godmode/gis_maps/configure_gis_map.php:471 +msgid "Save map" +msgstr "Guardar mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:467 +msgid "Update map" +msgstr "Actualizar mapa" + +#: ../../godmode/gis_maps/configure_gis_map.php:668 +#: ../../godmode/gis_maps/configure_gis_map.php:724 +msgid "Update Layer" +msgstr "Actualizar capa" + +#: ../../godmode/gis_maps/configure_gis_map.php:790 +msgid "Do you want to use the default data from the connection?" +msgstr "¿Quiere usar los datos que vienen por defecto de la conexión ?" + +#: ../../godmode/gis_maps/configure_gis_map.php:825 +msgid "The connection" +msgstr "La conexión" + +#: ../../godmode/gis_maps/configure_gis_map.php:825 +msgid "just added previously." +msgstr "Ya añadido previamente" + +#: ../../godmode/db/db_purge.php:37 ../../godmode/db/db_info.php:32 +#: ../../godmode/db/db_audit.php:19 ../../godmode/db/db_event.php:21 +#: ../../godmode/db/db_refine.php:33 +msgid "Database maintenance" +msgstr "Mantenimiento de la base de datos" + +#: ../../godmode/db/db_purge.php:43 +msgid "Get data from agent" +msgstr "Obtener datos de un agente" + +#: ../../godmode/db/db_purge.php:75 +#, php-format +msgid "Purge task launched for agent %s :: Data older than %s" +msgstr "" +"Tarea de purga lanzada por el agente% s :: Información anterior a % s" + +#: ../../godmode/db/db_purge.php:78 +msgid "" +"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)" + +#: ../../godmode/db/db_purge.php:92 +#, php-format +msgid "Deleting records for module %s" +msgstr "Eliminación de registros para el módulo% s" + +#: ../../godmode/db/db_purge.php:140 +#, php-format +msgid "Total errors: %s" +msgstr "Errores Totales: %s" + +#: ../../godmode/db/db_purge.php:141 ../../godmode/db/db_purge.php:144 +#, php-format +msgid "Total records deleted: %s" +msgstr "Total de registros eliminados: %s" + +#: ../../godmode/db/db_purge.php:149 +msgid "Deleting records for all agents" +msgstr "Borrando registros para el módulo" + +#: ../../godmode/db/db_purge.php:166 +msgid "Choose agent" +msgstr "Escoja agente" + +#: ../../godmode/db/db_purge.php:172 +msgid "Select the agent you want information about" +msgstr "Seleccione el agente del que quiera obtener información" + +#: ../../godmode/db/db_purge.php:174 +msgid "Get data" +msgstr "Obtener datos" + +#: ../../godmode/db/db_purge.php:175 +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" + +#: ../../godmode/db/db_purge.php:179 +#, php-format +msgid "Information on agent %s in the database" +msgstr "Información acerca del agente %s en la base de datos" + +#: ../../godmode/db/db_purge.php:182 +msgid "Information on all agents in the database" +msgstr "Información acerca de todos los agentes en la base de datos" + +#: ../../godmode/db/db_purge.php:317 +msgid "Packets less than three months old" +msgstr "Paquetes con menos de tres meses" + +#: ../../godmode/db/db_purge.php:319 +msgid "Packets less than one month old" +msgstr "Paquetes con menos de un mes" + +#: ../../godmode/db/db_purge.php:321 +msgid "Packets less than two weeks old" +msgstr "Paquetes con menos de dos semanas" + +#: ../../godmode/db/db_purge.php:323 +msgid "Packets less than one week old" +msgstr "Paquetes con menos de una semana" + +#: ../../godmode/db/db_purge.php:325 +msgid "Packets less than three days old" +msgstr "Paquetes con menos de tres días" + +#: ../../godmode/db/db_purge.php:327 +msgid "Packets less than one day old" +msgstr "Paquetes con menos de 24 horas" + +#: ../../godmode/db/db_purge.php:329 +msgid "Total number of packets" +msgstr "Número máximo de paquetes" + +#: ../../godmode/db/db_purge.php:335 ../../godmode/db/db_audit.php:92 +#: ../../godmode/db/db_event.php:73 +msgid "Purge data" +msgstr "Purgar datos" + +#: ../../godmode/db/db_purge.php:340 +msgid "Purge data over 3 months" +msgstr "Purgar los datos con más de 3 meses" + +#: ../../godmode/db/db_purge.php:341 +msgid "Purge data over 1 month" +msgstr "Purgar los datos con más de 1 mes" + +#: ../../godmode/db/db_purge.php:342 +msgid "Purge data over 2 weeks" +msgstr "Purgar los datos con mas de 2 semanas" + +#: ../../godmode/db/db_purge.php:343 +msgid "Purge data over 1 week" +msgstr "Purgar los datos con más de 1 semana" + +#: ../../godmode/db/db_purge.php:344 +msgid "Purge data over 3 days" +msgstr "Purgar los datos con más de 3 días" + +#: ../../godmode/db/db_purge.php:345 +msgid "Purge data over 1 day" +msgstr "Purgar los datos con más de 1 día" + +#: ../../godmode/db/db_purge.php:346 +msgid "All data until now" +msgstr "Todos los datos hasta ahora" + +#: ../../godmode/db/db_purge.php:350 +msgid "Purge" +msgstr "Purgar" + +#: ../../godmode/db/db_main.php:69 +msgid "Current database maintenance setup" +msgstr "Configuración actual del mantenimiento de la BB. DD." + +#: ../../godmode/db/db_main.php:76 +msgid "Database setup" +msgstr "Configuración de la base de datos" + +#: ../../godmode/db/db_main.php:80 +msgid "Max. time before compact data" +msgstr "Máx. días antes de comprimir datos" + +#: ../../godmode/db/db_main.php:86 +msgid "Max. time before purge" +msgstr "Máx. días antes de eliminar datos" + +#: ../../godmode/db/db_main.php:95 +msgid "Database size stats" +msgstr "Tamaño de estadísticas de la base de datos" + +#: ../../godmode/db/db_main.php:111 +msgid "Total data items (tagente_datos)" +msgstr "Total de items de datos (tagente_datos)" + +#: ../../godmode/db/db_main.php:123 +msgid "Total log4x items (tagente_datos_log4x)" +msgstr "Total elementos Log4x (tagente_datos_log4x)" + +#: ../../godmode/db/db_main.php:135 +msgid "Total data string items (tagente_datos_string)" +msgstr "total campos datos en cadena (tagente_datos_string)" + +#: ../../godmode/db/db_main.php:141 +msgid "Total modules configured" +msgstr "Módulos totales configurados" + +#: ../../godmode/db/db_main.php:149 +msgid "Total agent access records" +msgstr "total de registros de acceso del agente" + +#: ../../godmode/db/db_main.php:160 +msgid "Database sanity" +msgstr "Estado de la BBDD" + +#: ../../godmode/db/db_main.php:164 +msgid "Total uknown agents" +msgstr "total de agentes desconocidos" + +#: ../../godmode/db/db_main.php:170 +msgid "Total non-init modules" +msgstr "total de módulos no iniciados" + +#: ../../godmode/db/db_main.php:179 +msgid "Last time on DB maintance" +msgstr "Ultima vez en mantenimiento de base de datos" + +#: ../../godmode/db/db_main.php:200 +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" +msgstr "" +"Por favor, asegúrese 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 está " +"correctamente instalado y funcionando. Es muy importante para el correcto " +"funcionamiento y rendimiento de Pandora." + +#: ../../godmode/db/db_info.php:32 +msgid "Database information" +msgstr "Información de la base de datos" + +#: ../../godmode/db/db_info.php:34 +msgid "Module data received" +msgstr "Datos de módulo recibidos" + +#: ../../godmode/db/db_audit.php:19 +msgid "Database audit purge" +msgstr "Depuración de la base de datos de auditoría" + +#: ../../godmode/db/db_audit.php:70 +msgid "Success data deleted" +msgstr "Dato borrado correctamente" + +#: ../../godmode/db/db_audit.php:72 +msgid "Error deleting data" +msgstr "Error borrando datos" + +#: ../../godmode/db/db_audit.php:81 ../../godmode/db/db_event.php:62 +msgid "Records" +msgstr "Registros" + +#: ../../godmode/db/db_audit.php:84 ../../godmode/db/db_event.php:64 +msgid "First date" +msgstr "Primera fecha" + +#: ../../godmode/db/db_audit.php:88 +msgid "Latest date" +msgstr "Última fecha" + +#: ../../godmode/db/db_audit.php:97 +msgid "Purge audit data over 90 days" +msgstr "Borrar los datos de auditoría excepto el último trimestre" + +#: ../../godmode/db/db_audit.php:98 +msgid "Purge audit data over 30 days" +msgstr "Borrar los datos de auditoría excepto los últimos 30 días" + +#: ../../godmode/db/db_audit.php:99 +msgid "Purge audit data over 14 days" +msgstr "Borrar los datos de auditoría excepto las últimas dos semanas" + +#: ../../godmode/db/db_audit.php:100 +msgid "Purge audit data over 7 days" +msgstr "Borrar los datos de auditoría excepto la última semana" + +#: ../../godmode/db/db_audit.php:101 +msgid "Purge audit data over 3 days" +msgstr "Borrar los datos de auditoría excepto los últimos tres días" + +#: ../../godmode/db/db_audit.php:102 +msgid "Purge audit data over 1 day" +msgstr "Borrar los datos de auditoría excepto el ultimo día" + +#: ../../godmode/db/db_audit.php:103 +msgid "Purge all audit data" +msgstr "Borrar todos los datos de auditoría" + +#: ../../godmode/db/db_audit.php:107 ../../godmode/db/db_event.php:92 +msgid "Do it!" +msgstr "¡Hazlo!" + +#: ../../godmode/db/db_event.php:22 +msgid "Event database cleanup" +msgstr "Limpieza de la base de datos de eventos" + +#: ../../godmode/db/db_event.php:40 +msgid "Successfully deleted old events" +msgstr "Eventos antiguos borrados correctamente" + +#: ../../godmode/db/db_event.php:43 +msgid "Error deleting old events" +msgstr "Error al borrar los eventos antiguos" + +#: ../../godmode/db/db_event.php:67 +msgid "Latest data" +msgstr "Últimos datos" + +#: ../../godmode/db/db_event.php:81 +msgid "Purge event data over 90 days" +msgstr "Borrar los datos de eventos excepto el último trimestre" + +#: ../../godmode/db/db_event.php:82 +msgid "Purge event data over 30 days" +msgstr "Borrar los datos de eventos excepto los últimos 30 días" + +#: ../../godmode/db/db_event.php:83 +msgid "Purge event data over 14 days" +msgstr "Borrar los datos de eventos excepto las últimas dos semanas" + +#: ../../godmode/db/db_event.php:84 +msgid "Purge event data over 7 days" +msgstr "Borrar los datos de eventos excepto la última semana" + +#: ../../godmode/db/db_event.php:85 +msgid "Purge event data over 3 days" +msgstr "Borrar los datos de eventos excepto los últimos tres días" + +#: ../../godmode/db/db_event.php:86 +msgid "Purge event data over 1 day" +msgstr "Borrar todos los datos de eventos, excepto las últimas 24 horas" + +#: ../../godmode/db/db_event.php:87 +msgid "Purge all event data" +msgstr "Borrar todos los datos de eventos" + +#: ../../godmode/db/db_refine.php:42 +msgid "Maximum is equal to minimum" +msgstr "El máximo es igual al mínimo" + +#: ../../godmode/db/db_refine.php:56 +msgid "Filtering data module" +msgstr "Filtrando módulo de datos" + +#: ../../godmode/db/db_refine.php:76 +msgid "Filtering completed" +msgstr "Filtrado completado" + +#: ../../godmode/db/db_refine.php:88 +msgid "No agent selected" +msgstr "No hay ningún agente seleccionado" + +#: ../../godmode/db/db_refine.php:92 +msgid "Get Info" +msgstr "Obtener info." + +#: ../../godmode/db/db_refine.php:105 +msgid "Purge data out of these limits" +msgstr "Purgar los datos fuera de esos límites" + +#: ../../godmode/servers/manage_recontask_form.php:189 +msgid "" +"By default, in Windows, Pandora FMS only support Standard network sweep, not " +"custom scripts" +msgstr "" +"Por defecto, en Windows, Pandora FMS sólo soporta Standard Network Sweep, no " +"scripts personalizados" + +#: ../../godmode/servers/manage_recontask_form.php:224 +msgid "" +"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, de otra forma la tarea " +"Recon nunca se ejecutará" + +#: ../../godmode/servers/manage_recontask_form.php:232 +msgid "Network sweep" +msgstr "Barrido de red" + +#: ../../godmode/servers/manage_recontask_form.php:234 +msgid "Custom script" +msgstr "Script personalizado" + +#: ../../godmode/servers/manage_recontask_form.php:253 +msgid "Manual interval means that it will be executed only On-demand" +msgstr "Intervalo manual significa que será ejecutado solo bajo demanda" + +#: ../../godmode/servers/manage_recontask_form.php:255 +#: ../../godmode/servers/manage_recontask.php:346 +msgid "Manual" +msgstr "Manual" + +#: ../../godmode/servers/manage_recontask_form.php:260 +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/servers/manage_recontask_form.php:265 +msgid "Module template" +msgstr "Plantilla de módulos" + +#: ../../godmode/servers/manage_recontask_form.php:299 +#: ../../godmode/servers/manage_recontask.php:291 +msgid "Ports" +msgstr "Puertos" + +#: ../../godmode/servers/manage_recontask_form.php:302 +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 "" +"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 deteccion en " +"funcion de puertos TCP, dejarlo en blanco." + +#: ../../godmode/servers/manage_recontask_form.php:313 +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 por el " +"contrario, no se crea" + +#: ../../godmode/servers/manage_recontask_form.php:316 +msgid "SNMP Default community" +msgstr "Comunidad SNMP por defecto" + +#: ../../godmode/servers/manage_recontask_form.php:322 +msgid "Explanation" +msgstr "Explicacion" + +#: ../../godmode/servers/manage_recontask_form.php:363 +msgid "OS detection" +msgstr "Detección de SO" + +#: ../../godmode/servers/manage_recontask_form.php:367 +msgid "Name resolution" +msgstr "Resolución de nombres" + +#: ../../godmode/servers/manage_recontask_form.php:371 +msgid "Parent detection" +msgstr "Detección de padres" + +#: ../../godmode/servers/manage_recontask_form.php:375 +msgid "Parent recursion" +msgstr "Recursión del padre" + +#: ../../godmode/servers/manage_recontask_form.php:376 +msgid "" +"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)" + +#: ../../godmode/servers/manage_recontask.php:55 +msgid "Successfully deleted recon task" +msgstr "Tarea recon borrada correctamente" + +#: ../../godmode/servers/manage_recontask.php:58 +msgid "Error deleting recon task" +msgstr "Error al borrar tarea recon" + +#: ../../godmode/servers/manage_recontask.php:68 +#: ../../godmode/servers/manage_recontask.php:179 +msgid "Successfully updated recon task" +msgstr "Tarea de reconocimiento actualizada correctamente" + +#: ../../godmode/servers/manage_recontask.php:75 +#: ../../godmode/servers/manage_recontask.php:182 +msgid "Error updating recon task" +msgstr "Error al actualizar la tarea recon" + +#: ../../godmode/servers/manage_recontask.php:163 +#: ../../godmode/servers/manage_recontask.php:234 +msgid "Wrong format in Subnet field" +msgstr "Formato incorrecto en el campo subnet" + +#: ../../godmode/servers/manage_recontask.php:230 +msgid "Recon-task name already exists and incorrect format in Subnet field" +msgstr "" +"Nombre de tarea recon ya existe y formato incorrecto en el campo de subred" + +#: ../../godmode/servers/manage_recontask.php:238 +#: ../../godmode/servers/manage_recontask.php:247 +msgid "Recon-task name already exists" +msgstr "El nombre de la tarea de recon ya existe" + +#: ../../godmode/servers/manage_recontask.php:261 +msgid "Successfully created recon task" +msgstr "Tarea de reconocimiento creada correctamente" + +#: ../../godmode/servers/manage_recontask.php:264 +msgid "Error creating recon task" +msgstr "Error al crear la tarea de reconocimiento" + +#: ../../godmode/servers/manage_recontask.php:387 +msgid "There are no recon task configured" +msgstr "No hay ninguna tarea de reconocimiento configurada" + +#: ../../godmode/servers/recon_script.php:73 +msgid "Recon script creation" +msgstr "Creación del Recon script" + +#: ../../godmode/servers/recon_script.php:75 +msgid "Recon script update" +msgstr "Actualizar el Recon Script" + +#: ../../godmode/servers/recon_script.php:101 +msgid "Script fullpath" +msgstr "Ruta completa del script" + +#: ../../godmode/servers/recon_script.php:161 +#: ../../godmode/servers/plugin.php:451 +msgid "Default value" +msgstr "Valor por defecto" + +#: ../../godmode/servers/recon_script.php:174 +#: ../../godmode/servers/plugin.php:464 +msgid "Hide value" +msgstr "Ocultar valor" + +#: ../../godmode/servers/recon_script.php:174 +#: ../../godmode/servers/plugin.php:464 +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/recon_script.php:199 +#: ../../godmode/servers/plugin.php:491 +msgid "Add macro" +msgstr "Añadir macro" + +#: ../../godmode/servers/recon_script.php:206 +#: ../../godmode/servers/plugin.php:506 +msgid "Delete macro" +msgstr "Eliminar macro" + +#: ../../godmode/servers/recon_script.php:228 +msgid "Recon scripts registered in Pandora FMS" +msgstr "Recon scripts registrados en Pandora FMS" + +#: ../../godmode/servers/recon_script.php:271 +msgid "Problem updating" +msgstr "Problema actualizando" + +#: ../../godmode/servers/recon_script.php:274 +#: ../../godmode/modules/manage_network_components.php:352 +msgid "Updated successfully" +msgstr "Actualizado correctamente" + +#: ../../godmode/servers/recon_script.php:317 +msgid "Problem creating" +msgstr "Problema creando" + +#: ../../godmode/servers/recon_script.php:320 +#: ../../godmode/modules/manage_network_components.php:261 +msgid "Created successfully" +msgstr "Creado correctamente" + +#: ../../godmode/servers/recon_script.php:331 +msgid "Problem deleting reconscript" +msgstr "Problemas al borrar el Recon script" + +#: ../../godmode/servers/recon_script.php:334 +msgid "reconscript deleted successfully" +msgstr "El Recon Script ha sido eliminado con exito" + +#: ../../godmode/servers/recon_script.php:378 +msgid "There are no recon scripts in the system" +msgstr "No existen Recon scripts en el sistema" + +#: ../../godmode/servers/servers.build_table.php:38 +msgid "There are no servers configured into the database" +msgstr "No hay ningún servidor configurado en la base de datos" + +#: ../../godmode/servers/servers.build_table.php:69 +msgid "Lag" +msgstr "Retraso" + +#: ../../godmode/servers/servers.build_table.php:69 +msgid "Avg. Delay(sec)/Modules delayed" +msgstr "Media borra (sec)/ Modulos retrasado" + +#: ../../godmode/servers/servers.build_table.php:70 +msgid "T/Q" +msgstr "H/C" + +#: ../../godmode/servers/servers.build_table.php:70 +msgid "Threads / Queued modules currently" +msgstr "Hilos / Cola actual de módulos" + +#: ../../godmode/servers/servers.build_table.php:97 +msgid "This is a master server" +msgstr "Este es un servidor maestro" + +#: ../../godmode/servers/servers.build_table.php:110 +#: ../../godmode/servers/servers.build_table.php:115 +msgid "of" +msgstr "de" + +#: ../../godmode/servers/servers.build_table.php:142 +msgid "Reset module status and fired alert counts" +msgstr "" +"Reiniciar estado de los módulos y el conteo de las alertas disparadas" + +#: ../../godmode/servers/servers.build_table.php:148 +msgid "Claim back SNMP modules" +msgstr "Re-ejecutar modulos SNMP" + +#: ../../godmode/servers/servers.build_table.php:168 +msgid "" +"Modules run by this server will stop working. Do you want to continue?" +msgstr "" +"Los módulos ejecutados por este servidor pueden dejar de funcionar. ¿ Quiere " +"continuar ?" + +#: ../../godmode/servers/servers.build_table.php:189 +msgid "Tactical server information" +msgstr "Vista táctica del servidor" + +#: ../../godmode/servers/modificar_server.php:35 +msgid "Update Server" +msgstr "Actualizar servidor" + +#: ../../godmode/servers/modificar_server.php:61 +msgid "Remote Configuration" +msgstr "Configuración remota" + +#: ../../godmode/servers/modificar_server.php:66 +msgid "Pandora servers" +msgstr "Servidores" + +#: ../../godmode/servers/modificar_server.php:73 +#: ../../godmode/servers/modificar_server.php:85 +msgid "Unsuccessfull action" +msgstr "No se pudo completar la acción" + +#: ../../godmode/servers/modificar_server.php:76 +#: ../../godmode/servers/modificar_server.php:88 +msgid "Successfully action" +msgstr "Acción procesada satisfactoriamente" + +#: ../../godmode/servers/modificar_server.php:98 +msgid "Server deleted successfully" +msgstr "Servidor eliminado correctamente" + +#: ../../godmode/servers/modificar_server.php:101 +msgid "There was a problem deleting the server" +msgstr "Hubo un problema al eliminar el servidor" + +#: ../../godmode/servers/modificar_server.php:112 +msgid "Server updated successfully" +msgstr "Servidor actualizado correctamente" + +#: ../../godmode/servers/modificar_server.php:115 +msgid "There was a problem updating the server" +msgstr "Hubo un problema al actualizar el servidor" + +#: ../../godmode/servers/modificar_server.php:134 +#: ../../godmode/agentes/configurar_agente.php:610 +msgid "Conf file deleted successfully" +msgstr "Archivo conf borrado con éxito" + +#: ../../godmode/servers/modificar_server.php:135 +#: ../../godmode/agentes/configurar_agente.php:611 +msgid "Could not delete conf file" +msgstr "No se puede borrar el archivo conf" + +#: ../../godmode/servers/plugin.php:53 +msgid "Network Components" +msgstr "Componentes de red" + +#: ../../godmode/servers/plugin.php:170 +msgid "Compatibility mode" +msgstr "Modo de compatibilidad" + +#: ../../godmode/servers/plugin.php:266 +msgid "Plugin creation" +msgstr "Creación de complementos" + +#: ../../godmode/servers/plugin.php:269 +msgid "Plugin update" +msgstr "Actualización de complemento" + +#: ../../godmode/servers/plugin.php:299 +msgid "Plugin type" +msgstr "Tipo de complemento" + +#: ../../godmode/servers/plugin.php:300 ../../godmode/servers/plugin.php:759 +msgid "Standard" +msgstr "Estándar" + +#: ../../godmode/servers/plugin.php:301 ../../godmode/servers/plugin.php:761 +msgid "Nagios" +msgstr "Nagios" + +#: ../../godmode/servers/plugin.php:306 +msgid "Max. timeout" +msgstr "Máx. tiempo de expiración" + +#: ../../godmode/servers/plugin.php:306 +msgid "" +"This value only will be applied if is minor than the server general " +"configuration plugin timeout" +msgstr "" +"Este valor sólo se aplicará si es menor que el timeout del plugin de la " +"configuración general del servidor" + +#: ../../godmode/servers/plugin.php:306 +msgid "" +"If you set a 0 seconds timeout, the server plugin timeout will be used" +msgstr "" +"Si fija en 0 segundos el timeout, se utilizará el timeout del plugin del " +"servidor" + +#: ../../godmode/servers/plugin.php:362 +msgid "Plugin command" +msgstr "Comando del complemento" + +#: ../../godmode/servers/plugin.php:373 +msgid "Plug-in parameters" +msgstr "Parámetros del plugin" + +#: ../../godmode/servers/plugin.php:524 ../../godmode/servers/plugin.php:531 +msgid "Parameters macros" +msgstr "Macros de los parámetros" + +#: ../../godmode/servers/plugin.php:564 +msgid "Plugins registered in Pandora FMS" +msgstr "Plugins registrados en Pandora FMS" + +#: ../../godmode/servers/plugin.php:569 +msgid "You need to create your own plugins with Windows compatibility" +msgstr "Necesitas crear tus propios plugins compatibles con Windows" + +#: ../../godmode/servers/plugin.php:629 +msgid "Problem updating plugin" +msgstr "Problema actualizando plugin" + +#: ../../godmode/servers/plugin.php:632 +msgid "Plugin updated successfully" +msgstr "Plugin actualizado correctamente" + +#: ../../godmode/servers/plugin.php:687 +msgid "Problem creating plugin" +msgstr "Problema al crear plugin" + +#: ../../godmode/servers/plugin.php:690 +msgid "Plugin created successfully" +msgstr "Plugin creado correctamente" + +#: ../../godmode/servers/plugin.php:700 +msgid "Problem deleting plugin" +msgstr "Error al borrar plugin" + +#: ../../godmode/servers/plugin.php:703 +msgid "Plugin deleted successfully" +msgstr "Plugin borrado correctamente" + +#: ../../godmode/servers/plugin.php:782 +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:789 +msgid "There are no plugins in the system" +msgstr "No hay plugins en el sistema" + +#: ../../godmode/servers/plugin.php:801 +#, 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:909 ../../godmode/servers/plugin.php:925 +msgid "Some modules or components are using the plugin" +msgstr "Algunos módulos o componentes están usando el plugin" + +#: ../../godmode/servers/plugin.php:910 +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:912 +msgid "Are you sure you want to perform this action?" +msgstr "¿Está seguro de querer realizar esta acción?" + +#: ../../godmode/servers/plugin.php:926 +msgid "Are you sure you want to unlock this item?" +msgstr "¿Está seguro de querer desbloquear este elemento?" + +#: ../../godmode/servers/plugin.php:946 +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:952 +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/admin_access_logs.php:33 +msgid "Pandora audit" +msgstr "Auditoría de Pandora FMS" + +#: ../../godmode/admin_access_logs.php:33 +msgid "Review Logs" +msgstr "Revisar logs" + +#: ../../godmode/admin_access_logs.php:65 +#: ../../godmode/admin_access_logs.php:66 +msgid "Free text for search (*)" +msgstr "Búsqueda libre de texto" + +#: ../../godmode/admin_access_logs.php:303 +msgid "Export to CSV " +msgstr "Exportar a CSV " + +#: ../../godmode/update_manager/update_manager.online.php:48 +#, php-format +msgid "" +"Your PHP has set memory limit in %s. For avoid problems with big updates " +"please set to 500M" +msgstr "" +"Tu PHP tiene configurado set memory limit a %s. Para evitar problemas con " +"actualizaciones de gran tamaño, por favor configuralo a 500M" + +#: ../../godmode/update_manager/update_manager.online.php:55 +#, php-format +msgid "" +"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 corrija a 100M" + +#: ../../godmode/update_manager/update_manager.online.php:62 +#, 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" +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 corrija a 100 M" + +#: ../../godmode/update_manager/update_manager.online.php:85 +msgid "The last version of package installed is:" +msgstr "La última versión de paquete instalada es:" + +#: ../../godmode/update_manager/update_manager.online.php:89 +msgid "Checking for the newest package." +msgstr "Comprobando el paquete más reciente" + +#: ../../godmode/update_manager/update_manager.online.php:93 +msgid "Downloading for the newest package." +msgstr "Descargando nuevos paquetes" + +#: ../../godmode/update_manager/update_manager.offline.php:37 +msgid "Drop the package here or" +msgstr "Arrastre el paquete hasta aquí o" + +#: ../../godmode/update_manager/update_manager.offline.php:38 +msgid "browse it" +msgstr "Navegue hasta él" + +#: ../../godmode/update_manager/update_manager.offline.php:39 +msgid "The package has been uploaded successfully." +msgstr "Se ha subido correctamente el paquete." + +#: ../../godmode/update_manager/update_manager.offline.php:40 +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." +msgstr "" +"Recuerda que este paquete sobreescribirá los ficheros actuales de Pandora " +"FMS. Se recomienda hacer un backup antes de continuar el proceso" + +#: ../../godmode/update_manager/update_manager.offline.php:41 +msgid "Click on the file below to begin." +msgstr "Click en el fichero de abajo para comenzar" + +#: ../../godmode/update_manager/update_manager.offline.php:42 +msgid "Updating" +msgstr "Actualizando" + +#: ../../godmode/update_manager/update_manager.offline.php:43 +msgid "Package updated successfully." +msgstr "Paquete actualizado correctamente." + +#: ../../godmode/update_manager/update_manager.offline.php:44 +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" + +#: ../../godmode/update_manager/update_manager.offline.php:45 +msgid "Package not updated." +msgstr "Paquete no actualizado." + +#: ../../godmode/update_manager/update_manager.offline.php:46 +msgid "Error in MR file" +msgstr "Error en el fichero MR" + +#: ../../godmode/update_manager/update_manager.offline.php:47 +msgid "MR not accepted" +msgstr "Minor Release no aceptada" + +#: ../../godmode/update_manager/update_manager.php:39 +msgid "Offline update manager" +msgstr "Gestor de actualizaciones offline" + +#: ../../godmode/update_manager/update_manager.php:43 +msgid "Online update manager" +msgstr "Gestor de actualizaciones online" + +#: ../../godmode/update_manager/update_manager.php:50 +msgid "Update manager messages" +msgstr "Mensajes del administrador de actualizaciones" + +#: ../../godmode/update_manager/update_manager.php:55 +msgid "Update manager » Setup" +msgstr "Configuración gestor de actualizaciones" + +#: ../../godmode/update_manager/update_manager.php:58 +msgid "Update manager » Offline" +msgstr "Gestor de actualizaciones offline" + +#: ../../godmode/update_manager/update_manager.php:61 +msgid "Update manager » Online" +msgstr "Gestor de actualizaciones online" + +#: ../../godmode/update_manager/update_manager.php:64 +msgid "Update manager » Messages" +msgstr "Administrador de actualizaciones » Mensajes" + +#: ../../godmode/update_manager/update_manager.messages.php:96 +#: ../../godmode/update_manager/update_manager.messages.php:170 +msgid "Mark as not read" +msgstr "Marcar como no leído" + +#: ../../godmode/update_manager/update_manager.messages.php:101 +#: ../../godmode/update_manager/update_manager.messages.php:175 +msgid "Mark as read" +msgstr "Marcar como leído" + +#: ../../godmode/update_manager/update_manager.messages.php:186 +msgid "There is not any update manager messages." +msgstr "No hay ningún mensaje del administrador de actualizaciones." + +#: ../../godmode/update_manager/update_manager.setup.php:58 +#: ../../godmode/update_manager/update_manager.setup.php:87 +msgid "Succesful Update the url config vars." +msgstr "Actualizadas con éxito las variables de configuración de la url" + +#: ../../godmode/update_manager/update_manager.setup.php:59 +#: ../../godmode/update_manager/update_manager.setup.php:88 +msgid "Unsuccesful Update the url config vars." +msgstr "Error al actualizar las variables de configuración de la url" + +#: ../../godmode/update_manager/update_manager.setup.php:100 +msgid "URL update manager:" +msgstr "URL gestor de actualizaciones" + +#: ../../godmode/update_manager/update_manager.setup.php:102 +msgid "URL update manager" +msgstr "URL update manager" + +#: ../../godmode/update_manager/update_manager.setup.php:104 +msgid "Proxy server:" +msgstr "Servidor Proxy:" + +#: ../../godmode/update_manager/update_manager.setup.php:106 +msgid "Proxy server" +msgstr "Servidor proxy" + +#: ../../godmode/update_manager/update_manager.setup.php:108 +msgid "Proxy port:" +msgstr "Puerto Proxy:" + +#: ../../godmode/update_manager/update_manager.setup.php:110 +msgid "Proxy port" +msgstr "Puerto del proxy" + +#: ../../godmode/update_manager/update_manager.setup.php:112 +msgid "Proxy user:" +msgstr "Usuario del Proxy:" + +#: ../../godmode/update_manager/update_manager.setup.php:114 +msgid "Proxy user" +msgstr "Usuario del proxy" + +#: ../../godmode/update_manager/update_manager.setup.php:116 +msgid "Proxy password:" +msgstr "Contraseña del Proxy:" + +#: ../../godmode/update_manager/update_manager.setup.php:118 +msgid "Proxy password" +msgstr "Contraseña del proxy" + +#: ../../godmode/update_manager/update_manager.setup.php:122 +msgid "Pandora FMS community reminder" +msgstr "Recordatorio de la comunidad de Pandora FMS" + +#: ../../godmode/update_manager/update_manager.setup.php:123 +msgid "" +"Every 8 days, a message is displayed to admin users to remember to register " +"this Pandora instance" +msgstr "" +"Cada 8 días, un mensaje será mostrado al administrador para que recuerde " +"registrar esta instancia de Pandora" + +#: ../../godmode/category/category.php:44 +#: ../../godmode/category/category.php:51 +#: ../../godmode/category/edit_category.php:43 +#: ../../godmode/category/edit_category.php:50 +msgid "List categories" +msgstr "Lista de categorías" + +#: ../../godmode/category/category.php:58 +#: ../../godmode/category/category.php:61 +#: ../../godmode/category/edit_category.php:57 +#: ../../godmode/category/edit_category.php:60 +msgid "Categories configuration" +msgstr "Configuración de categorías" + +#: ../../godmode/category/category.php:72 +msgid "Error deleting category" +msgstr "Error al eliminar categoría" + +#: ../../godmode/category/category.php:76 +msgid "Successfully deleted category" +msgstr "Categoría eliminada con éxito" + +#: ../../godmode/category/category.php:110 +msgid "Category name" +msgstr "Nombre de la categoría" + +#: ../../godmode/category/category.php:141 +msgid "No categories found" +msgstr "Ninguna categoría encontrada" + +#: ../../godmode/category/category.php:150 +#: ../../godmode/category/edit_category.php:146 +msgid "Create category" +msgstr "Crear categoría" + +#: ../../godmode/category/edit_category.php:57 +msgid "Editor" +msgstr "Editor" + +#: ../../godmode/category/edit_category.php:76 +msgid "Error updating category" +msgstr "Error al actualizar categoría" + +#: ../../godmode/category/edit_category.php:80 +msgid "Successfully updated category" +msgstr "Categoría actualizada con éxito" + +#: ../../godmode/category/edit_category.php:99 +msgid "Error creating category" +msgstr "Error al crear categoría" + +#: ../../godmode/category/edit_category.php:105 +msgid "Successfully created category" +msgstr "Categoría creada con éxito" + +#: ../../godmode/category/edit_category.php:137 +msgid "Update category" +msgstr "Actualizar categoría" + +#: ../../godmode/groups/configure_modu_group.php:32 +msgid "Module group management" +msgstr "gestión del grupo de módulos" + +#: ../../godmode/groups/configure_modu_group.php:51 +#: ../../godmode/groups/configure_group.php:70 +msgid "There was a problem loading group" +msgstr "Hubo un error al cargar la configuración del grupo" + +#: ../../godmode/groups/group_list.php:158 +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:164 +msgid "Groups defined in Pandora" +msgstr "Grupos definidos en Pandora FMS" + +#: ../../godmode/groups/group_list.php:210 +#: ../../godmode/groups/modu_group_list.php:75 +msgid "Group successfully created" +msgstr "Grupo creado correctamente" + +#: ../../godmode/groups/group_list.php:213 +#: ../../godmode/groups/modu_group_list.php:78 +msgid "There was a problem creating group" +msgstr "Ha habido un problema al crear el grupo" + +#: ../../godmode/groups/group_list.php:217 +msgid "Each group must have a different name" +msgstr "Cada grupo debe tener un nombre diferente" + +#: ../../godmode/groups/group_list.php:222 +msgid "Group must have a name" +msgstr "El grupo debe tener un nombre" + +#: ../../godmode/groups/group_list.php:266 +#: ../../godmode/groups/modu_group_list.php:106 +msgid "Group successfully updated" +msgstr "Grupo actualizado correctamente" + +#: ../../godmode/groups/group_list.php:269 +#: ../../godmode/groups/modu_group_list.php:109 +msgid "There was a problem modifying group" +msgstr "Ha habido un problema al modificar el grupo" + +#: ../../godmode/groups/group_list.php:294 +#, 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:298 +#: ../../godmode/groups/modu_group_list.php:138 +msgid "Group successfully deleted" +msgstr "Grupo eliminado correctamente" + +#: ../../godmode/groups/group_list.php:301 +#: ../../godmode/groups/modu_group_list.php:136 +msgid "There was a problem deleting group" +msgstr "Ha habido un problema al borrar el grupo" + +#: ../../godmode/groups/group_list.php:390 +msgid "There are no defined groups" +msgstr "No hay grupos definidos" + +#: ../../godmode/groups/group_list.php:396 +#: ../../godmode/groups/configure_group.php:94 +msgid "Create group" +msgstr "Crear grupo" + +#: ../../godmode/groups/configure_group.php:92 +msgid "Update group" +msgstr "Actualizar grupo" + +#: ../../godmode/groups/configure_group.php:106 +msgid "Update Group" +msgstr "Actualizar Grupo" + +#: ../../godmode/groups/configure_group.php:108 +msgid "Create Group" +msgstr "Crear Grupo" + +#: ../../godmode/groups/configure_group.php:144 +msgid "You have not access to the parent." +msgstr "No tiene acceso al padre" + +#: ../../godmode/groups/configure_group.php:166 +msgid "Group Password" +msgstr "Contraseña del grupo" + +#: ../../godmode/groups/configure_group.php:174 +msgid "Propagate ACL" +msgstr "Propagar ACL" + +#: ../../godmode/groups/configure_group.php:174 +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:186 +msgid "Contact" +msgstr "Contacto" + +#: ../../godmode/groups/configure_group.php:186 +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:190 +msgid "Information accessible through the _group_other_ macro" +msgstr "Información accesible a través de _group_other_ macro" + +#: ../../godmode/groups/configure_group.php:238 +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. " +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. " + +#: ../../godmode/groups/modu_group_list.php:55 +msgid "Module groups defined in Pandora" +msgstr "Grupos de módulos definidos en Pandora" + +#: ../../godmode/groups/modu_group_list.php:82 +#: ../../godmode/groups/modu_group_list.php:113 +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:86 +#: ../../godmode/groups/modu_group_list.php:117 +msgid "Module group must have a name" +msgstr "El grupo de módulos debe tener un nombre" + +#: ../../godmode/groups/modu_group_list.php:208 +msgid "There are no defined module groups" +msgstr "No hay grupos de módulos definidos" + +#: ../../godmode/groups/modu_group_list.php:213 +msgid "Create module group" +msgstr "crear grupo de módulos" + +#: ../../godmode/modules/module_list.php:28 +#: ../../godmode/modules/manage_nc_groups.php:40 +#: ../../godmode/modules/manage_network_components.php:50 +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module management" +msgstr "Gestión de módulos" + +#: ../../godmode/modules/module_list.php:28 +msgid "Defined modules" +msgstr "Módulos definidos" + +#: ../../godmode/modules/module_list.php:50 +msgid "Problem modifying module" +msgstr "Problema al modificar los módulos" + +#: ../../godmode/modules/module_list.php:52 +msgid "Module updated successfully" +msgstr "Actualización de módulos correcta" + +#: ../../godmode/modules/manage_network_components_form_network.php:47 +msgid "SNMP Enterprise String" +msgstr "Cadena SNMP Enterprise" + +#: ../../godmode/modules/manage_network_components_form_network.php:50 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:353 +#: ../../godmode/agentes/module_manager_editor_network.php:119 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:714 +msgid "SNMP community" +msgstr "Comunidad SNMP" + +#: ../../godmode/modules/manage_network_components_form_network.php:90 +#: ../../godmode/agentes/module_manager_editor_network.php:171 +msgid "TCP send" +msgstr "Enviar TCP" + +#: ../../godmode/modules/manage_network_components_form_network.php:97 +#: ../../godmode/agentes/module_manager_editor_network.php:177 +msgid "TCP receive" +msgstr "Recibir TCP" + +#: ../../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:58 +msgid "Could not be created. Blank name" +msgstr "No pudo ser creado. Nombre en blanco" + +#: ../../godmode/modules/manage_nc_groups.php:154 +#: ../../godmode/modules/manage_network_components.php:399 +#: ../../godmode/modules/manage_network_templates.php:85 +msgid "Successfully multiple deleted" +msgstr "Borrado múltiple satisfactorio" + +#: ../../godmode/modules/manage_nc_groups.php:155 +#: ../../godmode/modules/manage_network_components.php:400 +#: ../../godmode/modules/manage_network_templates.php:86 +msgid "Not deleted. Error deleting multiple data" +msgstr "No borrado. Error al borrar múltiples datos" + +#: ../../godmode/modules/manage_nc_groups.php:238 +msgid "There are no defined component groups" +msgstr "No hay grupos de componentes definidos" + +#: ../../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:57 +msgid "Create Group Component" +msgstr "Crear componentes de grupo" + +#: ../../godmode/modules/manage_network_components.php:51 +msgid "Network component management" +msgstr "Gestión de los componentes de red" + +#: ../../godmode/modules/manage_network_components.php:516 +msgid "Free Search" +msgstr "Búsqueda libre" + +#: ../../godmode/modules/manage_network_components.php:517 +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 concidencias" + +#: ../../godmode/modules/manage_network_components.php:569 +msgid "Max/Min" +msgstr "Máx/Mín" + +#: ../../godmode/modules/manage_network_components.php:595 +msgid "Network module" +msgstr "Módulo de la red" + +#: ../../godmode/modules/manage_network_components.php:599 +msgid "WMI module" +msgstr "Módulo WMI" + +#: ../../godmode/modules/manage_network_components.php:603 +msgid "Plug-in module" +msgstr "Módulo de plugin" + +#: ../../godmode/modules/manage_network_components.php:634 +msgid "There are no defined network components" +msgstr "No hay componentes de red definidos" + +#: ../../godmode/modules/manage_network_components.php:641 +msgid "Create a new network component" +msgstr "Crear un componente de red nuevo" + +#: ../../godmode/modules/manage_network_components.php:642 +msgid "Create a new plugin component" +msgstr "Crear un componente de complemento nuevo" + +#: ../../godmode/modules/manage_network_components.php:643 +msgid "Create a new WMI component" +msgstr "Crear un componente WMI nuevo" + +#: ../../godmode/modules/manage_network_components_form.php:253 +msgid "Update Network Component" +msgstr "Actualización de componente de red" + +#: ../../godmode/modules/manage_network_components_form.php:256 +msgid "Create Network Component" +msgstr "Crear componente de red" + +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module template management" +msgstr "Gestión de plantillas de módulos" + +#: ../../godmode/modules/manage_network_templates_form.php:54 +msgid "Successfully deleted module from profile" +msgstr "Módulo borrado del perfil correctamente" + +#: ../../godmode/modules/manage_network_templates_form.php:55 +msgid "Error deleting module from profile" +msgstr "Error al borrar el módulo del perfil" + +#: ../../godmode/modules/manage_network_templates_form.php:70 +msgid "Successfully added module to profile" +msgstr "Módulo añadido correctamente al perfil" + +#: ../../godmode/modules/manage_network_templates_form.php:71 +msgid "Error adding module to profile" +msgstr "Error al añadir el módulo al perfil" + +#: ../../godmode/modules/manage_network_templates_form.php:94 +msgid "Successfully updated network profile" +msgstr "Perfil de red actualizado correctamente" + +#: ../../godmode/modules/manage_network_templates_form.php:95 +msgid "Error updating network profile" +msgstr "Error al actualizar el perfil de red" + +#: ../../godmode/modules/manage_network_templates_form.php:110 +msgid "Successfully added network profile" +msgstr "Perfil de red añadido correctamente" + +#: ../../godmode/modules/manage_network_templates_form.php:111 +msgid "Error adding network profile" +msgstr "Error al añadir el perfil de red" + +#: ../../godmode/modules/manage_network_templates_form.php:116 +msgid "Cannot create a template without name" +msgstr "No se puede crear una plantilla sin nombre" + +#: ../../godmode/modules/manage_network_templates_form.php:184 +msgid "No modules for this profile" +msgstr "No existen módulos para este perfil" + +#: ../../godmode/modules/manage_network_templates_form.php:224 +msgid "Add modules" +msgstr "Añadir módulos" + +#: ../../godmode/modules/manage_network_templates_form.php:302 +msgid "Components" +msgstr "Componentes" + +#: ../../godmode/modules/manage_network_components_form_common.php:109 +#: ../../godmode/agentes/module_manager_editor_common.php:258 +msgid "Advanced options Dynamic Threshold" +msgstr "Opciones avanzadas Rango Dinámico" + +#: ../../godmode/modules/manage_network_components_form_common.php:111 +msgid "Dynamic Min. " +msgstr "Dinámico mínimo. " + +#: ../../godmode/modules/manage_network_components_form_common.php:165 +msgid "Any value below this number is discarted" +msgstr "Cualquier valor por debajo de este número está descartado" + +#: ../../godmode/modules/manage_network_components_form_common.php:167 +msgid "Any value over this number is discarted" +msgstr "Cualquier valor por encima de este número está descartado" + +#: ../../godmode/modules/manage_network_components_form_common.php:212 +#: ../../godmode/agentes/module_manager_editor_common.php:478 +msgid "Tags available" +msgstr "Etiquetas disponibles" + +#: ../../godmode/modules/manage_network_components_form_common.php:219 +#: ../../godmode/agentes/module_manager_editor_common.php:540 +msgid "Add tags to module" +msgstr "Añadir etiquetas al módulo" + +#: ../../godmode/modules/manage_network_components_form_common.php:220 +#: ../../godmode/agentes/module_manager_editor_common.php:541 +msgid "Delete tags to module" +msgstr "Eliminar etiquetas del módulo" + +#: ../../godmode/modules/manage_network_components_form_common.php:222 +#: ../../godmode/agentes/module_manager_editor_common.php:543 +msgid "Tags selected" +msgstr "Etiquetas seleccionadas" + +#: ../../godmode/modules/manage_network_components_form_common.php:379 +#: ../../godmode/agentes/module_manager_editor_common.php:1248 +msgid "Normal Status" +msgstr "Estado normal" + +#: ../../godmode/modules/manage_network_components_form_common.php:380 +#: ../../godmode/agentes/module_manager_editor_common.php:1249 +msgid "Warning Status" +msgstr "Estado de aviso" + +#: ../../godmode/modules/manage_network_components_form_common.php:381 +#: ../../godmode/agentes/module_manager_editor_common.php:1250 +msgid "Critical Status" +msgstr "Estado crítico" + +#: ../../godmode/modules/manage_network_components_form_common.php:602 +#: ../../godmode/agentes/module_manager_editor_common.php:1471 +msgid "Please introduce a maximum warning higher than the minimun warning" +msgstr "" +"Por favor introduzca un máximo de alerta mayor que el mínimo de alerta" + +#: ../../godmode/modules/manage_network_components_form_common.php:603 +#: ../../godmode/agentes/module_manager_editor_common.php:1472 +msgid "Please introduce a maximum critical higher than the minimun critical" +msgstr "" +"Por favor introduzca un máximo de crítico mayor que el mínimo de crítico" + +#: ../../godmode/modules/manage_network_templates.php:61 +msgid "Template successfully deleted" +msgstr "Plantilla borrada correctamente" + +#: ../../godmode/modules/manage_network_templates.php:62 +msgid "Error deleting template" +msgstr "Error al borrar la plantilla" + +#: ../../godmode/modules/manage_network_templates.php:94 +msgid "This template does not exist" +msgstr "Esta plantilla no existe" + +#: ../../godmode/modules/manage_network_templates.php:232 +msgid "There are no defined network profiles" +msgstr "No hay ningún perfil de red definido" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:32 +#: ../../godmode/agentes/module_manager_editor_wmi.php:64 +msgid "WMI query" +msgstr "Consulta WMI" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:34 +#: ../../godmode/agentes/module_manager_editor_wmi.php:73 +msgid "Key string" +msgstr "Texto clave" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:40 +#: ../../godmode/agentes/module_manager_editor_wmi.php:77 +msgid "Field number" +msgstr "Campo número" + +#: ../../godmode/modules/manage_network_components_form_wmi.php:42 +#: ../../godmode/agentes/module_manager_editor_wmi.php:47 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:257 +msgid "Namespace" +msgstr "Espacio de nombres" + +#: ../../godmode/agentes/configurar_agente.php:187 +#: ../../godmode/agentes/configurar_agente.php:733 +msgid "No agent alias specified" +msgstr "No se ha especificado el alias del agente" + +#: ../../godmode/agentes/configurar_agente.php:268 +msgid "Could not be created, because name already exists" +msgstr "No se pudo crear, el nombre ya existe" + +#: ../../godmode/agentes/configurar_agente.php:385 +msgid "Agent wizard" +msgstr "Wizard de agente" + +#: ../../godmode/agentes/configurar_agente.php:397 +#: ../../godmode/agentes/configurar_agente.php:561 +msgid "SNMP Interfaces wizard" +msgstr "Wizard de interfaces SNMP" + +#: ../../godmode/agentes/configurar_agente.php:402 +#: ../../godmode/agentes/configurar_agente.php:564 +msgid "WMI Wizard" +msgstr "Wizard WMI" + +#: ../../godmode/agentes/configurar_agente.php:523 +msgid "Collection" +msgstr "Colección" + +#: ../../godmode/agentes/configurar_agente.php:531 +msgid "Agent plugins" +msgstr "Plugins del agente" + +#: ../../godmode/agentes/configurar_agente.php:546 +msgid "Gis" +msgstr "Gis" + +#: ../../godmode/agentes/configurar_agente.php:572 +msgid "SNMP explorer" +msgstr "Explorador SNMP" + +#: ../../godmode/agentes/configurar_agente.php:587 +msgid "Agent manager" +msgstr "Administrador de agente" + +#: ../../godmode/agentes/configurar_agente.php:647 +#: ../../godmode/agentes/configurar_agente.php:652 +msgid "No data to normalize" +msgstr "No hay datos para normalizar" + +#: ../../godmode/agentes/configurar_agente.php:656 +#, php-format +msgid "Deleted data above %f" +msgstr "Eliminar datos por encima de %f" + +#: ../../godmode/agentes/configurar_agente.php:657 +#, php-format +msgid "Error normalizing module %s" +msgstr "Error al normalizar el módulo %s" + +#: ../../godmode/agentes/configurar_agente.php:782 +msgid "There was a problem updating the agent" +msgstr "Hubo un problema al actualizar el agente" + +#: ../../godmode/agentes/configurar_agente.php:826 +msgid "There was a problem loading the agent" +msgstr "Hubo un problema al cargar el agente" + +#: ../../godmode/agentes/configurar_agente.php:1227 +msgid "" +"There was a problem updating module. Another module already exists with the " +"same name." +msgstr "" +"Hubo un problema al actualizar el módulo. Existe ya otro módulo con el mismo " +"nombre." + +#: ../../godmode/agentes/configurar_agente.php:1230 +msgid "" +"There was a problem updating module. Some required fields are missed: (name)" +msgstr "" +"Hubo un problema actualizando el módulo. Faltan algunos campos " +"requeridos:(nombre)" + +#: ../../godmode/agentes/configurar_agente.php:1233 +msgid "There was a problem updating module. \"No change\"" +msgstr "Hubo un problema al actualizar el módulo. \"Sin cambio\"" + +#: ../../godmode/agentes/configurar_agente.php:1238 +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:1258 +msgid "Module successfully updated" +msgstr "Módulo actualizado correctamente" + +#: ../../godmode/agentes/configurar_agente.php:1367 +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. Existe ya otro módulo con el mismo " +"nombre." + +#: ../../godmode/agentes/configurar_agente.php:1370 +msgid "" +"There was a problem adding module. Some required fields are missed : (name)" +msgstr "" +"Hubo un problema al añadir el módulo.Algunos campos requeridos faltan " +":(nombre)" + +#: ../../godmode/agentes/configurar_agente.php:1375 +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:1511 +msgid "There was a problem deleting the module" +msgstr "Hubo un problema al borrar el módulo" + +#: ../../godmode/agentes/configurar_agente.php:1514 +msgid "Module deleted succesfully" +msgstr "Módulo borrado correctamente" + +#: ../../godmode/agentes/configurar_agente.php:1528 +#, php-format +msgid "copy of %s" +msgstr "copia de %s" + +#: ../../godmode/agentes/configurar_agente.php:1538 +#, php-format +msgid "copy of %s (%d)" +msgstr "copia de %s (%d)" + +#: ../../godmode/agentes/configurar_agente.php:1696 +#: ../../godmode/agentes/configurar_agente.php:1706 +msgid "Invalid tab specified" +msgstr "La solapa no es válida" + +#: ../../godmode/agentes/module_manager_editor.php:390 +msgid "This policy is applying and cannot be modified" +msgstr "Esta política se está aplicando y no puede ser modificada" + +#: ../../godmode/agentes/module_manager_editor.php:394 +msgid "Module will be linked in the next application" +msgstr "El módulo será enlazado en la próxima aplicación" + +#: ../../godmode/agentes/module_manager_editor.php:402 +msgid "Module will be unlinked in the next application" +msgstr "El módulo será desenlazado en la próxima aplicación" + +#: ../../godmode/agentes/module_manager_editor.php:490 +#, php-format +msgid "DEBUG: Invalid module type specified in %s:%s" +msgstr "DEBUG: tipo de módulo inválido especificado en %s:%s" + +#: ../../godmode/agentes/module_manager_editor.php:491 +msgid "" +"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 "" +"Lo más probable es que haya actualizado recientemente una versión anterior " +"de Pandora FMS y, o bien
    \n" +"\n" +"\t \t \t \t 1) Se olvidó de utilizar el convertidor de la base de datos
    \n" +"\t \t \t \t 2) Ha usado una versión mala del convertidor de base de datos " +"(vea el informe de error # 2124706 para solucionarlo)
    \n" +"\t \t \t \t 3) Ha encontrado un nuevo error - por favor, indique una manera " +"de duplicar este error" + +#: ../../godmode/agentes/module_manager_editor.php:517 +#: ../../godmode/agentes/module_manager_editor_common.php:667 +msgid "Custom macros" +msgstr "Macros personalizadas" + +#: ../../godmode/agentes/module_manager_editor.php:519 +msgid "Module relations" +msgstr "Relaciones entre módulos" + +#: ../../godmode/agentes/module_manager_editor.php:565 +msgid "No module name provided" +msgstr "No se proporcionó ningún nombre de módulo" + +#: ../../godmode/agentes/module_manager_editor.php:566 +msgid "No target IP provided" +msgstr "No se proporcionó ninguna IP de destino" + +#: ../../godmode/agentes/module_manager_editor.php:567 +msgid "No SNMP OID provided" +msgstr "No se proporcionó ningún OID de SMTP" + +#: ../../godmode/agentes/module_manager_editor.php:568 +msgid "No module to predict" +msgstr "No existe ningún módulo para predecir" + +#: ../../godmode/agentes/module_manager_editor.php:569 +msgid "No plug-in provided" +msgstr "Complemento no proporcionado" + +#: ../../godmode/agentes/module_manager_editor.php:592 +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/planned_downtime.export_csv.php:199 +#: ../../godmode/agentes/planned_downtime.list.php:358 +msgid "No planned downtime" +msgstr "No hay ninguna parada planificada" + +#: ../../godmode/agentes/module_manager_editor_common.php:70 +msgid "Using module component" +msgstr "Utilizar módulo de librería" + +#: ../../godmode/agentes/module_manager_editor_common.php:76 +#: ../../godmode/agentes/module_manager_editor_common.php:85 +msgid "Manual setup" +msgstr "Configuración manual" + +#: ../../godmode/agentes/module_manager_editor_common.php:81 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:336 +msgid "No component was found" +msgstr "No se encontró ningún componente" + +#: ../../godmode/agentes/module_manager_editor_common.php:161 +msgid "Delete module" +msgstr "Eliminar Módulo" + +#: ../../godmode/agentes/module_manager_editor_common.php:180 +msgid "Module parent" +msgstr "Padre del módulo" + +#: ../../godmode/agentes/module_manager_editor_common.php:256 +msgid "Dynamic Threshold Interval" +msgstr "Intervalo de rango dinámico" + +#: ../../godmode/agentes/module_manager_editor_common.php:268 +msgid "Dynamic Threshold Min. " +msgstr "Rango dinámico mínimo " + +#: ../../godmode/agentes/module_manager_editor_common.php:271 +msgid "Dynamic Threshold Max. " +msgstr "Rango dinámico máximo " + +#: ../../godmode/agentes/module_manager_editor_common.php:274 +msgid "Dynamic Threshold Two Tailed: " +msgstr "Rango dinámico dos fallido " + +#: ../../godmode/agentes/module_manager_editor_common.php:280 +#: ../../godmode/agentes/module_manager_editor_common.php:301 +msgid "Min. " +msgstr "Min. " + +#: ../../godmode/agentes/module_manager_editor_common.php:385 +#: ../../godmode/agentes/module_manager_editor_common.php:388 +#, php-format +msgid "Agent interval x %s" +msgstr "Intervalo del agente x %s" + +#: ../../godmode/agentes/module_manager_editor_common.php:398 +#: ../../godmode/agentes/module_manager.php:733 +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 data solo actualizarán sus intervalos cuando " +"la política sea aplicada" + +#: ../../godmode/agentes/module_manager_editor_common.php:422 +msgid "Any value below this number is discarted." +msgstr "Cualquier valor por debajo de este número queda descartado" + +#: ../../godmode/agentes/module_manager_editor_common.php:424 +msgid "Any value over this number is discarted." +msgstr "Cualquier valor por encima de este número es descartado" + +#: ../../godmode/agentes/module_manager_editor_common.php:433 +msgid "Not needed" +msgstr "No necesario" + +#: ../../godmode/agentes/module_manager_editor_common.php:437 +msgid "" +"In case you use an Export server you can link this module and export data to " +"one these." +msgstr "" +"En caso de que use un Export server, puede enlazar este modulo y exportar " +"los datos con el export server." + +#: ../../godmode/agentes/module_manager_editor_common.php:471 +msgid "This value can be set only in the async modules." +msgstr "Solo debe establecerse este valor en los módulos asíncronos" + +#: ../../godmode/agentes/module_manager_editor_common.php:554 +msgid "Tags from policy" +msgstr "Etiquetas desde política" + +#: ../../godmode/agentes/module_manager_editor_common.php:567 +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" + +#: ../../godmode/agentes/module_manager_editor_common.php:590 +#: ../../godmode/agentes/module_manager_editor_common.php:600 +#: ../../godmode/agentes/module_manager_editor_common.php:611 +msgid "Cron from" +msgstr "Formulario de cron" + +#: ../../godmode/agentes/module_manager_editor_common.php:591 +#: ../../godmode/agentes/module_manager_editor_common.php:601 +#: ../../godmode/agentes/module_manager_editor_common.php:612 +msgid "" +"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" + +#: ../../godmode/agentes/module_manager_editor_common.php:595 +#: ../../godmode/agentes/module_manager_editor_common.php:605 +#: ../../godmode/agentes/module_manager_editor_common.php:616 +msgid "Cron to" +msgstr "Cron desde" + +#: ../../godmode/agentes/module_manager_editor_common.php:624 +msgid "Retries" +msgstr "Reintentos" + +#: ../../godmode/agentes/module_manager_editor_common.php:625 +msgid "Number of retries that the module will attempt to run." +msgstr "Número de intentos que el módulo intentara activar" + +#: ../../godmode/agentes/module_manager_editor_common.php:701 +msgid "Add relationship" +msgstr "Añadir relación" + +#: ../../godmode/agentes/module_manager_editor_common.php:719 +msgid "Changes" +msgstr "Cambios" + +#: ../../godmode/agentes/module_manager_editor_common.php:719 +msgid "Activate this to prevent the relation from being updated or deleted" +msgstr "Activar esta opción para evitar que sea actualizado o borrado" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:179 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:298 +msgid "No agent selected or the agent does not exist" +msgstr "No se ha seleccionado un agente o ese agente no existe." + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:286 +msgid "Successfully modules created" +msgstr "Módulos creados con éxito." + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:296 +msgid "Another module already exists with the same name" +msgstr "Ya existe otro módulo con el mismo nombre" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:299 +msgid "Some required fields are missed" +msgstr "Faltan campos necesarios por rellenar" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:299 +msgid "name" +msgstr "nombre" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:304 +msgid "Processing error" +msgstr "Error de procesamiento" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:345 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:706 +msgid "Use agent ip" +msgstr "Usar ip del agente" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:377 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:739 +msgid "privacy pass" +msgstr "pase privado" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:397 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:759 +msgid "SNMP Walk" +msgstr "Exploración SNMP" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:401 +msgid "Unable to do SNMP walk" +msgstr "No se pudo realizar el SNMP walk" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:435 +msgid "Interfaces" +msgstr "Interfaces" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:447 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:369 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:875 +msgid "Create modules" +msgstr "Crear módulos" + +#: ../../godmode/agentes/module_manager_editor_network.php:152 +msgid "SNMP OID" +msgstr "SNMP OID" + +#: ../../godmode/agentes/agent_conf_gis.php:53 +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:60 +msgid "Agent position" +msgstr "Posición del agente" + +#: ../../godmode/agentes/agent_conf_gis.php:66 +msgid "Latitude: " +msgstr "Latitud: " + +#: ../../godmode/agentes/agent_conf_gis.php:70 +msgid "Longitude: " +msgstr "Longitud: " + +#: ../../godmode/agentes/agent_conf_gis.php:74 +msgid "Altitude: " +msgstr "Altitud: " + +#: ../../godmode/agentes/configure_field.php:36 +msgid "Update agent custom field" +msgstr "Actualizar campo personalizado" + +#: ../../godmode/agentes/configure_field.php:39 +msgid "Create agent custom field" +msgstr "Crear campo personalizado" + +#: ../../godmode/agentes/planned_downtime.editor.php:115 +#: ../../godmode/agentes/planned_downtime.editor.php:187 +#: ../../godmode/agentes/planned_downtime.editor.php:942 +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:318 +msgid "Cannot be modified while the downtime is being executed" +msgstr "No pueden ser modificado mientras se está ejecutando la parada" + +#: ../../godmode/agentes/planned_downtime.editor.php:485 +msgid "Quiet: Modules will not generate events or fire alerts." +msgstr "Tranquilo: Módulos no generarán eventos o lanzar alertas." + +#: ../../godmode/agentes/planned_downtime.editor.php:486 +msgid "Disable Agents: Disables the selected agents." +msgstr "Deshabilitar agentes: Deshabilita los agentes seleccionados" + +#: ../../godmode/agentes/planned_downtime.editor.php:487 +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:489 +#: ../../godmode/agentes/planned_downtime.list.php:428 +msgid "Disabled Agents" +msgstr "Agentes desactivados" + +#: ../../godmode/agentes/planned_downtime.editor.php:490 +#: ../../godmode/agentes/planned_downtime.list.php:429 +msgid "Disabled only Alerts" +msgstr "Deshabilitar sólo alertas" + +#: ../../godmode/agentes/planned_downtime.editor.php:494 +#: ../../godmode/agentes/planned_downtime.list.php:153 +msgid "Once" +msgstr "Una vez" + +#: ../../godmode/agentes/planned_downtime.editor.php:495 +#: ../../godmode/agentes/planned_downtime.list.php:153 +#: ../../godmode/agentes/planned_downtime.list.php:434 +msgid "Periodically" +msgstr "Periodicamente" + +#: ../../godmode/agentes/planned_downtime.editor.php:500 +msgid "Configure the time" +msgstr "Configurar el tiempo" + +#: ../../godmode/agentes/planned_downtime.editor.php:531 +msgid "Type Periodicity:" +msgstr "Periodicidad del tipo" + +#: ../../godmode/agentes/planned_downtime.editor.php:533 +#: ../../godmode/agentes/module_manager_editor_prediction.php:152 +msgid "Weekly" +msgstr "Semanalmente" + +#: ../../godmode/agentes/planned_downtime.editor.php:534 +#: ../../godmode/agentes/module_manager_editor_prediction.php:153 +msgid "Monthly" +msgstr "Mensualmente" + +#: ../../godmode/agentes/planned_downtime.editor.php:569 +msgid "From day:" +msgstr "Desde el día:" + +#: ../../godmode/agentes/planned_downtime.editor.php:575 +msgid "To day:" +msgstr "Hasta el día:" + +#: ../../godmode/agentes/planned_downtime.editor.php:586 +msgid "From hour:" +msgstr "Desde la hora:" + +#: ../../godmode/agentes/planned_downtime.editor.php:594 +msgid "To hour:" +msgstr "Hasta la hora:" + +#: ../../godmode/agentes/planned_downtime.editor.php:637 +msgid "Available agents" +msgstr "Agentes disponibles" + +#: ../../godmode/agentes/planned_downtime.editor.php:708 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:316 +msgid "Filter by group" +msgstr "Filtrar por grupo" + +#: ../../godmode/agentes/planned_downtime.editor.php:714 +msgid "Available modules:" +msgstr "Módulos disponibles:" + +#: ../../godmode/agentes/planned_downtime.editor.php:715 +msgid "Only for type Quiet for downtimes." +msgstr "Sólo para tipo Quiet para paradas" + +#: ../../godmode/agentes/planned_downtime.editor.php:729 +msgid "Agents planned for this downtime" +msgstr "Agentes planificados para esta parada" + +#: ../../godmode/agentes/planned_downtime.editor.php:744 +msgid "There are no agents" +msgstr "No hay agentes" + +#: ../../godmode/agentes/planned_downtime.editor.php:780 +msgid "All alerts" +msgstr "Todas las alertas" + +#: ../../godmode/agentes/planned_downtime.editor.php:783 +msgid "Entire agent" +msgstr "Agente completo" + +#: ../../godmode/agentes/planned_downtime.editor.php:787 +#: ../../godmode/agentes/planned_downtime.editor.php:892 +msgid "All modules" +msgstr "Todos los módulos" + +#: ../../godmode/agentes/planned_downtime.editor.php:790 +#: ../../godmode/agentes/planned_downtime.editor.php:884 +#: ../../godmode/agentes/planned_downtime.editor.php:888 +msgid "Some modules" +msgstr "Algunos módulos" + +#: ../../godmode/agentes/planned_downtime.editor.php:856 +msgid "Add Module:" +msgstr "Añadir módulo:" + +#: ../../godmode/agentes/planned_downtime.editor.php:1072 +msgid "Please select a module." +msgstr "Por favor, seleccione un módulo" + +#: ../../godmode/agentes/planned_downtime.editor.php:1204 +msgid "" +"WARNING: If you edit this planned 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/agent_wizard.wmi_explorer.php:111 +#, php-format +msgid "Free space on %s" +msgstr "Espacio libre en %s" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:204 +#, php-format +msgid "%s service modules created succesfully" +msgstr "%s modulos de servicio creados correctamente" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:207 +#, php-format +msgid "Error creating %s service modules" +msgstr "Error creando %s modulos de servicio" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:212 +#, php-format +msgid "%s process modules created succesfully" +msgstr "%s módulos de proceso creados correctamente" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:215 +#, php-format +msgid "Error creating %s process modules" +msgstr "Error al crear %s módulos de proceso" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:220 +#, php-format +msgid "%s disk space modules created succesfully" +msgstr "%s módulos de espacio en disco creados correctamente" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:223 +#, php-format +msgid "Error creating %s disk space modules" +msgstr "Error creando %s modulos de espacio en disco" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:228 +#, php-format +msgid "%s modules created from components succesfully" +msgstr "%s módulos creados correctamente desde los componentes" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:231 +#, php-format +msgid "Error creating %s modules from components" +msgstr "Error al crear %s módulos desde los componentes" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:234 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:676 +#, php-format +msgid "%s modules already exist" +msgstr "%s módulos ya existen" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:274 +msgid "WMI Explore" +msgstr "Explorador WMI" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:278 +msgid "Unable to do WMI explorer" +msgstr "Imposible lanzar el Explorador WMI" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:302 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:794 +msgid "Free space on disk" +msgstr "Espacio libre en disco" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:303 +msgid "WMI components" +msgstr "Componentes WMI" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:305 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 +msgid "Wizard mode" +msgstr "Modo wizard" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:348 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:350 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:352 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:354 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:854 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:856 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:858 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:860 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:863 +msgid "Add to modules list" +msgstr "Añadir a lista de módulos" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:358 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:865 +msgid "Remove from modules list" +msgstr "Eliminar de la lista de módulos" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:491 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1027 +msgid "Modules list is empty" +msgstr "La lista de módulos está vacía." + +#: ../../godmode/agentes/agent_manager.php:156 +msgid "The agent's name must be the same as the one defined at the console" +msgstr "El nombre del agente debe ser el mismo que el definido en la consola" + +#: ../../godmode/agentes/agent_manager.php:159 +msgid "QR Code Agent view" +msgstr "Código QR de la vista de agente" + +#: ../../godmode/agentes/agent_manager.php:193 +msgid "This agent can be remotely configured" +msgstr "Este agente puede ser configurado remotamente" + +#: ../../godmode/agentes/agent_manager.php:196 +msgid "You can remotely edit this agent configuration" +msgstr "Puede editar remotamente la configuración de este agente" + +#: ../../godmode/agentes/agent_manager.php:203 +msgid "Delete agent" +msgstr "Borrar agente" + +#: ../../godmode/agentes/agent_manager.php:205 +msgid "Alias" +msgstr "Alias" + +#: ../../godmode/agentes/agent_manager.php:208 +msgid "Use alias as name" +msgstr "Usar el alias como nombre" + +#: ../../godmode/agentes/agent_manager.php:238 +msgid "Only it is show when
    the agent is saved." +msgstr "Solo muestra cuando
    el agente es guardado." + +#: ../../godmode/agentes/agent_manager.php:335 +msgid "Autodisable mode" +msgstr "Modo auto deshabilitado" + +#: ../../godmode/agentes/agent_manager.php:363 +msgid "Delete remote configuration file" +msgstr "Borrar el archivo de configuración remota." + +#: ../../godmode/agentes/agent_manager.php:366 +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, debe reactivar la " +"configuración remota en el agente local." + +#: ../../godmode/agentes/agent_manager.php:381 +msgid "Agent icon for GIS Maps." +msgstr "Icono de agente para mapas GIS." + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 +msgid "The SNMP remote plugin doesnt seem to be installed" +msgstr "El plugin remoto SNMP no parece estar instalado" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 +msgid "It is necessary to use some features" +msgstr "Necesita usar algunas características" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:65 +msgid "" +"Please, install the SNMP remote plugin (The name of the plugin must be " +"snmp_remote.pl)" +msgstr "" +"Por favor, instale el plugin remoto de SNMP (El nombre del plugin debe ser " +"snmp_remote.pl)" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:253 +msgid "Remote system doesnt support host SNMP information" +msgstr "Sistema remoto no soporta información del host SNMP" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:338 +msgid "The number of bytes read from this device since boot" +msgstr "El número de bytes leídos desde este dispositivo desde el arranque" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:340 +msgid "The number of bytes written to this device since boot" +msgstr "El número de bytes escritos en este dispositivo desde el arranque" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:342 +msgid "The number of read accesses from this device since boot" +msgstr "" +"El número de lectura accesible desde este dispositivo desde el arranque" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:344 +msgid "The number of write accesses from this device since boot" +msgstr "" +"El número de escritura accesible desde este dispositivo desde el arranque" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:519 +#, php-format +msgid "Check if the process %s is running or not" +msgstr "Compruebe si el proceso %s se está ejecutando correctamente" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:590 +msgid "Disk use information" +msgstr "Información del disco en uso" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:661 +#, php-format +msgid "%s modules created succesfully" +msgstr "%s módulos creados correctamente" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:666 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:671 +#, php-format +msgid "Error creating %s modules" +msgstr "Error al crear %s módulos" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:685 +msgid "Modules created succesfully" +msgstr "Módulos creados con éxito" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 +msgid "" +"If the device is a network device, try with the SNMP Interfaces wizard" +msgstr "" +"Si el dispositivo es un dispositivo de red, pruebe con el Wizard de interfaz " +"SNMP" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:792 +msgid "Devices" +msgstr "Dispositivos" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:795 +msgid "Temperature sensors" +msgstr "Sensores de temperatura" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:796 +msgid "Other SNMP data" +msgstr "Otros datos SNMP" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:817 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:822 +msgid "SNMP remote plugin is necessary for this feature" +msgstr "Se necesita el plugin remoto SNMP para esta funcionalidad" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:932 +msgid "Device" +msgstr "Dispositivo" + +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:980 +msgid "Temperature" +msgstr "Temperatura" + +#: ../../godmode/agentes/modificar_agente.php:62 +msgid "Agents defined in Pandora" +msgstr "Agentes definidos en Pandora" + +#: ../../godmode/agentes/modificar_agente.php:87 +msgid "Success deleted agent." +msgstr "Agente eliminado correctamente" + +#: ../../godmode/agentes/modificar_agente.php:87 +msgid "Could not be deleted." +msgstr "No pudo ser borrado." + +#: ../../godmode/agentes/modificar_agente.php:94 +msgid "Maybe the files conf or md5 could not be deleted" +msgstr "Los ficheros conf o md5 han podido no ser borrados" + +#: ../../godmode/agentes/modificar_agente.php:154 +msgid "Show Agents" +msgstr "Mostrar Agentes" + +#: ../../godmode/agentes/modificar_agente.php:156 +msgid "Everyone" +msgstr "Todos" + +#: ../../godmode/agentes/modificar_agente.php:481 +msgid "Remote agent configuration" +msgstr "Configuración remota del agente" + +#: ../../godmode/agentes/modificar_agente.php:481 +msgid "R" +msgstr "R" + +#: ../../godmode/agentes/modificar_agente.php:597 +msgid "Edit remote config" +msgstr "Editar configuración remota" + +#: ../../godmode/agentes/modificar_agente.php:624 +msgid "Enable agent" +msgstr "Habilitar agente" + +#: ../../godmode/agentes/modificar_agente.php:629 +msgid "Disable agent" +msgstr "Deshabilitar agente" + +#: ../../godmode/agentes/fields_manager.php:31 +msgid "Agents custom fields manager" +msgstr "Gestor de campos personalizados del agente." + +#: ../../godmode/agentes/fields_manager.php:44 +msgid "The name must not be empty" +msgstr "El nombre no puede estar vacío" + +#: ../../godmode/agentes/fields_manager.php:47 +msgid "The name must be unique" +msgstr "El nombre debe ser único" + +#: ../../godmode/agentes/fields_manager.php:52 +msgid "Field successfully created" +msgstr "Se ha creado el campo" + +#: ../../godmode/agentes/fields_manager.php:69 +msgid "Field successfully updated" +msgstr "Se ha actualizado el campo" + +#: ../../godmode/agentes/fields_manager.php:72 +msgid "There was a problem modifying field" +msgstr "Ha habido un problema al modificar el campo" + +#: ../../godmode/agentes/fields_manager.php:82 +msgid "There was a problem deleting field" +msgstr "Ha habido un problema al borrar el campo" + +#: ../../godmode/agentes/fields_manager.php:84 +msgid "Field successfully deleted" +msgstr "El campo se ha borrado correctamente" + +#: ../../godmode/agentes/fields_manager.php:138 +msgid "Create field" +msgstr "Crear campo" + +#: ../../godmode/agentes/agent_incidents.php:67 +msgid "No incidents associated to this agent" +msgstr "No hay incidentes asociados a este agente" + +#: ../../godmode/agentes/module_manager.php:78 +msgid "Create a new data server module" +msgstr "Crear un nuevo módulo de servidor de datos" + +#: ../../godmode/agentes/module_manager.php:80 +msgid "Create a new network server module" +msgstr "Crear un nuevo módulo de servidor de red" + +#: ../../godmode/agentes/module_manager.php:82 +msgid "Create a new plugin server module" +msgstr "Crear un nuevo módulo de servidor de complementos" + +#: ../../godmode/agentes/module_manager.php:84 +msgid "Create a new WMI server module" +msgstr "Crear un nuevo módulo de servidor WMI" + +#: ../../godmode/agentes/module_manager.php:86 +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 "Get more modules in Pandora FMS Library" +msgstr "Más módulos en la librería de Pandora FMS" + +#: ../../godmode/agentes/module_manager.php:175 +msgid "Nice try buddy" +msgstr "Buen intento amigo" + +#: ../../godmode/agentes/module_manager.php:272 +#, php-format +msgid "There was a problem deleting %s modules, none deleted." +msgstr "Ha habido un problema borrando %s módulos. No se ha borrado ninguno." + +#: ../../godmode/agentes/module_manager.php:277 +msgid "All Modules deleted succesfully" +msgstr "Todos los módulos han sido borrados correctamente." + +#: ../../godmode/agentes/module_manager.php:281 +#, php-format +msgid "There was a problem only deleted %s modules of %s total." +msgstr "Ha habido un problema borrando %s módulo(s) de %s" + +#: ../../godmode/agentes/module_manager.php:569 +msgid "D." +msgstr "D." + +#: ../../godmode/agentes/module_manager.php:716 +msgid "Non initialized module" +msgstr "Módulo no inicializado" + +#: ../../godmode/agentes/module_manager.php:749 +msgid "Enable module" +msgstr "Habilitar el módulo" + +#: ../../godmode/agentes/module_manager.php:754 +msgid "Disable module" +msgstr "Deshabilitar el módulo" + +#: ../../godmode/agentes/module_manager.php:769 +msgid "Normalize" +msgstr "Normalizar" + +#: ../../godmode/agentes/module_manager.php:775 +msgid "Normalize (Disabled)" +msgstr "Normalizar (deshabilitado)" + +#: ../../godmode/agentes/module_manager.php:789 +msgid "Create network component (Disabled)" +msgstr "Crear componentes de red (desactivado)" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:91 +msgid "Source module" +msgstr "Módulo origen" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:119 +#: ../../godmode/agentes/module_manager_editor_prediction.php:144 +msgid "Select Module" +msgstr "Seleccionar módulo" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:154 +msgid "Daily" +msgstr "Diariamente" + +#: ../../godmode/agentes/planned_downtime.list.php:46 +msgid "An error occurred while migrating the malformed planned downtimes" +msgstr "" +"Ha ocurrido un error mientras se migraban paradas planificadas mal formadas" + +#: ../../godmode/agentes/planned_downtime.list.php:47 +msgid "Please run the migration again or contact with the administrator" +msgstr "" +"Por favor, ejecute el script de migración de nuevo o contacte con el " +"administrador" + +#: ../../godmode/agentes/planned_downtime.list.php:79 +msgid "An error occurred stopping the planned downtime" +msgstr "Se produjo un error deteniendo la parada planificada" + +#: ../../godmode/agentes/planned_downtime.list.php:101 +msgid "This planned downtime is running" +msgstr "Esta parada planificada se está ejecutando" + +#: ../../godmode/agentes/planned_downtime.list.php:154 +msgid "Execution type" +msgstr "Tipo de ejecución" + +#: ../../godmode/agentes/planned_downtime.list.php:156 +msgid "Show past downtimes" +msgstr "Mostrar paradas antiguas" + +#: ../../godmode/agentes/planned_downtime.list.php:391 +msgid "Name #Ag." +msgstr "Nombre (núm. ag.)" + +#: ../../godmode/agentes/planned_downtime.list.php:397 +#: ../../godmode/agentes/planned_downtime.list.php:446 +msgid "Running" +msgstr "Ejecutándose" + +#: ../../godmode/agentes/planned_downtime.list.php:400 +#: ../../godmode/agentes/planned_downtime.list.php:456 +msgid "Stop downtime" +msgstr "Detener parada planificada" + +#: ../../godmode/agentes/planned_downtime.list.php:433 +msgid "once" +msgstr "Una vez" + +#: ../../godmode/agentes/planned_downtime.list.php:442 +msgid "Not running" +msgstr "No está en ejecución" + +#: ../../godmode/agentes/planned_downtime.list.php:535 +msgid "" +"WARNING: If you delete this planned 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:541 +msgid "WARNING: There are malformed planned downtimes" +msgstr "ADVERTENCIA: Hay paradas planificadas mal formadas" + +#: ../../godmode/agentes/planned_downtime.list.php:541 +msgid "Do you want to migrate automatically the malformed items?" +msgstr "¿Quiere migrar automáticamente los elementos mal formados?" + +#: ../../godmode/agentes/agent_template.php:69 +msgid "Created by template " +msgstr "Creado mediante la plantilla " + +#: ../../godmode/agentes/agent_template.php:157 +msgid "Error adding modules" +msgstr "Error añadiendo módulos" + +#: ../../godmode/agentes/agent_template.php:159 +msgid "Error adding modules. The following errors already exists: " +msgstr "Error añadiendo módulos. Ocurrieron los siguientes errores: " + +#: ../../godmode/agentes/agent_template.php:162 +msgid "Modules successfully added" +msgstr "Módulos añadidos correctamente" + +#: ../../godmode/agentes/agent_template.php:189 +msgid "Assign" +msgstr "Asignar" + +#: ../../godmode/tag/tag.php:80 +msgid "Number of modules" +msgstr "Número de módulos" + +#: ../../godmode/tag/tag.php:82 +msgid "Number of policy modules" +msgstr "Número de módulos de política" + +#: ../../godmode/tag/tag.php:100 ../../godmode/tag/edit_tag.php:53 +#: ../../godmode/tag/edit_tag.php:64 +msgid "List tags" +msgstr "Listar etiquetas" + +#: ../../godmode/tag/tag.php:110 ../../godmode/tag/edit_tag.php:68 +msgid "Tags configuration" +msgstr "Configuración de etiquetas" + +#: ../../godmode/tag/tag.php:121 +msgid "Error deleting tag" +msgstr "Error eliminando la etiqueta" + +#: ../../godmode/tag/tag.php:125 +msgid "Successfully deleted tag" +msgstr "Etiqueta eliminada satisfactoriamente" + +#: ../../godmode/tag/tag.php:199 +msgid "Tag name" +msgstr "Nombre de etiqueta" + +#: ../../godmode/tag/tag.php:201 +msgid "Detail information" +msgstr "Información de los detalles" + +#: ../../godmode/tag/tag.php:202 +msgid "Number of modules affected" +msgstr "Número de módulos afectados" + +#: ../../godmode/tag/tag.php:222 +msgid "Tag details" +msgstr "Detalles de tag" + +#: ../../godmode/tag/tag.php:249 +#, php-format +msgid "Emails for the tag: %s" +msgstr "Correos para el tag: %s" + +#: ../../godmode/tag/tag.php:264 +#, php-format +msgid "Phones for the tag: %s" +msgstr "Teléfonos par el taf: %s" + +#: ../../godmode/tag/tag.php:282 +msgid "No tags defined" +msgstr "Tags no definidos" + +#: ../../godmode/tag/tag.php:298 +msgid "Create tag" +msgstr "Crear etiqueta" + +#: ../../godmode/tag/edit_tag.php:92 +msgid "Error updating tag" +msgstr "Error actualizando etiqueta" + +#: ../../godmode/tag/edit_tag.php:96 +msgid "Successfully updated tag" +msgstr "Etiqueta actualizada satisfactoriamente" + +#: ../../godmode/tag/edit_tag.php:122 +msgid "Error creating tag" +msgstr "Error creando etiqueta" + +#: ../../godmode/tag/edit_tag.php:128 +msgid "Successfully created tag" +msgstr "Etiqueta creada satisfactoriamente" + +#: ../../godmode/tag/edit_tag.php:161 +msgid "Update Tag" +msgstr "Actualizar Etiqueta" + +#: ../../godmode/tag/edit_tag.php:164 +msgid "Create Tag" +msgstr "Crear etiqueta" + +#: ../../godmode/tag/edit_tag.php:187 +msgid "Hyperlink to help information that has to exist previously." +msgstr "Hiperenlace a la información de ayuda que debe existir previamente." + +#: ../../godmode/tag/edit_tag.php:197 +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 " +"Tags" + +#: ../../godmode/tag/edit_tag.php:207 +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 " +"Tags" + +#~ msgid "Global health" +#~ msgstr "Salud global" + +#~ msgid "Stacked" +#~ msgstr "Apilado" + +#~ msgid "You don't have access" +#~ msgstr "No tiene acceso" + +#~ msgid "Layout" +#~ msgstr "Diseño" + +#~ msgid "Simple" +#~ msgstr "Simple" #~ msgid "Updated at realtime" #~ msgstr "actualizado en tiempo real" +#~ msgid "Operator" +#~ msgstr "Operador" + #~ msgid "Criticity" #~ msgstr "Criticidad" -#~ msgid "Main event view" -#~ msgstr "Vista principal de eventos" +#~ msgid ">=" +#~ msgstr ">=" + +#~ msgid "<" +#~ msgstr "<" + +#~ 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" + +#~ msgid "Task" +#~ msgstr "Tarea" + +#~ msgid "Zoom" +#~ msgstr "Ampliación" #~ msgid "Search by any alphanumeric field in the trap" #~ msgstr "Buscar por cualquier campo alfanumérico en el trap" @@ -36483,6 +23913,9 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Policies view" #~ msgstr "Vista de política" +#~ msgid "Groups view" +#~ msgstr "Vista de grupos" + #~ msgid "Topology view" #~ msgstr "Vista de la topología" @@ -36513,6 +23946,12 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Map options" #~ msgstr "Opciones del mapa" +#~ msgid "INFO" +#~ msgstr "INFO" + +#~ msgid "ERROR" +#~ msgstr "ERROR" + #~ msgid "Assigned user" #~ msgstr "Usuario asignado" @@ -36534,6 +23973,9 @@ msgstr "El usuario solo puede usar la API" #~ msgid "said" #~ msgstr "dijo" +#~ msgid "Hours" +#~ msgstr "Horas" + #~ msgid "Not closed" #~ msgstr "No cerrado" @@ -36555,6 +23997,9 @@ msgstr "El usuario solo puede usar la API" #~ msgid "New Incident" #~ msgstr "Nuevo Incidente" +#~ msgid "Tracking" +#~ msgstr "Seguimiento" + #~ msgid "Generic upload error" #~ msgstr "Error de subida genérico" @@ -36575,6 +24020,18 @@ msgstr "El usuario solo puede usar la API" #~ "arriba, esos valores reemplazarán a los campos con el mismo nombre asociados " #~ "a las Acciones aplicadas a la plantilla." +#~ msgid "Decrease Weight" +#~ msgstr "Reducir el peso" + +#~ msgid "Increase Weight" +#~ msgstr "Incrementar el peso" + +#~ msgid "Query SQL" +#~ msgstr "Consulta SQL" + +#~ msgid "SQL preview" +#~ msgstr "Previsualización del SQL" + #~ msgid "Items filter" #~ msgstr "Filtro de items" @@ -36608,9 +24065,39 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Not executed" #~ msgstr "No ejecutado/a" +#~ msgid "No agent name specified" +#~ msgstr "No se especificó el nombre del agente" + #~ msgid "There is already an agent in the database with this name" #~ msgstr "Ya existe un agente con ese nombre en la base de datos" +#~ msgid "Data Copy" +#~ msgstr "Copia de datos" + +#~ msgid "No selected agents to copy" +#~ msgstr "No se han seleccionado agentes destino para la copia" + +#~ msgid "Making copy of configuration file for" +#~ msgstr "Creando una copia del archivo de configuración de" + +#~ msgid "Remote configuration management" +#~ msgstr "Gestión de configuración remota" + +#~ msgid "Source group" +#~ msgstr "Grupo origen" + +#~ msgid "To agent(s):" +#~ msgstr "Agente(s) destino:" + +#~ msgid "Replicate configuration" +#~ msgstr "Replicar configuración" + +#~ msgid "Duplicate config" +#~ msgstr "Duplicar configuración" + +#~ msgid "Manage modules" +#~ msgstr "Gestionar módulos" + #~ msgid "No action selected" #~ msgstr "No se ha seleccionado ninguna acción" @@ -36676,6 +24163,9 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Ping to " #~ msgstr "Ping a " +#~ msgid "Server connection failed" +#~ msgstr "Falló la conexión con el servidor" + #~ msgid "Inside limits" #~ msgstr "Dentro de los límites" @@ -36685,6 +24175,9 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Empty graph" #~ msgstr "Gráfica vacía" +#~ msgid "Go to agent detail" +#~ msgstr "Ir al detalle del agente" + #~ msgid "License Info" #~ msgstr "Información sobre la licencia" @@ -36834,6 +24327,15 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Error updating user. Id_user doesn't exists." #~ msgstr "Error actualizando ususario. Id_user no existe." +#~ msgid " md5 file" +#~ msgstr " fichero MD5" + +#~ msgid " config file" +#~ msgstr " fichero de configuración" + +#~ msgid "Copied " +#~ msgstr "Copiado " + #, php-format #~ msgid "projection for %s" #~ msgstr "proyección para %s" @@ -36859,6 +24361,9 @@ msgstr "El usuario solo puede usar la API" #~ msgid "No Validated" #~ msgstr "No validado" +#~ msgid "Incorrect format in Subnet field" +#~ msgstr "Formato incorrecto en el campo Subred" + #~ msgid "Events by criticity" #~ msgstr "Eventos por criticidad" @@ -36872,6 +24377,12 @@ msgstr "El usuario solo puede usar la API" #~ msgid "There are no scheduled downtimes" #~ msgstr "No hay paradas planificadas" +#~ msgid "Module macros" +#~ msgstr "Macros de módulos" + +#~ msgid "Throw unknown events" +#~ msgstr "Generar eventos desconocidos" + #~ msgid "Cron" #~ msgstr "Cron" @@ -36881,6 +24392,13 @@ msgstr "El usuario solo puede usar la API" #~ msgid "No special days configured" #~ msgstr "No hay días especiales configurados" +#~ 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/Datas personalizado." + #~ msgid "Paginate module view" #~ msgstr "Paginar vista de módulos" @@ -36898,14 +24416,99 @@ msgstr "El usuario solo puede usar la API" #~ "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." -#~ msgstr "" -#~ "Si hubiera algún cambio en la base de datos, será aplicado en próximo login " -#~ "del usuario" +#~ msgid "Policies operations" +#~ msgstr "Operaciones de las políticas" -#~ msgid "Package not updated." -#~ msgstr "Paquete no actualizado." +#~ msgid "SNMP operations" +#~ msgstr "Operaciones SNMP" + +#~ msgid "Satellite operations" +#~ msgstr "Operaciones satélite" + +#~ msgid "Inventory modules" +#~ msgstr "Módulos de inventario" + +#~ msgid "Local components" +#~ msgstr "Componentes locales" + +#~ msgid "Manage policies" +#~ msgstr "Gestionar políticas" + +#~ msgid "Skins" +#~ msgstr "Skins" + +#~ msgid "Export targets" +#~ msgstr "Servidores de exportación" + +#~ msgid "Event alerts" +#~ msgstr "Alertas de eventos" + +#~ msgid "Log Collector" +#~ msgstr "Colector de Logs" + +#~ msgid "Error updating export target" +#~ msgstr "Error al actualizar el servidor de exportación" + +#~ msgid "Successfully updated export target" +#~ msgstr "Servidor de exportación actualizado correctamente" + +#~ msgid "Error deleting export target" +#~ msgstr "Error al borrar el servidor de exportación" + +#~ msgid "Successfully deleted export target" +#~ msgstr "Servidor de exportación borrado correctamente" + +#~ msgid "" +#~ "Can't be created export target: User and password must be filled with FTP " +#~ "mode" +#~ msgstr "" +#~ "No puede crearse target de exportación: El usuario y la contraseña deben ser " +#~ "completadas con el modo de FTP" + +#~ msgid "Preffix" +#~ msgstr "Prefijo" + +#~ msgid "Transfer mode" +#~ msgstr "Modo de transferencia" + +#~ msgid "Target directory" +#~ msgstr "Directorio objetivo" + +#~ msgid "Extra options" +#~ msgstr "Opciones adicionales" + +#~ msgid "Create Service" +#~ msgstr "Crear Servicio" + +#~ msgid "Service created successfully" +#~ msgstr "Servicio creado correctamente" + +#~ msgid "Error creating service" +#~ msgstr "Error al crear servicio" + +#~ msgid "Service updated successfully" +#~ msgstr "Servicio actualizado correctamente" + +#~ msgid "Error updating service" +#~ msgstr "Error al actualizar el sevicio" + +#~ msgid "Not found" +#~ msgstr "No encontrado" + +#~ msgid "New Service" +#~ msgstr "Nuevo servicio" + +#~ msgid "Config Service" +#~ msgstr "Configurar Servicios" + +#~ msgid "Config Elements" +#~ msgstr "Configurar Elementos" + +#~ msgid "View Service" +#~ msgstr "Ver Servicio" + +#~ msgid "Service map" +#~ msgstr "Mapa del Servicio" #~ msgid "" #~ "In manual mode you should set the weights manually. In auto mode the weights " @@ -36918,15 +24521,1214 @@ msgstr "El usuario solo puede usar la API" #~ "En modo simple, sólo se utilizarán los elementos configurados como " #~ "'elementos críticos' para calcular el estado del servicio." +#~ msgid "" +#~ "This values are by default because the service is auto calculate mode." +#~ msgstr "" +#~ "Estos valores están por defecto porque el servicio está en modo auto-cálculo" + +#~ msgid "Agent to store data" +#~ msgstr "Agentes para almacenar datos" + +#~ msgid "S.L.A. interval" +#~ msgstr "Intervalo SLA" + +#~ msgid "S.L.A. limit" +#~ msgstr "Límite SLA" + +#~ msgid "Please set limit between 0 to 100." +#~ msgstr "Por favor, introduzca un límite de 0 a 100" + +#~ 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." + +#~ msgid "Warning Service alert" +#~ msgstr "Alerta de advertencia del servicio" + +#~ msgid "Critical Service alert" +#~ msgstr "Alerta crítica del servicio" + +#~ msgid "SLA critical service alert" +#~ msgstr "Alerta crítica de servicio SLA." + +#~ msgid "Edit service elements" +#~ msgstr "Editar elementos del servicio" + +#~ msgid "Error empty module" +#~ msgstr "Error al vaciar los módulos" + +#~ msgid "Error empty agent" +#~ msgstr "Error al vaciar el agente" + +#~ msgid "Error empty service" +#~ msgstr "Error al vaciar el servicio" + +#~ msgid "Service element created successfully" +#~ msgstr "Elemento del servicio creado correctamente" + +#~ msgid "Error creating service element" +#~ msgstr "Error al crear elemento de servicio" + +#~ msgid "Service element updated successfully" +#~ msgstr "Elemento de servicio actualizado correctamente" + +#~ msgid "Error updating service element" +#~ msgstr "Error al actualizar el elemento de sevicio" + +#~ msgid "Service element deleted successfully" +#~ msgstr "Elemento de servicio eliminado correctamente" + +#~ msgid "Error deleting service element" +#~ msgstr "Error al eliminar el elemento de servicio" + +#~ msgid "Edit element service" +#~ msgstr "Editar elemento de servicio" + +#~ msgid "Create element service" +#~ msgstr "Crear elemento de sevicio" + +#~ msgid "First select an agent" +#~ msgstr "Primero, seleccione un agente" + +#~ msgid "Critical weight" +#~ msgstr "Peso crítico" + +#~ msgid "Warning weight" +#~ msgstr "Advertencia de peso" + +#~ msgid "Unknown weight" +#~ msgstr "Peso desconocido" + +#~ msgid "Ok weight" +#~ msgstr "Peso correcto" + +#~ 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" + +#~ msgid "Show extended info" +#~ msgstr "Mostrar más info" + +#~ msgid "" +#~ "Maybe delete the extended data or the audit data is previous to table " +#~ "tsession_extended." +#~ msgstr "" +#~ "Puede que se haya borrado información exntendida, o que la información de " +#~ "auditoría sea previa a la instalación enterprise." + +#~ msgid "Security check is ok." +#~ msgstr "La comprobación de seguridad está ok" + +#~ msgid "Security check is fail." +#~ msgstr "La comprobación de seguridad ha fallado" + +#~ msgid "Extended info:" +#~ msgstr "Información extendida" + +#~ 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" + +#~ msgid "Using local component" +#~ msgstr "Usando componente local" + +#~ msgid "Show configuration data" +#~ msgstr "Mostrar datos de configuración" + +#~ msgid "Hide configuration data" +#~ msgstr "Ocultar datos de configuración" + +#~ msgid "Data configuration" +#~ msgstr "Configuración de datos" + +#~ msgid "Load basic" +#~ msgstr "cargar básicos" + +#~ msgid "Load a basic structure on data configuration" +#~ msgstr "Cargar una estructura básica en la configuración de datos" + +#~ msgid "Check" +#~ msgstr "Comprobar" + +#~ msgid "Check the correct structure of the data configuration" +#~ msgstr "Comprobar la estructura correcta de la configuración de datos" + +#~ msgid "First line must be \"module_begin\"" +#~ msgstr "La primera línea tiene que ser \"module_begin\"" + +#~ msgid "Data configuration is empty" +#~ msgstr "La configuración de datos está vacía" + +#~ msgid "Last line must be \"module_end\"" +#~ msgstr "La última línea tiene que ser \"module_end\"" + +#~ msgid "" +#~ "Name is missed. Please add a line with \"module_name yourmodulename\" to " +#~ "data configuration" +#~ msgstr "" +#~ "Falta el nombre. Por favor, introduzca una línea con \"module_name " +#~ "yourmodulename\" a la configuración de datos" + +#~ msgid "" +#~ "Type is missed. Please add a line with \"module_type yourmoduletype\" to " +#~ "data configuration" +#~ msgstr "" +#~ "Falta el tipo. Por favor, introduzca una línea con \"module_type " +#~ "yourmoduletype\" a la configuración de datos" + +#~ msgid "Type is wrong. Please set a correct type" +#~ msgstr "El tipo es incorrecto. Por favor, introduzca un tipo correcto" + +#~ msgid "There is a line with a unknown token 'token_fail'." +#~ msgstr "Hay una línea con un token desconocido \"token_fail\"." + +#~ msgid "Error in the syntax, please check the data configuration." +#~ msgstr "" +#~ "Error en la sintaxis, compruebe la configuración de datos, por favor." + +#~ msgid "Data configuration are built correctly" +#~ msgstr "La configuración de datos se ha construido correctamente" + +#~ msgid "Plug-in deleted succesfully" +#~ msgstr "Plugin eliminado correctamente" + +#~ msgid "Plug-in cannot be deleted" +#~ msgstr "El plugin no se puede eliminar" + +#~ msgid "Plug-in added succesfully" +#~ msgstr "Plugin añadido correctamente" + +#~ msgid "Plug-in cannot be added" +#~ msgstr "El plugin no se puede añadir" + +#~ msgid "Plug-in disabled succesfully" +#~ msgstr "Plugin inhabilitado correctamente" + +#~ msgid "Plug-in cannot be disabled" +#~ msgstr "El plugin no puede ser inhabilitado" + +#~ msgid "Plug-in enabled succesfully" +#~ msgstr "Plugin habilitado correctamente" + +#~ msgid "Plug-in cannot be enabled" +#~ msgstr "El plugin no puede ser habilitado" + +#~ msgid "New plug-in" +#~ msgstr "Nuevo plugin" + +#~ msgid "Successfully added inventory module" +#~ msgstr "Módulo añadido al inventario con éxito" + +#~ msgid "Error adding inventory module" +#~ msgstr "Error al añadir el módulo al inventario" + +#~ msgid "Successfully deleted inventory module" +#~ msgstr "Módulo del inventario eliminado correctamente" + +#~ msgid "Error deleting inventory module" +#~ msgstr "Erro al eliminar el módulo del inventario" + +#~ msgid "Successfully forced inventory module" +#~ msgstr "Módulo del inventario forzado correctamente" + +#~ msgid "Error forcing inventory module" +#~ msgstr "Error al forzar un módulo del inventario" + +#~ msgid "Successfully updated inventory module" +#~ msgstr "Módulo del inventario actualizado correctamente" + +#~ msgid "Error updating inventory module" +#~ msgstr "Error al actualizar el módulo del inventario" + +#~ msgid "Inventory module error" +#~ msgstr "Error del módulo del inventario" + +#~ msgid "Target" +#~ msgstr "Target" + +#~ msgid "7 days" +#~ msgstr "7 días" + +#~ msgid "Update all" +#~ msgstr "Actualizar todo" + +#~ msgid "Manager configuration > New" +#~ msgstr "Gestionar la configuración > New" + +#~ msgid "Manager configuration > Edit " +#~ msgstr "Gestionar la configuración > Edit " + +#~ msgid "Unable to create the collection" +#~ msgstr "Imposible crear la colección" + +#~ msgid "Invalid characters in short name" +#~ msgstr "Caracteres inválidos en el nombre" + +#~ msgid "Empty name" +#~ msgstr "Nombre vacío" + +#~ msgid "Unable to create the collection." +#~ msgstr "Imposible crear la colección" + +#~ msgid "Correct create collection" +#~ msgstr "Creado con éxito colección de ficheros." + +#~ msgid "Unable to edit the collection, empty name." +#~ msgstr "Imposible crear colección. Nombre vacío." + +#~ msgid "Unable to edit the collection." +#~ msgstr "Imposible editar colección" + +#~ msgid "Error: The collection directory does not exist." +#~ msgstr "Error: El directorio donde se almacenan las colecciones no existe." + +#~ msgid "Recreate file" +#~ msgstr "Volver a crear archivo" + +#~ msgid "The collection directory does not exist." +#~ msgstr "El directorio donde se guardan las colecciones no existe." + +#~ msgid "Short name:" +#~ msgstr "Nombre corto:" + +#~ 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 " +#~ "attachment y la colección de paquetes." + +#~ msgid "Short name must contain only alphanumeric characters, - or _ ." +#~ msgstr "" +#~ "Los nombres cortos deben contener sólo caracteres alfanuméricos, - o _." + +#~ msgid "Empty for default short name fc_X where X is the collection id." +#~ msgstr "" +#~ "Déjelo vacío para el nombre corto por defecto (fc_X) donde X es el ID de la " +#~ "colección." + +#~ msgid "Synthetic arithmetic" +#~ msgstr "Aritmética sintética" + +#~ msgid "Synthetic average" +#~ msgstr "Media sintética" + +#~ msgid "Group filter" +#~ msgstr "Filtro de grupo" + +#~ msgid "Fixed value" +#~ msgstr "Valor fijo" + +#~ msgid "Add module to operation as add" +#~ msgstr "Añadir módulo a la operación como suma" + +#~ msgid "Add module to operations as deduct" +#~ msgstr "Añadir módulo a la operacion como resta" + +#~ msgid "Add module to operations as multiplicate " +#~ msgstr "Añadir módulo a la operacion como multiplicador " + +#~ msgid "Add module to operations as divide" +#~ msgstr "Añadir módulo a la operacion como divisor" + +#~ msgid "Remove selected modules" +#~ msgstr "Eliminar los módulos seleccionados" + +#~ msgid "Add module to average operation" +#~ msgstr "Añadir módulo al promedio de la operación" + +#~ msgid "Remove selected modules from operations stack" +#~ msgstr "Eliminar los módulos de las operaciones" + +#~ msgid "Move down selected modules" +#~ msgstr "Mover hacia abajo los módulos seleccionados" + +#~ msgid "Move up selected modules" +#~ msgstr "Mover hacia arriba los módulos seleccionados" + +#~ msgid "Select Service" +#~ msgstr "Seleccionar servicio" + +#~ msgid "Netflow filter" +#~ msgstr "Filtro de netflow" + +#~ msgid "Select filter" +#~ msgstr "Seleccionar filtro" + +#~ msgid "Error: The conf file of agent is not readble." +#~ msgstr "Error: El archivo de configuración no se puede leer" + +#~ msgid "Error: The conf file of agent is not writable." +#~ msgstr "Error: En el archivo de configuración no se puede escribir" + +#~ msgid "Add module" +#~ msgstr "Añadir módulo" + +#~ msgid "No module was found" +#~ msgstr "No se encontraron módulos" + +#~ msgid "Delete remote conf agent files in Pandora" +#~ msgstr "" +#~ "Eliminar los archivos de configuración remota de agentes en Pandora FMS" + +#~ msgid "This agent have not a remote configuration, please set it." +#~ msgstr "Este agente no se ha configurado remotamente, por favor, configúrelo" + +#~ msgid "Succesful add the collection" +#~ msgstr "Añadido a la colección correctamente" + +#~ msgid "Unsuccesful add the collection" +#~ msgstr "No se ha podido añadir a la colección" + +#~ msgid "Successful create collection package." +#~ msgstr "Paquete de la colección creado correctamente" + +#~ msgid "Can not create collection package." +#~ msgstr "No se puede crear paquete de la colección" + +#~ msgid "Short Name" +#~ msgstr "Nombre Corto" + +#~ msgid "Show files" +#~ msgstr "Mostrar archivos" + +#~ msgid "Dir" +#~ msgstr "Dir" + +#~ msgid "Create a new web Server module" +#~ msgstr "Crear un nuevo módulo de servidor web" + +#~ msgid "Files in " +#~ msgstr "Archivos en " + +#~ msgid "Back to file explorer" +#~ msgstr "Volver al explorador de archivos" + +#~ msgid "Correct update file." +#~ msgstr "Actualización correcta del archivo" + +#~ msgid "Incorrect update file." +#~ msgstr "Archivo NO actualizado correctamente" + +#~ msgid "Please, first save a new collection before to upload files." +#~ msgstr "Por favor, antes de subir archivos, guarde una nueva colección" + +#~ msgid "No source agent selected" +#~ msgstr "No ha seleccionado ningún agente de origen" + +#~ msgid "Error copying md5 file " +#~ msgstr "Error al copiar fichero MD5 " + +#~ msgid "Error copying " +#~ msgstr "Error al copiar " + +#~ msgid "Web checks" +#~ msgstr "Comprobaciones web" + +#~ msgid "Load a basic structure on Web Checks" +#~ msgstr "Cargar una estructura básica en las comprobaciones web" + +#~ msgid "Check the correct structure of the WebCheck" +#~ msgstr "Cargar la estructura correcta de las comprobaciones web" + +#~ msgid "Requests" +#~ msgstr "Peticiones" + +#~ msgid "Agent browser id" +#~ msgstr "ID del navegador (Agent Browser)" + +#~ msgid "Proxy URL" +#~ msgstr "Proxy URL" + +#~ msgid "HTTP auth (login)" +#~ msgstr "HTTP aut. (login)" + +#~ msgid "HTTP auth (pass)" +#~ msgstr "HTTP aut. (contraseña)" + +#~ msgid "HTTP auth (server)" +#~ msgstr "HTTP aut. (servidor)" + +#~ msgid "HTTP auth (realm)" +#~ msgstr "HTTP aut. (campo)" + +#~ msgid "First line must be \"task_begin\"" +#~ msgstr "La primera línea tiene que ser \"task_begin\"" + +#~ msgid "Webchecks configuration is empty" +#~ msgstr "La configuración de chequeos web está vacía" + +#~ msgid "Last line must be \"task_end\"" +#~ msgstr "La última línea tiene que ser \"task_end\"" + +#~ msgid "Web checks are built correctly" +#~ msgstr "Los chequeos webs se han construido correctamente" + +#~ msgid "Success: recreate file" +#~ msgstr "Éxito: al volver a crear el archivo" + +#~ msgid "Error: recreate file " +#~ msgstr "Error: volver a crear archivo " + +#~ msgid "Collections Management" +#~ msgstr "Gestión de colecciones" + +#~ msgid "Manager collection" +#~ msgstr "Gestor de colecciones" + +#~ msgid "Error: The main directory of collections does not exist." +#~ msgstr "Error: El directorio principal de las colecciones no existe." + +#~ msgid "Are you sure to delete?" +#~ msgstr "¿Está seguro de que quiere eliminarlo?" + +#~ msgid "Delete collection" +#~ msgstr "Eliminar colección" + +#~ msgid "Re-Apply changes" +#~ msgstr "Volver a aplicar los cambios" + +#~ msgid "Apply changes" +#~ msgstr "Aplicar Cambios" + +#~ msgid "Edit template" +#~ msgstr "Editar plantilla" + +#~ msgid "Create template" +#~ msgstr "Crear plantilla" + +#~ msgid "List templates" +#~ msgstr "Lista de plantillas" + +#~ msgid "Graph template editor" +#~ msgstr "Editor de plantillas gráficas" + +#~ msgid "Exact match" +#~ msgstr "Coincidencia exacta" + +#~ msgid "Elements to apply" +#~ msgstr "Elementos para aplicar" + +#~ msgid "SLA min value" +#~ msgstr "Valor mínimo de SLA" + +#~ msgid "SLA min Value" +#~ msgstr "Valor mínimo de SLA" + +#~ msgid "SLA max value" +#~ msgstr "Valor máximo SLA" + +#~ msgid "SLA max Value" +#~ msgstr "Valor máximo SLA" + +#~ msgid "SLA Limit %" +#~ msgstr "Límite % SLA" + +#~ msgid "SLA Limit Value" +#~ msgstr "Valor límite SLA" + +#~ msgid "Sum" +#~ msgstr "Suma" + +#~ msgid "Graph template management" +#~ msgstr "Gestión de plantillas gráficas" + +#~ msgid "There are no defined graph templates" +#~ msgstr "No hay plantillas gráficas definidas" + +#~ msgid "Cleanup sucessfully" +#~ msgstr "Limpieza correcta" + +#~ msgid "Cleanup error" +#~ msgstr "Error al borrar contenido" + +#~ msgid "Wizard template" +#~ msgstr "Plantilla de Wizard" + +#~ msgid "Clean up template" +#~ msgstr "Vaciar la plantilla" + +#~ msgid "Filter agent" +#~ msgstr "Filtrar agente" + +#~ msgid "Agents available" +#~ msgstr "Agentes disponibles" + +#~ msgid "Select all" +#~ msgstr "Seleccionar todo" + +#~ msgid "Agents to apply" +#~ msgstr "Agentes para aplicar" + +#~ msgid "Add agents to template" +#~ msgstr "Añadir agentes a la plantilla" + +#~ msgid "Undo agents to template" +#~ msgstr "Deshacer añadir agentes a la plantilla" + +#~ msgid "Apply template" +#~ msgstr "Aplicar plantilla" + +#~ msgid "Please set template distinct than " +#~ msgstr "Por favor, introduzca una plantilla distinta a " + +#~ 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. ¿Quiere continuar?" + +#~ msgid "Custom Mysql template builder" +#~ msgstr "Creador de plantillas personailizadas para MySQL" + +#~ msgid "Create custom SQL" +#~ msgstr "Crear SQL personalizado" + +#~ msgid ": Create new custom" +#~ msgstr ": Crear nueva consulta personalizada" + #~ msgid ": Edit: " #~ msgstr ": Editar: " +#~ msgid "Successfully operation" +#~ msgstr "Operación realizada con éxito" + +#~ msgid "Could not be operation" +#~ msgstr "La operación no puedo completarse" + +#~ msgid "Available" +#~ msgstr "Disponible" + +#~ msgid "Push the selected services into the list" +#~ msgstr "Añade los servicios seleccionados a la lista" + +#~ msgid "Remove the services from the list" +#~ msgstr "Elimina los servicios de la lista" + +#~ msgid "Icon preview" +#~ msgstr "Pre visualización del icono" + #~ msgid "Are you sure? All the visual map services will be recreated" #~ msgstr "Está seguro? Todos los mapas visuales serán creados." +#~ msgid "The services list is empty" +#~ msgstr "La lista de servicios esta vacía" + +#~ msgid "Sucessfully applied" +#~ msgstr "Aplicado correctamente" + +#~ msgid "reports" +#~ msgstr "Informes" + +#~ msgid "items" +#~ msgstr "elementos" + +#~ msgid "Could not be applied" +#~ msgstr "No se pudo aplicar" + +#~ msgid "Create report per agent" +#~ msgstr "Crear informe por agente" + +#~ msgid "" +#~ "Left in blank if you want to use default name: Template name - agents (num " +#~ "agents) - Date" +#~ msgstr "" +#~ "Dejar en blanco si quieres usar el nombre por defecto: Nombre plantilla - " +#~ "agentes (num agentes) - Fecha" + +#~ 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" + +#~ 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 usa este campo con \"Coincidencia exacta de modulo\" " +#~ "activado, entonces este campo tiene que rellenarse con la cadena literal del " +#~ "nombre del modulo, sino, usará una expresion regular, p.e: .*usage.* " +#~ "coincidiría con : cpu_usage, vram usage in machine 1." + +#~ msgid "Module exact match" +#~ msgstr "Coincidencia exacta de modulo" + +#~ msgid "Check it if you want to match module name literally" +#~ msgstr "" +#~ "Actívela si desea que haya una coincidencia exacta y literal en el nombre " +#~ "del módulo" + +#~ msgid "Modules to match" +#~ msgstr "Módulos a comparar" + +#~ msgid "Select the modules to match when create a report for agents" +#~ msgstr "" +#~ "Seleccione los módulos a comparar cuando cree el informe para cada agente" + +#~ msgid "Modules to match (Free text)" +#~ msgstr "Modulos a comparar (Texto libre)" + +#~ 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 use esta " +#~ "plantilla" + +#~ msgid "Create a graph for each agent" +#~ msgstr "Crear una gráfica por cada agente" + +#~ 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 modulo hará coincidencia " +#~ "en cada módulo de cada agente, y creará una gráfica que contenga módulos de " +#~ "todos los agentes." + +#~ msgid "Please save the SLA template for start to add items in this list." +#~ msgstr "" +#~ "Por favor, guarde la plantilla SLA para empezar a añadir elementos a la lista" + +#~ msgid "Not literally" +#~ msgstr "No literal" + +#~ 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" + +#~ msgid "Please save the template to start adding items into the list." +#~ msgstr "" +#~ "Por favor, guarde la plantilla para empezar a añadir elementos a la lista" + +#~ msgid "Template updated successfully" +#~ msgstr "Plantilla actualizada con éxito" + +#~ msgid "Error updating template" +#~ msgstr "Error al actualizar la plantilla" + +#~ msgid "3 hours" +#~ msgstr "3 horas" + +#~ msgid "4 days" +#~ msgstr "días" + +#~ msgid "Policies Management" +#~ msgstr "Gestión de políticas" + +#~ msgid "All policy agents added to delete queue" +#~ msgstr "Todos los agentes de las políticas añadidos a la cola de eliminación" + +#~ 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" + +#~ msgid "a" +#~ msgstr "a" + +#~ msgid "Policy updated" +#~ msgstr "Política actualizada" + +#~ msgid "Pending update policy only database" +#~ msgstr "" +#~ "Pendiente de actualizar política, sólo para cambios en base de datos." + +#~ msgid "Pending update policy" +#~ msgstr "Pendiente actualizar política" + +#~ msgid "Linking" +#~ msgstr "Enlazando" + +#~ msgid "External alerts" +#~ msgstr "Alertas externas" + +#~ msgid "Queue" +#~ msgstr "Cola" + +#~ msgid "A policy with agents cannot be deleted. Purge it first" +#~ msgstr "Una política con agentes no se puede eliminar. Púrguela primero." + +#~ msgid "Deleting all policy agents" +#~ msgstr "Eliminando todas los agentes de las políticas" + +#~ msgid "All the policy agents will be deleted" +#~ msgstr "Todos los agentes de las políticas serán eliminados" + +#~ msgid "Delete all agents" +#~ msgstr "Eliminar todos los agentes" + +#~ msgid "" +#~ "If you change this description, you must change into the text of Data " +#~ "configuration." +#~ msgstr "" +#~ "Si cambia esta descripción, tiene que cambiarla en el texto de la " +#~ "configuración de datos." + +#~ msgid "Could not be added module(s). You must select a policy" +#~ msgstr "El módulo no se pudo añadir. Debe seleccionar una política." + +#, php-format +#~ msgid "Successfully added module(s) (%s/%s) to policy %s" +#~ msgstr "Módulo añadido correctamente (%s/%s) a la política %s" + +#, php-format +#~ msgid "Could not be added module(s) (%s/%s) to policy %s" +#~ msgstr "El módulo no se pudo añadir (%s/%s) a la política %s" + +#~ msgid "Successfully added module." +#~ msgstr "Módulo añadido correctamente" + +#~ msgid "Could not be added module." +#~ msgstr "El módulo no se pudo añadir" + +#~ 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, elija uno del combo del " +#~ "formulario." + +#~ 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, elija uno del combo del " +#~ "formulario." + +#~ 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." + +#~ msgid "Successfully reverted deletion" +#~ msgstr "Eliminación revertida correctamente" + +#~ msgid "Could not be reverted" +#~ msgstr "No pudo ser revertido" + +#~ msgid "Successfully duplicate the module." +#~ msgstr "Módulo duplicado con éxito" + +#~ msgid "Local component" +#~ msgstr "Componente local" + +#~ msgid "Undo deletion" +#~ msgstr "Deshacer eliminación" + +#~ msgid "Copy selected modules to policy: " +#~ msgstr "Copiar módulos seleccionados a la política: " + #~ msgid "Variable" #~ msgstr "Variable" +#~ msgid "Are you sure to copy modules into policy?\\n" +#~ msgstr "¿Está seguro de que quiere copiar los módulos en la política?\\n" + +#~ msgid "Please select any module to copy" +#~ msgstr "Por favor, seleccione algún modulo para copiar" + +#~ 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." + +#~ msgid "Successfully added to delete queue" +#~ msgstr "Correctamente añadido a la lista de eliminación" + +#~ msgid "Could not be added to delete queue" +#~ msgstr "No se pudo añadir a la lista de eliminación" + +#~ msgid "Successfully deleted from delete pending agents" +#~ msgstr "Eliminado correctamente de los agentes pendientes de eliminación" + +#~ msgid "Could not be deleted from delete pending agents" +#~ msgstr "No se pudo eliminar de los agentes pendientes de eliminación" + +#~ msgid "Agents in Policy" +#~ msgstr "Agentes en la política" + +#~ msgid "Add agents to policy" +#~ msgstr "Añadir agentes a la política" + +#~ msgid "Delete agents from policy" +#~ msgstr "Eliminar agentes de la política" + +#~ msgid "Applied" +#~ msgstr "Aplicado" + +#~ msgid "Not applied" +#~ msgstr "No aplicado" + +#~ msgid "R." +#~ msgstr "R." + +#~ msgid "Unlinked modules" +#~ msgstr "Módulos sin enlazar" + +#~ msgid "U." +#~ msgstr "U." + +#~ msgid "Last application" +#~ msgstr "Última aplicación" + +#~ msgid "Add to delete queue" +#~ msgstr "Añadir a la lista de eliminación" + +#~ msgid "This agent can not be remotely configured" +#~ msgstr "Este agente no puede ser configurado remotamente" + +#~ msgid "Add to apply queue" +#~ msgstr "Añadir para aplicar cola" + +#~ msgid "Policy applied" +#~ msgstr "Política aplicada" + +#~ msgid "Need apply" +#~ msgstr "Necesita aplicar" + +#~ msgid "Applying policy" +#~ msgstr "Aplicando política" + +#~ msgid "Deleting from policy" +#~ msgstr "Eliminando de la política" + +#~ 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." + +#~ msgid "Outdate" +#~ msgstr "Obsoleto" + +#~ msgid "Created successfuly" +#~ msgstr "Creado correctamente" + +#~ 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." + +#~ msgid "Added action successfuly" +#~ msgstr "Acción añadida correctamente" + +#~ msgid "Deleted action successfuly" +#~ msgstr "Acción eliminada correctamente" + +#~ msgid "Policy module" +#~ msgstr "Módulo de la política" + +#~ msgid "Module is not selected" +#~ msgstr "No ha seleccionado ningún módulo" + +#~ msgid "Select inventory module" +#~ msgstr "Seleccionar módulo de inventario" + +#~ msgid "Linking modules" +#~ msgstr "Modulos enlazados" + +#~ msgid "Error: Update linking modules to policy" +#~ msgstr "Error: Actualizando modulos enlazados a la política" + +#~ msgid "Success: Update linking modules to policy" +#~ msgstr "Completado: Actualizando modulos enlazados a la política" + +#~ msgid "Free text for filter (*)" +#~ msgstr "Texto libre para filtro (*)" + +#~ msgid "Free text for filter" +#~ msgstr "Texto libre para filtro" + +#~ msgid "List of modules unlinked" +#~ msgstr "Lista de módulos sin enlazar" + +#~ msgid "Add policy" +#~ msgstr "Añadir política" + +#~ msgid "Operation successfully deleted from the queue" +#~ msgstr "Operación eliminada correctamente de la cola" + +#~ msgid "Operation cannot be deleted from the queue" +#~ msgstr "La operación no puede ser eliminada de la cola" + +#~ msgid "Operations successfully deleted from the queue" +#~ msgstr "Operaciones eliminadas correctamente de la cola" + +#~ msgid "Operations cannot be deleted from the queue" +#~ msgstr "Las operaciones no pueden ser eliminadas de la cola" + +#~ msgid "Update pending" +#~ msgstr "Actualización pendiente" + +#~ msgid "Update pending agents" +#~ msgstr "Actualizar agentes pendientes" + +#~ msgid "Add to apply queue only for database" +#~ msgstr "Añadir a la cola de aplicación, sólo de cambios de base de datos" + +#~ msgid "Link pending modules" +#~ msgstr "Enlazar módulos pendientes" + +#~ msgid "Will be linked in the next policy application" +#~ msgstr "Se enlazará en la siguiente aplicación de políticas" + +#~ msgid "Unlink pending modules" +#~ msgstr "Desenlazar módulos pendientes" + +#~ msgid "Will be unlinked in the next policy application" +#~ msgstr "Será desenlazado en la siguiente aplicación de políticas" + +#~ msgid "Delete pending" +#~ msgstr "Eliminación pendiente" + +#~ msgid "Delete pending agents" +#~ msgstr "Eliminar agentes pendientes" + +#~ msgid "Will be deleted in the next policy application" +#~ msgstr "Se eliminará en la siguiente aplicación de políticas" + +#~ msgid "Delete pending modules" +#~ msgstr "Eliminar módulos pendientes" + +#~ msgid "Delete pending inventory modules" +#~ msgstr "Eliminar módulos de inventario pendientes" + +#~ msgid "Delete pending alerts" +#~ msgstr "Eliminar alertas pendientes" + +#~ msgid "Delete pending external alerts" +#~ msgstr "Eliminar alertas externas pendientes" + +#~ msgid "Delete pending file collections" +#~ msgstr "Eliminar colecciones de archivos pendientes" + +#~ msgid "Delete pending plugins" +#~ msgstr "Eliminar plugins pendientes" + +#~ msgid "Advices" +#~ msgstr "Consejos" + +#~ msgid "Queue summary" +#~ msgstr "Resumen de cola" + +#~ msgid "This operation could take a long time" +#~ msgstr "Esta operación podría tardar bastante tiempo" + +#~ msgid "Apply (database and files)" +#~ msgstr "Aplicar (base de datos y archivos)" + +#~ msgid "Apply (only database)" +#~ msgstr "Aplicar (sólo en la base de datos)" + +#~ msgid "Complete" +#~ msgstr "Completo" + +#~ msgid "Incomplete" +#~ msgstr "Incompleto" + +#~ msgid "Queue filter" +#~ msgstr "Filtros de cola" + +#~ msgid "Finished" +#~ msgstr "Terminado" + +#~ msgid "Delete from queue" +#~ msgstr "Eliminar de la cola" + +#~ msgid "Empty queue" +#~ msgstr "Vaciar cola" + +#~ msgid "Delete all" +#~ msgstr "Eliminar todo" + +#~ msgid "Operation successfully added to the queue" +#~ msgstr "Operación añadida correctamente a la cola" + +#~ msgid "Operation cannot be added to the queue" +#~ msgstr "La operación no se puede añadir a la cola" + +#~ msgid "Duplicated or incompatible operation in the queue" +#~ msgstr "Operación duplicada o incompatible en la cola" + +#~ 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." + +#~ msgid "Cannot be added to delete pending plugins." +#~ msgstr "No se puede añadir a los plugins pendientes de eliminar" + +#~ msgid "Duplicated alert" +#~ msgstr "Alerta duplicada" + +#~ msgid "Modules in policy agents" +#~ msgstr "Modulos en agentes de política" + +#~ msgid "Alert Template" +#~ msgstr "Plantilla de alerta" + +#~ msgid "List event alerts" +#~ msgstr "Lista de alertas de eventos" + +#~ msgid "Builder event alert" +#~ msgstr "Creador de alertas de eventos" + +#~ msgid "Error processing action" +#~ msgstr "Error al procesar la acción" + +#~ msgid "Error validating alert(s)" +#~ msgstr "Error al validar la alerta" + +#~ msgid "Ac." +#~ msgstr "Ac." + +#~ msgid "Val." +#~ msgstr "Val." + +#~ msgid "Move up" +#~ msgstr "Subir" + +#~ msgid "Move down" +#~ msgstr "Bajar" + +#~ msgid "No associated actions" +#~ msgstr "No hay acciones asociadas" + +#~ msgid "View associated rules" +#~ msgstr "Ver reglas asociadas" + +#~ msgid "List event rules" +#~ msgstr "Lista de reglas de eventos" + +#~ msgid "Configure event rule" +#~ msgstr "Configurar regla de evento" + +#~ msgid "User comment" +#~ msgstr "Comentario de usuario" + +#~ msgid "This field will be processed with regexp" +#~ msgstr "Este campo será procesado con regexp" + +#~ msgid "Window" +#~ msgstr "ventana" + +#~ msgid "Configure event alert" +#~ msgstr "Configurar alerta de eventos" + +#~ msgid "Could not be created, please fill alert name" +#~ msgstr "No se pudo crear, por favor, introduzca un nombre de alerta" + +#~ msgid "Rule evaluation mode" +#~ msgstr "Modo de evaluación de reglas" + +#~ msgid "Group by" +#~ msgstr "Agrupar por" + +#~ msgid "Please Read" +#~ msgstr "Por favor, lea" + +#~ msgid "" +#~ "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, debe editarlas desde " +#~ "la lista de alertas de eventos." + +#~ msgid "Event rules" +#~ msgstr "Reglas de eventos" + +#~ msgid "Error creating rule" +#~ msgstr "Error al crear regla" + +#~ msgid "Successfully created rule" +#~ msgstr "Regla creada correctamente" + +#~ msgid "Error updating rule" +#~ msgstr "Error al actualizar la regla" + +#~ msgid "Successfully updating rule" +#~ msgstr "Regla actualizada correctamente" + +#~ msgid "Error updating rule operators" +#~ msgstr "Error al actualizar los operadores de reglas" + +#~ msgid "Successfully update rule operators" +#~ msgstr "Operadores actualizados correctamente" + +#~ msgid "(Agent)" +#~ msgstr "(Agente)" + +#~ msgid "Logic expression for these rules:" +#~ msgstr "Expresión lógica para estas reglas" + +#~ msgid "Update operators" +#~ msgstr "Actualizar operadores" + +#~ msgid "Success: create the alerts." +#~ msgstr "Alertas creadas exitosamente" + +#~ msgid "Failed: create the alerts for this modules, please check." +#~ msgstr "" +#~ "Falló: Creación de alertas para estos modulos, compruebe el problema." + +#~ msgid "Modules agents in policy" +#~ msgstr "Modulos de agentes en la política" + +#~ msgid "SNMP Alerts to be deleted" +#~ msgstr "Alertas SNMP para añadir" + +#~ msgid "Success: remove the alerts." +#~ msgstr "Completado: borrado de alertas." + +#~ msgid "Failed: remove the alerts for this modules, please check." +#~ msgstr "Falló: borrado de alertas para estos modulos." + +#, php-format +#~ msgid "Successfully updated alerts (%s / %s)" +#~ msgstr "Alertas actualizadas correctamente (%s / %s)" + +#, php-format +#~ msgid "Unsuccessfully updated alerts (%s / %s)" +#~ msgstr "No se han podido actualizar las alertas (%s / %s)" + +#~ msgid "SNMP Alerts to be edit" +#~ msgstr "Alertas SNMP para editar" + +#~ msgid "Filter module" +#~ msgstr "Filtro de módulo" + +#~ msgid "Updated modules on database" +#~ msgstr "Módulos actualizados en la base de datos" + +#~ msgid "Agent configuration files updated" +#~ msgstr "Actualizado fichero de configuración del agente" + #~ msgid "Massive alerts policy addition" #~ msgstr "Adición masiva de alertas a políticas" @@ -36942,25 +25744,439 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Massive Satellite modules edition" #~ msgstr "Edición masiva de módulos satélite" +#~ msgid "Custom OID" +#~ msgstr "OID personalizado" + #~ msgid "Error parsing MIB" #~ msgstr "Error al analizar MIB" +#~ msgid "Successfully added trap custom values" +#~ msgstr "Añadidos correctamente a los valores personalizados trap" + +#~ msgid "Error adding trap custom values" +#~ msgstr "Error al añadir los valores personalizados trap" + +#~ msgid "No change in data" +#~ msgstr "No hay cambios en los datos" + +#~ msgid "Successfully updated trap custom values" +#~ msgstr "Los valores personalizados trap se han añadido correctamente" + +#~ msgid "Error updating trap custom values" +#~ msgstr "Error al actualizar los valores personalizados trap" + +#~ msgid "Successfully deleted trap custom values" +#~ msgstr "Valores personalizados trap eliminados correctamente" + +#~ msgid "Error deleting trap custom values" +#~ msgstr "Error al eliminar valores personalizados trap" + +#, php-format +#~ msgid "Uploaded %s/%s traps" +#~ msgstr "Actualizados %s/%s traps" + #, php-format #~ msgid "Fail uploaded %s/%s traps" #~ msgstr "Fallo al actualizar %s/%s traps" +#~ msgid "Fail uploaded file" +#~ msgstr "Fallo al subir el archivo" + +#~ 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 ficheros MIB se cargarán y buscaron las definiciones de SNMP trap. ¡No " +#~ "van a ser instalados en el sistema! Puede usar el cargador de MIB para ese " +#~ "propósito." + +#~ msgid "Load MIB" +#~ msgstr "Cargar MIB" + +#~ msgid "Upload MIB" +#~ msgstr "Actualizar MIB" + +#~ msgid "Log storage directory" +#~ msgstr "Directorio de almacenamiento de logs" + +#~ msgid "Directory where log data will be stored." +#~ msgstr "Directorio donde los datos de log se almacenarán" + +#~ msgid "Sets the maximum lifetime for log data in days." +#~ msgstr "Establece la duración máxima de los datos de registro en días" + +#~ msgid "Enterprise ACL setup" +#~ msgstr "Configuración ACL Enterprise" + +#~ msgid "Add new ACL element to profile" +#~ msgstr "Añadir nuevo elemento ACL al perfil" + +#~ msgid "Section" +#~ msgstr "Sección" + +#~ msgid "Page" +#~ msgstr "Página" + +#~ msgid "Filter by profile" +#~ msgstr "Filtrar por perfil" + +#~ msgid "Skins configuration" +#~ msgstr "Configuración skins" + +#~ msgid "Error deleting skin" +#~ msgstr "Error al borrar skin" + +#~ msgid "Successfully deleted skin" +#~ msgstr "Skin eliminado correctamente" + +#~ msgid "Create skin" +#~ msgstr "Crear skin" + +#~ msgid "Skin name" +#~ msgstr "Nombre del skin" + +#~ msgid "Relative path" +#~ msgstr "Ruta relativa" + +#~ msgid "Successfully updated skin" +#~ msgstr "Skin actualizada correctamente" + +#~ msgid "Error updating skin" +#~ msgstr "Error al actualizar skin" + +#~ msgid "Error creating skin" +#~ msgstr "Error al crear skin" + +#~ msgid "Successfully created skin" +#~ msgstr "Skin creado correctamente" + +#~ msgid "" +#~ "Zip file with skin subdirectory. The name of the zip file only can have " +#~ "alphanumeric characters." +#~ msgstr "" +#~ "Archivo zip con subdirectorio skin. El nombre del archivo zip solo puede " +#~ "tener caracteres alfanuméricos." + +#~ msgid "Group/s" +#~ msgstr "Grupo/s" + +#~ msgid "Metaconsole setup" +#~ msgstr "Configuración de la Metaconsola" + +#~ msgid "Successfully update" +#~ msgstr "Actualizado correctamente" + +#~ msgid "Could not be update" +#~ msgstr "No se pudo actualizar" + +#~ msgid "Pandora FMS Metaconsole item edition" +#~ msgstr "Edición de elementos de la metaconsola de Pandora FMS" + +#~ msgid "Auth token" +#~ msgstr "Aut. token" + +#~ 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 autentificación delegada." + +#~ msgid "Console URL" +#~ msgstr "Consola URL" + +#~ msgid "DB Host" +#~ msgstr "Host DB" + +#~ msgid "DB Name" +#~ msgstr "Nombre BD" + +#~ msgid "DB User" +#~ msgstr "Usuario de base de datos" + +#~ msgid "DB Password" +#~ msgstr "Contraseña BD" + +#~ msgid "Console User" +#~ msgstr "Usuario de la consola" + +#~ msgid "Console Password" +#~ msgstr "Contraseña de la consola" + +#~ msgid "DB" +#~ msgstr "BD" + +#~ msgid "API" +#~ msgstr "API" + +#~ msgid "Compatibility" +#~ msgstr "Compatibilidad" + +#~ msgid "Number of days before data is transfered to history database." +#~ msgstr "" +#~ "Número de días antes de que los datos se transfieran a la base de datos " +#~ "histórica." + +#~ msgid "" +#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" +#~ msgstr "Tamaño del sistema de transferencia de datos (similar al un buffer)" + +#~ msgid "Time interval between data transfer." +#~ msgstr "Intervalo de tiempo entre transferencias de datos" + +#~ msgid "" +#~ "Before activating this option check your ACL Setup. You may lose access to " +#~ "the console." +#~ msgstr "" +#~ "Antes de activar esta opción compruebe su configuración ACL. Puede que " +#~ "pierda el acceso a la consola." + +#~ msgid " Bytes" +#~ msgstr " Bytes" + +#~ msgid "Seconds" +#~ msgstr "Segundos" + +#~ msgid "Only validated events" +#~ msgstr "Sólo eventos validados" + +#~ msgid "" +#~ "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." + +#~ msgid "Out of black list" +#~ msgstr "Fuera de la lista negra" + +#~ msgid "In black list" +#~ msgstr "En la lista negra" + +#~ msgid "Push selected modules into blacklist" +#~ msgstr "Mover los módulos seleccionados a la lista negra" + +#~ msgid "Pop selected modules out of blacklist" +#~ msgstr "Sacar los módulos seleccionados de la lista negra" + +#~ msgid "Enterprise options" +#~ msgstr "Opciones Enterprise" + +#~ msgid " Caracters" +#~ msgstr " Caracteres" + +#~ msgid "Set 0 if never expire." +#~ msgstr "Introduzca 0 para que nunca expire" + +#~ msgid " Days" +#~ msgstr " Días" + +#~ msgid " Minutes" +#~ msgstr " Minutos" + +#~ msgid "Two attempts minimum" +#~ msgstr "2 intentos mínimo" + +#~ msgid " Attempts" +#~ msgstr " Intentos" + +#~ msgid "Enterprise password policy" +#~ msgstr "Política de contraseña Enterprise" + +#~ msgid "" +#~ "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" + +#~ msgid "Active directory" +#~ msgstr "Directorio activo" + +#~ msgid "Remote Pandora FMS" +#~ msgstr "Pandora FMS remota" + +#~ msgid "Remote Babel Enterprise" +#~ msgstr "Babel Enterprise remoto" + +#~ msgid "Remote Integria" +#~ msgstr "Integria IMs remoto" + +#~ msgid "Pandora FMS host" +#~ msgstr "Servidor de Pandora FMS" + +#~ msgid "Macros" +#~ msgstr "Macros" + +#~ msgid "Local component management" +#~ msgstr "Gestión de componentes locales" + +#~ msgid "Successfully created inventory module" +#~ msgstr "Inventario de módulo creado correctamente" + +#~ msgid "Error creating inventory module" +#~ msgstr "Error al crear módulo del inventario" + +#~ msgid "Interpreter" +#~ msgstr "Intérprete" + +#~ msgid "Local module" +#~ msgstr "Módulo local" + +#~ msgid "Remote/Local" +#~ msgstr "Remoto/Local" + +#~ msgid "Block Mode" +#~ msgstr "Modo bloqueo" + +#~ msgid "separate fields with " +#~ msgstr "Separar campos con " + +#~ msgid "Or disable Pandora FMS enterprise" +#~ msgstr "O desactive Pandora FMS Enterprise" + +#, php-format +#~ msgid "" +#~ "License out of limits

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

    Esta licencia es para %d agentes y tiene %d agentes configurados." + +#~ msgid "" +#~ "This license has expired. " +#~ "

    You can not get updates until you renew the license." +#~ msgstr "" +#~ "This license has expired. " +#~ "

    No podrá actualizar Pandora FMS hasta que no renueve la licencia." + +#~ 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:" +#~ msgstr "" +#~ "Para continuar usando Pandora FMS, por favor, desactive Pandora FMS " +#~ "Enterprise cambiando el nombre de la Enteprise en el directorio de la " +#~ "consola.

    o contacte con Ártica ST para obtener una licencia válida " +#~ "(info@artica.es)" + +#~ msgid "Please contact Artica at info@artica.es to renew the license." +#~ msgstr "" +#~ "Por favor, contacte con Ártica ST (info@artica.es) para renovar la licencia." + +#~ msgid "Renew" +#~ msgstr "Renovar" + +#~ msgid "Top N Events by agent." +#~ msgstr "Top N de eventos por agente" + +#~ msgid "Top N events by agent." +#~ msgstr "Top N de eventos por agente" + +#~ msgid "Amount to show" +#~ msgstr "Cantidad a mostrar" + +#~ msgid "Please select one or more groups." +#~ msgstr "Por favor, seleccione uno o más grupos" + +#~ msgid "There is not data to show." +#~ msgstr "No hay datos que mostrar" + +#~ msgid "Please, configure this widget before use" +#~ msgstr "Por favor, configure este widget antes de usarlo" + +#~ msgid "Latest events list" +#~ msgstr "Última lista de eventos" + +#~ msgid "Limit" +#~ msgstr "Límite" + +#~ msgid "Only pending" +#~ msgstr "Solo pendientes" + +#~ msgid "Map made by user" +#~ msgstr "Mapa hecho por el usuario" + +#~ msgid "Show a map made by user" +#~ msgstr "Mostrar un mapa hecho por el usuario" + +#~ msgid "Alerts Fired" +#~ msgstr "Alertas disparadas" + +#~ msgid "Alerts Fired report" +#~ msgstr "Informe de alertas lanzadas" + +#~ msgid "Show a report made by user" +#~ msgstr "Mostrar un informe hecho por el usuario" + +#~ msgid "Single graph" +#~ msgstr "Gráfico simple" + +#~ msgid "Show a graph of an agent module" +#~ msgstr "Mostrar una gráfica de un módulo de agente" + +#~ msgid "Show a top n of agents modules." +#~ msgstr "Mostrar el top N de módulos" + +#~ msgid "avg" +#~ msgstr "media" + +#~ msgid "Selection module one by one" +#~ msgstr "Selección de módulos uno en uno" + +#~ msgid "Selection several modules" +#~ msgstr "Selección múltiple de módulos" + +#~ msgid "Regex for to filter modules" +#~ msgstr "Expresión regular para filtrar módulos" + +#~ msgid "Filter modules" +#~ msgstr "Filtrar módulos" + #~ msgid "Successful added modules" #~ msgstr "Módulos añadidos con éxito" #~ msgid "Unsuccessful added modules" #~ msgstr "Error añadiendo módulos" +#~ msgid "Show the URL content" +#~ msgstr "Mostrar el contenido URL" + #~ msgid "Height in px (zero for auto)" #~ msgstr "Altura en px (cero para auto)" +#~ msgid "My URL" +#~ msgstr "Mi URL" + #~ msgid "Invalid URL" #~ msgstr "URL no válida" +#~ msgid "Welcome message to Pandora FMS" +#~ msgstr "Mensaje de bienvenida de Pandora FMS" + +#~ msgid "Welcome" +#~ msgstr "Bienvenido/a" + +#~ msgid "" +#~ "To delete this message, click on the delete button on top right corner of " +#~ "this element." +#~ msgstr "" +#~ "Para eliminar este mensaje, haga clic sobre el botón de la esquina derecha " +#~ "de este elemento." + +#~ msgid "" +#~ "To do so, just click on the title and drag and drop it to the desired place." +#~ msgstr "" +#~ "Para hacer eso, haga clic en el título, arrastre y suelte el elemento en el " +#~ "lugar que desee." + +#~ msgid "Thanks for using Pandora FMS" +#~ msgstr "Gracias por usar Pandora FMS" + +#~ msgid "Show a map of the monitored network" +#~ msgstr "Mostrar un mapa de la red monitorizada" + #~ msgid "No overlap" #~ msgstr "No solapar" @@ -36979,6 +26195,36 @@ msgstr "El usuario solo puede usar la API" #~ msgid "12" #~ msgstr "12" +#~ msgid "Maps status" +#~ msgstr "Estado de los mapas" + +#~ msgid "General and quick visual maps report" +#~ msgstr "Informe rápido y general de los mapas visuales" + +#~ msgid "Panel with a message" +#~ msgstr "panel con un mensaje" + +#~ msgid "My Post" +#~ msgstr "Mi página" + +#~ msgid "Show a defined custom graph" +#~ msgstr "Mostrar una gráfica personalizada definida" + +#~ msgid "Groups status" +#~ msgstr "Estado de los grupos" + +#~ msgid "General and quick group status report" +#~ msgstr "Informe general y rápido del estado de los grupos" + +#~ msgid "Show a list of global monitor health" +#~ msgstr "Mostrar una lista global de la salud de los monitores" + +#~ msgid "Top N Events by module." +#~ msgstr "Top N de eventos por módulo" + +#~ msgid "Top N events by module." +#~ msgstr "Top N de eventos por módulo" + #~ msgid "Dashboard replicate" #~ msgstr "Réplica del dashboard" @@ -37004,6 +26250,18 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Replicate Dashboard" #~ msgstr "Replicar dashboards" +#~ msgid "Configure widget" +#~ msgstr "Configurar widget" + +#~ msgid "Delete widget" +#~ msgstr "Eliminar widget" + +#~ msgid "Widget cannot be loaded" +#~ msgstr "El widget no se puede cargar" + +#~ msgid "Please, configure the widget again to recover it" +#~ msgstr "Por favor, configure el widget otra vez para recuperarlo" + #~ msgid "Dashboard successfuly updated" #~ msgstr "El dashboard se ha actualizado correctamente" @@ -37016,6 +26274,9 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Dashboard successfuly created" #~ msgstr "Dashboard creado correctamente" +#~ msgid "Slides mode" +#~ msgstr "Modo diapositivas" + #~ msgid "Next Dashboard" #~ msgstr "Siguiente dashboard" @@ -37025,12 +26286,18 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Previous Dashboard" #~ msgstr "Dashboard anterior" +#~ msgid "Pause" +#~ msgstr "Pausar" + #~ msgid "Next slide in" #~ msgstr "Siguiente diapositiva" #~ msgid "Add dashboard" #~ msgstr "Añadir dashboard" +#~ msgid "Add widget" +#~ msgstr "Agregar widget" + #~ msgid "Update dashboard" #~ msgstr "Actualizar dashboard" @@ -37040,18 +26307,469 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Dashboard options" #~ msgstr "Opciones del dashboard" +#~ msgid "Private dashboard" +#~ msgstr "Dashboard privado" + #~ msgid "Add new dashboard view" #~ msgstr "Añadir nueva vista del dashboard" +#~ msgid "Add new widget" +#~ msgstr "Añadir nuevo widget" + +#~ msgid "Search results for" +#~ msgstr "Buscar resultados para" + +#~ msgid "There are no agents included in this group" +#~ msgstr "No hay ningún agente incluido en este grupo" + +#~ msgid "Screens" +#~ msgstr "Pantallas" + +#~ msgid "Create visualmap" +#~ msgstr "Crear mapa visual" + #~ msgid "Visualmap" #~ msgstr "Mapa visual" +#~ 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" + +#~ msgid "Succesful updated" +#~ msgstr "Actualizado correctamente" + +#~ msgid "Unsucessful updated" +#~ msgstr "Actualización fallida" + +#~ msgid "Fields" +#~ msgstr "Campos" + +#~ msgid "Tactical View" +#~ msgstr "Vista táctica" + +#~ msgid "More events" +#~ msgstr "Más eventos" + +#~ msgid "Create module" +#~ msgstr "Crear módulo" + +#~ msgid "Can't connect to Pandora FMS instance" +#~ msgstr "No se puede conectar a la instancia de Pandora FMS" + +#~ msgid "Web check" +#~ msgstr "Comprobación web" + +#~ msgid "Module description" +#~ msgstr "Descripción del módulo" + +#~ msgid "Step by step wizard" +#~ msgstr "Wizard paso a paso" + +#~ msgid "Click Create to continue" +#~ msgstr "haga clic en Crear para continuar" + +#~ msgid "Edit module" +#~ msgstr "Editar módulo" + +#~ msgid "The alert you are trying to add is already in the list of alerts" +#~ msgstr "La alerta que está intentando añadir está ya en la lista de alertas" + +#~ msgid "Please, select an alert" +#~ msgstr "Por favor, seleccione una alerta" + +#~ msgid "Please, select an agent" +#~ msgstr "Por favor, seleccione un agente" + +#~ msgid "String" +#~ msgstr "Cadena" + +#~ msgid "Another agent already exists with the same name" +#~ msgstr "Ya hay otro agente con ese nombre" + +#~ msgid "Preview" +#~ msgstr "Vista previa" + +#~ msgid "Edit agent" +#~ msgstr "Editar agente" + #~ msgid "Please, set a valid IP address" #~ msgstr "Por favor, introduzca una dirección IP válida" +#~ msgid "Advanced configuration" +#~ msgstr "Configuración avanzada" + +#~ msgid "Invalid characters founded in module name" +#~ msgstr "Se han encontrado caracteres inválidos en el nombre del módulo" + +#~ msgid "Please, set a name" +#~ msgstr "Por favor, introduzca un nombre" + +#~ msgid "Please, set an interval" +#~ msgstr "Por favor, introduzca un intervalo" + +#~ msgid "Select the agent to be edited or deleted" +#~ msgstr "Seleccionar el agente que quiera editar o eliminar" + +#~ msgid "Select the agent where the module will be created" +#~ msgstr "Seleccione el agente donde crear el modulo" + +#~ msgid "Create Module" +#~ msgstr "Crear módulo" + +#~ msgid "Select the module to be edited or deleted" +#~ msgstr "Seleccione el módulo para editar o borrar" + +#~ msgid "Select the module where the alert will be created" +#~ msgstr "Seleccione el módulo donde se creará la alerta" + +#~ msgid "Select the alert to be edited or deleted" +#~ msgstr "Seleccione la alerta que quiere editar o eliminar" + +#~ msgid "Group View" +#~ msgstr "Vista de grupo" + +#~ msgid "Synchronizing" +#~ msgstr "Sincronizando" + +#~ msgid "Users synchronization" +#~ msgstr "Sincronización de usuarios" + +#~ msgid "Groups synchronization" +#~ msgstr "Sincronización de grupos" + +#~ msgid "Alerts synchronization" +#~ msgstr "Sincronización de alertas" + +#~ msgid "Components synchronization" +#~ msgstr "Sincronización de componentes" + +#~ msgid "Tags synchronization" +#~ msgstr "Sincronización de tags" + +#, php-format +#~ msgid "Could not be update: Error in %s" +#~ msgstr "No se puede actualizar: error en %s" + +#~ msgid "Customize sections" +#~ msgstr "Personalizar secciones" + +#~ msgid "Disabled sections" +#~ msgstr "Secciones desactivadas" + +#~ msgid "Enabled sections" +#~ msgstr "Activar secciones" + +#~ msgid "Push selected sections to enable it" +#~ msgstr "Apriete las secciones elegidas para activarlo" + +#~ msgid "Pop selected sections to disable it" +#~ msgstr "Desapriete la secciones seleccionadas para desactivarlo" + +#~ msgid "Passwords" +#~ msgstr "Contraseñas" + +#, php-format +#~ msgid "Error updating user %s" +#~ msgstr "Error al actualizar usuario %s" + +#, php-format +#~ msgid "Updated user %s" +#~ msgstr "Usuario actualizado %s" + +#, php-format +#~ msgid "Error creating user %s" +#~ msgstr "Error al crear usuario %s" + +#, php-format +#~ msgid "Created user %s" +#~ msgstr "Usuario creado %s" + +#, php-format +#~ msgid "" +#~ "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)" + +#, php-format +#~ msgid "" +#~ "The followings elements groups/profiles/user profiles were created/updated " +#~ "sucessfully (%d/%d/%d)" +#~ msgstr "" +#~ "Los perfiles de los siguientes elementos grupos/perfiles/usuarios han sido " +#~ "actualizados correctamente (%d/%d/%d)" + +#, php-format +#~ msgid "Error connecting to %s" +#~ msgstr "Error al conectar con %s" + +#~ msgid "This metaconsole" +#~ msgstr "Esta metaconsola" + +#~ msgid "Profile mode" +#~ msgstr "Modo de perfil" + +#~ msgid "Profile synchronization mode." +#~ msgstr "Modo de perfil de sincronización" + +#~ msgid "New profile" +#~ msgstr "Nuevo perfil" + +#~ msgid "Copy profile" +#~ msgstr "Copiar perfil" + #~ msgid "Check this to copy user original profiles" #~ msgstr "Comprobar esto para copiar los perfiles originales de los usuarios" +#~ msgid "Sync" +#~ msgstr "Sincr." + +#, php-format +#~ msgid "Error creating %s components groups " +#~ msgstr "Error al crear %s grupos de componentes " + +#, php-format +#~ msgid "Created %s component groups" +#~ msgstr "Creados %s componentes de grupos" + +#, php-format +#~ msgid "Error creating/updating %s/%s local components " +#~ msgstr "Error al crear/actualizar %s/%s componentes locales " + +#, php-format +#~ msgid "Created/Updated %s/%s local components" +#~ msgstr "Creados/actualizados %s/%s componentes locales" + +#, php-format +#~ msgid "Error creating/updating %s/%s network components " +#~ msgstr "Error al crear/actualizar %s/%s componentes de red " + +#, php-format +#~ msgid "Created/Updated %s/%s network components" +#~ msgstr "Creados/actualizados %s/%s componentes de red" + +#~ msgid "Metaconsole elements" +#~ msgstr "Elementos de la Metaconsola" + +#~ msgid "The number of elements retrieved for each instance in some views." +#~ msgstr "" +#~ "El número de elementos recuperados para cada instancia en algunas vistas." + +#~ msgid "Visual" +#~ msgstr "visual" + +#~ msgid "Could not be delete" +#~ msgstr "No se puede eliminar" + +#~ 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 " + +#~ msgid "There aren't server added to metaconsole" +#~ msgstr "No hay servidores añadidos a la metaconsola" + +#, php-format +#~ msgid "Error creating/updating %s/%s comamnds" +#~ msgstr "Error al crear/actualizar %s/%s comandos" + +#, php-format +#~ msgid "Created/Updated %s/%s commands" +#~ msgstr "Creados/actualizados %s/%s comandos" + +#, php-format +#~ msgid "Error creating/updating %s/%s actions" +#~ msgstr "Error al crear/actualizar %s/%s acciones" + +#, php-format +#~ msgid "Created/Updated %s/%s actions" +#~ msgstr "Creados/actualizados %s/%s acciones" + +#, php-format +#~ msgid "Error creating/updating %s/%s templates" +#~ msgstr "Error al crear/actualizar %s/%s plantillas" + +#, php-format +#~ msgid "Created/Updated %s/%s templates" +#~ msgstr "Creadas/actualizadas %s/%s plantillas" + +#~ msgid "Propagation" +#~ msgstr "Propagación" + +#~ msgid "Only database" +#~ msgstr "Sólo bases de datos" + +#, php-format +#~ msgid "Error creating/updating %s/%s tags" +#~ msgstr "Error al crear/actualizar %s/%s tags" + +#, php-format +#~ msgid "Created/Updated %s/%s tags" +#~ msgstr "Creados/actualizados %s/%s tags" + +#~ msgid "Active events history" +#~ msgstr "Historial de eventos activo" + +#~ msgid "Please search for anything text." +#~ msgstr "Por favor haga una búsqueda de cualquier cadena de texto" + +#~ msgid "Original string" +#~ msgstr "Cadena original" + +#~ msgid "Translation in selected language" +#~ msgstr "Traducción en el idioma seleccionado" + +#~ msgid "Customize translation" +#~ msgstr "Personalizar traducción" + +#~ msgid "Consoles Setup" +#~ msgstr "Configuración de consolas" + +#~ msgid "General setup" +#~ msgstr "Configuración general" + +#~ msgid "Passwords setup" +#~ msgstr "Configuración de contraseñas" + +#~ msgid "Visual setup" +#~ msgstr "Configuración visual" + +#~ msgid "Performance setup" +#~ msgstr "Configuración del rendimiento" + +#~ msgid "Strings translation" +#~ msgstr "Traducción de cadenas" + +#~ msgid "Consoles setup" +#~ msgstr "Configuración de las consolas" + +#, php-format +#~ msgid "Error creating/updating %s/%s groups" +#~ msgstr "Error al crear/actualizar grupos %s/%s" + +#, php-format +#~ msgid "Created/Updated %s/%s groups" +#~ msgstr "Creados/actualizados grupos %s/%s" + +#~ msgid "redirected ip server in conf into source DB" +#~ msgstr "Servidor IP redirigido en la configuración a la BD de origen" + +#~ msgid "created agent in destination DB" +#~ msgstr "Agente creado en la BD de destino" + +#~ msgid "created agent modules in destination DB" +#~ msgstr "Módulos de agente creados en la BD de destino" + +#~ msgid "created agent alerts in destination DB" +#~ msgstr "Alertas de agentes creadas en la BD de destino" + +#~ msgid "created alerts actions in destination DB" +#~ msgstr "Acciones de alertas en la BD de destino" + +#~ msgid "disabled agent in source DB" +#~ msgstr "Agente desactivado en la BD de origen" + +#~ msgid "" +#~ "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" + +#~ msgid "Successfully moved" +#~ msgstr "Movido satisfactoriamente" + +#~ msgid "Could not be moved" +#~ msgstr "No se puede mover" + +#~ msgid "Source Server" +#~ msgstr "Servidor de origen" + +#~ msgid "Destination Server" +#~ msgstr "Servidor de destino" + +#~ 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" +#~ 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." + +#~ msgid "Based on name" +#~ msgstr "Basado en el nombre" + +#~ msgid "Add agents to destination server" +#~ msgstr "Añadir agentes al servidor de destino" + +#~ msgid "Move" +#~ msgstr "Mover" + +#~ msgid "Policy Manager" +#~ msgstr "Gestor de políticas" + +#~ msgid "Apply policies" +#~ msgstr "Aplicar políticas" + +#~ msgid "Policies queue" +#~ msgstr "Cola de políticas" + +#~ msgid "Policies apply" +#~ msgstr "Aplicar políticas" + +#, php-format +#~ msgid "Error creating %s policies" +#~ msgstr "Error al crear políticas %s" + +#, php-format +#~ msgid "Created %s policies" +#~ msgstr "Políticas %s creadas" + +#, php-format +#~ msgid "Error creating/updating %s/%s policy modules" +#~ msgstr "Error al crear/actualizar %s/%s módulos de políticas" + +#, php-format +#~ msgid "Created/Updated %s/%s policy modules" +#~ msgstr "Creadas/actualizadas %s/%s módulos de políticas" + +#, php-format +#~ msgid "Error deleting %s policy modules" +#~ msgstr "Error al eliminar %s módulos de políticas" + +#, php-format +#~ msgid "Deleted %s policy modules" +#~ msgstr "Eliminadas %s módulos de políticas" + +#, php-format +#~ msgid "Error creating %s policy alerts" +#~ msgstr "Error al crear %s alertas de políticas" + +#, php-format +#~ msgid "Created %s policy alerts" +#~ msgstr "Creadas %s alertas de políticas" + +#, php-format +#~ msgid "Error deleting %s policy alerts" +#~ msgstr "Error al eliminar %s alertas de políticas" + +#, php-format +#~ msgid "Deleted %s policy alerts" +#~ msgstr "Eliminadas %s alertas de políticas" + +#~ 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, por " +#~ "favor, contacte con su administrador de sistemas si necesita asistencia.
    " + +#~ msgid "Network traffic" +#~ msgstr "Tráfico de la red" + #~ msgid "" #~ "In order to have the best user experience with Pandora FMS, we strongly " #~ "recommend to use" @@ -37066,9 +26784,42 @@ msgstr "El usuario solo puede usar la API" #~ "Mozilla Firefox o Google Chrome browsers." +#~ msgid "Create new report" +#~ msgstr "Crear un nuevo informe" + +#~ msgid "Report templates" +#~ msgstr "Plantillas de informes" + +#~ msgid "Live view" +#~ msgstr "Vista en vivo" + +#~ msgid "Agent management" +#~ msgstr "Gestión de agentes" + +#~ msgid "Alert management" +#~ msgstr "Gestión de alertas" + #~ msgid "Tag management" #~ msgstr "Gestión de Tags" +#~ msgid "Policy management" +#~ msgstr "Gestión de políticas" + +#~ msgid "Category management" +#~ msgstr "Gestión de categorías" + +#~ msgid "Metasetup" +#~ msgstr "Metasetup" + +#~ msgid "Back to login" +#~ msgstr "Volver a identificarse" + +#~ msgid "Agents movement" +#~ msgstr "Movimiento de agentes" + +#~ msgid "Group management" +#~ msgstr "Gestionar grupos" + #~ msgid "Not networkmap defined." #~ msgstr "No hay mapa de red definido." @@ -37094,12 +26845,196 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Cannot connect to %s Pandora to generate networkmap." #~ msgstr "No se puede conectar a %s Pandora FMS para generar networkmap." +#~ msgid "Agent modules" +#~ msgstr "Modulos de agentes" + +#~ msgid "Add selected modules to agent" +#~ msgstr "Añadir los módulos seleccionados al agente" + +#~ msgid "Undo changes" +#~ msgstr "Deshacer los cambios" + +#~ msgid "Latency" +#~ msgstr "Latencia" + +#~ msgid "Response" +#~ msgstr "Respuesta" + +#~ msgid "Check type" +#~ msgstr "Compruebe el tipo" + +#~ msgid "String to check" +#~ msgstr "Cadena a comprobar" + +#~ msgid "Add check" +#~ msgstr "Añadir comprobación" + +#~ msgid "Delete check" +#~ msgstr "Eliminar comprobación" + +#~ msgid "Various" +#~ msgstr "Varios" + +#~ msgid "Thresholds" +#~ msgstr "Thresholds" + +#~ msgid "Web configuration" +#~ msgstr "Configuración web" + +#~ msgid "Str: " +#~ msgstr "Cadena " + +#~ msgid " Inverse interval " +#~ msgstr " Intervalo inverso " + +#~ msgid "Alerts in module" +#~ msgstr "Alertas en el módulo" + +#~ msgid "Checks" +#~ msgstr "Comprobaciones" + +#~ msgid "Deleted modules" +#~ msgstr "Módulos eliminados" + +#, php-format +#~ msgid "Error adding module %s" +#~ msgstr "Error al añadir módulo %s" + +#~ msgid "" +#~ "There was an error creating the alerts, the operation has been cancelled" +#~ msgstr "" +#~ "Se produjo un error al crear las alertas, la operación ha sido cancelada" + +#, php-format +#~ msgid "Could not create agent %s" +#~ msgstr "No se pudieron crear agentes %s" + +#~ msgid "Agent successfully added" +#~ msgstr "Agentes añadidos correctamente" + +#, php-format +#~ msgid "%s Modules created" +#~ msgstr "%s Módulos creados" + +#, php-format +#~ msgid "Could not update agent %s" +#~ msgstr "No se pudo actualizar el agente %s" + +#~ msgid "Agent successfully updated" +#~ msgstr "Agente actualizado correctamente" + +#, php-format +#~ msgid "%s Modules deleted" +#~ msgstr "%s Módulos eliminados" + +#, php-format +#~ msgid "Error updating module %s" +#~ msgstr "Erro al actualizar el módulo %s" + +#~ msgid "" +#~ "There was an error updating the alerts, the operation has been cancelled" +#~ msgstr "" +#~ "Se produjo un error al actualizar las alertas, la operación ha sido cancelada" + +#~ msgid "Successfully updated module." +#~ msgstr "Módulo actualizado correctamente" + +#~ msgid "Manage agent modules" +#~ msgstr "Gestionar módulos de agentes" + +#~ msgid "No admin user" +#~ msgstr "No hay usuario administrador" + +#~ msgid "Netflow disable custom live view filters" +#~ msgstr "Desactivar filtros personalizados en la vista en vivo de netflow" + +#~ msgid "Customizable section" +#~ msgstr "Sección personalizable" + +#~ msgid "User synchronization" +#~ msgstr "Sincronización de usuarios" + +#~ msgid "Group synchronization" +#~ msgstr "Sincronización de grupos" + +#~ msgid "Create new module" +#~ msgstr "Crear nuevo módulo" + +#~ msgid "Tree View" +#~ msgstr "Vista de árbol" + +#~ msgid "Group name" +#~ msgstr "Nombre del grupo" + +#~ msgid "Go to module detail" +#~ msgstr "Ir al detalle del módulo" + +#~ msgid "Create new alert" +#~ msgstr "Crear nueva alerta" + +#~ msgid "There was a problem loading alert" +#~ msgstr "Ha habido un error al cargar la configuración de la alerta" + +#~ msgid "Stand By" +#~ msgstr "En espera" + +#~ msgid "Go to Alert detail" +#~ msgstr "Ir a los detalles de la alerta" + +#~ msgid "Delete alert" +#~ msgstr "Eliminar alerta" + +#~ msgid "There was a problem loading tag" +#~ msgstr "Se produjo un problema al cargar tags" + +#~ msgid "Plugin management" +#~ msgstr "Gestión de plugins" + +#~ msgid "Create plugin" +#~ msgstr "Crear plugin" + +#~ msgid "Edit plugin" +#~ msgstr "Editar plugin" + +#~ msgid "Log viewer" +#~ msgstr "Visor de logs" + +#~ msgid "Start date" +#~ msgstr "Fecha de inicio" + #~ msgid "Copy Dashboard" #~ msgstr "Copiar Dashboard" #~ msgid "Network console" #~ msgstr "Consola de red" +#~ msgid "Custom SQL" +#~ msgstr "SQL personalizado" + +#~ msgid "Export this list to CSV" +#~ msgstr "Exportar esta lista a CSV" + +#~ msgid "SLA graph" +#~ msgstr "Gráfica SLA" + +#~ msgid "List of elements" +#~ msgstr "Lista de elementos" + +#~ msgid "Service Map" +#~ msgstr "Mapa de servicio" + +#~ msgid "Service deleted successfully" +#~ msgstr "Servicio eliminado correctamente" + +#~ msgid "Error deleting service" +#~ msgstr "Error al eliminar el servicio" + +#~ msgid "Service forced successfully" +#~ msgstr "Forzado servicio con éxito" + +#~ msgid "Error service forced" +#~ msgstr "Error forzando servicio" + #~ msgid "Networkmap enterprise" #~ msgstr "Networkmap enterprise" @@ -37107,6 +27042,12 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Networkmap enterprise - %s" #~ msgstr "Networmap Enterprise - %s" +#~ msgid "Unsucessful get module inventory data." +#~ msgstr "No se han podido obtener datos del módulo de inventario" + +#~ msgid "No collection assigned to this agent" +#~ msgstr "No se ha asignado ninguna colección a este agente" + #~ msgid "Source data" #~ msgstr "Datos de origen" @@ -37137,9 +27078,191 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Error process map" #~ msgstr "Error al procesar mapa" +#~ msgid "Diff view" +#~ msgstr "Vista de diferencia" + #~ msgid "Details of node:" #~ msgstr "Detalles del nodo" +#~ msgid "This agent has no policy assigned" +#~ msgstr "Este agente no tiene ninguna política asignada" + +#~ msgid "Policy outdate" +#~ msgstr "Política obsoleta" + +#~ msgid "Toggle the collection table" +#~ msgstr "Cambiar la tabla de la colección" + +#~ msgid "Descripttion" +#~ msgstr "Descripción" + +#~ msgid "Show Collection" +#~ msgstr "Mostrar colecciones" + +#~ msgid "Toggle the alert table" +#~ msgstr "Cambie a la tabla de alertas" + +#~ msgid "Show Alert" +#~ msgstr "Mostrar alertas" + +#~ msgid "Toggle the module table" +#~ msgstr "Cambiar a la tabla de alertas" + +#~ msgid "Relationship" +#~ msgstr "Relación" + +#~ msgid "Show Modules" +#~ msgstr "Mostrar módulos" + +#~ msgid "(Un-adopted)" +#~ msgstr "(Des-adoptados)" + +#~ msgid "(Adopted)" +#~ msgstr "(Adoptados)" + +#~ msgid "(Un-adopted) (Unlinked)" +#~ msgstr "(Des-adoptados)(Desvinculados)" + +#~ msgid "(Adopted) (Unlinked)" +#~ msgstr "(Adoptados)(Desvinculados)" + +#~ msgid "PDF" +#~ msgstr "PDF" + +#~ msgid "Export to PDF" +#~ msgstr "Exportar a PDF" + +#~ msgid "Send by email" +#~ msgstr "Enviar por correo-e" + +#~ msgid "ID Report" +#~ msgstr "ID Informe" + +#~ msgid "Send by email " +#~ msgstr "Enviar por correo-e " + +#~ msgid "Backup" +#~ msgstr "Copia de seguridad" + +#~ msgid "Pandora database backup utility" +#~ msgstr "Utilidad de la copia de seguridad de BD de Pandora FMS" + +#~ msgid "Lost" +#~ msgstr "Perdido" + +#~ msgid "Backups list" +#~ msgstr "Lista de copias de seguridad" + +#~ msgid "Create backup" +#~ msgstr "Crear copia de seguridad" + +#, php-format +#~ msgid "Error create '%s' policy, the name exist and there aren't free name." +#~ msgstr "" +#~ "Error al crear política '%s', el nombre ya existe. Ese nombre no está libre." + +#, php-format +#~ msgid "" +#~ "Warning create '%s' policy, the name exist, the policy have a name %s." +#~ msgstr "" +#~ "Política de advertencia creada '%s', el nombre existe, la política tiene un " +#~ "nombre %s." + +#~ msgid "Error the policy haven't name." +#~ msgstr "Error la política no tiene nombre." + +#, php-format +#~ msgid "Success create '%s' policy." +#~ msgstr "Política '%s' creada correctamente" + +#, php-format +#~ msgid "Error create '%s' policy." +#~ msgstr "Error al crear la política '%s'." + +#, php-format +#~ msgid "Success add '%s' agent." +#~ msgstr "Agente '%s' añadido correctamente" + +#, php-format +#~ msgid "Error add '%s' agent." +#~ msgstr "Error al añadir agente '%s'." + +#, php-format +#~ msgid "Success add '%s' collection." +#~ msgstr "Colección '%s' añadida correctamente" + +#, php-format +#~ msgid "Error add '%s' collection." +#~ msgstr "Error al añadir colección '%s'." + +#~ msgid "Error add the module, haven't type." +#~ msgstr "Error al añadir el módulo. No tiene tipo" + +#~ msgid "Error add the module, error in tag component." +#~ msgstr "Error al añadir el módulo, error en el componente tag." + +#, php-format +#~ msgid "Success add '%s' module." +#~ msgstr "Módulo '%s' añadido correctamente" + +#, php-format +#~ msgid "Error add '%s' module." +#~ msgstr "Error al añadir el módulo '%s'" + +#, 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" + +#, 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" + +#, php-format +#~ msgid "Success add '%s' alert." +#~ msgstr "Alerta '%s' añadida correctamente" + +#, php-format +#~ msgid "Error add '%s' alert." +#~ msgstr "Error al añadir alerta '%s'." + +#, 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." + +#, php-format +#~ msgid "Success add '%s' action." +#~ msgstr "Acción añadida correctamente '%s'." + +#~ msgid "Report to build" +#~ msgstr "Informe a construir" + +#~ msgid "Send to emails (separated by comma)" +#~ msgstr "Enviar a emails (separados por comas)" + +#~ msgid "Save to disk into path" +#~ msgstr "Guardar disco en la ruta" + +#~ msgid "Send to email" +#~ msgstr "Enviar a correo-e" + +#~ msgid "Send custom report by email" +#~ msgstr "Enviar un informe personalizado por correo" + +#~ msgid "Save custom report to disk" +#~ msgstr "Guardar el informe personalizado en el disco" + +#~ msgid "Backup Pandora database" +#~ msgstr "Copia de seguridad de la BD de Pandora FMS" + +#~ msgid "Not scheduled" +#~ msgstr "No programada" + +#~ msgid "Hourly" +#~ msgstr "Cada hora" + +#~ msgid "Yearly" +#~ msgstr "Anualmente" + #~ msgid "This is the automatic generated report" #~ msgstr "Éste es el informe generado automáticamente" @@ -37149,6 +27272,48 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Please do not answer or reply to this email" #~ msgstr "No responda a este correo-e" +#~ msgid "Cron jobs" +#~ msgstr "Tareas programadas" + +#~ msgid "Add new job" +#~ msgstr "Añadir nueva tarea" + +#~ msgid "Path doesn't exists or is not writable" +#~ msgstr "La ruta no existe o no se puede escribir en ella" + +#~ msgid "Edit job" +#~ msgstr "Editar tarea" + +#~ msgid "Cron extension is not running" +#~ msgstr "La extensión de tareas programadas (cron) no está ejecutándose" + +#~ 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" + +#~ msgid "" +#~ "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" + +#~ msgid "Please, add the following line to your crontab file" +#~ msgstr "Añada la siguiente linea a su archivo crontab" + +#~ msgid "Last execution" +#~ msgstr "Última ejecución" + +#~ msgid "Cron extension is running" +#~ msgstr "La extensión Cron se está ejecutando" + +#~ msgid "Scheduled jobs" +#~ msgstr "Tareas programadas" + +#~ msgid "Scheduled" +#~ msgstr "Programado" + #~ msgid "First_execution" #~ msgstr "First_execution" @@ -37159,12 +27324,355 @@ msgstr "El usuario solo puede usar la API" #~ "Quizá la primera ejecución no es exactamente igual a este valor porque la " #~ "configuración de cron es diferente." +#~ msgid "Last run" +#~ msgstr "Última ejecución" + +#~ msgid "Force run" +#~ msgstr "Forzar ejecución" + +#~ msgid "Path" +#~ msgstr "Ruta" + #~ msgid "First execution" #~ msgstr "Primera ejecución" +#~ msgid "Translate string" +#~ msgstr "Traducir cadena" + +#~ msgid "Example:" +#~ msgstr "Ejemplo:" + +#~ msgid "Bit mask" +#~ msgstr "Bit de máscara" + +#~ msgid "Net mask" +#~ msgstr "Máscara de red" + +#~ msgid "Mask format" +#~ msgstr "Formato de máscara" + +#~ msgid "Mask" +#~ msgstr "Máscara" + +#~ msgid "Calculate" +#~ msgstr "Calcular" + +#~ msgid "Address field is empty" +#~ msgstr "El campo Dirección está vacío" + +#~ msgid "Mask field is empty" +#~ msgstr "El campo Máscara está vacío" + +#~ msgid "Incorrect address format" +#~ msgstr "Formato de dirección incorrecto" + +#~ msgid "Incorrect mask format" +#~ msgstr "Formato de máscara incorrecto" + +#~ msgid "Network mask" +#~ msgstr "Máscara de red" + +#~ msgid "Network wildcard" +#~ msgstr "Red wildcard" + +#~ msgid "Network address" +#~ msgstr "Dirección de red" + +#~ msgid "Broadcast address" +#~ msgstr "Dirección de difusión" + +#~ msgid "First valid IP" +#~ msgstr "Primera IP válida" + +#~ msgid "Last valid IP" +#~ msgstr "Última IP válida" + +#~ msgid "Hosts/Net" +#~ msgstr "Hosts/Red" + +#~ msgid "There is not an available IP." +#~ msgstr "No hay una IP disponible" + +#~ msgid "Next available IP Address is:" +#~ msgstr "La siguiente IP disponible es:" + +#~ msgid "Reserve this IP now" +#~ msgstr "Reservar esta IP ahora" + +#~ msgid "Manage this IP now" +#~ msgstr "Gestionar esta IP ahora" + +#~ msgid "Hostname" +#~ msgstr "Nombre de máquina" + +#~ msgid "Operating system" +#~ msgstr "Sistema operativo" + +#~ msgid "This agent has other IPs" +#~ msgstr "Este agente tiene otras IPs" + +#~ msgid "Generate events" +#~ msgstr "Generar eventos" + +#~ msgid "Managed" +#~ msgstr "Gestionado" + +#~ msgid "Reserved" +#~ msgstr "Reservado" + +#~ msgid "Edited" +#~ msgstr "Modificado" + +#~ msgid "Ping" +#~ msgstr "Ping" + +#~ msgid "Ping to host" +#~ msgstr "Ping a una máquina" + +#~ msgid "Network not found" +#~ msgstr "Red no encontrada" + +#~ msgid "Format: IP/Mask" +#~ msgstr "Formato: IP/Máscara" + +#~ msgid "Examples" +#~ msgstr "Ejemplos" + +#~ msgid "For example: Central Data Center" +#~ msgstr "Por ejemplo: Central General de Datos" + +#~ msgid "Scan interval" +#~ msgstr "Comprobar intervalo" + +#~ msgid "0 for manually scan" +#~ msgstr "0 para comprobación manual" + +#~ msgid "Operator users" +#~ msgstr "Usuarios del operador" + +#~ msgid "" +#~ "The list of users can manage the networks in the IPAM. Only the admin users " +#~ "can manage networks and edit the networks." +#~ msgstr "" +#~ "Los usuarios de la lista pueden gestionar las redes en IPAM. Solo los " +#~ "usuarios administradores pueden gestionar y modificar las redes." + +#~ msgid "Successfully updated." +#~ msgstr "Actualizado con éxito." + +#~ msgid "Addresses" +#~ msgstr "Direcciones" + +#~ msgid "Alive" +#~ msgstr "Activo" + +#~ msgid "No networks found" +#~ msgstr "No se ha encontrado ninguna red" + +#~ msgid "IPs" +#~ msgstr "IPs" + +#~ msgid "Manage addresses" +#~ msgstr "Administrar direcciones" + +#~ msgid "Addresses view" +#~ msgstr "Vista de direcciones" + +#~ msgid "Edit network" +#~ msgstr "Modificar red" + +#~ msgid "Delete network" +#~ msgstr "Eliminar red" + +#~ msgid "Export to Excel" +#~ msgstr "Exportar a Excel" + +#~ msgid "Assign next free IP" +#~ msgstr "Asignar la siguiente IP libre" + +#~ msgid "Next available IP" +#~ msgstr "Siguiente IP disponible" + +#~ msgid "No addresses found on this network" +#~ msgstr "No se han encontrado direcciones en esta red" + +#~ msgid "Subnet" +#~ msgstr "Subred" + +#~ msgid "Total IPs" +#~ msgstr "IPs totales" + +#~ msgid "Not alive" +#~ msgstr "Inactivo" + +#~ msgid "Not managed" +#~ msgstr "No gestionado" + +#~ msgid "Not Reserved" +#~ msgstr "No reservado" + +#~ msgid "DESC" +#~ msgstr "DESC" + +#~ msgid "ASC" +#~ msgstr "ASC" + +#~ msgid "A -> Z" +#~ msgstr "A -> Z" + +#~ msgid "Z -> A" +#~ msgstr "Z -> A" + +#~ msgid "Last check" +#~ msgstr "Ultima comprobación" + +#~ msgid "Newer -> Older" +#~ msgstr "Actual -> Antiguo" + +#~ msgid "Older -> Newer" +#~ msgstr "Antiguo -> Actual" + +#~ msgid "Exact address match" +#~ msgstr "Coincide la dirección exacta" + +#~ msgid "Big" +#~ msgstr "Grande" + +#~ msgid "Tiny" +#~ msgstr "Pequeño" + +#~ msgid "Icons style" +#~ msgstr "Estilo de iconos" + +#~ msgid "Show not alive hosts" +#~ msgstr "Mostrar máquinas inactivas" + +#~ msgid "Show only managed addresses" +#~ msgstr "Mostrar solo direcciones administradas" + +#~ msgid "Reserved addresses" +#~ msgstr "Direcciones reservadas" + +#~ msgid "Unreserved" +#~ msgstr "No reservado" + +#~ msgid "Filter options" +#~ msgstr "Opciones de filtro" + +#~ msgid "Edit address" +#~ msgstr "Modificar dirección" + +#~ msgid "Disabled address" +#~ msgstr "Deshabilitar direción" + +#~ msgid "This address will not be updated by the server" +#~ msgstr "Esta direción no se actualizará por el servidor" + +#~ msgid "Change to automatic mode" +#~ msgstr "Cambiar a modo automático" + +#~ msgid "Change to manual mode" +#~ msgstr "Cambiar a modo manual" + +#~ msgid "Add comments" +#~ msgstr "Añadir comentarios" + +#~ msgid "Update agent address" +#~ msgstr "Actualizar direción de agente" + +#~ msgid "Please, uncheck auto option to set manual agent." +#~ msgstr "Desmarcar la opción auto para establecer agente manual" + +#~ msgid "CSV import" +#~ msgstr "Importar CSV" + +#~ msgid "Subnetworks calculator" +#~ msgstr "Calculadora de subredes" + +#~ msgid "IPAM" +#~ msgstr "IPAM" + +#, php-format +#~ msgid "Created agent %s" +#~ msgstr "Agente creado %s" + +#~ msgid "File processed" +#~ msgstr "Archivo procesado" + +#~ msgid "CSV format" +#~ msgstr "Formato CVS" + +#~ msgid "The CSV file must have the fields in the following order" +#~ msgstr "El archivo CSV tiene que tener los campos en el siguiente orden" + +#~ msgid "Upload file" +#~ msgstr "Subir archivo" + +#~ msgid "Separator" +#~ msgstr "Separador" + +#~ msgid "Upload CSV file" +#~ msgstr "Subir archivo CSV" + +#~ msgid "Wizard SLA" +#~ msgstr "Wizard SLA" + +#~ msgid "Global" +#~ msgstr "Global" + +#~ msgid "Advance options" +#~ msgstr "Opciones avanzadas" + +#~ msgid "Templates list" +#~ msgstr "Lista de Plantillas" + +#~ msgid "Day" +#~ msgstr "Día" + #~ msgid "Summary of SLA Fails" #~ msgstr "Resumen de fallos de SLA" +#~ msgid "SLA Compliance per days" +#~ msgstr "Cumplimiento de SLA por días" + +#, php-format +#~ msgid "Graph agents(%s) - %s" +#~ msgstr "Gráficas de agentes (%s) - %s" + +#~ msgid "Template editor" +#~ msgstr "Editor de Plantillas" + +#~ msgid "Get PDF file" +#~ msgstr "Obtener archivo PDF" + +#~ msgid "Crit:" +#~ msgstr "Crit." + +#~ msgid "Warn:" +#~ msgstr "Advert." + +#~ msgid "Ok:" +#~ msgstr "Ok:" + +#~ msgid "Value:" +#~ msgstr "Valor:" + +#~ msgid "None of the services was added" +#~ msgstr "Ninguno de los servicios se añadió" + +#, php-format +#~ msgid "%d services couldn't be added" +#~ msgstr "%d servicios no se han podido añadir" + +#~ msgid "There was an error retrieving the visual map information" +#~ msgstr "Se ha producido un error al recuperar la información del mapa visual" + +#~ msgid "No services selected" +#~ msgstr "Ningún servicio seleccionado" + +#~ msgid "Show details" +#~ msgstr "Ver detalles" + #~ msgid "Radius" #~ msgstr "Radio" @@ -37177,6 +27685,42 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Show modules:" #~ msgstr "Mostrar módulos:" +#~ msgid "Module alert" +#~ msgstr "Alerta de módulos" + +#~ msgid "Empty configuration" +#~ msgstr "Configuración vacía" + +#~ msgid "Empty OS" +#~ msgstr "SO vacío" + +#~ msgid "Client" +#~ msgstr "Cliente" + +#~ msgid "Trial" +#~ msgstr "Prueba" + +#~ msgid "Lines" +#~ msgstr "Líneas" + +#~ msgid "Metaconsole" +#~ msgstr "Metaconsola" + +#~ msgid "Group does not exist. Agent " +#~ msgstr "El grupo no existe. Agente " + +#~ msgid "Created group in destination DB" +#~ msgstr "Creado el grupo en la base de datos destino" + +#~ msgid "Error creating group. Agent " +#~ msgstr "Error creando grupo. Agente " + +#~ msgid "Group already exists in destination DB" +#~ msgstr "El grupo ya existe en la base de datos destino" + +#~ msgid "Automated Pandora FMS report for user defined report" +#~ msgstr "Informe automatizado de Pandora FMS para informes personalizados." + #~ msgid "Generated: " #~ msgstr "Generado: " @@ -37189,6 +27733,221 @@ msgstr "El usuario solo puede usar la API" #~ msgid "CONTENTS" #~ msgstr "CONTENIDOS" +#~ msgid "SO" +#~ msgstr "SO" + +#~ msgid "There are no modules." +#~ msgstr "No hay módulos" + +#~ msgid "No description" +#~ msgstr "Sin descripción" + +#~ msgid "Restoring a backup" +#~ msgstr "Restaurar una copia de seguridad" + +#~ msgid "Restoring a Pandora database backup must be done manually" +#~ msgstr "" +#~ "Debe restaurar la copia de seguridad de la base de datos de Pandora FMS " +#~ "manualmente." + +#~ 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" + +#~ msgid "To restore the selected backup, please follow these steps" +#~ msgstr "" +#~ "Para restaurar la copia de seguridad seleccionada, por favor, siga los " +#~ "siguientes pasos" + +#~ msgid "Open a root shell in your system located at " +#~ msgstr "Abra un root shell en su sistema localizado en " + +#~ msgid "Connect to MySQL database using the following command" +#~ msgstr "Use el siguiente comando para conectar con la base de datos de MySQL" + +#~ msgid "Create a new database" +#~ msgstr "Crear una nueva base de datos" + +#~ msgid "Restore the backup" +#~ msgstr "Restaurar la copia de seguridad" + +#~ msgid "Modify console configuration to use this new database" +#~ msgstr "" +#~ "Modifique la configuración de la consola para usar esta nueva base de datos" + +#~ msgid "Open configuration file" +#~ msgstr "Abrir el archivo de configuración" + +#~ msgid "Find" +#~ msgstr "Encontrar" + +#~ msgid "and replace with" +#~ msgstr "y reemplazar con" + +#~ msgid "Modify servers configuration to use this new database" +#~ msgstr "" +#~ "Modifique la configuración de los servidores para usar esta nueva base de " +#~ "datos" + +#~ msgid "Find servers configuration file and replace the following lines" +#~ msgstr "" +#~ "Acceda al archivo de configuración de los servidores y reemplácelo por las " +#~ "siguientes líneas" + +#~ msgid "Restart the servers and login again into the console" +#~ msgstr "Reinicie los servidores y vuelva a identificarse en la consola" + +#~ msgid "Run import command using the following command" +#~ msgstr "Ejecute el comando de importación mediante el siguiente comando" + +#~ msgid "Into your destination database." +#~ msgstr "En su base de datos de destino" + +#, php-format +#~ msgid "Fail create the directory: %s" +#~ msgstr "Fallo al crear el directorio: %s" + +#~ msgid "No files in collection" +#~ msgstr "No hay archivos en la colección" + +#~ msgid "File of collection is bigger than the limit (" +#~ msgstr "El archivo de la colección es mayor que el límite" + +#~ msgid "Log collector" +#~ msgstr "Colector de logs" + +#, php-format +#~ msgid "There is a error: %s" +#~ msgstr "Hay un error: %s" + +#, php-format +#~ msgid "There are %s updates, and the first to update is:" +#~ msgstr "Hay %s actualizaciones y la primera actualización es:" + +#~ msgid "Version number:" +#~ msgstr "Número de versión:" + +#~ msgid "Update to the last version" +#~ msgstr "Actualizado a la ultima version" + +#~ msgid "Database credentials not found" +#~ msgstr "Los credenciales de la base de datos no se han encontrado" + +#~ msgid "Error connecting to the specified host" +#~ 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" + +#~ msgid "" +#~ "\"Translate string\" extension is missed in the server. This extension is " +#~ "mandatory to be configured on metaconsole." +#~ msgstr "" +#~ "En el servidor, falta la extensión \"Translate string\". Esta extensión es " +#~ "imprescindible para configurar la metaconsola." + +#~ msgid "" +#~ "Server name doesnt match. Check the node server name and configure the same " +#~ "one on metasetup" +#~ msgstr "" +#~ "El nombre del servidor no coincide. Compruebe el nombre del servidor del " +#~ "nodo y configure el mismo nombre en el metasetup" + +#~ msgid "Last event replication" +#~ msgstr "Replicación del último evento" + +#~ msgid "Tree view by tags" +#~ msgstr "Vista de árbol por tags" + +#~ msgid "No changes found" +#~ msgstr "No se han encontrado cambios" + +#~ msgid "Get CSV file" +#~ msgstr "Obtener archivo CSV" + +#~ msgid "Service does not exist." +#~ msgstr "El servicio no existe" + +#~ msgid "Module store the service does not exist." +#~ msgstr "El módulo que almacena los servicios no existe" + +#~ msgid "Module store SLA service does not exist." +#~ msgstr "El módulo que almacena el servicio SLA no existe" + +#~ msgid "Agent store the service does not exist." +#~ msgstr "El agente que almacena el servicio no existe" + +#~ msgid "Agent store SLA service does not exist." +#~ msgstr "El agente que almacena el sevicio de SLA no existe" + +#~ msgid "Alert critical SLA service does not exist." +#~ msgstr "El servicio de alerta crítica de SLA no existe" + +#~ msgid "Alert warning service does not exist." +#~ msgstr "El servicio de alerta de advertencia no existe" + +#~ msgid "Alert critical service does not exist." +#~ msgstr "El servicio de alertas críticas no existe" + +#~ msgid "Alert unknown service does not exist." +#~ msgstr "El servicio de alertas desconocidas no existe" + +#, php-format +#~ msgid "Module automatic create for the service %s" +#~ msgstr "Módulo automático creado para el servicio %s" + +#~ msgid "Critical (Alert)" +#~ msgstr "Crítica (Alerta)" + +#~ msgid "There are no service elements defined" +#~ msgstr "No hay servicios de elementos definidos" + +#~ msgid "Weight Critical" +#~ msgstr "Peso crítico" + +#~ msgid "Weight Warning" +#~ msgstr "Peso de advertencia" + +#~ msgid "Weight Unknown" +#~ msgstr "Peso desconocido" + +#~ msgid "Weight Ok" +#~ msgstr "Peso Ok" + +#~ msgid "Delete service element" +#~ msgstr "Eliminar elemento de servicio" + +#~ msgid "FAIL" +#~ msgstr "FALLO" + +#~ msgid "Policy linkation" +#~ msgstr "Vinculación de políticas" + +#~ msgid "Module linked" +#~ msgstr "Módulo enlazado" + +#~ msgid "Unlink from policy" +#~ msgstr "Módulo desenlazado de la política" + +#~ msgid "Module unlinked" +#~ msgstr "Módulo desenlazado" + +#~ msgid "Relink to policy" +#~ msgstr "Volver a unir a la política" + +#~ msgid "Module pending to link" +#~ msgstr "Módulo pendiente para enlazar" + +#~ msgid "Module pending to unlink" +#~ msgstr "Módulo pendiente para desenlazar" + +#~ msgid "Create a new policy map" +#~ msgstr "Crear un nuevo mapa de políticas" + #~ msgid "You must change password" #~ msgstr "Tiene que cambiar la contraseña" @@ -37198,42 +27957,48 @@ msgstr "El usuario solo puede usar la API" #~ msgid "CONFIRM: " #~ msgstr "CONFIRMAR: " +#~ msgid "Change" +#~ msgstr "Cambiar" + +#~ msgid "User has been blocked. Try again in " +#~ msgstr "Su usuario ha sido bloqueado. Vuelva a intentarlo en " + +#~ msgid " minutes" +#~ msgstr " minutos" + +#~ msgid "Password must be different from the " +#~ msgstr "La contraseña debe ser diferente de " + +#~ msgid " previous changes." +#~ msgstr " Cambios anteriores" + +#~ msgid "Password must be different" +#~ msgstr "La contraseña tiene que ser diferente" + +#~ msgid "Password too short" +#~ msgstr "La contraseña es demasiado corta" + +#~ msgid "Password must contain numbers" +#~ msgstr "La contraseña tiene que contener números" + +#~ msgid "Password must contain symbols" +#~ msgstr "La contraseña tiene que contener símbolos" + +#~ msgid "User pass successfully updated" +#~ msgstr "La contraseña se ha actualizado correctamente" + #~ msgid "Error updating user pass (no change?)" #~ msgstr "Error al actualizar la contraseña (¿no ha cambiado?)" +#~ msgid "Password confirm does not match" +#~ msgstr "Las contraseñas no coinciden" + +#~ msgid "Password empty" +#~ msgstr "La contraseña está vacía" + #~ msgid "Welcome to Pandora FMS Web Console" #~ msgstr "Bienvenido/a a la consola web de Pandora FMS" -#~ msgid "" -#~ "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." - -#~ 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." -#~ msgstr "" -#~ "Le recomendamos que elija e instale un navegador moderno. Sólo tardará unos " -#~ "minutos." - -#~ msgid "Why is it recommended to upgrade the web browser?" -#~ 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." -#~ 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." - -#~ msgid "Continue despite this warning" -#~ msgstr "Continúe a pesar de esta advertencia" - #~ msgid "Press here to activate shortcut bar" #~ msgstr "Haga click aquí para activar la barra de acesso directo" @@ -37338,11 +28103,6 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Agent '%s'" #~ msgstr "Agente '%s'" -#~ 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:" - #~ 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." @@ -37409,9 +28169,18 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Time unavailable" #~ msgstr "Tiempo indisponible" +#~ msgid "Invalid licence." +#~ msgstr "Licencia inválida" + +#~ msgid "Nonexistent" +#~ msgstr "No existe" + #~ msgid "Contact:" #~ msgstr "Contacto:" +#~ msgid "ERROR:" +#~ msgstr "ERROR:" + #~ msgid "E-mail:" #~ msgstr "E-mail:" @@ -37421,9 +28190,80 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Display proc modules in binary format (OK/FAIL)" #~ msgstr "Visualizar los módulos proc en formato binario (OK/FALLO)" +#~ msgid "Availability item created from wizard." +#~ msgstr "Elemento disponible creado desde el asistente." + +#, php-format +#~ msgid "Error creating %s groups" +#~ msgstr "Error creando %s grupos" + +#, php-format +#~ msgid "(Error Duplicate ID (%d) ) " +#~ msgstr "(Error ID Duplicado (%d) ) " + +#~ msgid "Invalid old password" +#~ msgstr "Password antigua inválida." + #~ msgid "OLD PASS: " #~ msgstr "Password antigua: " +#~ 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." + +#~ msgid "Show the tree view" +#~ msgstr "Mostrar la vista de árbol" + +#~ msgid "Please choose other server." +#~ msgstr "Por favor elija otro servidor." + +#, php-format +#~ msgid "Error updating %s groups" +#~ msgstr "Error actualizando %s grupos" + +#~ msgid "Could not be added to deleted all modules." +#~ msgstr "No podría ser añadido a eliminar todos los módulos." + +#~ msgid "Hidden" +#~ msgstr "Oculto" + +#~ msgid "Mobile" +#~ msgstr "Móvil" + +#~ msgid "Left blank for the LOCAL inventory modules" +#~ msgstr "Dejar en blanco para los módulos de inventario LOCALES" + +#~ msgid "Order:" +#~ msgstr "Orden:" + +#~ 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." + +#~ msgid "Show address instead module name" +#~ msgstr "Mostrar la dirección en lugar del nombre del módulo" + +#~ msgid "" +#~ "Show a resume table with max, min, average of total modules on the report " +#~ "bottom:" +#~ msgstr "" +#~ "Muestra una tabla de resumen con el max, min y media del total de módulos en " +#~ "la parte inferior del informe:" + +#~ msgid "ACL users for this agent" +#~ msgstr "Usuarios ACL para este agente" + +#~ msgid "There are no defined users" +#~ msgstr "No hay usuarios definidos" + +#~ msgid "Check ACL" +#~ msgstr "Comprobar ACL" + #~ msgid "This is defined in minutes" #~ msgstr "Esto se define en minutos" @@ -37439,18 +28279,91 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Store group" #~ msgstr "Grupo de almacenamiento" +#~ msgid "Need to regenerate" +#~ msgstr "Necesita volver a regenerarse" + +#~ msgid "Open for more details in update" +#~ msgstr "Abrir para obtener más detalles de actualización" + +#~ msgid "Open for more details in creation" +#~ msgstr "Abrir para obtener más detalles de creación" + +#~ msgid "Open for more details" +#~ msgstr "Abrir para obtener más detalles" + +#~ msgid "Error accesing to API." +#~ msgstr "Error al acceder a la API" + +#~ msgid "Error accesing to API, auth error." +#~ msgstr "Error al acceder a la API. Error de autenticación." + #~ msgid "This element should be deleted" #~ msgstr "Este elemento debería ser borrado" +#~ msgid "Templates Wizard" +#~ msgstr "Asistente de plantillas" + +#~ msgid "Templates wizard" +#~ msgstr "Asistente de plantillas" + +#~ msgid "Monitors view" +#~ msgstr "Vista de monitores" + +#~ msgid "Please contact Artica at info@artica.es for a valid licence." +#~ msgstr "" +#~ "Por favor contacte con Ártica en info@artica.es para una licencia válida." + #~ msgid "Successful update the networkmap." #~ msgstr "Mapa de red actualizado correctamente" #~ msgid "Unsuccessful update the networkmap." #~ msgstr "El mapa de red no se ha podido actualizar" +#~ msgid "This agent has not modules inventory" +#~ msgstr "Este agente no tiene módulos de inventario" + +#~ msgid "Module successfully added." +#~ msgstr "Módulo añadido con éxito." + +#~ msgid "Only admin users can see this section." +#~ msgstr "Solo los usuarios administradores pueden ver esta sección." + +#~ msgid "Request new licence" +#~ msgstr "Solicitar una nueva licencia" + +#~ msgid "Last replication at" +#~ msgstr "Última replicación a" + +#~ msgid "Could not be create, duplicated server name." +#~ msgstr "No puede ser creado, el nombre del servidor está duplicado" + +#~ msgid "Online validation" +#~ msgstr "Validación en línea" + +#~ msgid "Auth Key:" +#~ msgstr "Clave de autenticación" + #~ msgid "Activate licence" #~ msgstr "Activar la licencia" +#~ msgid "Your request key is:" +#~ msgstr "Su clave es:" + +#~ msgid "ACL module tags for the modules in this agent" +#~ msgstr "Etiquetas del módulo de ACL para los módulos de este agente" + +#~ msgid "" +#~ "There was an error creating the alerts, the operation has been cancelled ." +#~ msgstr "" +#~ "Ha habido un error creando las alertas, la operación ha sido cancelada." + +#~ msgid "" +#~ "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 contacte con su " +#~ "administrador de Pandora" + #~ msgid "List of visual console" #~ msgstr "Lista de la consola visual" @@ -37462,33 +28375,179 @@ msgstr "El usuario solo puede usar la API" #~ "formato incorrecto. Ir a la sección de los tiempos de parada planificada " #~ "para resolver esto." +#~ msgid "Create template report wizard" +#~ msgstr "Asistente de creación de plantillas de informes" + +#~ msgid "General Data" +#~ msgstr "Datos Generales" + +#~ msgid "Report of state" +#~ msgstr "Informe de estado" + +#~ msgid "Report of events" +#~ msgstr "Informe de eventos" + +#~ msgid "Info of state in events" +#~ msgstr "Información de estado en eventos" + +#~ msgid "Summary by status" +#~ msgstr "Resumen por estados" + +#~ msgid "Group or Tag" +#~ msgstr "Grupo o Etiqueta" + #~ msgid "Networkmap list" #~ msgstr "Lista de mapas de red" +#~ msgid "Filter tag" +#~ msgstr "Filtro por tag" + +#~ msgid "Filter by" +#~ msgstr "Filtrar por" + +#~ msgid "Target group" +#~ msgstr "Grupo objetivo" + +#~ msgid "Advance Options" +#~ msgstr "Opciones avanzadas" + #~ msgid "No colections for this agent" #~ msgstr "El agente no tiene colecciones" +#~ msgid "No Services" +#~ msgstr "Sin servicios" + +#~ msgid "JSON" +#~ msgstr "JSON" + +#~ msgid "Export to JSON" +#~ msgstr "Exportar a JSON" + #~ msgid "List of Services" #~ msgstr "Lista de servicios" +#~ msgid "% Monitors Critical" +#~ msgstr "% Monitores en critico" + +#~ msgid "% Monitors OK" +#~ msgstr "% Monitores en ok" + +#~ msgid "% Monitors Warning" +#~ msgstr "% Monitores en alarma" + +#~ msgid "% Agents Unknown" +#~ msgstr "% Monitores en desconocido" + +#~ msgid "Synchronizing Tags" +#~ msgstr "Sincronizar tags" + #~ msgid "Filter by tag" #~ msgstr "Filtrar por tag" +#~ msgid "Synchronizing Alerts" +#~ msgstr "Sincronizar alertas" + +#~ msgid "Synchronizing Groups" +#~ msgstr "Sincronizar grupos" + +#~ msgid "Apply Policies" +#~ msgstr "Aplicar politicas" + +#~ msgid "Synchronizing Components" +#~ msgstr "Sincronizar componentes" + +#~ msgid "Synchronizing Users" +#~ msgstr "Sincronizar usuarios" + +#~ msgid "Contents" +#~ msgstr "Contenido" + +#~ msgid "When connecting to Artica server." +#~ msgstr "Cuando se conecta al servidor de Ártica." + +#, php-format +#~ msgid "" +#~ "You can activate it manually here or " +#~ "automatically filling the form below:" +#~ msgstr "" +#~ "Lo puede activar manualmente aqui o " +#~ "automáticamente rellenando el siguiente formulario:" + +#~ msgid "None update or create group" +#~ msgstr "Ninguna actualización o creación de grupo" + +#~ msgid "Advance Reporting" +#~ msgstr "Informes Avanzados" + +#~ msgid "No Services or concrete action" +#~ msgstr "Sin Servicios o acción concreta" + +#~ msgid "Modules used" +#~ msgstr "Módulos usados" + +#~ msgid "Tags unused" +#~ msgstr "Etiquetas sin usar" + +#~ msgid "Tags used" +#~ msgstr "Etiquetas usadas" + +#~ msgid "Modules unused" +#~ msgstr "Módulos sin usar" + #~ msgid "Masive tags module policy edition" #~ msgstr "Edición masiva de etiquetas de módulo de política" #~ msgid "Masive modules policy tags edition" #~ msgstr "Edición masiva de módulos de política por etiquetas" +#~ msgid "Successful update the tags" +#~ msgstr "Actualización de etiquetas con éxito" + +#~ msgid "Unsuccessful update the tags" +#~ msgstr "Actualización de etiquetas sin éxito" + +#~ msgid "Update Local Component" +#~ msgstr "Actualizar Componente Local" + +#~ msgid "Create Local Component" +#~ msgstr "Crear Componente Local" + +#~ msgid "Enterprise ACL Setup" +#~ msgstr "Configuración ACL Enterprise" + +#~ msgid "Password policy" +#~ msgstr "Política de contraseñas" + #~ msgid "Main dashboard" #~ msgstr "Cuadro de mando principal" +#~ msgid "The start date cannot be greater than the end date" +#~ msgstr "La fecha de inicio no puede ser después que la fecha de finalización" + +#~ msgid "Metaconsole DB port" +#~ msgstr "Puerto BD Metaconsola" + +#~ msgid "Metaconsole DB user" +#~ msgstr "Usuario BD Metaconsola" + +#~ msgid "Metaconsole DB name" +#~ msgstr "Nombre BD Metaconsola" + +#~ msgid "Metaconsole DB host" +#~ msgstr "Host BD Metaconsola" + #~ msgid "Another collection with the same short name" #~ msgstr "Otra colección con el mismo nombre corto" #~ msgid "No colections" #~ msgstr "Sin colecciones" +#~ msgid "Metaconsole DB password" +#~ msgstr "Password BD Metaconsola" + +#~ msgid "There are no SLAs defined." +#~ msgstr "No hay SLAs definidos." + #~ msgid "List of networkmap Enterprise" #~ msgstr "Lista de mapas de red Enterprise" @@ -37496,6 +28555,15 @@ msgstr "El usuario solo puede usar la API" #~ msgid "® Ártica soluciones Pandora FMS %s - Build %s" #~ msgstr "® Ártica soluciones Pandora FMS %s - Build %s" +#~ msgid "Summary of SLA Failures" +#~ msgstr "Resumen de los Fallos de SLA" + +#~ msgid "Move Agents" +#~ msgstr "Mover Agentes" + +#~ msgid "Create group if doesn’t exist in destination" +#~ msgstr "Crear grupo si no existe en destino" + #~ msgid "" #~ "A service is a way to group your IT resources based on their " #~ "functionalities. \n" @@ -37524,15 +28592,116 @@ msgstr "El usuario solo puede usar la API" #~ "\t\t\t\t\t\tSu empresa consiste en tres grandes departamentos: dirección, " #~ "tienda online y soporte." +#~ msgid "" +#~ "To add more elements, click on \"Add widgets\" on the top of this " +#~ "page." +#~ msgstr "" +#~ "Para añadir más elementos, haga clic en \"Add widgets\" en la parte " +#~ "superior de esta página." + +#~ msgid "" +#~ "Please could you fill the widget data previous to filling the list items." +#~ msgstr "Por favor, rellene el Widget de datos antes de la lista de items." + +#~ msgid "" +#~ "This is an example of a dashboard widget. A widget may contain elements" +#~ msgstr "" +#~ "Éste es un ejemplo de un widget del dashboard. Un widget puede contener " +#~ "elementos." + #~ msgid "Display proc modules in binary format (OK/FAIL)." #~ msgstr "Mostrar los módulos proc en formato binario (OK/FALLO)" +#~ msgid "Create new custom" +#~ msgstr "Crear personalizada nueva" + #~ msgid "Generate a dinamic report" #~ msgstr "Generar un informe dinámico" +#~ msgid "Add agents" +#~ msgstr "Añadir agentes" + +#~ msgid "Bulk modules policy tags edit" +#~ msgstr "Editar etiquetas de políticas de módulos masivamente" + +#~ msgid "Bulk tags module policy edit" +#~ msgstr "Editar políticas de módulos de etiquetas masivamente" + +#~ msgid "Bulk alert SNMP edit" +#~ msgstr "Editar alertas SNMP masivamente" + +#~ msgid "Bulk alert SNMP delete" +#~ msgstr "Eliminar alertas SNMP masivamente" + +#~ msgid "Generate" +#~ msgstr "Generar" + +#~ msgid "Undo agents" +#~ msgstr "Anular agentes" + +#~ msgid "Bulk alerts policy delete" +#~ msgstr "Eliminar políticas de alertas masivamente" + +#~ msgid "No inventory modules defined" +#~ msgstr "No hay módulos de inventario definidos" + +#~ msgid "Bulk Satellite modules edit" +#~ msgstr "Editar módulos satélite masivamente" + +#~ msgid "Bulk alerts policy add" +#~ msgstr "Añadir políticas de alertas masivamente" + +#~ msgid "There are no defined inventory modules" +#~ msgstr "No hay definidos módulos de inventario" + +#~ msgid "There are no defined modules unlinked" +#~ msgstr "No hay módulos definidos desvinculados" + +#~ msgid "There are no defined export targets" +#~ msgstr "No hay objetivos a exportar definidos" + +#~ msgid "There are no defined skins" +#~ msgstr "No hay skins definidas" + +#~ msgid "No replication yet" +#~ msgstr "Sin replicación todavía" + +#~ msgid "Metaconsole DB engine" +#~ msgstr "Motor BD de la metaconsola" + +#~ msgid "MySQL" +#~ msgstr "MySQL" + +#~ msgid "Oracle" +#~ msgstr "Oracle" + +#~ msgid "There are no defined events alerts" +#~ msgstr "No hay definidas alerta de eventos" + +#~ msgid "There are no defined alert event rules" +#~ msgstr "No hay definidas reglas para alerta de eventos" + +#~ msgid "Nonexistent. This element should be deleted" +#~ msgstr "Inexistente. Este elemento debería eliminarse" + #~ msgid "Monitor all your systems with a single tool" #~ msgstr "Controlar todos tus sistemas con una sola herramienta" +#~ msgid "Activate license" +#~ msgstr "Activar licencia" + +#~ msgid "There are no defined plugins" +#~ msgstr "No hay plugins definidos" + +#~ msgid "There are no defined modules" +#~ msgstr "No hay módulos definidos" + +#~ msgid "Offline Update Manager" +#~ msgstr "Gestionar actualización offline" + +#~ msgid "Error could not resolve the host." +#~ msgstr "Error no pudo resolver el host." + #~ msgid "Error enable/disable user. The user doesn't exists." #~ msgstr "Error habilitar/deshabilitar usuario. El usuario no existe." @@ -37559,15 +28728,148 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Error in creation synthetic module. Agent name doesn't exists." #~ msgstr "Error al crear un módulo sintético. El nombre del agente no existe." +#~ msgid "Agent min" +#~ msgstr "Minimo agente" + +#~ msgid "Save the actual layout design" +#~ msgstr "Guardar el diseño actual" + +#~ msgid "Error: there are cells not empty." +#~ msgstr "Error: las celdas no pueden star vacias" + +#~ 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." +#~ msgstr "" +#~ "Error, que están tratando de añadir un widget en una celda vacía. Por favor, " +#~ "guarde el diseño antes de añadir cualquier control en esta celda." + +#~ msgid "Config widget" +#~ msgstr "Configurar el widget" + +#~ msgid "Please configure this widget before usage" +#~ msgstr "Por favor, configure este widget antes de su uso" + +#~ msgid "Legend Position" +#~ msgstr "Posición de la leyenda" + +#~ msgid "No legend" +#~ msgstr "Sin leyenda" + +#~ msgid "Different parent" +#~ msgstr "Diferente padre" + +#~ msgid "Different name" +#~ msgstr "Diferente nombre" + +#~ msgid "Empty queue." +#~ msgstr "Cola vacia" + +#~ msgid "Licence" +#~ msgstr "Licencia" + +#~ msgid "Agent cache" +#~ msgstr "Caché de agente" + +#~ 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" + +#~ 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" + +#~ msgid "Remove agents to doesn't move to destination server" +#~ msgstr "Eliminar los agentes no se desplace al servidor de destino" + +#~ 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" +#~ msgstr "" +#~ "El acceso a esta página está restringido a usuarios autorizados solamente, " +#~ "por favor póngase en contacto con el administrador del sistema si necesita " +#~ "ayuda.\n" +#~ "\t \t \t \t \t
    Por favor, sepan que todos los intentos de acceso a esta " +#~ "página son registrados en los registros de seguridad de la base de datos del " +#~ "Sistema de Pandora" + +#~ msgid "Server management" +#~ msgstr "Administración de servidores" + +#~ msgid "Go to pandorafms.com" +#~ msgstr "Ir a pandorafms.com" + #~ msgid "Pandora Help" #~ msgstr "Ayuda de pandora" +#~ msgid "Go to Pandora FMS Wiki" +#~ msgstr "Ir a Wiki Pandora FMS" + #~ msgid "Pandora Support" #~ msgstr "Soporte de Pandora" #~ msgid "Login off" #~ msgstr "Desconectar" +#~ msgid "% Agents not init" +#~ msgstr "% Agentes no iniciados" + +#~ msgid "% Monitors Unknown" +#~ msgstr "% Módulos desconocidos" + +#~ msgid "% Monitors Not init" +#~ msgstr "% Módulos no iniciados" + +#, php-format +#~ msgid "Created group %s" +#~ msgstr "Grupo creado %s" + +#, php-format +#~ msgid "Could not create group %s" +#~ msgstr "No se pudo crear el grupo %s" + +#~ msgid "The location is not filled, please add a location." +#~ msgstr "La ubicación no está rellena, por favor, añadir una ubicación." + +#~ msgid "Serialized data " +#~ msgstr "Datos serializados " + +#~ msgid "Report type" +#~ msgstr "Tipo de informe" + +#~ msgid "Uknown agents" +#~ msgstr "Agentes desconocidos" + +#~ msgid "Last 8 hours events" +#~ msgstr "Eventos en las últimas 8 horas" + +#~ msgid "Illegal query or any other error" +#~ msgstr "consulta ilegal o cualquier otro error" + +#~ msgid "% OK" +#~ msgstr "% OK" + +#~ msgid "% Wrong" +#~ msgstr "% Mal" + +#~ msgid "Simple Graph" +#~ msgstr "Gráfica simple" + +#~ msgid "Agent cache activated" +#~ msgstr "Cache de agente activado" + +#~ msgid "Agent cache failed" +#~ msgstr "Cache de agente falló" + +#~ msgid "No services defined." +#~ msgstr "No hay servicios definidos" + #~ msgid "Generate networkmap with parents relationships" #~ msgstr "Generar mapa de red con relaciones entre padres" @@ -37581,6 +28883,66 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Refresh network map state" #~ msgstr "Refrescar el estado del mapa de red" +#~ msgid "" +#~ "All the items are not available in CSV, only the previous versions ones." +#~ msgstr "" +#~ "Todos los ítems no están disponibles en CSV, solo en la versión previa" + +#~ msgid "Invalid service" +#~ msgstr "Servicio inválido" + +#~ msgid "No name and description specified for the service" +#~ msgstr "Ningún nombre y descripción especificados para el servicio" + +#~ msgid "No name specified for the service" +#~ msgstr "Ningún nombre especificado para el servicio" + +#~ msgid "No description specified for the service" +#~ msgstr "Ninguna descripción especificada para el servicio" + +#~ msgid "You should set the weights manually" +#~ msgstr "Debe establecer los pesos de forma manual" + +#~ msgid "The weights have default values" +#~ msgstr "Los pesos tienen valores por defecto" + +#~ msgid "" +#~ "Only the elements configured as 'critical element' are used to calculate the " +#~ "service status" +#~ msgstr "" +#~ "Sólo los elementos configurados como \"elemento crítico\" se utilizan para " +#~ "calcular el estado del servicio" + +#~ msgid "Error: The conf file of server is not readble." +#~ msgstr "Error: El fichero de configuración del servidor no se puede leer" + +#~ msgid "Error: The conf file of server is not writable." +#~ msgstr "" +#~ "Error: En el fichero de configuración del servidor no se puede escribir" + +#~ msgid "Delete remote conf server files in Pandora" +#~ msgstr "Borrar los servidores de configuración remota en Pandora" + +#~ msgid "" +#~ "Delete this conf file implies that Pandora will send back local config to " +#~ "console" +#~ msgstr "" +#~ "Borrar este fichero de configuración implicará que Pandora enviará la " +#~ "configuración local a la consola" + +#~ msgid "Section 2" +#~ msgstr "Sección 2" + +#~ msgid "Section 3" +#~ msgstr "Sección 3" + +#~ msgid "" +#~ "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." + #~ msgid "" #~ "Enable this option will be synchronice the groups and tags each new user " #~ "when he/she will login." @@ -37588,6 +28950,29 @@ msgstr "El usuario solo puede usar la API" #~ "Activar esta opción sincronizará grupos y etiquetas cuando el usuario vuelva " #~ "a iniciar sesión" +#~ msgid "Search by name, description or data, list matches." +#~ msgstr "Búsqueda por nombre, descripción o datos, lista las concidencias." + +#~ msgid "You haven't created templates yet." +#~ msgstr "No tienen creado plantillas aun." + +#~ msgid "Generate a dynamic report\"" +#~ msgstr "Generar un informe dinámico" + +#~ msgid "Policy name already exists" +#~ msgstr "El nombre de la política ya existe." + +#, php-format +#~ msgid "" +#~ "License out of limits

    " +#~ "This license allows %d modules and you have %d modules configured." +#~ msgstr "" +#~ " Licencia fuera de límites
    " +#~ "Esta licencia permite %d módulos y tiene módulos %d configurados." + +#~ msgid "e.g., switch.ehorus.com" +#~ 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" @@ -37599,33 +28984,879 @@ msgstr "El usuario solo puede usar la API" #~ msgid "Display lateral menus with click" #~ msgstr "Mostrar menús laterales al hacer click" -#~ msgid "This OID is preexistent." -#~ msgstr "Este OID es pre existente." +#~ msgid "SAML" +#~ msgstr "SAML" -#~ msgid "New networkmap" -#~ msgstr "Nuevo mapa de red" +#~ msgid "Apply all" +#~ msgstr "Aplicar a todo" + +#, php-format +#~ msgid "Error creating/updating %s/%s module groups" +#~ msgstr "Error al crear/actualizar %s/%s los grupos de modulo" + +#, php-format +#~ msgid "Created/Updated %s/%s module groups" +#~ msgstr "Creados/Actualizados %s/%s los grupos de modulos" + +#, php-format +#~ msgid "Graph agent(%s) - %s" +#~ msgstr "Gráfica de agente(%s) - %s" + +#~ msgid "Only one service map widget is supported at this moment" +#~ msgstr "Solo un widget de mapa de servicios es soportado actualmente" + +#~ msgid "There isn't get or post" +#~ msgstr "No puede obtener o publicar" + +#, php-format +#~ msgid "" +#~ "This extension makes registration of policies enterprise.
    You can get " +#~ "more policies in our Public Resource Library" +#~ msgstr "" +#~ "Esta extensión hace registra las politicas enterprise.
    Puedes conseguir " +#~ "más politicas en nuestra Librería de recursos publica" + +#, php-format +#~ msgid "Created/Updated %s/%s OS" +#~ msgstr "Creado/Actualizado %s/%s SO" + +#, php-format +#~ msgid "Error creating/updating %s/%s OS" +#~ msgstr "Error al crear/actualizar %s/%s SO" + +#~ msgid "Module Groups synchronization" +#~ msgstr "Sincronización de grupos de modulo" + +#~ msgid "DB port" +#~ msgstr "Puerto de la DB" + +#~ msgid "Module groups Management" +#~ msgstr "Gestor de grupos de modulo" + +#~ msgid "Synchronizing OS" +#~ msgstr "Sincronizando SO" + +#~ msgid "Synchronizing Module Groups" +#~ msgstr "Sincronizando grupos de modulos" + +#~ msgid "OS synchronization" +#~ msgstr "Sincronización de SO" + +#~ msgid "OS Management" +#~ msgstr "Administración de SO" + +#~ msgid "Please, set a valid IP/Name address" +#~ msgstr "Por favor, introduzca una IP/Nombre de dirección válido" + +#~ msgid "This data doesn't show in realtime" +#~ msgstr "Estos datos no se muestran en tiempo real" + +#~ msgid "Refresh every" +#~ msgstr "Refrescar cada" + +#~ msgid "Slides" +#~ msgstr "Presentaciones" + +#~ msgid "Change every" +#~ msgstr "Cambiar cada" + +#~ msgid "Stop" +#~ msgstr "Parar" + +#~ msgid "No slides selected" +#~ msgstr "No se han seleccionado diapositivas" + +#~ msgid "Exit fullscreen" +#~ msgstr "Salir de pantalla completa" + +#~ msgid "Component management" +#~ msgstr "Gestor de componentes" + +#~ msgid "Missing id" +#~ msgstr "Identificador perdido" + +#~ msgid "The user doesn't have permission to read agents" +#~ msgstr "El usuario no tiene permiso de lectura para agentes" + +#~ msgid "Agents status" +#~ msgstr "Estado de agente" + +#~ msgid "Tab" +#~ msgstr "Pestaña" + +#~ msgid "Modules status" +#~ msgstr "Estado de modulos" + +#~ msgid "Filter agents" +#~ msgstr "Filtrar agentes" + +#~ msgid "Dashboards" +#~ msgstr "Paneles" + +#~ msgid "Until next" +#~ msgstr "Hasta el próximo" + +#~ msgid "Show a service map" +#~ msgstr "Mostrar mapa de servicios" + +#~ msgid "There are unsaved changes" +#~ msgstr "Hay cambios sin guardar" + +#~ msgid "Cells" +#~ msgstr "Celdas" + +#, php-format +#~ msgid "Private for (%s)" +#~ msgstr "Privado por (%s)" + +#~ msgid "There are no dashboards defined." +#~ msgstr "No hay paneles definidos" + +#~ msgid "Empty for a transparent background color or CSS compatible value" +#~ msgstr "Vacío para color de fondo transparente o valor compatible con CSS" + +#~ 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" + +#~ msgid "Successfully duplicate" +#~ msgstr "Duplicado con éxito" + +#~ msgid "Could not be duplicate" +#~ msgstr "No se pudo duplicar" + +#, php-format +#~ msgid "Error add '%s' agent plugin." +#~ msgstr "Error al añadir el plugin de agente '%s'." + +#, php-format +#~ msgid "Success add '%s' agent plugin." +#~ msgstr "Añadido el plugin de agente '%s' con éxito." + +#~ msgid "critical" +#~ msgstr "crítico" + +#~ msgid "Show module value" +#~ msgstr "Mostrar el valor del módulo" + +#~ msgid "Show a value of module" +#~ msgstr "Mostrar el valor de un módulo" + +#~ msgid "Status of module" +#~ msgstr "Estado del módulo" + +#~ msgid "Show status of a module" +#~ msgstr "Mostrar el estado de un módulo" + +#~ msgid "Text size of label in px" +#~ msgstr "Tamaño de texto de la etiqueta en pixels" + +#~ msgid "Size of icon" +#~ msgstr "Tamaño del icono" + +#~ msgid "Text size of value in px" +#~ msgstr "Tamaño de texto del valor en pixels" + +#~ msgid "Show a value of module and icon" +#~ msgstr "Muestra el valor de un modulo e icono" + +#~ msgid "Module with icon" +#~ msgstr "Modulo con icono" + +#~ msgid "Error add the module plugin importation, plugin is not registered" +#~ msgstr "Error al importar el modulo plugin, el plugin no está registrado" + +#~ msgid "Show module value in a table" +#~ msgstr "Mostrar el valor del módulo en una tabla" + +#~ msgid "Show a value of module in a table" +#~ msgstr "Mostrar un valor de módulo en la tabla" + +#~ msgid "Separator of data" +#~ msgstr "Separador" + +#~ msgid "Carriage Return" +#~ msgstr "Retorno de carro" + +#~ msgid "Commas" +#~ msgstr "Comas" + +#~ msgid "Colon" +#~ msgstr "Dos puntos" + +#~ msgid "Semicolon" +#~ msgstr "Punto y coma" + +#~ msgid "Vertical Bar" +#~ msgstr "Barra vertical" + +#~ msgid "Open all nodes" +#~ msgstr "Abrir todos los nodos" + +#~ msgid "Blank" +#~ msgstr "Blanco" + +#~ msgid "AD Groups" +#~ msgstr "Grupos AD" + +#~ msgid "Select profile" +#~ msgstr "Seleccionar perfil" + +#~ msgid "You must select a profile from the list of profiles." +#~ msgstr "Debe seleccionar un perfil de la lista de perfiles" + +#~ msgid "Add new permissions" +#~ msgstr "Agregar nuevos permisos" + +#~ msgid "SimpleSAML path" +#~ msgstr "Ruta de SimpleSAML" + +#~ msgid "Dashboards list" +#~ msgstr "Lista de paneles" + +#~ msgid "This widget only working in desktop version." +#~ msgstr "El widget solo funciona en la versión de escritorio" + +#~ msgid "Dashboard name" +#~ msgstr "Nombre del panel" + +#~ msgid "No Dashboards" +#~ msgstr "No hay paneles" + +#~ msgid "" +#~ "Select the path where SimpleSAML has been installed (by default '/opt/')" +#~ msgstr "" +#~ "Seleccione la ruta donde haya sido instalado SimpleSAML (por defecto " +#~ "\"/opt/\")" #~ msgid "Percentil 95" #~ msgstr "Porcentaje 95" -#~ msgid "Disable Pandora FMS on graphs" -#~ msgstr "Desactivar Pandora FMS en gráficas" +#~ msgid "" +#~ "If this option was checked, only adding in elements that type of modules " +#~ "support this option." +#~ msgstr "" +#~ "Si esta casilla está activa, solo la adición de este tipo de módulos " +#~ "soportan esta opción" #~ msgid "Custom logo in login" #~ msgstr "Logo personalizado en la pantalla de bienvenida" -#~ msgid "The last version of package installed is:" -#~ msgstr "La última versión de paquete instalada es:" +#~ msgid "Agent min Value" +#~ msgstr "Valor mínimo del agente" + +#~ msgid "CSV import group" +#~ msgstr "Importar grupos de CSV" + +#~ msgid "Show link to public dashboard" +#~ msgstr "Mostrar el link al dashboard publico" + +#~ msgid "Type of charts" +#~ msgstr "Tipo de gráficos" + +#~ msgid "Precision must be a integer number between 0 and 5" +#~ msgstr "La precisión debe ser un numero entero entre 0 y 5" + +#~ msgid "T. OK" +#~ msgstr "Tiempo OK" + +#~ msgid "T. Total" +#~ msgstr "Tiempo total" + +#~ msgid "T. Unknown" +#~ msgstr "Tiempo desconocido" + +#~ msgid "T. Error" +#~ msgstr "Tiempo error" + +#~ msgid "T. Downtime" +#~ msgstr "Tiempo en parada planificada" + +#~ msgid "T. Not_init" +#~ msgstr "Tiempo no iniciado" + +#~ msgid "Planned Downtimes" +#~ msgstr "Paradas Planificadas" + +#~ msgid "Ignore Time" +#~ msgstr "Ignorar tiempo" + +#~ msgid "SLA %" +#~ msgstr "SLA %" + +#~ msgid "Legend Graph" +#~ msgstr "Leyenda de la gráfica" + +#~ msgid "Time Not init" +#~ msgstr "Tiempo no inicializado" + +#~ msgid "Total Time" +#~ msgstr "Tiempo total" + +#~ msgid "Total Checks" +#~ msgstr "Comprobaciones totales" + +#~ msgid "Time Downtimes" +#~ msgstr "TIempo en paradas planificadas" + +#~ 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." + +#~ 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 a " +#~ "histórico" + +#~ 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" +#~ 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." + +#~ 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." + +#~ msgid "SLA Max" +#~ msgstr "SLA Máximo" + +#~ msgid "SLA Min" +#~ msgstr "SLA Mínimo" + +#~ msgid "Time Error " +#~ msgstr "Tiempo de error " + +#~ msgid "Time Unknown " +#~ msgstr "Tiempo en desconocido " + +#~ msgid "Time Total " +#~ msgstr "Tiempo total " + +#~ msgid "Time OK " +#~ msgstr "Tiempo OK " + +#~ msgid "Checks OK " +#~ msgstr "Comprobaciones OK " + +#~ msgid "Checks Unknown " +#~ msgstr "Comprobaciones en desconocido " + +#~ msgid "Checks Error " +#~ msgstr "Comprobaciones en error " + +#~ msgid "Time Downtime " +#~ msgstr "Tiempo en parada planificada " + +#~ msgid "Time Not Init " +#~ msgstr "Tiempo no inicializado " + +#~ msgid "Checks Total " +#~ msgstr "Comprobaciones totales " + +#~ msgid "Time Not Init Month" +#~ msgstr "Tiempo en no inicializado del mes" + +#~ msgid "Time Downtime Month" +#~ msgstr "Tiempo en parada planificada del mes" + +#~ msgid "Time Total Month" +#~ msgstr "Tiempo total del mes" + +#~ msgid "Time OK Month" +#~ msgstr "Tiempo OK del mes" + +#~ msgid "Time Error Month" +#~ msgstr "Tiempo en error del mes" + +#~ msgid "Time Unknown Month" +#~ msgstr "Tiempo en desconocido del mes" + +#~ msgid "Subtitle" +#~ msgstr "Subtítulo" + +#~ msgid "Status " +#~ msgstr "Estado " + +#~ msgid "SLA " +#~ msgstr "SLA " + +#~ msgid "Checks Not Init " +#~ msgstr "Comprobaciones en no inicializado " + +#~ msgid "Checks Total Month" +#~ msgstr "Comprobaciones totales del mes" + +#~ msgid "Checks OK Month" +#~ msgstr "Comprobaciones OK del mes" + +#~ msgid "Checks Error Month" +#~ msgstr "Comprobaciones en error del mes" + +#~ msgid "Checks Unknown Month" +#~ msgstr "Comprobaciones en desconocido del mes" + +#~ msgid "Time Error Day" +#~ msgstr "Tiempo en error del día" + +#~ msgid "Time OK Day" +#~ msgstr "Tiempo en OK del día" + +#~ msgid "Time Total Day" +#~ msgstr "Tiempo total del día" + +#~ msgid "Status Month" +#~ msgstr "Estado del mes" + +#~ msgid "SLA Month" +#~ msgstr "SLA Mensual" + +#~ msgid "Checks Not Init Month" +#~ msgstr "Comprobaciones en no inicializado del mes" + +#~ msgid "SLA Day" +#~ msgstr "SLA Diario" + +#~ msgid "Checks Not Init Day" +#~ msgstr "Comprobaciones en no inicializado del día" + +#~ msgid "Time Not Init Day" +#~ msgstr "Tiempo en no inicializado del día" + +#~ msgid "Time Unknown Day" +#~ msgstr "Tiempo en desconocido del día" + +#~ msgid "Checks OK Day" +#~ msgstr "Comprobaciones en OK del día" + +#~ msgid "Checks Total Day" +#~ msgstr "Comprobaciones totales del día" + +#~ msgid "Checks Unknown Day" +#~ msgstr "Comprobaciones en desconocido del día" + +#~ msgid "Checks Error Day" +#~ msgstr "Comprobaciones en error del día" + +#~ msgid "Time Out Day" +#~ msgstr "Tiempo fuera del día" + +#~ msgid "Time Downtime Day" +#~ msgstr "Tiempo en parada planificada del día" + +#~ msgid "Time OK week" +#~ msgstr "Tiempo en OK de la semana" + +#~ msgid "Time Total week" +#~ msgstr "Tiempo total de la semana" + +#~ msgid "Month Number" +#~ msgstr "Número de mes" + +#~ msgid "Year" +#~ msgstr "Año" + +#~ msgid "Time Error week" +#~ msgstr "Tiempo en error de la semana" + +#~ msgid "Time Unknown week" +#~ msgstr "Tiempo en desconocido de la semana" + +#~ msgid "Date From Day" +#~ msgstr "Fecha desde día" + +#~ msgid "SLA Fixed Day" +#~ msgstr "SLA de Día Fijo" + +#~ msgid "Status Day" +#~ msgstr "Estado del día" + +#~ msgid "Date To Day" +#~ msgstr "Decha hasta día" + +#~ msgid "Time Downtime week" +#~ msgstr "Tiempo en parada planificada de la semana" + +#~ msgid "Time Not Init week" +#~ msgstr "Tiempo en no inicializado de la semana" + +#~ msgid "Checks Total week" +#~ msgstr "Comprobaciones totales de la semana" + +#~ msgid "Checks OK week" +#~ msgstr "Comprobaciones en OK de la semana" + +#~ msgid "Day Week" +#~ msgstr "Día de la semana" + +#~ msgid "Status week" +#~ msgstr "Estado de la semana" + +#~ msgid "Checks Unknown week" +#~ msgstr "Comprobaciones en desconocido de la semana" + +#~ msgid "Checks Error week" +#~ msgstr "Comprobaciones en error de la semana" + +#~ msgid "SLA min" +#~ msgstr "SLA Mínimo" + +#~ msgid "SLA max" +#~ msgstr "SLA Máximo" + +#~ msgid "Time Unknown day" +#~ msgstr "Tiempo en desconocido del día" + +#~ msgid "Checks Not Init" +#~ msgstr "Comprobaciones en no inicializado" + +#~ msgid "SLA Fixed" +#~ msgstr "SLA FIjo" + +#~ msgid "Time Total day" +#~ msgstr "Tiempo total del día" + +#~ msgid "Time OK day" +#~ msgstr "Tiempo en OK del día" + +#~ msgid "Time Error day" +#~ msgstr "Tiempo en error del día" + +#~ msgid "Checks Error" +#~ msgstr "Comprobaciones en error" + +#~ msgid "Time Error" +#~ msgstr "Tiempo de error" + +#~ msgid "SLA limit" +#~ msgstr "Límite de SLA" + +#~ msgid "Checks Unknown day" +#~ msgstr "Comprobaciones en desconocido del día" + +#~ msgid "Checks Error day" +#~ msgstr "Comprobaciones en error del día" + +#~ msgid "Time Total hours" +#~ msgstr "TIempo total en horas" + +#~ msgid "Status day" +#~ msgstr "Estado del día" + +#~ msgid "Time Error hours" +#~ msgstr "Tiempo en error en horas" + +#~ msgid "Time OK hours" +#~ msgstr "Tiempo en OK en horas" + +#~ msgid "Checks Total day" +#~ msgstr "Comprobaciones totales del día" + +#~ msgid "Checks OK day" +#~ msgstr "Comprobaciones en OK del día" + +#~ msgid "Time Downtime day" +#~ msgstr "Tiempo en parada planificada del día" + +#~ msgid "Time Not Init day" +#~ msgstr "Tiempo en no inicializado del día" + +#~ msgid "Time Not Init hours" +#~ msgstr "Tiempo en no inicializado en horas" + +#~ msgid "Time Unknown hours" +#~ msgstr "Tiempo en desconocido en horas" + +#~ msgid "Time Out hours" +#~ msgstr "Tiempo fuera de horas" + +#~ msgid "Time Downtime hours" +#~ msgstr "Tiempo en parada planificada en horas" + +#~ msgid "SLA hours" +#~ msgstr "SLA Horario" + +#~ msgid "Checks Error hours" +#~ msgstr "Comprobaciones en error en horas" + +#~ msgid "Checks Unknown hours" +#~ msgstr "Comprobaciones en desconocido en horas" + +#~ msgid "Checks Total hours" +#~ msgstr "Comprobaciones totales en horas" + +#~ msgid "Checks OK hours" +#~ msgstr "Comprobaciones en OK en horas" + +#~ msgid "Checks Not Init hours" +#~ msgstr "Comprobaciones en no inicializado en horas" + +#~ msgid "Are you sure to apply?" +#~ msgstr "Seguro de que desea aplicar?" + +#~ msgid "Are you sure to re-apply?" +#~ msgstr "Seguro de que deseas re aplicar?" + +#~ msgid "Date To hours" +#~ msgstr "Hasta" + +#~ msgid "Status hours" +#~ msgstr "Status horario" + +#~ msgid "SLA Fixed hours" +#~ msgstr "SLA fijo horario" + +#~ msgid "Date From hours" +#~ msgstr "Desde" + +#~ msgid "" +#~ "Event history is ONLY used for event reports, is not used in graphs or event " +#~ "viewer." +#~ msgstr "" +#~ "El histórico de eventos SOLO será usado para los informes de eventos, no así " +#~ "para gráficas o 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 de " +#~ "histórico" + +#~ msgid "Enable event history" +#~ msgstr "Activar histórico de eventos" + +#~ msgid "Event days" +#~ msgstr "Días de eventos" #~ msgid "Allows only show the average in graphs" #~ msgstr "Permite mostrar sólo la media en las gráficas" -#~ msgid "We recommend launch a " -#~ msgstr "Recomendamos lanzar una " +#~ msgid "hourly S.L.A." +#~ msgstr "S.L.A. por horas" + +#~ msgid "Availability Graph S.L.A." +#~ msgstr "Gráfica de disponibilidad S.L.A." + +#~ msgid "2 Hours" +#~ msgstr "2 Horas" + +#~ msgid "12 Hours" +#~ msgstr "12 Horas" + +#~ msgid "24 Hours" +#~ msgstr "24 Horas" + +#~ msgid "New dashboard" +#~ msgstr "Nuevo dashboard" + +#~ msgid "Show Agent/Module View" +#~ msgstr "Mostrar la vista Agentes/Modulos" + +#~ msgid "48 Hours" +#~ msgstr "48 Horas" + +#~ msgid "Next execution" +#~ msgstr "Siguiente ejecución" + +#~ msgid "Show SLA percent" +#~ msgstr "Mostrar porcentaje de SLA" + +#~ msgid "Template to build" +#~ msgstr "Plantilla" + +#~ msgid "Report per agent" +#~ msgstr "Informe por agente" + +#~ msgid "Send custom report (from template) by email" +#~ msgstr "Enviar informe personalizado (desde plantilla) por email" + +#~ msgid "Please check that the web server has write rights on the file" +#~ msgstr "" +#~ "Por favor, compruebe que el servidor web tenga permisos de escritura sobre " +#~ "este fichero" + +#~ msgid "The file is not readable by HTTP Server" +#~ msgstr "El fichero no puede ser leído por el servidor HTTP" + +#~ msgid "The file does not exists" +#~ msgstr "El archivo seleccionado no existe" + +#~ msgid "VMware" +#~ msgstr "VMware" + +#~ msgid "WMware Plugin Settings" +#~ msgstr "Opciones del plugin VMware" + +#~ msgid "The file is not writable by HTTP Server" +#~ msgstr "El fichero no puede ser escrito por el servidor HTTP" + +#~ msgid "Config Path" +#~ msgstr "Ruta de configuración" + +#~ msgid "Plugin Path" +#~ msgstr "Ruta del plugin" + +#~ msgid "There was an error updating the execution data of the plugin" +#~ msgstr "Ha habido un error al actualizar los datos de ejecución del plugin" + +#~ msgid "There was an error activating the execution of the plugin" +#~ msgstr "Ha habido un error al activar los datos de ejecución del plugin" + +#~ msgid "Top 5 VMs CPU Usage" +#~ msgstr "Top 5 VMs del uso de CPU" + +#~ msgid "Change Status" +#~ msgstr "Cambiar estado:" + +#~ msgid "Top 5 VMs Memory Usage" +#~ msgstr "Top 5 VMs del uso de memoria" + +#~ msgid "Top 5 VMs Disk Usage" +#~ msgstr "Top 5 VMs del uso de disco" + +#~ msgid "Power Status: " +#~ msgstr "Estado: " + +#~ msgid "Datacenter Name" +#~ msgstr "Nombre del centro de datos" + +#~ msgid "Plugin execution" +#~ msgstr "Ejecución del plugin" + +#~ msgid "Config parameters" +#~ msgstr "Parámetros de configuración" + +#~ msgid "V-Center IP" +#~ msgstr "V-Center IP" + +#~ msgid "Host ESX" +#~ msgstr "Host ESX" + +#~ msgid "Top 5 VMs Network Usage" +#~ msgstr "Top 5 VMs del uso de la red" + +#~ msgid "Memory Usage" +#~ msgstr "Uso de memoria" + +#~ msgid "CPU Usage" +#~ msgstr "Uso de CPU" + +#~ msgid "Network Usage" +#~ msgstr "Uso de red" + +#~ msgid "Disk I/O Rate" +#~ msgstr "Ratio lectura/escritura de disco" + +#~ msgid "ESX Detail" +#~ msgstr "Detalle de ESX" + +#~ msgid "ESX details" +#~ msgstr "Detalles de ESX" + +#~ msgid "Show Datastores" +#~ msgstr "Mostrar datastores" + +#~ msgid "Plug-in cannot be updated" +#~ msgstr "El plug-in no se pudo actualizar" + +#~ msgid "Plug-in updated succesfully" +#~ msgstr "Plug-in actualizado correctamente" + +#~ msgid "Show ESX" +#~ msgstr "Mostrar ESX" + +#~ msgid "Show VM" +#~ msgstr "Mostrar VM" + +#~ msgid "View options" +#~ msgstr "Ver opciones" + +#~ msgid "VMware map" +#~ msgstr "Mapa VMware" + +#~ msgid "Name and SLA limit should not be empty" +#~ msgstr "Nombre y límite SLA no deberían estar vacíos" + +#~ msgid "Services list" +#~ msgstr "Lista de servicios" + +#~ msgid "Please set agent distinct than " +#~ msgstr "Por favor escoga un agente distinto a " + +#~ msgid "This custom OID is preexistent." +#~ msgstr "El OID personalizado ya existe" + +#~ 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" + +#~ msgid "UX Console" +#~ msgstr "Consola UX" + +#~ msgid "Service table view" +#~ msgstr "Vista de tabla de servicios" #~ msgid "" -#~ "There are a new database changes available to apply. Do you want to start " -#~ "the DB update process?" +#~ "You can specify several values, separated by commas, for example: " +#~ "public,mysecret,1234" #~ msgstr "" -#~ "Existen cambios en la base de datos disponibles para aplicar. ¿Desea " -#~ "comenzar el proceso de actualizado de la base de datos?" +#~ "Puede especificar varios valores, separados por coma, por ejemplo: " +#~ "public,mysecret,1234" + +#~ msgid "" +#~ "You can specify several networks, separated by commas, for example: " +#~ "192.168.50.0/24,192.168.60.0/24" +#~ msgstr "" +#~ "Puede especificar varias redes, separadas por coma, por ejemplo: " +#~ "192.168.50.0/24,192.168.60.0/24" + +#~ 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" +#~ 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" + +#~ 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 " +#~ "responda a este email." + +#~ msgid "Best regards, Pandora FMS" +#~ msgstr "Saludos cordiales, Pandora FMS" + +#~ msgid "Thanks for your time." +#~ msgstr "Gracias por su tiempo." + +#~ msgid "report" +#~ msgstr "informe" + +#~ msgid "Greetings" +#~ msgstr "Saludos" + +#~ msgid "Attached to this email there's a PDF file of the" +#~ msgstr "Adjunto a este email hay un archivo del" + +#~ msgid "Please contact your system administrator." +#~ msgstr "Por favor contacte con el administrador de su sistema." From 326b1a08280499c5a3cbe29d7c3aa0f3111c0416 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 24 Oct 2017 00:01:10 +0200 Subject: [PATCH 103/311] 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 | 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 | 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/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 +- 23 files changed, 24 insertions(+), 24 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 177d2f788d..cd68b52f73 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.714 +Version: 7.0NG.714-171024 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 696b182907..b21332b3be 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.714" +pandora_version="7.0NG.714-171024" 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 b00f417566..bf28b06122 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -41,7 +41,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.714'; -use constant AGENT_BUILD => '171023'; +use constant AGENT_BUILD => '171024'; # 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 8d7002e248..cc9c730d82 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.714 -%define release 1 +%define release 171024 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 b86e29980a..d801714fb7 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.714 -%define release 1 +%define release 171024 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 7150641c58..f698cec103 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.714" -PI_BUILD="171023" +PI_BUILD="171024" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 4cd2935f19..686e7fdee9 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{171023} +{171024} ViewReadme {Yes} @@ -2387,7 +2387,7 @@ Windows,BuildSeparateArchives {No} Windows,Executable -{<%AppName%>-Setup<%Ext%>} +{<%AppName%>-<%Version%>-Setup<%Ext%>} Windows,FileDescription {<%AppName%> <%Version%> Setup} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 17e2e06051..4739e3f7e0 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.714(Build 171023)") +#define PANDORA_VERSION ("7.0NG.714(Build 171024)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index c69f636300..aa68c94355 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.714(Build 171023))" + VALUE "ProductVersion", "(7.0NG.714(Build 171024))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 923291406c..a2605921f1 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.714 +Version: 7.0NG.714-171024 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 a564362a2f..8958951091 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.714" +pandora_version="7.0NG.714-171024" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index e1ef5ee0d3..f23c11117a 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -22,7 +22,7 @@ /** * Pandora build version and version */ -$build_version = 'PC171023'; +$build_version = 'PC171024'; $pandora_version = 'v7.0NG.714'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index dab2e96117..246db73a87 100755 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -71,7 +71,7 @@
    Date: Tue, 24 Oct 2017 09:24:07 +0200 Subject: [PATCH 104/311] Fixed element in meta --- .../godmode/reporting/visual_console_builder.editor.js | 3 ++- pandora_console/include/styles/pandora.css | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 4cecad235d..2fedfc8e4a 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -1781,11 +1781,12 @@ function setBarsGraph(id_data, values) { width_percentile = values['width_percentile']; parameter = Array(); - + parameter.push ({name: "page", value: "include/ajax/visual_console_builder.ajax"}); parameter.push ({name: "action", value: "get_module_type_string"}); parameter.push ({name: "id_agent", value: values['id_agent']}); parameter.push ({name: "module", value: values['module']}); + parameter.push ({name: "id_element", value: id_data}); parameter.push ({name: "id_visual_console", value: id_visual_console}); jQuery.ajax({ url: get_url_ajax(), diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 94af9716a9..16c29af740 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -767,13 +767,13 @@ input.graph_min { background: #fefefe url(../../images/chart_curve.png) no-repeat center !important; } input.graph_min[disabled] { - background: #fefefe url(../../images/icono-barras-arriba.disabled.png) no-repeat center !important; + background: #fefefe url(../../images/chart_curve.disabled.png) no-repeat center !important; } input.bars_graph_min { background: #fefefe url(../../images/icono-barras-arriba.png) no-repeat center !important; } input.bars_graph_min[disabled] { - background: #fefefe url(../../images/chart_curve.disabled.png) no-repeat center !important; + background: #fefefe url(../../images/icono-barras-arriba.disabled.png) no-repeat center !important; } input.percentile_min { background: #fefefe url(../../images/chart_bar.png) no-repeat center !important; From b5faf010b07a8b1a910f9bb4e555c80b11b6aa77 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Tue, 24 Oct 2017 10:07:07 +0200 Subject: [PATCH 105/311] Fixed filter to show interface graph or not --- .../include/javascript/functions_pandora_networkmap.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/javascript/functions_pandora_networkmap.js b/pandora_console/include/javascript/functions_pandora_networkmap.js index a9c36700a8..9ecf90a045 100644 --- a/pandora_console/include/javascript/functions_pandora_networkmap.js +++ b/pandora_console/include/javascript/functions_pandora_networkmap.js @@ -754,6 +754,12 @@ function get_interface_data_to_table(node_selected, selected_links) { } else { jQuery.each(data, function (j, interface) { + if (interface['graph'] == "") { + var interf_graph = "--"; + } + else { + var interf_graph = interface['graph']; + } $("#interface_information").find('tbody') .append($('') .append($('') @@ -763,7 +769,7 @@ function get_interface_data_to_table(node_selected, selected_links) { .html(interface['status']) ) .append($('') - .html(interface['graph']) + .html(interf_graph) ) .append($('') .html(interface['ip']) From da06d78b1c014c3571bba8a0073334a7c7828949 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Tue, 24 Oct 2017 11:32:43 +0200 Subject: [PATCH 106/311] Get the log time to put the properly timestamp on XML on module_logchannel --- .../modules/pandora_module_logchannel.cc | 28 +++++++++++++++---- .../win32/modules/pandora_module_logchannel.h | 6 +++- 2 files changed, 27 insertions(+), 7 deletions(-) diff --git a/pandora_agents/win32/modules/pandora_module_logchannel.cc b/pandora_agents/win32/modules/pandora_module_logchannel.cc index b85e791d3b..8652e33b83 100755 --- a/pandora_agents/win32/modules/pandora_module_logchannel.cc +++ b/pandora_agents/win32/modules/pandora_module_logchannel.cc @@ -176,8 +176,8 @@ Pandora_Module_Logchannel::Pandora_Module_Logchannel (string name, string source void Pandora_Module_Logchannel::run () { - list event_list; - list::iterator event; + list event_list; + list::iterator event; SYSTEMTIME system_time; // Run @@ -198,7 +198,7 @@ Pandora_Module_Logchannel::run () { for (event = event_list.begin (); event != event_list.end(); ++event) { // Store the data - this->setOutput (*event); + this->setOutput (event->message, &(event->timestamp)); } } @@ -322,7 +322,7 @@ Pandora_Module_Logchannel::cleanBookmark () { * Reads available events from the event log. */ void -Pandora_Module_Logchannel::getLogEvents (list &event_list) { +Pandora_Module_Logchannel::getLogEvents (list &event_list) { EVT_HANDLE hResults = NULL; EVT_HANDLE hBookmark = NULL; EVT_HANDLE hEvents[1]; @@ -330,13 +330,15 @@ Pandora_Module_Logchannel::getLogEvents (list &event_list) { PEVT_VARIANT pRenderedValues = NULL; EVT_HANDLE hProviderMetadata = NULL; LPWSTR pwsMessage = NULL; - LPWSTR ppValues[] = {L"Event/System/Provider/@Name"}; + LPWSTR ppValues[] = {L"Event/System/Provider/@Name", L"Event/System/TimeCreated/@SystemTime"}; DWORD count = sizeof(ppValues)/sizeof(LPWSTR); DWORD dwReturned = 0; DWORD dwBufferSize = 0; DWORD dwBufferUsed = 0; DWORD dwPropertyCount = 0; DWORD status = ERROR_SUCCESS; + SYSTEMTIME eventTime; + FILETIME lft, ft; wstring filter = L"*"; //wstring filter = L"*[System[TimeCreated[@SystemTime>='2017-10-19T00:00:00']]]"; bool update_bookmark = false; @@ -419,6 +421,17 @@ Pandora_Module_Logchannel::getLogEvents (list &event_list) { } } + // Get the SYSTEMTIME of log + ULONGLONG ullTimeStamp = pRenderedValues[1].FileTimeVal; + ft.dwHighDateTime = (DWORD)((ullTimeStamp >> 32) & 0xFFFFFFFF); + ft.dwLowDateTime = (DWORD)(ullTimeStamp & 0xFFFFFFFF); + // Time format conversions + if (!FileTimeToLocalFileTime(&ft, &lft)){ + pandoraDebug("UTC FILETIME to LOCAL FILETIME error: %d.", GetLastError()); + } else if (!FileTimeToSystemTime(&lft, &eventTime)){ + pandoraDebug("FILETIME to SYSTEMTIME error: %d.", GetLastError()); + } + // Get the handle to the provider's metadata that contains the message strings hProviderMetadata = EvtOpenPublisherMetadataF(NULL, pRenderedValues[0].StringVal, NULL, 0, 0); if (hProviderMetadata == NULL) { @@ -447,7 +460,10 @@ Pandora_Module_Logchannel::getLogEvents (list &event_list) { // Save the event message pandoraLog("Message: %S.", pwsMessage); - event_list.push_back (strUnicodeToAnsi(pwsMessage)); + LogChannelList event_item; + event_item.message = strUnicodeToAnsi(pwsMessage); + event_item.timestamp= eventTime; + event_list.push_back (event_item); // Clean up some used vars EvtCloseF(hContext); diff --git a/pandora_agents/win32/modules/pandora_module_logchannel.h b/pandora_agents/win32/modules/pandora_module_logchannel.h index 5eb02f0f15..9ee79d3433 100755 --- a/pandora_agents/win32/modules/pandora_module_logchannel.h +++ b/pandora_agents/win32/modules/pandora_module_logchannel.h @@ -59,6 +59,10 @@ namespace Pandora_Modules { */ class Pandora_Module_Logchannel : public Pandora_Module { + struct LogChannelList { + string message; + SYSTEMTIME timestamp; + }; private: regex_t regexp; unsigned long id; @@ -72,7 +76,7 @@ namespace Pandora_Modules { void initializeLogChannel (); bool updateBookmarkXML (EVT_HANDLE hBookmark); - void getLogEvents (list &event_list); + void getLogEvents (list &event_list); void cleanBookmark (); LPWSTR GetMessageString(EVT_HANDLE hMetadata, EVT_HANDLE hEvent, EVT_FORMAT_MESSAGE_FLAGS FormatId); From e748fb025cc6ff97c95adc28b81d0cb0512858dd Mon Sep 17 00:00:00 2001 From: fermin831 Date: Tue, 24 Oct 2017 12:41:47 +0200 Subject: [PATCH 107/311] Added filter by code and event type to module_logchannel --- .../modules/pandora_module_logchannel.cc | 56 ++++++++++++++----- .../win32/modules/pandora_module_logchannel.h | 5 +- 2 files changed, 42 insertions(+), 19 deletions(-) diff --git a/pandora_agents/win32/modules/pandora_module_logchannel.cc b/pandora_agents/win32/modules/pandora_module_logchannel.cc index 8652e33b83..b29b6f5531 100755 --- a/pandora_agents/win32/modules/pandora_module_logchannel.cc +++ b/pandora_agents/win32/modules/pandora_module_logchannel.cc @@ -56,6 +56,8 @@ static EvtUpdateBookmarkT EvtUpdateBookmarkF = NULL; Pandora_Module_Logchannel::Pandora_Module_Logchannel (string name, string source, string type, string id, string pattern, string application) : Pandora_Module (name) { int i; + vector query; + vector::iterator query_it; string upper_type = type; // Convert the type string to uppercase @@ -64,21 +66,50 @@ Pandora_Module_Logchannel::Pandora_Module_Logchannel (string name, string source } // Set the type filter + int type_number = -1; if (upper_type.compare("ERROR") == 0) { - this->type = EVENTLOG_ERROR_TYPE; + type_number = EVENTLOG_ERROR_TYPE; } else if (upper_type.compare("WARNING") == 0) { - this->type = EVENTLOG_WARNING_TYPE; + type_number = EVENTLOG_WARNING_TYPE; } else if (upper_type.compare("INFORMATION") == 0) { - this->type = EVENTLOG_INFORMATION_TYPE; + type_number = EVENTLOG_INFORMATION_TYPE; } else if (upper_type.compare("AUDIT SUCCESS") == 0) { - this->type = EVENTLOG_AUDIT_SUCCESS; + type_number = EVENTLOG_AUDIT_SUCCESS; } else if (upper_type.compare("AUDIT FAILURE") == 0) { - this->type = EVENTLOG_AUDIT_FAILURE; - } else { - this->type = -1; + type_number = EVENTLOG_AUDIT_FAILURE; } + // Append type to log query + if (type_number != -1) { + wstringstream ss; + ss << L"*[System[Level='" << type_number << L"']]"; + query.push_back(ss.str()); + } + + // Set the id + int id_number = strtoul (id.c_str (), NULL, 0); + if (id_number != 0) { + wstringstream ss; + ss << L"*[System[EventID='" << id_number << L"']]"; + query.push_back(ss.str()); + } + + // Fill the filter + if (query.size() == 0) { + this->filter = L"*"; + } else { + int i = 0; + // Add filters with and + wstring item_query; + while (query.size() > 1) { + item_query = query.back(); + query.pop_back(); + this->filter += item_query + L" and "; + } + // Append the last value without the and + item_query = query.back(); + this->filter += item_query; + } - this->id = strtoul (id.c_str (), NULL, 0); this->source = source; this->pattern = pattern; if (! pattern.empty ()) { @@ -87,7 +118,6 @@ Pandora_Module_Logchannel::Pandora_Module_Logchannel (string name, string source pandoraLog ("Invalid regular expression %s", pattern.c_str ()); } } - this->application = application; this->bookmark_xml = L""; this->setKind (module_logchannel_str); @@ -211,7 +241,6 @@ Pandora_Module_Logchannel::initializeLogChannel () { EVT_HANDLE hResults; EVT_HANDLE hBookmark; DWORD dwReturned = 0; - string filter = "*"; // Check whether the first bookmark is set if (!this->bookmark_xml.empty()) return; @@ -220,7 +249,7 @@ Pandora_Module_Logchannel::initializeLogChannel () { hResults = EvtQueryF ( NULL, strAnsiToUnicode (this->source.c_str()).c_str(), - strAnsiToUnicode (filter.c_str()).c_str(), + this->filter.c_str(), EvtOpenChannelPath | EvtQueryForwardDirection ); if (hResults == NULL) { @@ -339,8 +368,6 @@ Pandora_Module_Logchannel::getLogEvents (list &event_list) { DWORD status = ERROR_SUCCESS; SYSTEMTIME eventTime; FILETIME lft, ft; - wstring filter = L"*"; - //wstring filter = L"*[System[TimeCreated[@SystemTime>='2017-10-19T00:00:00']]]"; bool update_bookmark = false; // An empty bookmark XML means that log cannot be open @@ -350,7 +377,7 @@ Pandora_Module_Logchannel::getLogEvents (list &event_list) { hResults = EvtQueryF ( NULL, strAnsiToUnicode (this->source.c_str()).c_str(), - filter.c_str(), + this->filter.c_str(), EvtOpenChannelPath | EvtQueryForwardDirection ); if (hResults == NULL) { @@ -459,7 +486,6 @@ Pandora_Module_Logchannel::getLogEvents (list &event_list) { } // Save the event message - pandoraLog("Message: %S.", pwsMessage); LogChannelList event_item; event_item.message = strUnicodeToAnsi(pwsMessage); event_item.timestamp= eventTime; diff --git a/pandora_agents/win32/modules/pandora_module_logchannel.h b/pandora_agents/win32/modules/pandora_module_logchannel.h index 9ee79d3433..3d0efd2959 100755 --- a/pandora_agents/win32/modules/pandora_module_logchannel.h +++ b/pandora_agents/win32/modules/pandora_module_logchannel.h @@ -65,12 +65,9 @@ namespace Pandora_Modules { }; private: regex_t regexp; - unsigned long id; - int type; - unsigned char first_run; string source; - string application; string pattern; + wstring filter; wstring bookmark_xml; HANDLE messages_dll; From 7e4363b87afd012a70b35a8edfd1499344d17192 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Tue, 24 Oct 2017 12:56:12 +0200 Subject: [PATCH 108/311] Added module_pattern to module_logchannel --- .../win32/modules/pandora_module_logchannel.cc | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pandora_agents/win32/modules/pandora_module_logchannel.cc b/pandora_agents/win32/modules/pandora_module_logchannel.cc index b29b6f5531..9b0258e32a 100755 --- a/pandora_agents/win32/modules/pandora_module_logchannel.cc +++ b/pandora_agents/win32/modules/pandora_module_logchannel.cc @@ -485,11 +485,14 @@ Pandora_Module_Logchannel::getLogEvents (list &event_list) { return; } - // Save the event message - LogChannelList event_item; - event_item.message = strUnicodeToAnsi(pwsMessage); - event_item.timestamp= eventTime; - event_list.push_back (event_item); + // Check the regex and save the message if pass the regex + if (this->pattern.empty () || regexec (&this->regexp, strUnicodeToAnsi(pwsMessage).c_str (), 0, NULL, 0) == 0){ + // Save the event message + LogChannelList event_item; + event_item.message = strUnicodeToAnsi(pwsMessage); + event_item.timestamp= eventTime; + event_list.push_back (event_item); + } // Clean up some used vars EvtCloseF(hContext); From 854adac713a695670415a17ff123c62a1fcc55fd Mon Sep 17 00:00:00 2001 From: fermin831 Date: Tue, 24 Oct 2017 13:05:31 +0200 Subject: [PATCH 109/311] Added module_logchannel implementation to agent on module_factory --- .../win32/modules/pandora_module.cc | 4 +++- pandora_agents/win32/modules/pandora_module.h | 2 ++ .../win32/modules/pandora_module_factory.cc | 21 +++++++++++++++++++ .../win32/modules/pandora_module_list.cc | 12 ++++++++--- .../modules/pandora_module_logchannel.cc | 2 +- .../win32/modules/pandora_module_logchannel.h | 12 +---------- 6 files changed, 37 insertions(+), 16 deletions(-) diff --git a/pandora_agents/win32/modules/pandora_module.cc b/pandora_agents/win32/modules/pandora_module.cc index 296f42f2ea..99b0d47f88 100644 --- a/pandora_agents/win32/modules/pandora_module.cc +++ b/pandora_agents/win32/modules/pandora_module.cc @@ -248,7 +248,9 @@ Pandora_Module::parseModuleKindFromString (string kind) { } else if (kind == module_inventory_str) { return MODULE_INVENTORY; } else if (kind == module_logevent_str) { - return MODULE_LOGEVENT; + return MODULE_LOGEVENT; + } else if (kind == module_logchannel_str) { + return MODULE_LOGCHANNEL; } else if (kind == module_wmiquery_str) { return MODULE_WMIQUERY; } else if (kind == module_perfcounter_str) { diff --git a/pandora_agents/win32/modules/pandora_module.h b/pandora_agents/win32/modules/pandora_module.h index b2606d2442..2fbeb52e41 100644 --- a/pandora_agents/win32/modules/pandora_module.h +++ b/pandora_agents/win32/modules/pandora_module.h @@ -86,6 +86,7 @@ namespace Pandora_Modules { MODULE_FREEMEMORY_PERCENT, /**< The module checks the amount of * freememory in the system */ MODULE_LOGEVENT, /**< The module checks for log events */ + MODULE_LOGCHANNEL, /**< The module checks for log events on channel using XML functions*/ MODULE_WMIQUERY, /**< The module runs WQL queries */ MODULE_PERFCOUNTER, /**< The module reads performance counters */ MODULE_TCPCHECK, /**< The module checks whether a tcp port is open */ @@ -126,6 +127,7 @@ namespace Pandora_Modules { const string module_cpuusage_str = "module_cpuusage"; const string module_inventory_str = "module_inventory"; const string module_logevent_str = "module_logevent"; + const string module_logchannel_str = "module_logchannel"; const string module_wmiquery_str = "module_wmiquery"; const string module_perfcounter_str = "module_perfcounter"; const string module_tcpcheck_str = "module_tcpcheck"; diff --git a/pandora_agents/win32/modules/pandora_module_factory.cc b/pandora_agents/win32/modules/pandora_module_factory.cc index db33c1315a..5c98915373 100644 --- a/pandora_agents/win32/modules/pandora_module_factory.cc +++ b/pandora_agents/win32/modules/pandora_module_factory.cc @@ -31,6 +31,7 @@ #include "pandora_module_cpuusage.h" #include "pandora_module_inventory.h" #include "pandora_module_logevent.h" +#include "pandora_module_logchannel.h" #include "pandora_module_wmiquery.h" #include "pandora_module_perfcounter.h" #include "pandora_module_tcpcheck.h" @@ -69,6 +70,7 @@ using namespace Pandora_Strutils; #define TOKEN_MIN_FF_EVENT ("module_min_ff_event ") #define TOKEN_DESCRIPTION ("module_description ") #define TOKEN_LOGEVENT ("module_logevent") +#define TOKEN_LOGCHANNEL ("module_logchannel") #define TOKEN_SOURCE ("module_source ") #define TOKEN_EVENTTYPE ("module_eventtype ") #define TOKEN_EVENTCODE ("module_eventcode ") @@ -157,6 +159,7 @@ Pandora_Module_Factory::getModuleFromDefinition (string definition) { string module_freedisk_percent, module_freememory_percent; string module_dsn, module_freememory; string module_logevent, module_source, module_eventtype, module_eventcode; + string module_logchannel; string module_pattern, module_application, module_async; string module_watchdog, module_start_command; string module_wmiquery, module_wmicolumn; @@ -195,6 +198,7 @@ Pandora_Module_Factory::getModuleFromDefinition (string definition) { module_proc = ""; module_service = ""; module_logevent = ""; + module_logchannel = ""; module_source = ""; module_eventtype = ""; module_eventcode = ""; @@ -342,6 +346,9 @@ Pandora_Module_Factory::getModuleFromDefinition (string definition) { if (module_logevent == "") { module_logevent = parseLine (line, TOKEN_LOGEVENT); } + if (module_logchannel == "") { + module_logchannel = parseLine (line, TOKEN_LOGCHANNEL); + } if (module_source == "") { module_source = parseLine (line, TOKEN_SOURCE); } @@ -724,6 +731,13 @@ Pandora_Module_Factory::getModuleFromDefinition (string definition) { } } + if (module_logchannel != "") { + pos_macro = module_logchannel.find(macro_name); + if (pos_macro != string::npos){ + module_logchannel.replace(pos_macro, macro_name.size(), macro_value); + } + } + if (module_source != "") { pos_macro = module_source.find(macro_name); if (pos_macro != string::npos){ @@ -1173,6 +1187,13 @@ Pandora_Module_Factory::getModuleFromDefinition (string definition) { module_eventcode, module_pattern, module_application); + } + else if (module_logchannel != "") { + module = new Pandora_Module_Logchannel (module_name, + module_source, + module_eventtype, + module_eventcode, + module_pattern); } else if (module_wmiquery != "") { module = new Pandora_Module_WMIQuery (module_name, module_wmiquery, module_wmicolumn); diff --git a/pandora_agents/win32/modules/pandora_module_list.cc b/pandora_agents/win32/modules/pandora_module_list.cc index 516b2296c8..305ee901d7 100644 --- a/pandora_agents/win32/modules/pandora_module_list.cc +++ b/pandora_agents/win32/modules/pandora_module_list.cc @@ -30,12 +30,13 @@ #include "pandora_module_cpuusage.h" #include "pandora_module_inventory.h" #include "pandora_module_logevent.h" +#include "pandora_module_logchannel.h" #include "pandora_module_wmiquery.h" #include "pandora_module_perfcounter.h" #include "pandora_module_tcpcheck.h" #include "pandora_module_regexp.h" #include "pandora_module_plugin.h" -#include "pandora_module_ping.h" +#include "pandora_module_ping.h" #include "pandora_module_snmpget.h" #include @@ -226,12 +227,13 @@ Pandora_Modules::Pandora_Module_List::parseModuleDefinition (string definition) Pandora_Module_Freememory *module_freememory; Pandora_Module_Freememory_Percent *module_freememory_percent; Pandora_Module_Logevent *module_logevent; + Pandora_Module_Logchannel *module_logchannel; Pandora_Module_WMIQuery *module_wmiquery; Pandora_Module_Perfcounter *module_perfcounter; Pandora_Module_Tcpcheck *module_tcpcheck; Pandora_Module_Regexp *module_regexp; Pandora_Module_Plugin *module_plugin; - Pandora_Module_Ping *module_ping; + Pandora_Module_Ping *module_ping; Pandora_Module_SNMPGet *module_snmpget; module = Pandora_Module_Factory::getModuleFromDefinition (definition); @@ -288,6 +290,10 @@ Pandora_Modules::Pandora_Module_List::parseModuleDefinition (string definition) module_logevent = (Pandora_Module_Logevent *) module; modules->push_back (module_logevent); break; + case MODULE_LOGCHANNEL: + module_logchannel = (Pandora_Module_Logchannel *) module; + modules->push_back (module_logchannel); + break; case MODULE_WMIQUERY: module_wmiquery = (Pandora_Module_WMIQuery *) module; modules->push_back (module_wmiquery); @@ -315,7 +321,7 @@ Pandora_Modules::Pandora_Module_List::parseModuleDefinition (string definition) case MODULE_SNMPGET: module_snmpget = (Pandora_Module_SNMPGet *) module; modules->push_back (module_snmpget); - break; + break; default: break; } diff --git a/pandora_agents/win32/modules/pandora_module_logchannel.cc b/pandora_agents/win32/modules/pandora_module_logchannel.cc index 9b0258e32a..2c7c056565 100755 --- a/pandora_agents/win32/modules/pandora_module_logchannel.cc +++ b/pandora_agents/win32/modules/pandora_module_logchannel.cc @@ -53,7 +53,7 @@ static EvtUpdateBookmarkT EvtUpdateBookmarkF = NULL; * @param name Module name. * @param service_name Service internal name to check. */ -Pandora_Module_Logchannel::Pandora_Module_Logchannel (string name, string source, string type, string id, string pattern, string application) +Pandora_Module_Logchannel::Pandora_Module_Logchannel (string name, string source, string type, string id, string pattern) : Pandora_Module (name) { int i; vector query; diff --git a/pandora_agents/win32/modules/pandora_module_logchannel.h b/pandora_agents/win32/modules/pandora_module_logchannel.h index 3d0efd2959..14617037c6 100755 --- a/pandora_agents/win32/modules/pandora_module_logchannel.h +++ b/pandora_agents/win32/modules/pandora_module_logchannel.h @@ -29,16 +29,6 @@ // Log event read buffer size #define BUFFER_SIZE 1024 -// Length of a timestamp string YYYY-MM-DD HH:MM:SS -#define TIMESTAMP_LEN 19 - -// The EventID property equals the InstanceId with the top two bits masked off. -// See: http://msdn.microsoft.com/en-us/library/system.diagnostics.eventlogentry.eventid.aspx -//#define EVENT_ID_MASK 0x3FFFFFFF - -// The Windows Event Log Viewer seems to ignore the most significant 16 bits. -#define EVENT_ID_MASK 0x0000FFFF - // Types for pointers to Wevtapi.dll functions typedef EVT_HANDLE WINAPI (*EvtQueryT) (EVT_HANDLE Session, LPCWSTR Path, LPCWSTR Query, DWORD Flags); typedef WINBOOL WINAPI (*EvtNextT) (EVT_HANDLE ResultSet, DWORD EventArraySize, EVT_HANDLE* EventArray, DWORD Timeout, DWORD Flags, PDWORD Returned); @@ -78,7 +68,7 @@ namespace Pandora_Modules { LPWSTR GetMessageString(EVT_HANDLE hMetadata, EVT_HANDLE hEvent, EVT_FORMAT_MESSAGE_FLAGS FormatId); public: - Pandora_Module_Logchannel (string name, string source, string type, string id, string pattern, string application); + Pandora_Module_Logchannel (string name, string source, string type, string id, string pattern); void run (); }; } From 9b1cbf3c9bd5139833b981eaba5ef63c4eb8d75d Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 24 Oct 2017 13:10:07 +0200 Subject: [PATCH 110/311] Changed column in tuser_task_scheduled --- pandora_console/extras/mr/9.sql | 13 +++++++++++++ .../extras/pandoradb_migrate_6.0_to_7.0.mysql.sql | 4 ++++ 2 files changed, 17 insertions(+) create mode 100644 pandora_console/extras/mr/9.sql diff --git a/pandora_console/extras/mr/9.sql b/pandora_console/extras/mr/9.sql new file mode 100644 index 0000000000..90f8cde128 --- /dev/null +++ b/pandora_console/extras/mr/9.sql @@ -0,0 +1,13 @@ +START TRANSACTION; + +SET @st_oum708 = (SELECT IF( + (SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = DATABASE() AND table_name = 'tuser_task_scheduled') > 0, + "ALTER TABLE tuser_task_scheduled MODIFY args TEXT NOT NULL", + "SELECT 1" +)); + +PREPARE pr_oum708 FROM @st_oum708; +EXECUTE pr_oum708; +DEALLOCATE PREPARE pr_oum708; + +COMMIT; \ No newline at end of file diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 4e31057a89..18b93b8eac 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -1326,6 +1326,10 @@ SET @vv1 = (SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = IF @vv1>0 THEN ALTER TABLE tbackup ADD COLUMN `filepath` varchar(512) NOT NULL DEFAULT ""; END IF; +SET @vv2 = (SELECT COUNT(*) FROM information_schema.tables WHERE table_schema = DATABASE() AND table_name = 'tuser_task_scheduled'); +IF @vv2>0 THEN + ALTER TABLE tuser_task_scheduled MODIFY args TEXT NOT NULL; +END IF; END; // delimiter ; From d1a4458aad6efa90547965ac23e57fa38aa252dd Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Tue, 24 Oct 2017 13:51:34 +0200 Subject: [PATCH 111/311] Added new section to menu --- pandora_console/operation/menu.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/operation/menu.php b/pandora_console/operation/menu.php index 6c27ce428d..b7c57882a8 100644 --- a/pandora_console/operation/menu.php +++ b/pandora_console/operation/menu.php @@ -59,6 +59,8 @@ if (check_acl ($config['id_user'], 0, "AR")) { $sub2["operation/agentes/status_monitor"]["text"] = __('Monitor detail'); $sub2["operation/agentes/status_monitor"]["refr"] = 0; + enterprise_hook ('tag_view_submenu'); + $sub2["operation/agentes/alerts_status"]["text"] = __('Alert detail'); $sub2["operation/agentes/alerts_status"]["refr"] = 0; From 01a106e9f6a407e66310cbaf118f0db450927c6b Mon Sep 17 00:00:00 2001 From: fermin831 Date: Tue, 24 Oct 2017 13:53:06 +0200 Subject: [PATCH 112/311] Fixed console error 500 when mysql is not running --- pandora_console/include/functions_db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_db.php b/pandora_console/include/functions_db.php index 06c85ef194..70395cb205 100644 --- a/pandora_console/include/functions_db.php +++ b/pandora_console/include/functions_db.php @@ -81,7 +81,7 @@ function db_connect($host = null, $db = null, $user = null, $pass = null, $port $ownDir = dirname(__FILE__) . DIRECTORY_SEPARATOR; $config['homedir'] = $ownDir; $login_screen = 'error_authconfig'; - require($config['homedir'] . '/general/error_screen.php'); + require($config['homedir'] . '../general/error_screen.php'); exit; } else if ($error == 0) { From b23b9448b64ea81000d1a3933e3570abaf1e023e Mon Sep 17 00:00:00 2001 From: daniel Date: Tue, 24 Oct 2017 17:03:35 +0200 Subject: [PATCH 113/311] fixed errors in visual console --- .../godmode/users/configure_user.php | 2 +- .../include/functions_visual_map.php | 18 ++++++++++-------- .../include/functions_visual_map_editor.php | 2 +- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 0f3ce0cb57..ef2e4f0f9c 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -565,7 +565,7 @@ $values = array ( 'Tactical view'=>__('Tactical view'), 'Alert detail' => __('Alert detail'), 'Other'=>__('Other')); -if (enterprise_installed()) { +if (enterprise_installed() && !is_metaconsole()) { $values['Dashboard'] = __('Dashboard'); } $table->data[12][1] = html_print_select($values, 'section', io_safe_output($user_info["section"]), 'show_data_section();', '', -1, true, false, false); diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index ed5141cc47..f82a22d4c1 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1175,7 +1175,16 @@ function visual_map_print_item($mode = "read", $layoutData, if ($link) { echo ""; } - + + //for clean link text from bbdd + if (get_parameter('action') == 'edit' || get_parameter('operation') == 'edit_visualmap') { + $aux_text1 = explode("", $aux_text1[1]); + $aux_text3 = explode("", $aux_text2[1]); + + $text = $aux_text1[0].$aux_text3[0].$aux_text3[1]; + } + switch ($type) { case BOX_ITEM: if ($width == 0 || $width == 0) { @@ -1650,13 +1659,6 @@ function visual_map_print_item($mode = "read", $layoutData, } break; case LABEL: - if (get_parameter('action') == 'edit' || get_parameter('operation') == 'edit_visualmap') { - $aux_text1 = explode("", $aux_text1[1]); - $aux_text3 = explode("", $aux_text2[1]); - - $text = $aux_text1[0].$aux_text3[0].$aux_text3[1]; - } echo io_safe_output($text); break; case ICON: diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index 10732896ec..7769f4d3e2 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -556,7 +556,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) { ''; $form_items_advance['map_linked_row'] = array(); - $form_items_advance['map_linked_row']['items'] = array('static_graph', 'label'); + $form_items_advance['map_linked_row']['items'] = array('static_graph', 'label', 'icon'); $form_items_advance['map_linked_row']['html'] = ''. __('Map linked') . ui_print_help_tip ( __("If a parent visual console is selected here, an agent or module cannot be selected and will be removed if a previous selection was done."), true) . From 92d21794690a671cdc435381e748422fc2d5c02e Mon Sep 17 00:00:00 2001 From: daniel Date: Tue, 24 Oct 2017 17:11:56 +0200 Subject: [PATCH 114/311] updated version --- pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index 4e31057a89..22bcc52766 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -1150,10 +1150,10 @@ ALTER TABLE titem MODIFY `source_data` int(10) unsigned; INSERT INTO `tconfig` (`token`, `value`) VALUES ('big_operation_step_datos_purge', '100'); INSERT INTO `tconfig` (`token`, `value`) VALUES ('small_operation_step_datos_purge', '1000'); INSERT INTO `tconfig` (`token`, `value`) VALUES ('days_autodisable_deletion', '30'); -INSERT INTO `tconfig` (`token`, `value`) VALUES ('MR', 4); +INSERT INTO `tconfig` (`token`, `value`) VALUES ('MR', 7); UPDATE tconfig SET value = 'https://licensing.artica.es/pandoraupdate7/server.php' WHERE token='url_update_manager'; DELETE FROM `tconfig` WHERE `token` = 'current_package_enterprise'; -INSERT INTO `tconfig` (`token`, `value`) VALUES ('current_package_enterprise', '708'); +INSERT INTO `tconfig` (`token`, `value`) VALUES ('current_package_enterprise', '714'); -- --------------------------------------------------------------------- -- Table `tplanned_downtime_agents` From d6f64e1ccabd6bb1b14362b926d4c00273ef461f Mon Sep 17 00:00:00 2001 From: enriquecd Date: Tue, 24 Oct 2017 17:47:45 +0200 Subject: [PATCH 115/311] Change width of snmp interface wizard select box - #1486 --- .../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/agentes/agent_wizard.snmp_interfaces_explorer.php b/pandora_console/godmode/agentes/agent_wizard.snmp_interfaces_explorer.php index f422f1ea40..023cb0330f 100644 --- a/pandora_console/godmode/agentes/agent_wizard.snmp_interfaces_explorer.php +++ b/pandora_console/godmode/agentes/agent_wizard.snmp_interfaces_explorer.php @@ -542,7 +542,7 @@ if (!empty($interfaces_list)) { $table->data[0][1] = ''; $table->data[0][2] = ''.__('Modules').''; - $table->data[1][0] = html_print_select ($interfaces_list, 'id_snmp[]', 0, false, '', '', true, true, true, '', false, 'width:200px;'); + $table->data[1][0] = html_print_select ($interfaces_list, 'id_snmp[]', 0, false, '', '', true, true, true, '', false, 'width:500px;'); $table->data[1][1] = html_print_image('images/darrowright.png', true); $table->data[1][2] = html_print_select (array (), 'module[]', 0, false, '', 0, true, true, true, '', false, 'width:200px;'); $table->data[1][2] .= html_print_input_hidden('agent', $id_agent, true); From 4ef0c6cd5ff58d736e7812619fbf8b06bc4ffe27 Mon Sep 17 00:00:00 2001 From: daniel Date: Tue, 24 Oct 2017 18:14:57 +0200 Subject: [PATCH 116/311] fixed errors visual console --- .../include/ajax/visual_console_builder.ajax.php | 6 ++++++ pandora_console/include/functions_visual_map.php | 11 ++++++++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index e5e3ac546e..f1e3d43350 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -967,12 +967,18 @@ switch ($action) { case 'label': $values['type'] = LABEL; $values['label'] = $label; + if(defined('METACONSOLE') && $values['id_agent'] == 0){ + $values['id_metaconsole'] = 1; + } break; case 'icon': $values['type'] = ICON; $values['image'] = $image; $values['width'] = $width; $values['height'] = $height; + if(defined('METACONSOLE') && $values['id_agent'] == 0){ + $values['id_metaconsole'] = 1; + } break; default: if (enterprise_installed()) { diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index f82a22d4c1..be50812cc5 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -510,15 +510,20 @@ function visual_map_print_item($mode = "read", $layoutData, case LABEL: if ($layoutData['id_layout_linked'] != 0) { // Link to a map - $url = $config['homeurl'] . - 'index.php?sec=reporting&sec2=operation/visual_console/render_view&pure='.$config["pure"].'&id='.$layoutData["id_layout_linked"]; + if ($layoutData['id_metaconsole'] == 0) { + $url = $config['homeurl'] . + 'index.php?sec=reporting&sec2=operation/visual_console/render_view&pure='.$config["pure"].'&id='.$layoutData["id_layout_linked"]; + } + else{ + $url = "index.php?sec=screen&sec2=screens/screens&action=visualmap&pure=0&id_visualmap=" . $layoutData["id_layout_linked"] . "&refr=0"; + } } break; case ICON: $url_icon = ""; if ($layoutData['id_layout_linked'] != 0) { // Link to a map - if (empty($layoutData['id_metaconsole'])) { + if ($layoutData['id_metaconsole'] == 0) { $url = 'index.php?sec=reporting&sec2=operation/visual_console/render_view&pure='.$config["pure"].'&id='.$layoutData["id_layout_linked"]; } else { From 4f62a02ca1c590d4eed72339bcc0a68f4b93046e Mon Sep 17 00:00:00 2001 From: enriquecd Date: Tue, 24 Oct 2017 18:16:32 +0200 Subject: [PATCH 117/311] Change font family to install wizard button - #1500 --- pandora_console/include/styles/install.css | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_console/include/styles/install.css b/pandora_console/include/styles/install.css index 59b1fb98cc..6c558fdcba 100644 --- a/pandora_console/include/styles/install.css +++ b/pandora_console/include/styles/install.css @@ -192,6 +192,7 @@ div.installation_step { -o-transition-property: background-color, color; -o-transition-duration: 1s; color:#82b92e; + font-family: Sans, Arial, sans; } .btn_install_next:hover .btn_install_next_text { transition-property: background-color, color; From fc81469b7c2fed8a535e5bcc87ff4094c415a966 Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 25 Oct 2017 00:01:09 +0200 Subject: [PATCH 118/311] 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.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.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 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index cd68b52f73..10b3bf4b4e 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.714-171024 +Version: 7.0NG.714-171025 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 b21332b3be..4217b2dd1e 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.714-171024" +pandora_version="7.0NG.714-171025" 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 bf28b06122..d7bfa6bbca 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -41,7 +41,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.714'; -use constant AGENT_BUILD => '171024'; +use constant AGENT_BUILD => '171025'; # 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 cc9c730d82..54cc1ea457 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.714 -%define release 171024 +%define release 171025 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 d801714fb7..2f10142e0e 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.714 -%define release 171024 +%define release 171025 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 f698cec103..13d0edace0 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.714" -PI_BUILD="171024" +PI_BUILD="171025" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 686e7fdee9..898b87abad 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{171024} +{171025} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 4739e3f7e0..f7562bd0da 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.714(Build 171024)") +#define PANDORA_VERSION ("7.0NG.714(Build 171025)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index aa68c94355..7a3ba2e871 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.714(Build 171024))" + VALUE "ProductVersion", "(7.0NG.714(Build 171025))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index a2605921f1..a1d78610d1 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.714-171024 +Version: 7.0NG.714-171025 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 8958951091..a3d80eec1a 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.714-171024" +pandora_version="7.0NG.714-171025" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index f23c11117a..d4535e5f6c 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -22,7 +22,7 @@ /** * Pandora build version and version */ -$build_version = 'PC171024'; +$build_version = 'PC171025'; $pandora_version = 'v7.0NG.714'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 246db73a87..e23846f4ab 100755 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -71,7 +71,7 @@
    Date: Wed, 25 Oct 2017 11:01:12 +0200 Subject: [PATCH 119/311] fixed error in visual console link --- pandora_console/include/functions_visual_map.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index be50812cc5..73577f4a6b 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -1183,11 +1183,7 @@ function visual_map_print_item($mode = "read", $layoutData, //for clean link text from bbdd if (get_parameter('action') == 'edit' || get_parameter('operation') == 'edit_visualmap') { - $aux_text1 = explode("", $aux_text1[1]); - $aux_text3 = explode("", $aux_text2[1]); - - $text = $aux_text1[0].$aux_text3[0].$aux_text3[1]; + $text = preg_replace("/<\/*a.*?>/", '', $text); } switch ($type) { From 4473d16727ccd80e41c26c108ad83ac9703788bf Mon Sep 17 00:00:00 2001 From: enriquecd Date: Wed, 25 Oct 2017 11:35:58 +0200 Subject: [PATCH 120/311] Change phrases in system logfile viewer - #1263 --- pandora_console/extensions/pandora_logs.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/extensions/pandora_logs.php b/pandora_console/extensions/pandora_logs.php index f20bcab720..4241018a16 100644 --- a/pandora_console/extensions/pandora_logs.php +++ b/pandora_console/extensions/pandora_logs.php @@ -69,9 +69,9 @@ function pandoralogs_extension_main () { ui_print_page_header (__("System logfile viewer"), "images/extensions.png", false, "", true, "" ); - echo "

    " . __('This tool is used just to view your Pandora FMS system logfiles directly from console') . "

    "; + echo "

    " . __('Use this tool to view your Pandora FMS logfiles directly on the console') . "

    "; - echo "

    " . __('You can control the size information to show in general setup (Log size limit in view extension), actually ') . $config['max_log_size'] * 1000 . "B" . "

    "; + echo "

    " . __('You can choose the amount of information shown in general setup (Log size limit in system logs viewer extension), ' . $config['max_log_size'] * 1000 . 'B at the moment') . "

    "; $logs_directory = (!empty($config["server_log_dir"])) ? io_safe_output($config["server_log_dir"]) : "/var/log/pandora"; From 3bafe27361c387ef0e1ce7f6cacd3c2911b64a4e Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 25 Oct 2017 12:04:14 +0200 Subject: [PATCH 121/311] added Search in custom fields --- pandora_console/include/functions_agents.php | 29 +++++++++++++++++-- .../operation/agentes/estado_agente.php | 19 ++++++++++-- 2 files changed, 44 insertions(+), 4 deletions(-) diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index 838fb58d55..5b4e922839 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -314,6 +314,13 @@ function agents_get_agents ($filter = false, $fields = false, $search = ''; } + if (isset($filter['search_custom'])) { + $search_custom = $filter['search_custom']; + unset($filter['search_custom']); + } else { + $search_custom = ''; + } + if (isset($filter['offset'])) { $offset = $filter['offset']; unset($filter['offset']); @@ -450,8 +457,8 @@ function agents_get_agents ($filter = false, $fields = false, $sql_extra, $where, $where_nogroup, $status_sql, $search, $disabled); } else { - $where = sprintf('%s AND %s AND (%s) %s AND %s', - $where, $where_nogroup, $status_sql, $search, $disabled); + $where = sprintf('%s AND %s AND (%s) %s AND %s %s', + $where, $where_nogroup, $status_sql, $search, $disabled, $search_custom); } $sql = sprintf('SELECT %s FROM tagente @@ -1299,6 +1306,24 @@ function agents_get_agent_id ($agent_name, $io_safe_input = false) { return (int) db_get_value ('id_agente', 'tagente', 'nombre', $agent_name); } +/** + * Get agents id from an agent alias. + * + * @param string $agent_alias Agent alias to get its id. + * @param boolean $io_safe_input If it is true transform to safe string, by default false. + * + * @return int Id from the agent of the given alias. + */ +function agents_get_agent_id_by_alias ($alias, $io_safe_input = false) { + if ($io_safe_input) { + $alias = io_safe_input($alias); + } + $sql = sprintf("SELECT tagente.id_agente FROM tagente WHERE alias LIKE '%s' ",$alias); + $agent_id = db_get_all_rows_sql($sql); + + return $agent_id; +} + /** * Get name of an agent. * diff --git a/pandora_console/operation/agentes/estado_agente.php b/pandora_console/operation/agentes/estado_agente.php index 151ae893ec..521537618a 100644 --- a/pandora_console/operation/agentes/estado_agente.php +++ b/pandora_console/operation/agentes/estado_agente.php @@ -141,6 +141,7 @@ ob_end_clean(); // Take some parameters (GET) $group_id = (int) get_parameter ("group_id", 0); $search = trim(get_parameter ("search", "")); +$search_custom = trim(get_parameter ("search_custom", "")); $offset = (int)get_parameter('offset', 0); $refr = get_parameter('refr', 0); $recursion = get_parameter('recursion', 0); @@ -205,7 +206,7 @@ html_print_checkbox ("recursion", 1, $recursion, false, false, 'this.form.submit echo ''; echo __('Search') . ' '; -html_print_input_text ("search", $search, '', 12); +html_print_input_text ("search", $search, '', 15); echo ''; @@ -222,6 +223,11 @@ html_print_select ($fields, "status", $status, 'this.form.submit()', __('All'), echo ''; +echo __('Search in custom fields') . ' '; +html_print_input_text ("search_custom", $search_custom, '', 15); + +echo ''; + html_print_submit_button (__('Search'), "srcbutton", '', array ("class" => "sub search")); @@ -384,7 +390,6 @@ switch ($sortField) { $search_sql = ''; if ($search != "") { - //$search_sql = " AND ( nombre " . $order_collation . " LIKE '%$search%' OR direccion LIKE '%$search%' OR comentarios LIKE '%$search%') "; $sql = "SELECT DISTINCT taddress_agent.id_agent FROM taddress INNER JOIN taddress_agent ON taddress.id_a = taddress_agent.id_a @@ -409,6 +414,14 @@ if ($search != "") { } } + +if(!empty($search_custom)){ + $search_sql_custom = " AND EXISTS (SELECT * FROM tagent_custom_data + WHERE id_agent = id_agente AND description LIKE '%$search_custom%')"; +} else { + $search_sql_custom = ""; +} + // Show only selected groups if ($group_id > 0) { $groups = array($group_id); @@ -464,6 +477,7 @@ else { 'disabled' => 0, 'id_grupo' => $groups, 'search' => $search_sql, + 'search_custom' => $search_sql_custom, 'status' => $status), array ('COUNT(*) as total'), $access, false); $total_agents = isset ($total_agents[0]['total']) ? @@ -474,6 +488,7 @@ else { 'id_grupo' => $groups, 'disabled' => 0, 'status' => $status, + 'search_custom' => $search_sql_custom, 'search' => $search_sql, 'offset' => (int) get_parameter ('offset'), 'limit' => (int) $config['block_size']), From f1cbaec98be1a7909b9afb527af7d017d1a21b14 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Wed, 25 Oct 2017 12:11:56 +0200 Subject: [PATCH 122/311] Added safe_output to server events --- pandora_server/lib/PandoraFMS/Core.pm | 32 ++++++++++++-------- pandora_server/lib/PandoraFMS/DataServer.pm | 9 ++++-- pandora_server/lib/PandoraFMS/ReconServer.pm | 2 +- 3 files changed, 26 insertions(+), 17 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 77db28e6e7..e6ef632f73 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -525,7 +525,7 @@ Process an alert given the status returned by pandora_evaluate_alert. ########################################################################## sub pandora_process_alert ($$$$$$$$;$) { my ($pa_config, $data, $agent, $module, $alert, $rc, $dbh, $timestamp, $extra_macros) = @_; - + if (defined ($agent)) { logger ($pa_config, "Processing alert '" . safe_output($alert->{'name'}) . "' for agent '" . safe_output($agent->{'nombre'}) . "': " . (defined ($AlertStatus[$rc]) ? $AlertStatus[$rc] : 'Unknown status') . ".", 10); } @@ -565,12 +565,12 @@ sub pandora_process_alert ($$$$$$$$;$) { # Generate an event if ($table eq 'tevent_alert') { pandora_event ($pa_config, "Alert ceased (" . - $alert->{'name'} . ")", 0, 0, $alert->{'priority'}, $id, + safe_output($alert->{'name'}) . ")", 0, 0, $alert->{'priority'}, $id, (defined ($alert->{'id_agent_module'}) ? $alert->{'id_agent_module'} : 0), "alert_ceased", 0, $dbh, 'Pandora', '', '', '', '', $critical_instructions, $warning_instructions, $unknown_instructions); } else { pandora_event ($pa_config, "Alert ceased (" . - $alert->{'name'} . ")", $agent->{'id_grupo'}, + safe_output($alert->{'name'}) . ")", $agent->{'id_grupo'}, $agent->{'id_agente'}, $alert->{'priority'}, $id, (defined ($alert->{'id_agent_module'}) ? $alert->{'id_agent_module'} : 0), "alert_ceased", 0, $dbh, 'Pandora', '', '', '', '', $critical_instructions, $warning_instructions, $unknown_instructions); @@ -1611,9 +1611,8 @@ sub pandora_planned_downtime_disabled_once_stop($$) { db_do($dbh, 'UPDATE tplanned_downtime SET executed = 0 WHERE id = ?', $downtime->{'id'}); - pandora_event ($pa_config, - '(Created by ' . $downtime->{'id_user'} . ') Server ' . $pa_config->{'servername'} . ' stopped planned downtime: ' . $downtime->{'name'}, 0, 0, 1, 0, 0, 'system', 0, $dbh); + '(Created by ' . $downtime->{'id_user'} . ') Server ' . $pa_config->{'servername'} . ' stopped planned downtime: ' . safe_output($downtime->{'name'}), 0, 0, 1, 0, 0, 'system', 0, $dbh); pandora_planned_downtime_unset_disabled_elements($pa_config, $dbh, $downtime); @@ -1658,8 +1657,9 @@ sub pandora_planned_downtime_disabled_once_start($$) { SET executed = 1 WHERE id = ?', $downtime->{'id'}); + print"pandora_planned_downtime_disabled_once_start\n"; pandora_event ($pa_config, - "(Created by " . $downtime->{'id_user'} . ") Server ".$pa_config->{'servername'}." started planned downtime: ".$downtime->{'name'}, 0, 0, 1, 0, 0, 'system', 0, $dbh); + "(Created by " . $downtime->{'id_user'} . ") Server ".$pa_config->{'servername'}." started planned downtime: ".safe_output($downtime->{'name'}), 0, 0, 1, 0, 0, 'system', 0, $dbh); pandora_planned_downtime_set_disabled_elements($pa_config, $dbh, $downtime); @@ -1849,7 +1849,7 @@ sub pandora_planned_downtime_quiet_once_stop($$) { SET executed = 0 WHERE id = ?', $downtime->{'id'}); pandora_event ($pa_config, - "(Created by " . $downtime->{'id_user'} . ") Server ".$pa_config->{'servername'}." stopped planned downtime: ".$downtime->{'name'}, 0, 0, 1, 0, 0, 'system', 0, $dbh); + "(Created by " . $downtime->{'id_user'} . ") Server ".$pa_config->{'servername'}." stopped planned downtime: ".safe_output($downtime->{'name'}), 0, 0, 1, 0, 0, 'system', 0, $dbh); pandora_planned_downtime_unset_quiet_elements($pa_config, $dbh, $downtime->{'id'}); @@ -1890,8 +1890,9 @@ sub pandora_planned_downtime_quiet_once_start($$) { db_do($dbh, 'UPDATE tplanned_downtime SET executed = 1 WHERE id = ?', $downtime->{'id'}); + print"pandora_planned_downtime_quiet_once_start\n"; pandora_event ($pa_config, - "(Created by " . $downtime->{'id_user'} . ") Server ".$pa_config->{'servername'}." started planned downtime: ".$downtime->{'name'}, 0, 0, 1, 0, 0, 'system', 0, $dbh); + "(Created by " . $downtime->{'id_user'} . ") Server ".$pa_config->{'servername'}." started planned downtime: ".safe_output($downtime->{'name'}), 0, 0, 1, 0, 0, 'system', 0, $dbh); pandora_planned_downtime_set_quiet_elements($pa_config, $dbh, $downtime->{'id'}); @@ -1944,8 +1945,9 @@ sub pandora_planned_downtime_monthly_start($$) { db_do($dbh, 'UPDATE tplanned_downtime SET executed = 1 WHERE id = ?', $downtime->{'id'}); + print"pandora_planned_downtime_monthly_start\n"; pandora_event ($pa_config, - "Server ".$pa_config->{'servername'}." started planned downtime: ".$downtime->{'name'}, 0, 0, 1, 0, 0, 'system', 0, $dbh); + "Server ".$pa_config->{'servername'}." started planned downtime: ".safe_output($downtime->{'name'}), 0, 0, 1, 0, 0, 'system', 0, $dbh); if ($downtime->{'type_downtime'} eq "quiet") { @@ -2020,8 +2022,9 @@ sub pandora_planned_downtime_monthly_stop($$) { db_do($dbh, 'UPDATE tplanned_downtime SET executed = 0 WHERE id = ?', $downtime->{'id'}); + print"pandora_planned_downtime_monthly_stop\n"; pandora_event ($pa_config, - "Server ".$pa_config->{'servername'}." stopped planned downtime: ".$downtime->{'name'}, 0, 0, 1, 0, 0, 'system', 0, $dbh); + "Server ".$pa_config->{'servername'}." stopped planned downtime: ".safe_output($downtime->{'name'}), 0, 0, 1, 0, 0, 'system', 0, $dbh); if ($downtime->{'type_downtime'} eq "quiet") { pandora_planned_downtime_unset_quiet_elements($pa_config, @@ -2129,8 +2132,9 @@ sub pandora_planned_downtime_weekly_start($$) { db_do($dbh, 'UPDATE tplanned_downtime SET executed = 1 WHERE id = ?', $downtime->{'id'}); + print"pandora_planned_downtime_weekly_start\n"; pandora_event ($pa_config, - "Server ".$pa_config->{'servername'}." started planned downtime: ".$downtime->{'name'}, 0, 0, 1, 0, 0, 'system', 0, $dbh); + "Server ".$pa_config->{'servername'}." started planned downtime: ".safe_output($downtime->{'name'}), 0, 0, 1, 0, 0, 'system', 0, $dbh); if ($downtime->{'type_downtime'} eq "quiet") { pandora_planned_downtime_set_quiet_elements($pa_config, @@ -2243,8 +2247,10 @@ sub pandora_planned_downtime_weekly_stop($$) { db_do($dbh, 'UPDATE tplanned_downtime SET executed = 0 WHERE id = ?', $downtime->{'id'}); + + print"pandora_planned_downtime_weekly_stop\n"; pandora_event ($pa_config, - "Server ".$pa_config->{'servername'}." stopped planned downtime: ".$downtime->{'name'}, 0, 0, 1, 0, 0, 'system', 0, $dbh); + "Server ".$pa_config->{'servername'}." stopped planned downtime: ".safe_output($downtime->{'name'}), 0, 0, 1, 0, 0, 'system', 0, $dbh); if ($downtime->{'type_downtime'} eq "quiet") { pandora_planned_downtime_unset_quiet_elements($pa_config, @@ -2974,7 +2980,7 @@ sub pandora_create_agent ($$$$$$$$$$;$$$$$$$$$) { } logger ($pa_config, "Server '$server_name' CREATED agent '$agent_name' address '$address'.", 10); - pandora_event ($pa_config, "Agent [$alias] created by $server_name", $group_id, $agent_id, 2, 0, 0, 'new_agent', 0, $dbh); + pandora_event ($pa_config, "Agent [" . safe_output($alias) . "] created by $server_name", $group_id, $agent_id, 2, 0, 0, 'new_agent', 0, $dbh); return $agent_id; } diff --git a/pandora_server/lib/PandoraFMS/DataServer.pm b/pandora_server/lib/PandoraFMS/DataServer.pm index ebd8f860ee..dd4256e96d 100644 --- a/pandora_server/lib/PandoraFMS/DataServer.pm +++ b/pandora_server/lib/PandoraFMS/DataServer.pm @@ -333,19 +333,22 @@ sub process_xml_data ($$$$$) { if (defined ($data->{'group_id'}) && $data->{'group_id'} ne '') { $group_id = $data->{'group_id'}; if (! defined (get_group_name ($dbh, $group_id))) { - pandora_event ($pa_config, "Unable to create agent '$agent_name': group ID '" . $group_id . "' does not exist.", 0, 0, 0, 0, 0, 'error', 0, $dbh); + print "UNABLE GROUP ID\n"; + pandora_event ($pa_config, "Unable to create agent '" . safe_output($agent_name) . "': group ID '" . $group_id . "' does not exist.", 0, 0, 0, 0, 0, 'error', 0, $dbh); logger($pa_config, "Group ID " . $group_id . " does not exist.", 3); return; } } elsif (defined ($data->{'group'}) && $data->{'group'} ne '') { $group_id = get_group_id ($dbh, $data->{'group'}); if (! defined (get_group_name ($dbh, $group_id))) { - pandora_event ($pa_config, "Unable to create agent '$agent_name': group '" . $data->{'group'} . "' does not exist.", 0, 0, 0, 0, 0, 'error', 0, $dbh); + print "UNABLE GROUP\n"; + pandora_event ($pa_config, "Unable to create agent '" . safe_output($agent_name) . "': group '" . safe_output($data->{'group'}) . "' does not exist.", 0, 0, 0, 0, 0, 'error', 0, $dbh); logger($pa_config, "Group " . $data->{'group'} . " does not exist.", 3); return; } } else { - pandora_event ($pa_config, "Unable to create agent '$agent_name': autocreate_group $group_id does not exist. Edit the pandora_server.conf file and change it.", 0, 0, 0, 0, 0, 'error', 0, $dbh); + print "UNABLE AUTOCREATE\n"; + pandora_event ($pa_config, "Unable to create agent '" . safe_output($agent_name) . "': autocreate_group $group_id does not exist. Edit the pandora_server.conf file and change it.", 0, 0, 0, 0, 0, 'error', 0, $dbh); logger($pa_config, "Group id $group_id does not exist (check autocreate_group config token).", 3); return; } diff --git a/pandora_server/lib/PandoraFMS/ReconServer.pm b/pandora_server/lib/PandoraFMS/ReconServer.pm index b25c222bf7..3261729569 100644 --- a/pandora_server/lib/PandoraFMS/ReconServer.pm +++ b/pandora_server/lib/PandoraFMS/ReconServer.pm @@ -421,7 +421,7 @@ sub PandoraFMS::Recon::Base::create_agent($$) { $agent_id = pandora_create_agent($self->{'pa_config'}, $self->{'pa_config'}->{'servername'}, $host_name, $device, $self->{'group_id'}, 0, $id_os, '', 300, $self->{'dbh'}); return undef unless defined ($agent_id) and ($agent_id > 0); - pandora_event($self->{'pa_config'}, "[RECON] New " . $self->get_device_type($device) . " found (" . join(',', $self->get_addresses($device)) . ").", $self->{'group_id'}, $agent_id, 2, 0, 0, 'recon_host_detected', 0, $self->{'dbh'}); + pandora_event($self->{'pa_config'}, "[RECON] New " . safe_output($self->get_device_type($device)) . " found (" . join(',', safe_output($self->get_addresses($device))) . ").", $self->{'group_id'}, $agent_id, 2, 0, 0, 'recon_host_detected', 0, $self->{'dbh'}); $agent_learning = 1; # Create network profile modules for the agent From 38d216b1086fe088ace31f019d0782940a3eb323 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Wed, 25 Oct 2017 15:42:54 +0200 Subject: [PATCH 123/311] Fixed automonitoring on Windows --- pandora_server/lib/PandoraFMS/Core.pm | 36 +++++++++++++++----------- pandora_server/lib/PandoraFMS/Tools.pm | 29 +++++++++++++++++++++ 2 files changed, 50 insertions(+), 15 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 77db28e6e7..6184910c5e 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -4702,23 +4702,29 @@ sub pandora_self_monitoring ($$) { $xml_output .=" $agents_unknown"; $xml_output .=" "; - $xml_output .=" "; - $xml_output .=" System_Load_AVG"; - $xml_output .=" generic_data"; - $xml_output .=" $load_average"; - $xml_output .=" "; + if (defined($load_average)) { + $xml_output .=" "; + $xml_output .=" System_Load_AVG"; + $xml_output .=" generic_data"; + $xml_output .=" $load_average"; + $xml_output .=" "; + } - $xml_output .=" "; - $xml_output .=" Free_RAM"; - $xml_output .=" generic_data"; - $xml_output .=" $free_mem"; - $xml_output .=" "; + if (defined($free_mem)) { + $xml_output .=" "; + $xml_output .=" Free_RAM"; + $xml_output .=" generic_data"; + $xml_output .=" $free_mem"; + $xml_output .=" "; + } - $xml_output .=" "; - $xml_output .=" FreeDisk_SpoolDir"; - $xml_output .=" generic_data"; - $xml_output .=" $free_disk_spool"; - $xml_output .=" "; + if (defined($free_disk_spool)) { + $xml_output .=" "; + $xml_output .=" FreeDisk_SpoolDir"; + $xml_output .=" generic_data"; + $xml_output .=" $free_disk_spool"; + $xml_output .=" "; + } $xml_output .= ""; diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index e0dda9af4f..838721a6fb 100755 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -861,6 +861,24 @@ sub dateTimeToTimestamp { sub disk_free ($) { my $target = $_[0]; + my $OSNAME = $^O; + + # Get the free disk on data_in folder unit + if ($OSNAME eq "MSWin32") { + # Check relative path + my $unit; + if ($target =~ m/^([a-zA-Z]):/gi) { + $unit = $1/(1024*1024); + } else { + return; + } + # Get the free space of unit found + my $all_disk_info = `wmic logicaldisk get caption, freespace`; + if ($all_disk_info =~ m/$unit:\D*(\d+)/gmi){ + return $1; + } + return; + } # Try to use df command with Posix parameters... my $command = "df -k -P ".$target." | tail -1 | awk '{ print \$4/1024}'"; my $output = `$command`; @@ -874,6 +892,9 @@ sub load_average { if ($OSNAME eq "freebsd"){ $load_average = ((split(/\s+/, `/sbin/sysctl -n vm.loadavg`))[1]); + } elsif ($OSNAME eq "MSWin32") { + # Windows hasn't got load average. + $load_average = undef; } # by default LINUX calls else { @@ -896,6 +917,14 @@ sub free_mem { elsif ($OSNAME eq "netbsd"){ $free_mem = `cat /proc/meminfo | grep MemFree | awk '{ print \$2 }'`; } + elsif ($OSNAME eq "MSWin32"){ + $free_mem = `wmic OS get FreePhysicalMemory /Value`; + if ($free_mem =~ m/=(.*)$/gm) { + $free_mem = $1; + } else { + $free_mem = undef; + } + } # by default LINUX calls else { $free_mem = `free | grep Mem | awk '{ print \$4 }'`; From 7bd6f5e05dd6251d7c4b099e5944e61f0fe64639 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Wed, 25 Oct 2017 15:45:19 +0200 Subject: [PATCH 124/311] Added code to snmp filters form --- .../godmode/snmpconsole/snmp_filters.php | 133 ++++++++++++++++-- pandora_console/pandoradb.sql | 1 + 2 files changed, 120 insertions(+), 14 deletions(-) diff --git a/pandora_console/godmode/snmpconsole/snmp_filters.php b/pandora_console/godmode/snmpconsole/snmp_filters.php index 085b23957d..3def7ed776 100644 --- a/pandora_console/godmode/snmpconsole/snmp_filters.php +++ b/pandora_console/godmode/snmpconsole/snmp_filters.php @@ -28,6 +28,7 @@ $update_filter = (int) get_parameter ('update_filter', -2); $delete_filter = (int) get_parameter ('delete_filter', -1); $description = (string) get_parameter ('description', ''); $filter = (string) get_parameter ('filter', ''); +$index_post = (int) get_parameter('index_post', 0); // Create/update header if ($edit_filter > -2) { @@ -45,8 +46,37 @@ else {// Overview header // Create/update filter if ($update_filter > -2) { if ($update_filter > -1) { - $values = array('description' => $description, 'filter' => $filter); - $result = db_process_sql_update('tsnmp_filter', $values, array('id_snmp_filter' => $update_filter)); + $new_unified_id = (db_get_value_sql("SELECT unified_filters_id FROM tsnmp_filter WHERE id_snmp_filter = " . $update_filter)); + $elements = get_parameter('elements', array()); + + if ($index_post == 1) { + $filter = get_parameter('filter_' . $update_filter); + $values = array('description' => $description, 'filter' => $filter, 'unified_filters_id' => $new_unified_id); + $result = db_process_sql_update('tsnmp_filter', $values, array('id_snmp_filter' => $update_filter)); + } + else { + $elements = explode(",", $elements); + foreach ($elements as $e) { + $filter = get_parameter('filter_' . $e); + $values = array('description' => $description, 'filter' => $filter, 'unified_filters_id' => $new_unified_id); + $result = db_process_sql_update('tsnmp_filter', $values, array('id_snmp_filter' => $e)); + } + if (count($elements) == 1) { + $new_unified_id = (db_get_value_sql("SELECT MAX(unified_filters_id) FROM tsnmp_filter")) + 1; + + $filter = get_parameter('filter_' . $elements[0]); + $values = array('description' => $description, 'filter' => $filter, 'unified_filters_id' => $new_unified_id); + $result = db_process_sql_update('tsnmp_filter', $values, array('id_snmp_filter' => $elements[0])); + } + for ($i = 1; $i < $index_post; $i++) { + $filter = get_parameter('filter_' . $i); + $values = array( + 'description' => $description, + 'filter' => $filter, + 'unified_filters_id' => $new_unified_id); + $result = db_process_sql_insert('tsnmp_filter', $values); + } + } if ($result === false) { ui_print_error_message (__('There was a problem updating the filter')); } @@ -55,10 +85,27 @@ if ($update_filter > -2) { } } else { - $values = array( - 'description' => $description, - 'filter' => $filter); - $result = db_process_sql_insert('tsnmp_filter', $values); + $new_unified_id = (db_get_value_sql("SELECT MAX(unified_filters_id) FROM tsnmp_filter")) + 1; + + if ($index_post == 1) { + $filter = get_parameter('filter_0'); + $values = array( + 'description' => $description, + 'filter' => $filter, + 'unified_filters_id' => 0); + $result = db_process_sql_insert('tsnmp_filter', $values); + } + else { + for ($i = 0; $i < $index_post; $i++) { + $filter = get_parameter('filter_' . $i); + $values = array( + 'description' => $description, + 'filter' => $filter, + 'unified_filters_id' => $new_unified_id); + $result = db_process_sql_insert('tsnmp_filter', $values); + } + } + if ($result === false) { ui_print_error_message (__('There was a problem creating the filter')); } @@ -68,6 +115,16 @@ if ($update_filter > -2) { } } else if ($delete_filter > -1) { // Delete + $filters_to_upd = db_get_all_rows_sql("SELECT * FROM tsnmp_filter WHERE unified_filters_id = (SELECT unified_filters_id FROM tsnmp_filter WHERE id_snmp_filter = " . $delete_filter . ")"); + if (count($filters_to_upd) == 2) { + foreach ($filters_to_upd as $fil) { + if ($fil['id_snmp_filter'] != $delete_filter) { + $values = array('description' => $fil['description'], 'filter' => $fil['filter'], 'unified_filters_id' => 0); + db_process_sql_update('tsnmp_filter', $values, array('id_snmp_filter' => $fil['id_snmp_filter'])); + } + } + + } $result = db_process_sql_delete('tsnmp_filter', array('id_snmp_filter' => $delete_filter)); if ($result === false) { ui_print_error_message (__('There was a problem deleting the filter')); @@ -88,19 +145,46 @@ if ($edit_filter > -1) { // Create/update form if ($edit_filter > -2) { + $index = $index_post; $table->data = array (); + $table->id = 'filter_table'; $table->width = '100%'; $table->class = 'databox filters'; $table->data[0][0] = __('Description'); $table->data[0][1] = html_print_input_text ('description', $description, '', 60, 100, true); $table->data[1][0] = __('Filter'); - $table->data[1][1] = html_print_input_text ('filter', $filter, '', 60, 100, true); - $table->data[1][1] .= ui_print_help_tip (__("This field contains a substring, could be part of a IP address, a numeric OID, or a plain substring") . SEPARATOR_COLUMN, true); - + if ($edit_filter > -1) { + $filters = db_get_all_rows_sql("SELECT * FROM tsnmp_filter WHERE unified_filters_id = (SELECT unified_filters_id FROM tsnmp_filter WHERE id_snmp_filter = " . $edit_filter . ")"); + $j = 1; + foreach ($filters as $f) { + if ($j != 1) { + $table->data[$j][0] = ""; + } + $table->data[$j][1] = html_print_input_text ('filter_' . $f['id_snmp_filter'], $f['filter'], '', 60, 100, true); + if ($j == 1) { + $table->data[$j][1] .= ui_print_help_tip (__("This field contains a substring, could be part of a IP address, a numeric OID, or a plain substring") . SEPARATOR_COLUMN, true); + } + $j++; + } + } + else { + $table->data[1][1] = html_print_input_text ('filter_' . $index, $filter, '', 60, 100, true); + $table->data[1][1] .= ui_print_help_tip (__("This field contains a substring, could be part of a IP address, a numeric OID, or a plain substring") . SEPARATOR_COLUMN, true); + } + $index++; echo ''; html_print_input_hidden ('update_filter', $edit_filter); + html_print_input_hidden ('index_post', $index); + if ($edit_filter > -1) { + $filters_to_post = array(); + foreach ($filters as $fil) { + $filters_to_post[] = $fil['id_snmp_filter']; + } + html_print_input_hidden ('elements', implode(",", $filters_to_post)); + } html_print_table ($table); echo '
    '; + html_print_image('images/add.png', false, array('id' => 'add_filter', 'alt' => __('Click to add new filter'), 'title' => __('Click to add new filter'), 'style' => 'float:left;')); if ($edit_filter > -1) { html_print_submit_button (__('Update'), 'submit_button', false, 'class="sub upd"'); } @@ -112,7 +196,7 @@ if ($edit_filter > -2) { // Overview } else { - $result = db_get_all_rows_in_table ("tsnmp_filter"); + $result = db_get_all_rows_sql("SELECT * FROM tsnmp_filter ORDER BY unified_filters_id ASC"); if ($result === false) { $result = array (); require_once ($config['homedir'] . "/general/firts_task/snmp_filters.php"); @@ -130,15 +214,22 @@ else { $table->head[0] = __('Description'); $table->head[1] = __('Filter'); - $table->head[2] = __('Action'); - $table->size[2] = "50px"; - $table->align[2] = 'center'; + $table->head[2] = __('Function'); + $table->head[3] = __('Action'); + $table->size[3] = "50px"; + $table->align[3] = 'center'; foreach ($result as $row) { $data = array (); $data[0] = '' . $row['description'] . ''; $data[1] = $row['filter']; - $data[2] = '' . + if ($row['unified_filters_id'] == 0) { + $data[2] = "OR"; + } + else { + $data[2] = "AND (" . $row['unified_filters_id'] . ")"; + } + $data[3] = '' . html_print_image("images/config.png", true, array("border" => '0', "alt" => __('Update'))) . '' . '  ' . html_print_image("images/cross.png", true, array("border" => '0', "alt" => __('Delete'))) . ''; @@ -157,3 +248,17 @@ else { echo '
    '; } ?> + + diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 0d749db694..7b8f09de5f 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1707,6 +1707,7 @@ CREATE TABLE IF NOT EXISTS `tsnmp_filter` ( `id_snmp_filter` int(10) unsigned NOT NULL auto_increment, `description` varchar(255) default '', `filter` varchar(255) default '', + `unified_filters_id` int(10) not null default 0, PRIMARY KEY (`id_snmp_filter`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; From 58cbb2fe484ff2ac63a3f40b3124dd0789b55925 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Wed, 25 Oct 2017 16:04:05 +0200 Subject: [PATCH 125/311] Add new fields to filter in search input text and operative selector filter - #1412 --- .../godmode/agentes/modificar_agente.php | 29 +++++++++++++++++-- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/agentes/modificar_agente.php b/pandora_console/godmode/agentes/modificar_agente.php index 3c5406c46c..ebf90ea11f 100644 --- a/pandora_console/godmode/agentes/modificar_agente.php +++ b/pandora_console/godmode/agentes/modificar_agente.php @@ -24,6 +24,7 @@ $sortField = get_parameter('sort_field'); $sort = get_parameter('sort', 'none'); $recursion = (bool) get_parameter('recursion',false); $disabled = get_parameter('disabled', 0); +$os = get_parameter('os', 0); if ($ag_group == -1 ) $ag_group = (int) get_parameter ("ag_group", -1); @@ -163,6 +164,20 @@ html_print_select($fields,"disabled",$disabled,'this.form.submit()'); echo ""; +echo ""; +echo __('Operative System') . ' '; + +$pre_fields = db_get_all_rows_sql('select distinct(tagente.id_os),tconfig_os.description from tagente,tconfig_os where tagente.id_os = tconfig_os.id_os'); +$fields = array(); + +foreach ($pre_fields as $key => $value) { + $fields[$value['id_os']] = $value['description']; +} + +html_print_select($fields,"os",$os,'this.form.submit()','All',0); + +echo ""; + echo ""; echo __('Recursion') . ' '; html_print_checkbox ("recursion", 1, $recursion, false, false, 'this.form.submit()'); @@ -171,6 +186,8 @@ echo ""; echo __('Search') . ' '; html_print_input_text ("search", $search, '', 12); +echo ui_print_help_tip(__('Search filter by alias, name, description, IP address or custom fields content'), true); + echo ""; echo ""; echo ""; @@ -296,20 +313,26 @@ if ($search != "") { }else{ $search_sql = " AND ( nombre " . $order_collation . " LIKE LOWER('%$search%') OR alias " . $order_collation . " - LIKE LOWER('%$search%')) "; + LIKE LOWER('%$search%') OR comentarios " . $order_collation . " LIKE LOWER('%$search%') + OR EXISTS (SELECT * FROM tagent_custom_data + WHERE id_agent = id_agente AND description LIKE '%$search%'))"; } } if ($disabled == 1) { - $search_sql = " AND disabled = ". $disabled . $search_sql; + $search_sql .= " AND disabled = ". $disabled . $search_sql; } else { if ($disabled == 0) { - $search_sql = " AND disabled = 0" . $search_sql; + $search_sql .= " AND disabled = 0" . $search_sql; } } +if($os != 0){ + $search_sql .= " AND id_os = " . $os; +} + // Show only selected groups if ($ag_group > 0) { From 47c7f23208b35d41a2db329e635added739dd87b Mon Sep 17 00:00:00 2001 From: enriquecd Date: Wed, 25 Oct 2017 16:40:21 +0200 Subject: [PATCH 126/311] Change manage alerts list enabled / disabled select text - #1410 --- pandora_console/godmode/alerts/alert_list.list.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/alerts/alert_list.list.php b/pandora_console/godmode/alerts/alert_list.list.php index 4b57931a2c..8a2a7c6702 100644 --- a/pandora_console/godmode/alerts/alert_list.list.php +++ b/pandora_console/godmode/alerts/alert_list.list.php @@ -132,8 +132,8 @@ $form_filter .= ""; $form_filter .= ""; $form_filter .= "".__('Enabled / Disabled').""; $ed_list = array (); -$ed_list[0] = __('Enable'); -$ed_list[1] = __('Disable'); +$ed_list[0] = __('Enabled'); +$ed_list[1] = __('Disabled'); $form_filter .= html_print_select ($ed_list, 'enabledisable', $enabledisable, '', __('All'), -1, true); $form_filter .= "".__('Standby').""; $sb_list = array (); From efd8c850a06c8118c9c95590bb90f1d9d3517973 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Wed, 25 Oct 2017 16:47:58 +0200 Subject: [PATCH 127/311] Added new filter function to snmp traps --- pandora_server/lib/PandoraFMS/SNMPServer.pm | 38 ++++++++++++++------- 1 file changed, 25 insertions(+), 13 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/SNMPServer.pm b/pandora_server/lib/PandoraFMS/SNMPServer.pm index bc7b3a708a..2ea002bb1b 100644 --- a/pandora_server/lib/PandoraFMS/SNMPServer.pm +++ b/pandora_server/lib/PandoraFMS/SNMPServer.pm @@ -345,22 +345,34 @@ sub pandora_snmptrapd { sub matches_filter ($$$) { my ($dbh, $pa_config, $string) = @_; - # Get filters - my @filters = get_db_rows ($dbh, 'SELECT filter FROM tsnmp_filter'); - foreach my $filter (@filters) { - my $regexp = safe_output($filter->{'filter'}) ; - my $eval_result; + my @filter_unique_functions = get_db_rows ($dbh, 'SELECT DISTINCT(unified_filters_id) FROM tsnmp_filter ORDER BY unified_filters_id'); - # eval protects against server down (by invalid regular expressions) - $eval_result = eval { - $string =~ m/$regexp/i ; - }; + foreach my $filter_unique_func (@filter_unique_functions) { + # Get filters + my @filters = get_db_rows ($dbh, 'SELECT filter FROM tsnmp_filter WHERE unified_filters_id = ' . $filter_unique_func->{'unified_filters_id'}); - if ($eval_result) { - logger($pa_config, "Trap '$string' matches filter '$regexp'. Discarding...", 10); - return 1; - } + my $eval_acum = 1; + foreach my $filter (@filters) { + my $regexp = safe_output($filter->{'filter'}) ; + my $eval_result; + # eval protects against server down (by invalid regular expressions) + $eval_result = eval { + $string =~ m/$regexp/i ; + }; + + if ($eval_result && $eval_acum) { + $eval_acum = 1; + } + else { + $eval_acum = 0; + last; + } + } + + if ($eval_acum) { + return 1; + } } return 0; From db056100e2f7807f6c701d8887694d2904569838 Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Wed, 25 Oct 2017 17:44:59 +0200 Subject: [PATCH 128/311] [Console > Tree view] Added a filter by group name and improved the filter by group id --- pandora_console/include/class/Tree.class.php | 70 +++++++++++--------- pandora_console/operation/tree.php | 21 +++--- 2 files changed, 53 insertions(+), 38 deletions(-) diff --git a/pandora_console/include/class/Tree.class.php b/pandora_console/include/class/Tree.class.php index 6dc52ea68d..21d201a6d4 100644 --- a/pandora_console/include/class/Tree.class.php +++ b/pandora_console/include/class/Tree.class.php @@ -23,6 +23,7 @@ class Tree { protected $filter = array(); protected $childrenMethod = "on_demand"; + protected $userGroupsACL; protected $userGroups; protected $strictACL = false; @@ -36,45 +37,54 @@ class Tree { $this->id = $id; $this->rootID = !empty($rootID) ? $rootID : $id; $this->serverID = $serverID; - $this->childrenMethod = $childrenMethod; - $this->access = $access; - - $userGroups = users_get_groups(false, $this->access); + $this->childrenMethod = $childrenMethod; + $this->access = $access; - if (empty($userGroups)) - $this->userGroups = false; - else - $this->userGroups = $userGroups; + $userGroupsACL = users_get_groups(false, $this->access); + $this->userGroupsACL = empty($userGroupsACL) ? false : $userGroupsACL; + $this->userGroups = $this->userGroupsACL; global $config; include_once($config['homedir']."/include/functions_servers.php"); include_once($config['homedir']."/include/functions_modules.php"); require_once($config['homedir']."/include/functions_tags.php"); - if (is_metaconsole()) - enterprise_include_once("meta/include/functions_ui_meta.php"); + if (is_metaconsole()) enterprise_include_once("meta/include/functions_ui_meta.php"); $this->strictACL = (bool) db_get_value("strict_acl", "tusuario", "id_user", $config['id_user']); $this->acltags = tags_get_user_module_and_tags($config['id_user'], $this->access); } - public function setType($type) { - $this->type = $type; - } - public function setFilter($filter) { + // Filter the user groups + if (!empty($filter['groupID'])) { + $group_id = $filter['groupID']; + $this->userGroups = isset($this->userGroupsACL[$group_id]) + ? array($group_id => $this->userGroupsACL[$group_id]) + : array(); + } + else if (!empty($filter['searchGroup'])) { + $groups = db_get_all_rows_filter('tgrupo', array('nombre' => '%' . $filter['searchGroup'] . '%')); + + // Save the groups which intersect + $userGroupsACL = $this->userGroupsACL; + $this->userGroups = array_reduce($groups, function ($userGroups, $group) use ($userGroupsACL) { + $group_id = $group['id_grupo']; + if (isset($userGroupsACL[$group_id])) { + $userGroups[$group_id] = $userGroupsACL[$group_id]; + } + + return $userGroups; + }, array()); + } + else { + $this->userGroups = $this->userGroupsACL; + } + $this->filter = $filter; } - public function isStrict () { - return $this->strictACL; - } - - public function setStrict ($value) { - $this->strictACL = (bool) $value; - } - protected function getAgentStatusFilter ($status = -1) { if ($status == -1) $status = $this->filter['statusAgent']; @@ -323,7 +333,7 @@ class Tree { case 'group': // ACL Group $user_groups_str = "-1"; - $group_acl = ""; + $group_filter = ""; if (!$this->strictACL) { if (empty($this->userGroups)) { return; @@ -338,7 +348,7 @@ class Tree { // Asking for all groups. else { $user_groups_str = implode(",", array_keys($this->userGroups)); - $group_acl = "AND ta.id_grupo IN ($user_groups_str)"; + $group_filter = "AND ta.id_grupo IN ($user_groups_str)"; } } else { @@ -356,7 +366,7 @@ class Tree { } } } - $group_acl = "AND ta.id_grupo IN ($user_groups_str)"; + $group_filter = "AND ta.id_grupo IN ($user_groups_str)"; } switch ($type) { @@ -390,7 +400,7 @@ class Tree { $module_status_join WHERE ta.disabled = 0 AND ta.id_grupo = $item_for_count - $group_acl + $group_filter $agent_search_filter $agent_status_filter"; $sql = $this->getAgentCountersSql($agent_table); @@ -411,7 +421,7 @@ class Tree { FROM tmetaconsole_agent ta WHERE ta.disabled = 0 AND ta.id_grupo = $item_for_count - $group_acl + $group_filter $agent_search_filter $agent_status_filter"; $sql = $this->getAgentCountersSql($agent_table); @@ -439,7 +449,7 @@ class Tree { $module_status_join WHERE ta.disabled = 0 AND ta.id_grupo = $rootID - $group_acl + $group_filter $agent_search_filter $agent_status_filter GROUP BY $group_by_fields @@ -456,7 +466,7 @@ class Tree { FROM tmetaconsole_agent ta WHERE ta.disabled = 0 AND ta.id_grupo = $rootID - $group_acl + $group_filter $agent_search_filter $agent_status_filter ORDER BY $order_fields"; @@ -498,7 +508,7 @@ class Tree { ON ta.disabled = 0 AND tam.id_agente = ta.id_agente AND ta.id_grupo = $rootID - $group_acl + $group_filter $agent_search_filter $agent_status_filter WHERE tam.disabled = 0 diff --git a/pandora_console/operation/tree.php b/pandora_console/operation/tree.php index c7a23fb0fd..993f95c4fe 100755 --- a/pandora_console/operation/tree.php +++ b/pandora_console/operation/tree.php @@ -18,6 +18,7 @@ global $config; $pure = get_parameter('pure', 0); $tab = get_parameter('tab', 'group'); +$search_group = get_parameter('searchGroup', ''); $search_agent = get_parameter('searchAgent', ''); $status_agent = get_parameter('statusAgent', AGENT_STATUS_ALL); $search_module = get_parameter('searchModule', ''); @@ -135,13 +136,16 @@ $agent_status_arr[AGENT_STATUS_UNKNOWN] = __('Unknown'); $agent_status_arr[AGENT_STATUS_NOT_INIT] = __('Not init'); $row = array(); +$row[] = __('Search group'); +$row[] = html_print_input_text("search_group", $search_group, '', is_metaconsole() ? 70 : 40, 30, true); + +$table->data[] = $row; + +$row = array(); +$row[] = __('Search agent'); +$row[] = html_print_input_text("search_agent", $search_agent, '', is_metaconsole() ? 70 : 40, 30, true); $row[] = __('Agent status'); $row[] = html_print_select($agent_status_arr, "status_agent", $status_agent, '', '', 0, true); -$row[] = __('Search agent'); -if (is_metaconsole()) - $row[] = html_print_input_text("search_agent", $search_agent, '', 70, 30, true); -else - $row[] = html_print_input_text("search_agent", $search_agent, '', 40, 30, true); // Button $row[] = html_print_submit_button(__('Filter'), "uptbutton", false, 'class="sub search"', true); @@ -160,10 +164,10 @@ if (!is_metaconsole()) { $module_status_arr[AGENT_MODULE_STATUS_NOT_INIT] = __('Not init'); $row = array(); - $row[] = __('Module status'); - $row[] = html_print_select($module_status_arr, "status_module", $status_module, '', '', 0, true); $row[] = __('Search module'); $row[] = html_print_input_text("search_module", $search_module, '', 40, 30, true); + $row[] = __('Module status'); + $row[] = html_print_select($module_status_arr, "status_module", $status_module, '', '', 0, true); $table->data[] = $row; } @@ -240,8 +244,9 @@ enterprise_hook('close_meta_frame'); var parameters = {}; parameters['page'] = "include/ajax/tree.ajax"; parameters['getChildren'] = 1; - parameters['filter'] = {}; parameters['type'] = ""; + parameters['filter'] = {}; + parameters['filter']['searchGroup'] = $("input#text-search_group").val(); parameters['filter']['searchAgent'] = $("input#text-search_agent").val(); parameters['filter']['statusAgent'] = $("select#status_agent").val(); parameters['filter']['searchModule'] = $("input#text-search_module").val(); From 7379243946fd85c50eb854547caa3dcb9db56905 Mon Sep 17 00:00:00 2001 From: fermin831 Date: Wed, 25 Oct 2017 18:40:58 +0200 Subject: [PATCH 129/311] Fixed lower than 1 values on gauges --- pandora_console/include/graphs/pandora.d3.js | 26 +++++++++++++------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/pandora_console/include/graphs/pandora.d3.js b/pandora_console/include/graphs/pandora.d3.js index 95a914104f..79dfceb21d 100644 --- a/pandora_console/include/graphs/pandora.d3.js +++ b/pandora_console/include/graphs/pandora.d3.js @@ -1037,19 +1037,19 @@ function createGauges(data, width, height, font_size, no_data_image, font) { label = label.replace(/(/g,'\('); label = label.replace(/)/g,'\)'); - minimun_warning = Math.round(parseFloat( data[key].min_warning ),2); - maximun_warning = Math.round(parseFloat( data[key].max_warning ),2); - minimun_critical = Math.round(parseFloat( data[key].min_critical ),2); - maximun_critical = Math.round(parseFloat( data[key].max_critical ),2); + minimun_warning = round_with_decimals(parseFloat( data[key].min_warning )); + maximun_warning = round_with_decimals(parseFloat( data[key].max_warning )); + minimun_critical = round_with_decimals(parseFloat( data[key].min_critical )); + maximun_critical = round_with_decimals(parseFloat( data[key].max_critical )); - mininum = Math.round(parseFloat(data[key].min),2); - maxinum = Math.round(parseFloat(data[key].max),2); + mininum = round_with_decimals(parseFloat(data[key].min)); + maxinum = round_with_decimals(parseFloat(data[key].max)); critical_inverse = parseInt(data[key].critical_inverse); warning_inverse = parseInt(data[key].warning_inverse); - valor = Math.round(parseFloat(data[key].value),2); - + valor = round_with_decimals(data[key].value); + if (isNaN(valor)) valor = null; createGauge(nombre, label, valor, mininum, maxinum, @@ -1281,7 +1281,7 @@ function Gauge(placeholderName, configuration, font) { var pointerContainer = this.body.select(".pointerContainer"); - pointerContainer.selectAll("text").text(Math.round(value)); + pointerContainer.selectAll("text").text(round_with_decimals(value)); var pointer = pointerContainer.selectAll("path"); pointer.transition() @@ -1492,4 +1492,12 @@ function print_phases_donut (recipient, phases) { polyline.exit() .remove(); } +} + +function round_with_decimals (value, multiplier = 1) { + if ((value * multiplier) == 0) return 0; + if ((value * multiplier) >= 1) { + return Math.round(value * multiplier) / multiplier; + } + return round_with_decimals (value, multiplier * 10); } \ No newline at end of file From e638113f28105eb3c750e849620f79c229eab32f Mon Sep 17 00:00:00 2001 From: fermin831 Date: Wed, 25 Oct 2017 20:31:18 +0200 Subject: [PATCH 130/311] Added autodisable mode help --- .../include/help/en/help_module_definition.php | 9 +++++---- .../include/help/es/help_module_definition.php | 8 +++++--- .../include/help/ja/help_module_definition.php | 2 ++ 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/pandora_console/include/help/en/help_module_definition.php b/pandora_console/include/help/en/help_module_definition.php index 8173a8093b..81bdaf95ea 100644 --- a/pandora_console/include/help/en/help_module_definition.php +++ b/pandora_console/include/help/en/help_module_definition.php @@ -5,11 +5,12 @@ ?>

    Module definition

    -There are two modes for an agent: +There are three modes for an agent:

      -
    • Learning mode: all the modules sent by the agent are accepted. If modules are not defined, they will be automatically defined by the system. It is recommended to activate the agents in this mode and change it once the user is familiar with Pandora FMS.
      From version 4.0.3, in this mode, Pandora console collect all the configuration specified by the agent configuration file the first time and thereafter any changes should be made through console, will not catch changes in config file. -
    • +
    • Learning mode: All the modules sent by the agent are accepted. If modules are not defined, they will be automatically defined by the system. It is recommended to activate the agents in this mode and change it once the user is familiar with Pandora FMS.
      From version 4.0.3, in this mode, Pandora console collect all the configuration specified by the agent configuration file the first time and thereafter any changes should be made through console, will not catch changes in config file.

    • -
    • Normal mode: the modules in this mode must be configured manually. The self definition of the modules is not allowed in this mode.
    • +
    • Normal mode: The modules in this mode must be configured manually. The self definition of the modules is not allowed in this mode.
    • +
      +
    • Autodisable mode: It behaves exactly the same as an agent in learning mode: when the first XML reaches it, the first agent is created and, on each report, if there are new modules they can also be added automatically. Nevertheless, when all modules from an agent that are in autodisable mode are also marked as unknown, the agent is automatically disabled. In any case, if the agent reports again, it gets enabled again on its own.
    diff --git a/pandora_console/include/help/es/help_module_definition.php b/pandora_console/include/help/es/help_module_definition.php index e31ac65d6c..ff85f8b326 100644 --- a/pandora_console/include/help/es/help_module_definition.php +++ b/pandora_console/include/help/es/help_module_definition.php @@ -6,10 +6,12 @@

    Definición de módulo

    -Existen dos modos para un agente: +Existen tres modos para un agente:

      -
    • Modo aprendizaje: todos los módulos enviados por el agente se aceptan. Si los módulos no están definidos, el sistema los creará automáticamente. Se recomienda activar los agentes en este modo y cambiarlo una vez que se el operador se ha familiarizado con Pandora FMS. A partir de la versión 4.0.3, en este modo Pandora recogerá en consola toda la configuración indicada por el fichero de configuración del agente la primera vez y a partir de entonces todas las modificaciones se deberán realizar a través de consola, no cogerá cambios en el fichero de configuración.
    • +
    • Modo aprendizaje:Si el XML recibido del agente software contiene nuevos módulos, éstos serán automáticamente creados. Este es el comportamiento por defecto.

    • -
    • Modo normal: los módulos en este modo se deben configurar manualmente. No se permite la definición automática en este modo.
    • +
    • Modo normal:No se crearán nuevos módulos que lleguen en el XML si no han sido declarados previamente en la consola.
    • +
      +
    • Modo auto deshabilitado:Similar al modo aprendizaje, en este modo, además, si todos los módulos pasan a estado desconocido el agente se deshabilitará automáticamente, pasando a habilitarse de nuevo si recibe nueva información.
    diff --git a/pandora_console/include/help/ja/help_module_definition.php b/pandora_console/include/help/ja/help_module_definition.php index e7e4055d18..570c7cd236 100644 --- a/pandora_console/include/help/ja/help_module_definition.php +++ b/pandora_console/include/help/ja/help_module_definition.php @@ -11,4 +11,6 @@
  • 通常モード: このモードでは、モジュール設定を手動で実施する必要があります。自動設定は行われません。
  • +
    +
  • Autodisable mode: In terms of creating agents and modules it behaves exactly the same as an agent in learning mode: when the first XML reaches it, the first agent is created and, on each report, if there are new modules they can also be added automatically. Nevertheless, when all modules from an agent that are in autodisable mode are also marked as unknown, the agent is automatically disabled. In any case, if the agent reports again, it gets enabled again on its own.
  • From 0a742917305ee5a019cd211be1f6d84d5a908e8d Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 26 Oct 2017 00:01:09 +0200 Subject: [PATCH 131/311] 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.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.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 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 10b3bf4b4e..678bc4dbc7 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.714-171025 +Version: 7.0NG.714-171026 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 4217b2dd1e..c5c86c8ece 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.714-171025" +pandora_version="7.0NG.714-171026" 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 d7bfa6bbca..dc6e266b6b 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -41,7 +41,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.714'; -use constant AGENT_BUILD => '171025'; +use constant AGENT_BUILD => '171026'; # 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 54cc1ea457..b9463d44e9 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.714 -%define release 171025 +%define release 171026 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 2f10142e0e..532bc1ba63 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.714 -%define release 171025 +%define release 171026 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 13d0edace0..8aabf312e2 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.714" -PI_BUILD="171025" +PI_BUILD="171026" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 898b87abad..044490051c 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{171025} +{171026} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index f7562bd0da..dac37430c2 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.714(Build 171025)") +#define PANDORA_VERSION ("7.0NG.714(Build 171026)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 7a3ba2e871..c34abc2ebe 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.714(Build 171025))" + VALUE "ProductVersion", "(7.0NG.714(Build 171026))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index a1d78610d1..0f7f4593d0 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.714-171025 +Version: 7.0NG.714-171026 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 a3d80eec1a..19b0e092c0 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.714-171025" +pandora_version="7.0NG.714-171026" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index d4535e5f6c..997b5b3955 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -22,7 +22,7 @@ /** * Pandora build version and version */ -$build_version = 'PC171025'; +$build_version = 'PC171026'; $pandora_version = 'v7.0NG.714'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index e23846f4ab..b97816035e 100755 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -71,7 +71,7 @@
    Date: Thu, 26 Oct 2017 11:03:08 +0200 Subject: [PATCH 132/311] Added visual upgrades to filter view --- .../godmode/snmpconsole/snmp_filters.php | 151 ++++++++++++------ pandora_console/include/ajax/snmp.ajax.php | 9 ++ pandora_server/lib/PandoraFMS/SNMPServer.pm | 11 +- 3 files changed, 116 insertions(+), 55 deletions(-) diff --git a/pandora_console/godmode/snmpconsole/snmp_filters.php b/pandora_console/godmode/snmpconsole/snmp_filters.php index 3def7ed776..9316b36b05 100644 --- a/pandora_console/godmode/snmpconsole/snmp_filters.php +++ b/pandora_console/godmode/snmpconsole/snmp_filters.php @@ -45,31 +45,27 @@ else {// Overview header // Create/update filter if ($update_filter > -2) { + // UPDATE if ($update_filter > -1) { $new_unified_id = (db_get_value_sql("SELECT unified_filters_id FROM tsnmp_filter WHERE id_snmp_filter = " . $update_filter)); $elements = get_parameter('elements', array()); - if ($index_post == 1) { - $filter = get_parameter('filter_' . $update_filter); + $elements = explode(",", $elements); + foreach ($elements as $e) { + $filter = get_parameter('filter_' . $e); $values = array('description' => $description, 'filter' => $filter, 'unified_filters_id' => $new_unified_id); - $result = db_process_sql_update('tsnmp_filter', $values, array('id_snmp_filter' => $update_filter)); + $result = db_process_sql_update('tsnmp_filter', $values, array('id_snmp_filter' => $e)); } - else { - $elements = explode(",", $elements); - foreach ($elements as $e) { - $filter = get_parameter('filter_' . $e); - $values = array('description' => $description, 'filter' => $filter, 'unified_filters_id' => $new_unified_id); - $result = db_process_sql_update('tsnmp_filter', $values, array('id_snmp_filter' => $e)); - } - if (count($elements) == 1) { - $new_unified_id = (db_get_value_sql("SELECT MAX(unified_filters_id) FROM tsnmp_filter")) + 1; + if (count($elements) == 1) { + $new_unified_id = (db_get_value_sql("SELECT MAX(unified_filters_id) FROM tsnmp_filter")) + 1; - $filter = get_parameter('filter_' . $elements[0]); - $values = array('description' => $description, 'filter' => $filter, 'unified_filters_id' => $new_unified_id); - $result = db_process_sql_update('tsnmp_filter', $values, array('id_snmp_filter' => $elements[0])); - } - for ($i = 1; $i < $index_post; $i++) { - $filter = get_parameter('filter_' . $i); + $filter = get_parameter('filter_' . $elements[0]); + $values = array('description' => $description, 'filter' => $filter, 'unified_filters_id' => $new_unified_id); + $result = db_process_sql_update('tsnmp_filter', $values, array('id_snmp_filter' => $elements[0])); + } + for ($i = 1; $i < $index_post; $i++) { + $filter = get_parameter('filter_' . $i); + if ($filter != "") { $values = array( 'description' => $description, 'filter' => $filter, @@ -77,6 +73,7 @@ if ($update_filter > -2) { $result = db_process_sql_insert('tsnmp_filter', $values); } } + if ($result === false) { ui_print_error_message (__('There was a problem updating the filter')); } @@ -84,6 +81,7 @@ if ($update_filter > -2) { ui_print_success_message (__('Successfully updated')); } } + // CREATE else { $new_unified_id = (db_get_value_sql("SELECT MAX(unified_filters_id) FROM tsnmp_filter")) + 1; @@ -115,17 +113,15 @@ if ($update_filter > -2) { } } else if ($delete_filter > -1) { // Delete - $filters_to_upd = db_get_all_rows_sql("SELECT * FROM tsnmp_filter WHERE unified_filters_id = (SELECT unified_filters_id FROM tsnmp_filter WHERE id_snmp_filter = " . $delete_filter . ")"); - if (count($filters_to_upd) == 2) { - foreach ($filters_to_upd as $fil) { - if ($fil['id_snmp_filter'] != $delete_filter) { - $values = array('description' => $fil['description'], 'filter' => $fil['filter'], 'unified_filters_id' => 0); - db_process_sql_update('tsnmp_filter', $values, array('id_snmp_filter' => $fil['id_snmp_filter'])); - } - } - + $unified_id_to_delete = (db_get_value_sql("SELECT unified_filters_id FROM tsnmp_filter WHERE id_snmp_filter = " . $delete_filter)); + + if ($unified_id_to_delete == 0) { + $result = db_process_sql_delete('tsnmp_filter', array('id_snmp_filter' => $delete_filter)); } - $result = db_process_sql_delete('tsnmp_filter', array('id_snmp_filter' => $delete_filter)); + else { + $result = db_process_sql_delete('tsnmp_filter', array('unified_filters_id' => $unified_id_to_delete)); + } + if ($result === false) { ui_print_error_message (__('There was a problem deleting the filter')); } @@ -164,7 +160,11 @@ if ($edit_filter > -2) { if ($j == 1) { $table->data[$j][1] .= ui_print_help_tip (__("This field contains a substring, could be part of a IP address, a numeric OID, or a plain substring") . SEPARATOR_COLUMN, true); } + else { + $table->data[$j][1] .= html_print_image('images/cross.png', true, array('id' => 'delete_filter_' . $f['id_snmp_filter'], 'alt' => __('Click to add new filter'), 'title' => __('Click to add new filter'))); + } $j++; + $index++; } } else { @@ -196,13 +196,13 @@ if ($edit_filter > -2) { // Overview } else { - $result = db_get_all_rows_sql("SELECT * FROM tsnmp_filter ORDER BY unified_filters_id ASC"); - if ($result === false) { - $result = array (); - require_once ($config['homedir'] . "/general/firts_task/snmp_filters.php"); - return; + $result_unified = db_get_all_rows_sql("SELECT DISTINCT(unified_filters_id) FROM tsnmp_filter ORDER BY unified_filters_id ASC"); + + $aglomerate_result = array(); + foreach ($result_unified as $res) { + $aglomerate_result[$res['unified_filters_id']] = db_get_all_rows_sql("SELECT * FROM tsnmp_filter WHERE unified_filters_id = " . $res['unified_filters_id'] . " ORDER BY id_snmp_filter ASC"); } - + $table->data = array (); $table->head = array (); $table->size = array (); @@ -214,26 +214,46 @@ else { $table->head[0] = __('Description'); $table->head[1] = __('Filter'); - $table->head[2] = __('Function'); - $table->head[3] = __('Action'); - $table->size[3] = "50px"; - $table->align[3] = 'center'; - - foreach ($result as $row) { - $data = array (); - $data[0] = '' . $row['description'] . ''; - $data[1] = $row['filter']; - if ($row['unified_filters_id'] == 0) { - $data[2] = "OR"; + $table->head[2] = __('Action'); + $table->size[2] = "50px"; + $table->align[2] = 'center'; + + foreach ($aglomerate_result as $ind => $row) { + if ($ind == 0) { + foreach ($row as $r) { + $data = array (); + $data[0] = '' . $r['description'] . ''; + $data[1] = $r['filter']; + $data[2] = '' . + html_print_image("images/config.png", true, array("border" => '0', "alt" => __('Update'))) . '' . + '  ' . + html_print_image("images/cross.png", true, array("border" => '0', "alt" => __('Delete'))) . ''; + array_push ($table->data, $data); + } } else { - $data[2] = "AND (" . $row['unified_filters_id'] . ")"; + $ind2 = 0; + $compose_filter = array(); + $compose_id = ""; + $compose_action = ""; + foreach ($row as $i => $r) { + if ($ind2 == 0) { + $compose_id = '' . $r['description'] . ''; + $compose_action = '' . + html_print_image("images/config.png", true, array("border" => '0', "alt" => __('Update'))) . '' . + '  ' . + html_print_image("images/cross.png", true, array("border" => '0', "alt" => __('Delete'))) . ''; + $ind2++; + } + $compose_filter[] = $r['filter']; + } + $data = array (); + $data[0] = $compose_id; + $data[1] = implode(" AND ", $compose_filter); + $data[2] = $compose_action; + array_push ($table->data, $data); } - $data[3] = '' . - html_print_image("images/config.png", true, array("border" => '0', "alt" => __('Update'))) . '' . - '  ' . - html_print_image("images/cross.png", true, array("border" => '0', "alt" => __('Delete'))) . ''; - array_push ($table->data, $data); + } if (!empty ($table->data)) { @@ -254,11 +274,38 @@ else { $(document).ready (function () { $('#add_filter').click(function(e) { - $('#filter_table').append(''); + $('#filter_table').append('Click to delete the filter'); id++; $('#hidden-index_post').val(id); }); + + $('[id^=delete_filter_]').click(function(e) { + var elem_id = this.id; + var id_array = elem_id.split("delete_filter_"); + var id = id_array[1]; + + params = {}; + params['page'] = "include/ajax/snmp.ajax"; + params['delete_snmp_filter'] = 1; + params['filter_id'] = id; + + jQuery.ajax ({ + data: params, + type: "POST", + url: "ajax.php", + dataType: "html", + success: function(data){ + var elem = $('#hidden-elements').val(); + $('#hidden-elements').val(elem - 1); + $('#' + elem_id).parent().parent().remove(); + } + }); + }); }); + + function delete_this_row (id_row) { + $('#filter_table-' + id_row).remove(); + } diff --git a/pandora_console/include/ajax/snmp.ajax.php b/pandora_console/include/ajax/snmp.ajax.php index 7b3e45c704..a372d50e11 100644 --- a/pandora_console/include/ajax/snmp.ajax.php +++ b/pandora_console/include/ajax/snmp.ajax.php @@ -20,6 +20,7 @@ require_once("include/functions_snmp.php"); $save_snmp_translation = (bool)get_parameter('save_snmp_translation', 0); $delete_snmp_translation = (bool)get_parameter('delete_snmp_translation', 0); $update_snmp_translation = (bool)get_parameter('update_snmp_translation', 0); +$delete_snmp_filter = (bool)get_parameter('delete_snmp_filter', 0); /* skins image checks */ if ($save_snmp_translation) { @@ -56,4 +57,12 @@ if ($update_snmp_translation) { return; } + +if ($delete_snmp_filter) { + $filter_id = get_parameter('filter_id'); +html_debug($filter_id, true); + db_process_sql_delete('tsnmp_filter', array('id_snmp_filter' => $filter_id)); + + return; +} ?> diff --git a/pandora_server/lib/PandoraFMS/SNMPServer.pm b/pandora_server/lib/PandoraFMS/SNMPServer.pm index 2ea002bb1b..83af3c24ac 100644 --- a/pandora_server/lib/PandoraFMS/SNMPServer.pm +++ b/pandora_server/lib/PandoraFMS/SNMPServer.pm @@ -344,13 +344,18 @@ sub pandora_snmptrapd { ######################################################################################## sub matches_filter ($$$) { my ($dbh, $pa_config, $string) = @_; - + use Data::Dumper; + $Data::Dumper::Sortkeys = 1; my @filter_unique_functions = get_db_rows ($dbh, 'SELECT DISTINCT(unified_filters_id) FROM tsnmp_filter ORDER BY unified_filters_id'); - + Dumper("++++++++++++++++++++++"); + Dumper(@filter_unique_functions); + Dumper("++++++++++++++++++++++"); foreach my $filter_unique_func (@filter_unique_functions) { # Get filters my @filters = get_db_rows ($dbh, 'SELECT filter FROM tsnmp_filter WHERE unified_filters_id = ' . $filter_unique_func->{'unified_filters_id'}); - + Dumper("-----------------------"); + Dumper(@filters); + Dumper("-----------------------"); my $eval_acum = 1; foreach my $filter (@filters) { my $regexp = safe_output($filter->{'filter'}) ; From ecdbf9bcc436eca66c260e8eb50719feb7c613de Mon Sep 17 00:00:00 2001 From: Alejandro Gallardo Escobar Date: Thu, 26 Oct 2017 11:51:15 +0200 Subject: [PATCH 133/311] [Console] Now the modules are shown correctly into the trees that nobody use --- pandora_console/include/class/Tree.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/class/Tree.class.php b/pandora_console/include/class/Tree.class.php index 21d201a6d4..52aa2dee5c 100644 --- a/pandora_console/include/class/Tree.class.php +++ b/pandora_console/include/class/Tree.class.php @@ -1133,7 +1133,8 @@ class Tree { if (empty($data)) return array(); - if ($this->type == 'agent') { + // [26/10/2017] It seems the module hierarchy should be only available into the tree by group + if ($this->rootType == 'group' && $this->type == 'agent') { $data = $this->getProcessedModules($data); } From 3f77b3ae7d9c48c3fb00bbe001243c42e4d44eb3 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Thu, 26 Oct 2017 12:01:04 +0200 Subject: [PATCH 134/311] Added changes to snmp server to evaluate all filters in the same virtual world --- pandora_server/lib/PandoraFMS/SNMPServer.pm | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/SNMPServer.pm b/pandora_server/lib/PandoraFMS/SNMPServer.pm index 83af3c24ac..9328f56c68 100644 --- a/pandora_server/lib/PandoraFMS/SNMPServer.pm +++ b/pandora_server/lib/PandoraFMS/SNMPServer.pm @@ -196,10 +196,10 @@ sub pandora_snmptrapd { my ($pa_config, $line, $server_id, $dbh) = @_; (my $trap_ver, $line) = split(/\[\*\*\]/, $line, 2); - +print STDERR "ANTES"; # Process SNMP filter next if (matches_filter ($dbh, $pa_config, $line) == 1); - +print STDERR "DESPUES"; logger($pa_config, "Reading trap '$line'", 10); my ($date, $time, $source, $oid, $type, $type_desc, $value, $data) = ('', '', '', '', '', '', '', ''); @@ -344,18 +344,13 @@ sub pandora_snmptrapd { ######################################################################################## sub matches_filter ($$$) { my ($dbh, $pa_config, $string) = @_; - use Data::Dumper; - $Data::Dumper::Sortkeys = 1; + my @filter_unique_functions = get_db_rows ($dbh, 'SELECT DISTINCT(unified_filters_id) FROM tsnmp_filter ORDER BY unified_filters_id'); - Dumper("++++++++++++++++++++++"); - Dumper(@filter_unique_functions); - Dumper("++++++++++++++++++++++"); + foreach my $filter_unique_func (@filter_unique_functions) { # Get filters my @filters = get_db_rows ($dbh, 'SELECT filter FROM tsnmp_filter WHERE unified_filters_id = ' . $filter_unique_func->{'unified_filters_id'}); - Dumper("-----------------------"); - Dumper(@filters); - Dumper("-----------------------"); + my $eval_acum = 1; foreach my $filter (@filters) { my $regexp = safe_output($filter->{'filter'}) ; From 3f0430ab9de7b40ef68fe831008a58d3446145cc Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 26 Oct 2017 12:12:44 +0200 Subject: [PATCH 135/311] added unit in custom graphs --- pandora_console/include/functions_graph.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pandora_console/include/functions_graph.php b/pandora_console/include/functions_graph.php index c97867733b..7e5030b24c 100644 --- a/pandora_console/include/functions_graph.php +++ b/pandora_console/include/functions_graph.php @@ -1069,6 +1069,7 @@ function graphic_combined_module ($module_list, $weight_list, $period, if(!$fullscale){ $time_format_2 = ''; $temp_range = $period; + $unit_list_aux = array(); if ($projection != false) { if ($period < $prediction_period) @@ -1317,6 +1318,10 @@ function graphic_combined_module ($module_list, $weight_list, $period, $agent_id = agents_get_agent_id ($agent_name); + if(empty($unit_list)){ + $unit_aux = modules_get_unit($agent_module_id); + array_push($unit_list_aux,$unit_aux); + } //Get and process module name $module_name = io_safe_output( modules_get_agentmodule_name ($agent_module_id)); @@ -1500,6 +1505,8 @@ function graphic_combined_module ($module_list, $weight_list, $period, if (!empty($unit_list) && $units_number == $module_number && isset($unit_list[$i])) { $unit = $unit_list[$i]; + }else{ + $unit = $unit_list_aux[$i]; } if ($projection == false or ($projection != false and $i == 0)) { From 1f20247ae388e1a7db2c2bb01326280745a12e20 Mon Sep 17 00:00:00 2001 From: Arturo Gonzalez Date: Thu, 26 Oct 2017 12:23:41 +0200 Subject: [PATCH 136/311] Added background color to bars charts --- pandora_console/include/graphs/fgraph.php | 4 ++-- .../include/graphs/flot/pandora.flot.js | 19 +++++-------------- .../include/graphs/functions_flot.php | 12 ++++++------ 3 files changed, 13 insertions(+), 22 deletions(-) diff --git a/pandora_console/include/graphs/fgraph.php b/pandora_console/include/graphs/fgraph.php index c36529b7f7..4e144bf08b 100644 --- a/pandora_console/include/graphs/fgraph.php +++ b/pandora_console/include/graphs/fgraph.php @@ -188,7 +188,7 @@ function vbar_graph($flash_chart, $chart_data, $width, $height, if ($flash_chart) { return flot_vcolumn_chart ($chart_data, $width, $height, $color, $legend, $long_index, $homeurl, $unit, $water_mark_url, - $homedir,$font,$font_size, $from_ux, $from_wux); + $homedir,$font,$font_size, $from_ux, $from_wux, $backgroundColor); } else { $graph = array(); @@ -636,7 +636,7 @@ function hbar_graph($flash_chart, $chart_data, $width, $height, if ($flash_chart) { return flot_hcolumn_chart( - $chart_data, $width, $height, $water_mark_url, $font, $font_size); + $chart_data, $width, $height, $water_mark_url, $font, $font_size, $backgroundColor); } else { $graph = array(); diff --git a/pandora_console/include/graphs/flot/pandora.flot.js b/pandora_console/include/graphs/flot/pandora.flot.js index 9024424ab0..277a060f43 100644 --- a/pandora_console/include/graphs/flot/pandora.flot.js +++ b/pandora_console/include/graphs/flot/pandora.flot.js @@ -309,7 +309,7 @@ function pandoraFlotPieCustom(graph_id, values, labels, width, } function pandoraFlotHBars(graph_id, values, labels, water_mark, - maxvalue, water_mark, separator, separator2, font, font_size) { + maxvalue, water_mark, separator, separator2, font, font_size, background_color) { var colors_data = ['#FC4444','#FFA631','#FAD403','#5BB6E5','#F2919D','#80BA27']; values = values.split(separator2); @@ -355,7 +355,7 @@ function pandoraFlotHBars(graph_id, values, labels, water_mark, grid: { hoverable: true, borderWidth: 1, - backgroundColor: { colors: ["#FFF", "#FFF"] } + backgroundColor: { colors: [background_color, background_color] } }, xaxis: { axisLabelUseCanvas: true, @@ -494,7 +494,7 @@ function showTooltip(x, y, color, contents) { }).appendTo("body").fadeIn(200); } -function pandoraFlotVBars(graph_id, values, labels, labels_long, legend, colors, water_mark, maxvalue, water_mark, separator, separator2, font, font_size , from_ux, from_wux) { +function pandoraFlotVBars(graph_id, values, labels, labels_long, legend, colors, water_mark, maxvalue, water_mark, separator, separator2, font, font_size , from_ux, from_wux, background_color) { values = values.split(separator2); legend = legend.split(separator); font = font.split("/").pop().split(".").shift(); @@ -585,7 +585,7 @@ function pandoraFlotVBars(graph_id, values, labels, labels_long, legend, colors, grid: { hoverable: true, borderWidth: 1, - backgroundColor: { colors: ["#FFF", "#FFF"] } + backgroundColor: { colors: [background_color, background_color] } } }; @@ -608,16 +608,7 @@ function pandoraFlotVBars(graph_id, values, labels, labels_long, legend, colors, $('#' + graph_id).VUseTooltip(); $('#' + graph_id).css("margin-left","auto"); $('#' + graph_id).css("margin-right","auto"); - //~ $('#' + graph_id).find('div.legend-tooltip').tooltip({ track: true }); - /* - $('#'+graph_id+' .xAxis .tickLabel') - .css('transform', 'rotate(-45deg)') - .css('max-width','100px') - .find('div') - .css('position', 'relative') - .css('top', '+10px') - .css('left', '-30px'); - */ + if (/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)) $('#'+graph_id+' .xAxis .tickLabel') .find('div') diff --git a/pandora_console/include/graphs/functions_flot.php b/pandora_console/include/graphs/functions_flot.php index 319e69cab0..bfc7b37c3b 100644 --- a/pandora_console/include/graphs/functions_flot.php +++ b/pandora_console/include/graphs/functions_flot.php @@ -674,7 +674,7 @@ function flot_custom_pie_chart ($flash_charts, $graph_values, } // Returns a 3D column chart -function flot_hcolumn_chart ($graph_data, $width, $height, $water_mark, $font = '', $font_size = 7) { +function flot_hcolumn_chart ($graph_data, $width, $height, $water_mark, $font = '', $font_size = 7, $background_color = "white") { global $config; include_javascript_dependencies_flot_graph(); @@ -755,7 +755,7 @@ function flot_hcolumn_chart ($graph_data, $width, $height, $water_mark, $font = $return .= ""; @@ -763,7 +763,7 @@ function flot_hcolumn_chart ($graph_data, $width, $height, $water_mark, $font = } // Returns a 3D column chart -function flot_vcolumn_chart ($graph_data, $width, $height, $color, $legend, $long_index, $homeurl, $unit, $water_mark, $homedir, $font, $font_size, $from_ux, $from_wux) { +function flot_vcolumn_chart ($graph_data, $width, $height, $color, $legend, $long_index, $homeurl, $unit, $water_mark, $homedir, $font, $font_size, $from_ux, $from_wux, $background_color = 'white') { global $config; include_javascript_dependencies_flot_graph(); @@ -847,14 +847,14 @@ function flot_vcolumn_chart ($graph_data, $width, $height, $color, $legend, $lon if ($from_ux) { if($from_wux){ - $return .= "pandoraFlotVBars('$graph_id', '$values', '$labels', '$labels', '$legend', '$colors', false, $max, '$water_mark', '$separator', '$separator2','$font',$font_size, true, true)"; + $return .= "pandoraFlotVBars('$graph_id', '$values', '$labels', '$labels', '$legend', '$colors', false, $max, '$water_mark', '$separator', '$separator2','$font',$font_size, true, true, '$background_color')"; } else{ - $return .= "pandoraFlotVBars('$graph_id', '$values', '$labels', '$labels', '$legend', '$colors', false, $max, '$water_mark', '$separator', '$separator2','$font',$font_size, true, false)"; + $return .= "pandoraFlotVBars('$graph_id', '$values', '$labels', '$labels', '$legend', '$colors', false, $max, '$water_mark', '$separator', '$separator2','$font',$font_size, true, false, '$background_color')"; } } else { - $return .= "pandoraFlotVBars('$graph_id', '$values', '$labels', '$labels', '$legend', '$colors', false, $max, '$water_mark', '$separator', '$separator2','$font',$font_size, false, false)"; + $return .= "pandoraFlotVBars('$graph_id', '$values', '$labels', '$labels', '$legend', '$colors', false, $max, '$water_mark', '$separator', '$separator2','$font',$font_size, false, false, '$background_color')"; } $return .= ""; From 953aa53ce04ca1ad3834b9306640d3eb1fc591a3 Mon Sep 17 00:00:00 2001 From: enriquecd Date: Thu, 26 Oct 2017 12:34:22 +0200 Subject: [PATCH 137/311] Add nano and xgettext to Dockerfile - #1508 --- tests/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/Dockerfile b/tests/Dockerfile index 70b0bf9f18..a2f7cf271a 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -66,6 +66,7 @@ RUN yum install -y \ cronie \ ntp \ wget \ + nano \ curl \ xterm \ postfix \ @@ -96,5 +97,9 @@ RUN yum install -y \ net-snmp-utils \ perl-Test-Simple; yum clean all; +RUN wget http://rpmfind.net/linux/centos/6.9/os/i386/Packages/gettext-0.17-18.el6.i686.rpm; \ + yum localinstall -y gettext-0.17-18.el6.i686.rpm; \ + rm -rf gettext-0.17-18.el6.i686.rpm; + #Exposing ports for: HTTP, SNMP Traps, Tentacle protocol EXPOSE 80 162/udp 41121 From 264b91d71ee327a05e3f623d42220967e41fa01b Mon Sep 17 00:00:00 2001 From: enriquecd Date: Thu, 26 Oct 2017 12:44:25 +0200 Subject: [PATCH 138/311] Change alert macros help texts and translations - #1242 --- .../include/help/en/help_alert_config.php | 105 ++++++++------- .../include/help/en/help_alert_macros.php | 122 +++++++++--------- .../include/help/es/help_alert_config.php | 106 ++++++++------- .../include/help/es/help_alert_macros.php | 121 ++++++++--------- 4 files changed, 244 insertions(+), 210 deletions(-) diff --git a/pandora_console/include/help/en/help_alert_config.php b/pandora_console/include/help/en/help_alert_config.php index fec6b2a7bf..39bce7067a 100644 --- a/pandora_console/include/help/en/help_alert_config.php +++ b/pandora_console/include/help/en/help_alert_config.php @@ -24,51 +24,66 @@ When it comes to creating the action these are the only 3 fields we can set. Wit

    Apart from the defined module macros, the following macros are also available:

      -
    • _field1_ : User defined field 1.
    • -
    • _field2_ : User defined field 2.
    • -
    • _field3_ : User defined field 3.
    • -
    • _agent_ : Name of the agent that fired the alert.
    • -
    • _agentdescription_ : Description of the agent who fired alert.
    • -
    • _agentgroup_ : Agent group name.
    • -
    • _agentstatus_ : Current status of the agent.
    • -
    • _agentos_: Agent's operative system.
    • -
    • _address_ : Address of the agent that fired the alert.
    • -
    • _all_address_ : All address of the agent that fired the alert.
    • -
    • _address_n_ : The address of the agent that corresponds to the position indicated in "n" e.g: address_1_ , address_2_
    • -
    • _timestamp_ : Time when the alert was fired (yy-mm-dd hh:mm:ss).
    • -
    • _timezone_ : Timezone name that _timestamp_ represents in.
    • -
    • _data_ : Module data that caused the alert to fire.
    • -
    • _prevdata_ : Module data previus the alert to fire.
    • -
    • _alert_description_ : Alert description.
    • -
    • _alert_threshold_ : Alert threshold.
    • -
    • _alert_times_fired_ : Number of times the alert has been fired.
    • -
    • _module_ : Module name.
    • -
    • _modulegroup_ : Module group name.
    • -
    • _moduledescription_ : Description of the module who fired the alert.
    • -
    • _modulestatus_ : Status of the module.
    • -
    • _moduletags_ : Tags associated to the module.
    • -
    • _alert_name_ : Alert name.
    • -
    • _alert_priority_ : Numerical alert priority.
    • -
    • _alert_text_severity_ : Text alert severity (Maintenance, Informational, Normal Minor, Warning, Major, Critical).
    • -
    • _event_text_severity_ : (Only event alerts) Text event (who fire the alert) severity (Maintenance, Informational, Normal Minor, Warning, Major, Critical).
    • -
    • _event_id_ : (Only event alerts) Id of the event that fired the alert.
    • -
    • _id_agent_ : Id of agent, useful to build direct URL to redirect to a Pandora FMS console webpage.
    • -
    • _id_group_ : Id of agent group.
    • -
    • _id_module_ : Id of module.
    • -
    • _id_alert_ : Numerical ID of the alert (unique), used to correlate on third party software
    • -
    • _policy_ : Name of the policy the module belongs to (if applies).
    • -
    • _interval_ : Execution interval of the module.
    • -
    • _target_ip_ : IP address of the target of the module.
    • -
    • _target_port_ : Port number of the target of the module.
    • -
    • _plugin_parameters_ : Plug-in Parameters of the module.
    • -
    • _groupcontact_ : Group contact information. Configured when the group is created.
    • -
    • _groupother_ : Other information about the group. Configured when the group is created.
    • -
    • _email_tag_ : Emails associated to the module tags.
    • -
    • _alert_critical_instructions_: Instructions for CRITICAL status contained in the module.
    • -
    • _alert_warning_instructions_: Instructions for WARNING status contained in the module.
    • -
    • _alert_unknown_instructions_: Instructions for UNKNOWN status contained in the module.
    • -
    • _modulegraph_nh_: (Only for alerts that use the command eMail) Returns an image of a module graph with a period of n hours (eg. _modulegraph_24h_). A correct setup of the connection between the server and the console's api is required. This setup is done into the server's configuration file.
    • -
    • _homeurl_ : It is a link of the public URL this must be configured in the general options of the setup.
    • +
    • _address_: Address of the agent that triggered the alert.
    • +
    • _address_n_ : The address of the agent that corresponds to the position indicated in "n" e.g: address_1_ , address_2__
    • +
    • _agent_: Name of the agent that triggered the alert.
    • +
    • _agentcustomfield_n_: Agent custom field number n (eg. _agentcustomfield_9_).
    • +
    • _agentcustomid_: Agent custom ID.
    • +
    • _agentdescription_: Description of the agent that triggered the alert.
    • +
    • _agentgroup_ : Agent group name.
    • +
    • _agentos_: Agent's operative system.
    • +
    • _agentstatus_ : Current status of the agent.
    • +
    • _alert_critical_instructions_: Instructions for CRITICAL status contained in the module.
    • +
    • _alert_description_: Alert description.
    • +
    • _alert_name_: Alert name.
    • +
    • _alert_priority_: Alert’s numeric priority.
    • +
    • _alert_text_severity_: Priority level, in text, for the alert (Maintenance, Informational, Normal Minor, Major, Critical).
    • +
    • _alert_threshold_: Alert threshold.
    • +
    • _alert_times_fired_: Number of times the alert has been triggered.
    • +
    • _alert_unknown_instructions_: Instructions for UNKNOWN status contained in the module.
    • +
    • _alert_warning_instructions_: Instructions for WARNING status contained in the module.
    • +
    • _all_address_ : All address of the agent that fired the alert.
    • +
    • _data_: Module data that caused the alert to fire.
    • +
    • _email_tag_: Emails associated to the module’s tags.
    • +
    • _event_id_: (Only event alerts) ID of the event that triggered the alert.
    • +
    • _event_text_severity_: (Only event alerts) event text (that triggered the alert) severity (Maintenance, Informational, Normal Minor, Warning, Major, Critical).
    • +
    • _field1_: User defined field 1.
    • +
    • _field2_: User defined field 2.
    • +
    • _field3_: User defined field 3.
    • +
    • _field4_: User defined field 4.
    • +
    • _field5_: User defined field 5.
    • +
    • _field6_: User defined field 6.
    • +
    • _field7_: User defined field 7.
    • +
    • _field8_: User defined field 8.
    • +
    • _field9_: User defined field 9.
    • +
    • _field10_: User defined field 10.
    • +
    • _groupcontact_: Group’s contact information. Configured when the group is created.
    • +
    • _groupcustomid_: Group’s custom ID.
    • +
    • _groupother_: Other information about the group. Configured when the group is created.
    • +
    • _homeurl_ : It is a link of the public URL this must be configured in the general options of the setup.
    • +
    • _id_agent_: Agent’s ID, useful for building a direct URL that redirects to a Pandora FMS console webpage.
    • +
    • _id_alert_: Alert’s numeric ID (unique), used to correlate the alert with third party software.
    • +
    • _id_group_ : Agent group ID.
    • +
    • _id_module_: The module's ID.
    • +
    • _interval_: Module’s execution interval.
    • +
    • _module_: Module name.
    • +
    • _modulecustomid_: Module custom ID.
    • +
    • _moduledata_X_: Last data of module X (module name, cannot have white spaces).
    • +
    • _moduledescription_: Description of the module that triggered the alert.
    • +
    • _modulegraph_nh_: (>=6.0) (Only for alerts that use the command eMail) Returns an image encoded in base64 of a module’s graph with a period of n hours (eg. _modulegraph_24h_). A correct setup of the connection between the server and the console's API is required. This setup is done on the server's configuration file.
    • +
    • _modulegraphth_nh_:Same operation as the previous macro only with the critical and warning thresholds of the module provided they are defined.
    • +
    • _modulegroup_: Module’s group name.
    • +
    • _modulestatus_: Module status.
    • +
    • _moduletags_: URLs asociadas a los tags de módulos.
    • +
    • _name_tag_: Names of the tags related to the module.
    • +
    • _phone_tag_: Phone numbers related to the module’s tags.
    • +
    • _plugin_parameters_: Module’s Plugin parameters.
    • +
    • _policy_: Name of the policy that the module belongs to (if applies).
    • +
    • _prevdata_ : Module data previus the alert to fire.
    • +
    • _target_ip_: IP address for the module’s target.
    • +
    • _target_port_: Port number for the module’s target.
    • +
    • _timestamp_: Time and date on which the alert was triggered (yy-mm-dd hh:mm:ss).
    • +
    • _timezone_: Timezone that is represented on _timestamp_.

    diff --git a/pandora_console/include/help/en/help_alert_macros.php b/pandora_console/include/help/en/help_alert_macros.php index 5382c502ab..c305fa3730 100644 --- a/pandora_console/include/help/en/help_alert_macros.php +++ b/pandora_console/include/help/en/help_alert_macros.php @@ -8,66 +8,68 @@

    Besides the defined module macros, the following macros are available:

    -